

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-dark: #1a2332;
    --primary-navy: #2c3e50;
    --accent-gold: #d4a574;
    --accent-copper: #b87d4b;
    --cream: #faf8f4;
    --light-grey: #e8e6e1;
    --text-dark: #2a2a2a;
    --text-light: #6a6a6a;
    --white: #ffffff;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.logo {
  max-width: 220px;
  height: auto;
  display: block;
}


.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-copper);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-dark);
    transition: all 0.3s ease;
}

.hero-container {
            position: relative;
            width: 100%;
            min-height: 75vh;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: row;
            overflow: hidden;
        }
        
        /* Left Content Section */
        .hero-content {
            position: relative;
            max-width: 1200px !important;
            flex: 0 0 50%;
            background: linear-gradient(105deg, rgba(212, 165, 116, 0.08) 40%, #f0ddcb 70%);
            display: flex;
            align-items: center;
            padding: 5rem 8%;
            z-index: 2;
            clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
        }
        
        .content-inner {
            max-width: 600px;
            animation: fadeInUp 1s ease-out;
        }
        
        .eyebrow {
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            color: var(--accent-copper);
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeIn 0.8s ease-out 0.3s forwards;
        }
        
        .eyebrow-dot {
            display: inline-block;
            margin: 0 0.5rem;
            opacity: 0.5;
        }
        
        h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 300;
            line-height: 1.2;
            color: var(--text-light);
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }
        
        h1 strong {
            font-weight: 600;
            display: block;
            color: var(--primary-navy);
        }
        
        .hero-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 480px;
            opacity: 0;
            animation: fadeIn 0.8s ease-out 0.7s forwards;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--navy-rich);
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 0.03em;
            border: 1px solid rgba(201, 168, 106, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: fadeIn 0.8s ease-out 0.9s forwards;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.2), transparent);
            transition: left 0.6s;
        }
        
        .cta-button:hover {
            background: var(--accent-bronze);
            color: var(--navy-deep);
            border-color: var(--accent-bronze);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 168, 106, 0.3);
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        /* Right Image Section */
        .hero-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            margin-left: -8%;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: right;
            animation: zoomIn 1.2s ease-out;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 35, 50, 0.4) 0%, transparent 60%);
            pointer-events: none;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes zoomIn {
            from {
                transform: scale(1.1);
                opacity: 0.8;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                padding: 4rem 6%;
                clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
            }
            
            .hero-image {
                margin-left: -10%;
            }
        }
        
        @media (max-width: 768px) {
            .hero-container {
                flex-direction: column;
                min-height: auto;
            }
            
            .hero-content {
                flex: 1;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
                padding: 4rem 6%;
                min-height: 70vh;
            }
            
            .hero-image {
                flex: 1;
                margin-left: 0;
                min-height: 50vh;
                margin-top: -5%;
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            .content-inner {
                max-width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content {
                padding: 3rem 5%;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 0.9rem 2rem;
                font-size: 0.9rem;
            }
        }
/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: 8rem 5%;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-copper);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--cream);
    border: 1px solid var(--light-grey);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gold);
    transition: height 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    color: rgba(212, 165, 116, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.service-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-grey);
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '→';
    color: var(--accent-gold);
    font-weight: 600;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach {
    padding: 8rem 5%;
    background: var(--primary-dark);
    color: var(--cream);
    position: relative;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.approach-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--cream);
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(250, 248, 244, 0.8);
    margin-bottom: 2rem;
}

.approach-visual {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.approach-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--accent-gold);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(250, 248, 244, 0.7);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    padding: 8rem 5%;
    background: var(--cream);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border: 1px solid var(--light-grey);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-gold);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

.benefit-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 8rem 5%;
    background: var(--white);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.contact-email {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--accent-copper);
    text-decoration: none;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 4rem;
}

.contact-email:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

/* Contact Form */
.contact-form-wrapper {
    margin-top: 4rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--light-grey);
    background: var(--cream);
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 1.2rem 3rem;
    background: var(--primary-dark);
    color: var(--cream);
    border: 2px solid var(--primary-dark);
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
}

.form-submit:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    padding: 3rem 5%;
    background: var(--primary-dark);
    color: rgba(250, 248, 244, 0.6);
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(250, 248, 244, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-copyright {
    font-size: 0.9rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}




.hp-field {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding: 6rem 5% 4rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Approach */
    .approach-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .approach-stats {
        grid-template-columns: 1fr;
    }
    
    .approach-text h2 {
        font-size: 2.5rem;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact h2 {
        font-size: 2.5rem;
    }
    
    .contact-email {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .main-nav {
        padding: 1.5rem 5%;
    }
    
    
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-number {
        font-size: 3.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}



/* Mobile adjustment */
@media (max-width: 768px) {
  .logo {
    max-width: 200px;
  }
}