/* --- START OF FILE styles.css --- */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-color: #121212;
    --surface-color: #1E1E1E;
    --text-primary: #EAEAEA;
    --text-secondary: #999999;
    --accent-color: #E0C5A0;
    /* Soft Gold */
    --border-color: rgba(255, 255, 255, 0.1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);

    --container-width: 1100px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-fast);
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
}

.logo a:hover {
    color: var(--text-primary);
}

/* Keep logo color consistent */
.nav-list {
    display: flex;
    gap: 40px;
}

.nav-list a {
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-list a:hover:after,
.nav-list a.active:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 24px;
    z-index: 1001;
}

/* Hero */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    border: none;
    padding-top: calc(var(--header-height) + 120px);
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid var(--text-secondary);
    font-weight: 500;
}

.btn:hover {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* Section Generic Styles */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--surface-color);
    padding: 40px;
    text-align: center;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

/* Testimonials */
.testimonial-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-slide blockquote {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.testimonial-arrow {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.testimonial-arrow:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* CTA */
.cta {
    background: var(--surface-color);
    text-align: center;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    padding: 80px 0;
    font-size: 14px;
    text-align: center;
}

.footer .logo {
    margin-bottom: 30px;
    display: inline-block;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

/* --- NEW STYLES START --- */
.footer-contact-info {
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.7;
    /* Improves readability of stacked text */
}

.footer-contact-info p {
    margin: 5px 0;
    /* Adds a little space between each line */
}

.footer-contact-info a {
    color: inherit;
    /* Makes link color same as the text */
    text-decoration: none;
}

.footer-contact-info a:hover {
    text-decoration: underline;
    /* Adds underline on hover for better UX */
}

/* --- NEW STYLES END --- */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 18px;
}

.footer-copy {
    color: var(--text-secondary);
}

/* Scroll-Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .about .container {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 44px;
    }

    .section-intro h2,
    .about-content h2,
    .cta h2 {
        font-size: 32px;
    }

    .testimonial-slide blockquote {
        font-size: 22px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
        font-size: 24px;
    }
}