/* 
* Roshan Constructions - Hero Section Theme 
* Strict Color Palette & Design Guidelines Verification
*/

:root {
    /* Color Palette */
    --color-navy: #0E1B2A;
    /* Primary Background */
    --color-gold: #C9A24D;
    /* Accent / CTA */
    --color-terracotta: #B85C38;
    /* Minimal Accent */
    --color-white: #FFFFFF;
    /* Text */
    --color-grey-light: #E5E7EB;
    /* Secondary Text */

    /* Typography */
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-navy);
    color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout Container */
.container {
    max-width: 1440px;
    /* Large screen optimization */
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--color-navy);
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    /* Default spacing for mobile */
    padding: 60px 0;
}

/* Flex Layout for Desktop */
@media (min-width: 1024px) {
    .hero-section {
        min-height: calc(100vh - 60px);
        padding-top: 40px;
        /* Desktop requirement */
        padding: 0;
        display: flex;
        align-items: center;
    }

    .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
        /* Minimum 80px whitespace */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section {
        height: 70vh;
        /* Tablet requirement */
        padding: 40px 0;
    }

    .container {
        flex-direction: column;
        justify-content: center;
    }
}

/* Content Column (Left Side) */
.hero-content {
    flex: 0 0 60%;
    /* 60% width */
    max-width: 60%;
    z-index: 10;
    text-align: left;
    /* Strict left alignment */
}

/* Visual Column (Right Side) */
.hero-visual {
    flex: 0 0 40%;
    /* 40% width */
    max-width: 40%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Typography Styles */
h1 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 36px;
    /* Mobile */
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--color-white);
    margin-bottom: 24px;
}

.subheadline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    /* Mobile */
    line-height: 1.6;
    color: var(--color-grey-light);
    margin-bottom: 32px;
    max-width: 600px;
    /* Readability measurement */
    position: relative;
}

@media (min-width: 768px) {
    h1 {
        font-size: 48px;
    }

    .subheadline {
        font-size: 18px;
    }
}

@media (min-width: 1440px) {
    h1 {
        font-size: 56px;
    }

    .subheadline {
        font-size: 20px;
    }
}

/* Bullet Points */
.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list li {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Check Icons */
.check-icon {
    color: var(--color-gold);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    /* Optional subtle background as per guide */
    background-color: rgba(184, 92, 56, 0.1);
    /* Terracotta 10% */
    border-radius: 50%;
    font-size: 14px;
}

/* CTAs */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* Primary CTA */
.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-navy);
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    /* Slight scale */
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.4);
    /* Subtle terracotta border simulation */
    box-shadow: 0 0 0 2px var(--color-terracotta), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.underline-accent {
    /* Optional thin underline accent on "FREE" */
    border-bottom: 1px solid var(--color-terracotta);
}

/* Secondary CTA */
.btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 4px 12px rgba(184, 92, 56, 0.3);
    /* Terracotta shadow */
}

/* Since 2010 Badge (Terracotta usage) */
.badge-since {
    display: inline-block;
    background-color: var(--color-terracotta);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    vertical-align: middle;
    margin-left: 8px;
    opacity: 0.9;
}

/* Image Visual & Overlay */
.image-wrapper {
    position: relative;
    width: 100%;
    max-height: 80vh;
    /* Prevent overly tall images */
    border-radius: 4px;
    /* Slight softening */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 30% Dark Blue Gradient Overlay from Left Edge */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(14, 27, 42, 0.5) 0%, rgba(14, 27, 42, 0) 50%);
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Mobile Responsive Adjustments (320px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
        flex-direction: column-reverse;
        /* For visual background effect if needed, but guide says "Single column... image as background only" */
    }

    /* Guide says: "Mobile: Single column, hero 60vh, image as background only" 
       The current structure has image in a div. I will restructure via CSS to match this strictly if possible, 
       or just stack them specifically. 
       Let's implement the "image as background only" approach for mobile.
    */

    .hero-section {
        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 40px;
        background-image: linear-gradient(rgba(14, 27, 42, 0.85), rgba(14, 27, 42, 0.9)), url('assets/hero-image.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: flex-start;
    }

    .hero-visual {
        display: none;
        /* Hide the separate image element on mobile */
    }

    .hero-content {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }

    h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .subheadline {
        font-size: 16px;
        color: #E5E7EB;
        /* Ensure readability on bg */
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}

/* Tablet (768-1023px): Stack content above image, 70vh */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        gap: 40px;
        justify-content: center;
        text-align: left;
        /* Keep text left aligned even if stacked? Guide: "Stack content above image" */
    }

    .hero-content {
        flex: 0 0 auto;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .hero-visual {
        flex: 0 0 auto;
        max-width: 80%;
        height: auto;
    }
}

/* 
* Why Choose Us Section 
* Strict adherence to Navy/Gold/Terracotta palette and Typography
*/

.why-choose-us {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 60px 0;
    /* Mobile default */
}

@media (min-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .why-choose-us {
        padding: 100px 0;
    }
}

/* Centered Container for Intro */
.container-centered {
    flex-direction: column;
    align-items: flex-start;
    /* Default alignment */
}

/* Intro Block */
.intro-block {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
}

/* Typography - Section Heading */
.intro-block h2 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 28px;
    /* Mobile */
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: var(--color-white);
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .intro-block h2 {
        font-size: 40px;
        /* Desktop range 40-44px */
    }
}

/* Typography - Subheading */
.intro-block .subheading {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 20px;
    /* Mobile */
    line-height: 1.3;
    color: var(--color-grey-light);
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .intro-block .subheading {
        font-size: 24px;
        /* Desktop */
    }
}

/* Typography - Intro Text */
.intro-text p {
    font-family: var(--font-body);
    font-weight: 400;
    /* Regular */
    font-size: 16px;
    /* Mobile */
    line-height: 1.7;
    color: var(--color-grey-light);
    margin-bottom: 20px;
    max-width: 680px;
}

.intro-text p.text-medium {
    font-weight: 500;
}

@media (min-width: 1024px) {
    .intro-text p {
        font-size: 17px;
        /* Desktop range 17-18px */
    }
}

/* Grid Title */
.grid-title {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 24px;
    /* Mobile */
    line-height: 1.3;
    color: var(--color-white);
    margin-top: 50px;
    /* Mobile gap */
    margin-bottom: 32px;
    /* Mobile gap */
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Optional gold underline for Grid Title */
.grid-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-gold);
    margin-top: 12px;
}

@media (min-width: 1024px) {
    .grid-title {
        font-size: 32px;
        /* Desktop */
        margin-top: 80px;
        margin-bottom: 48px;
    }
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile (1 col) */
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet (2 cols) */
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .differentiators-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Desktop (3 cols) */
        gap: 24px;
    }
}

/* Card Design */
.diff-card {
    background-color: #13243A;
    /* Slightly lighter navy */
    border: 1px solid rgba(201, 162, 77, 0.4);
    /* Gold 40% opacity */
    border-top: 2px solid var(--color-gold);
    /* Top accent */
    border-radius: 12px;
    padding: 24px;
    /* Mobile */
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    /* Ensure equal heights in grid */
}

@media (min-width: 1024px) {
    .diff-card {
        padding: 32px;
        /* Desktop */
    }
}

/* Hover Interaction */
.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 77, 0.8);
    /* Gold 80% opacity */
}

/* Icon Styles */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: rgba(184, 92, 56, 0.1);
    /* Terracotta 10% */
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--color-gold);
}

.lucide-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
}

/* Card Text */
.diff-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    /* Mobile */
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .diff-card h4 {
        font-size: 19px;
        /* Desktop */
    }
}

.diff-card p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-grey-light);
}

/* Specific centering override if needed */
.differentiators-grid {
    justify-items: stretch;
}

/* 
* =========================================
* WHY CHOOSE US SECTION (Premium Design)
* =========================================
*/

.why-choose-us {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 80px 0 100px 0;
    /* strict compliance */
    position: relative;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    /* Top divider */
}

/* Centered Container for Intro */
.container-centered {
    flex-direction: column;
    align-items: center;
    /* Center the block itself */
}

/* Intro Block */
.intro-block {
    max-width: 720px;
    width: 100%;
    margin: 0 auto 56px auto;
    text-align: left;
    /* Text aligned LEFT */
    position: relative;
    padding-left: 24px;
    /* Space for optional accent */
    border-left: 2px solid rgba(201, 162, 77, 0.4);
    /* Left Accent */

    /* Pre-animation state */
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.intro-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Label */
.section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

/* Typography - Section Heading */
.intro-block h2 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 32px;
    /* Mobile */
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .intro-block h2 {
        font-size: 40px;
        /* Desktop */
    }
}

/* Typography - Subheading */
.intro-block .subheading {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 20px;
    /* Mobile */
    line-height: 1.3;
    color: var(--color-grey-light);
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .intro-block .subheading {
        font-size: 24px;
        /* Desktop */
    }
}

/* Typography - Intro Text */
.intro-text p {
    font-family: var(--font-body);
    font-weight: 400;
    /* Regular */
    font-size: 16px;
    /* Mobile */
    line-height: 1.7;
    color: var(--color-grey-light);
    margin-bottom: 20px;
    max-width: 680px;
}

@media (min-width: 1024px) {
    .intro-text p {
        font-size: 17px;
    }
}

/* Grid Title */
.grid-title {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 24px;
    /* Mobile */
    color: var(--color-white);
    margin-bottom: 32px;
    text-align: center;
    /* Center grid title relative to grid */
    width: 100%;

    /* Animation hooks */
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.grid-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .grid-title {
        font-size: 32px;
        /* Desktop */
        margin-bottom: 48px;
    }
}

/* Differentiators Grid */
.differentiators-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile (1 col) */
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet (2 cols) */
    }
}

@media (min-width: 1024px) {
    .differentiators-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Desktop (3 cols) */
        gap: 24px;
    }
}

/* Card Design */
.diff-card {
    background-color: #13243A;
    border: 1px solid rgba(201, 162, 77, 0.4);
    border-radius: 12px;
    padding: 24px;
    /* Mobile */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;

    /* Animation Hooks */
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.diff-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Stagger Delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

@media (min-width: 1024px) {
    .diff-card {
        padding: 32px;
        /* Desktop */
    }
}

/* Hover Interaction */
.diff-card:hover {
    transform: translateY(-4px);
    /* Lift */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 77, 0.8);
    /* 80% opacity */
}

/* Icon Styles */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    /* Optional subtle terracotta background 10-15% */
    background-color: rgba(184, 92, 56, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--color-gold);
}

.lucide-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
}

/* Card Text */
.diff-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 19px;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.diff-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-grey-light);
}

/* 
* =========================================
* WHY CHOOSE US SECTION (Editorial Layout)
* =========================================
*/

.why-choose-us {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding-top: 80px;
    padding-bottom: 100px;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    /* Top divider */
    overflow: hidden;
    /* Prevent spill */
}

/* Editorial Container */
.container-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}

/* Desktop Logic (1024px+) */
@media (min-width: 1024px) {
    .container-editorial {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
        /* Generous spacing */
        max-width: 1280px;
        /* Ensure match with guidelines */
    }
}

/* 
* -----------------------------------------
* LEFT COLUMN: IMAGE
* -----------------------------------------
*/
.editorial-image {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;

    /* Animation Hooks */
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.editorial-image.is-visible {
    opacity: 1;
    transform: scale(1);
}

.editorial-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 1024px) {
    .editorial-image {
        flex: 0 0 45%;
        /* 45% Width */
        max-width: 45%;
        height: 100%;
        /* Align with text roughly */
    }

    .editorial-image img {
        height: 100%;
        min-height: 480px;
        /* Ensure presence */
    }
}

/* 
* -----------------------------------------
* RIGHT COLUMN: TEXT CONTENT
* -----------------------------------------
*/
.editorial-content {
    width: 100%;
    text-align: left;

    /* Animation Hooks */
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.editorial-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .editorial-content {
        flex: 0 0 55%;
        /* 55% Width */
        max-width: 55%;
    }
}

/* Content Wrapper with Gold Line Anchor */
.content-wrapper {
    position: relative;
    padding-left: 32px;
    /* Space from line */
    border-left: 2px solid rgba(201, 162, 77, 0.4);
    /* Gold Accent Line */
    max-width: 650px;
    /* Readability constraint */
}

/* Headings */
.content-wrapper h2 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 28px;
    /* Mobile */
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 12px;
}

.content-wrapper .subheading {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 20px;
    /* Mobile */
    color: var(--color-grey-light);
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .content-wrapper h2 {
        font-size: 44px;
        /* Desktop Target 40-44px */
    }

    .content-wrapper .subheading {
        font-size: 24px;
        /* Desktop */
    }
}

/* Body Text */
.body-text p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    /* Mobile */
    line-height: 1.7;
    color: var(--color-grey-light);
    margin-bottom: 20px;
}

.body-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .body-text p {
        font-size: 18px;
        /* Desktop */
    }
}

/* Mobile Adjustments (<768px) */
@media (max-width: 767px) {
    .content-wrapper {
        padding-left: 20px;
        /* Slightly tighter */
        border-left: 2px solid rgba(201, 162, 77, 0.4);
    }

    /* Image Full Width */
    .editorial-image {
        border-radius: 8px;
        /* Slightly reduced */
        margin-bottom: 0;
        /* Gap handled by parent flex-gap */
    }

    /* Add subtle overlay only on mobile if image is behind text? 
       No, prompt says "Image first, Text second" stack.
       Prompt: "Image becomes full-width with subtle dark overlay if needed".
       Current valid approach: Standard block stack, no overlay needed for legibility since text is below.
    */
}

/* 
* =========================================
* WHAT SETS US APART SECTION (Grid Only)
* =========================================
*/

.sets-us-apart-section {
    background-color: var(--color-navy);
    padding: 60px 0;
    /* Mobile default */
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    /* Separation from previous section */
}

@media (min-width: 768px) {
    .sets-us-apart-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .sets-us-apart-section {
        padding: 100px 0;
    }
}

/* Heading with Gold Underline */
.sets-us-apart-heading h2 {
    font-family: var(--font-headline);
    font-weight: 600;
    font-size: 24px;
    /* Mobile */
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 32px;
    text-align: left;
    position: relative;
    /* Optional: Ensure container width alignment */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sets-us-apart-heading h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: var(--color-gold);
    margin-top: 12px;
}

@media (min-width: 1024px) {
    .sets-us-apart-heading h2 {
        font-size: 32px;
        /* Desktop */
        margin-bottom: 48px;
    }
}

/* Animation Hooks for Heading */
.sets-us-apart-heading {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.sets-us-apart-heading.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Layout */
.sets-us-apart-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile (1 col) */
    gap: 16px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sets-us-apart-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Tablet (2 cols) */
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .sets-us-apart-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Desktop (3 cols) */
        gap: 24px;
    }
}

/* Feature Card Design */
.sets-us-apart-card {
    background-color: #13243A;
    /* Slightly lighter navy */
    border: 1px solid rgba(201, 162, 77, 0.4);
    border-radius: 12px;
    padding: 24px;
    /* Mobile */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;

    /* Animation hooks */
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.sets-us-apart-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .sets-us-apart-card {
        padding: 32px;
        /* Desktop */
    }
}

/* Hover Effects */
.sets-us-apart-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 77, 0.8);
}

/* Card Content */
.sets-us-apart-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    /* Mobile */
    color: var(--color-white);
    margin-top: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .sets-us-apart-card h3 {
        font-size: 19px;
        /* Desktop */
    }
}

.sets-us-apart-card p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-grey-light);
    margin-top: 0;
    /* Adjusted since h3 has margin-top/bottom */
}

/* 
* =========================================
* SERVICES SECTION (Split Layout)
* =========================================
*/

/* FIX: Reset container behavior inside Services section */
.services-section .container {
    display: block;
    height: auto;
}

.services-section {
    background-color: #FEF9EF;
    /* Ivory Background */
    padding: 60px 0;
    /* Mobile default */
    color: var(--color-navy);
}

@media (min-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .services-section {
        padding: 100px 0;
    }
}

/* Header */
.services-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.services-header h2 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 28px;
    /* Mobile */
    color: var(--color-navy);
    margin-bottom: 16px;
}

.services-header .subheadline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    /* Mobile */
    color: #6B7280;
    /* Medium grey */
    line-height: 1.6;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .services-header {
        margin-bottom: 80px;
    }

    .services-header h2 {
        font-size: 44px;
        /* Desktop */
    }

    .services-header .subheadline {
        font-size: 20px;
        /* Desktop */
    }
}

/* Services List */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* Mobile Gap */
}

@media (min-width: 1024px) {
    .services-list {
        gap: 80px;
        /* Desktop Gap */
    }
}

/* Base Row Logic (Mobile First: Column) */
.service-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Desktop Logic (1024px+): Row & Alternating */
@media (min-width: 1024px) {
    .service-row {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    /* Even rows: Reverse order (Content Left, Image Right) */
    .service-row:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/* Service Image */
.service-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Animation hook */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-image.is-visible {
    opacity: 1;
    transform: scale(1);
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    /* Consistent aspect ratio */
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .service-image {
        width: 45%;
        flex: 0 0 45%;
    }
}

/* Service Content */
.service-content {
    width: 100%;

    /* Animation hook */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .service-content {
        width: 55%;
        flex: 0 0 55%;
    }
}

.service-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    /* Mobile */
    color: var(--color-navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-content p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    /* Mobile */
    color: #374151;
    /* Dark grey */
    line-height: 1.7;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .service-content h3 {
        font-size: 32px;
        /* Desktop */
    }

    .service-content p {
        font-size: 17px;
        /* Desktop */
    }
}

/* 
* =========================================
* SERVICES ITEM SPACING & DIVIDER UPDATE
* =========================================
*/

/* Mobile First Spacing */
.services-list {
    gap: 60px;
    /* Vertical gap between rows */
}

.service-row {
    gap: 32px;
    /* Mobile horizontal/vertical gap set to 32px */
}

/* Tablet Spacing */
@media (min-width: 768px) {
    .service-row {
        gap: 48px;
        /* Tablet horizontal gap */
    }
}

/* Divider Hidden on Mobile/Tablet */
.service-divider {
    display: none;
}

/* Desktop Logic (1024px+) */
@media (min-width: 1024px) {

    /* Reset gap to 0 because divider margins handle it */
    .service-row {
        gap: 0;
        /* Ensure height for divider centering */
        align-items: center;
    }

    /* Reverse order logic adjustments for divider */
    /* 
       HTML: Image - Divider - Content 
       Row Normal: Image (Left) - Divider (Center) - Content (Right)
       Row Reverse: Content (Right->Left) - Divider - Image 
       Wait, row-reverse flips everything. 
       Result: Content - Divider - Image. 
       This is exactly what we want for alternating rows.
    */

    /* Divider Styling */
    .service-divider {
        display: block;
        width: 2px;
        height: 160px;
        /* Fallback */
        height: 70%;
        /* 70% of row height */
        background-color: rgba(201, 162, 77, 0.4);
        /* Gold 40% */
        margin: 0 40px;
        /* 40px margin each side = 80px total gap */
        flex-shrink: 0;
        /* Prevent divider from squishing */
        align-self: center;
    }

    /* Adjust Flex sizing to strictly match 45/55 ratio of remaining space */
    .service-image {
        width: auto;
        /* Reset fixed width */
        flex: 45;
        /* Proportional unit */
    }

    .service-content {
        width: auto;
        /* Reset fixed width */
        flex: 55;
        /* Proportional unit */
    }
}

@media (min-width: 1024px) {
    .service-content {
        position: relative;
        padding-left: 32px;
    }

    .service-content::before {
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 2px;
        height: 60%;
        background-color: rgba(201, 162, 77, 0.4);
    }
}

/* 
* =========================================
* HOW WE WORK SECTION (Timeline)
* =========================================
*/

/* ================================
   HOW WE WORK – CLEAN TIMELINE
================================ */

.how-we-work-section {
    background-color: #FFFFF0;
    padding: 80px 0 100px;
    color: var(--color-navy);
}

.how-we-work-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.how-we-work-header h2 {
    font-family: var(--font-headline);
    font-size: 44px;
    margin-bottom: 12px;
}

.how-we-work-header .subheadline {
    color: var(--color-gold);
    opacity: 1;
    display: block;
    margin: 0 auto 24px;
    max-width: 720px;
    text-align: center;
}

.intro-text-center {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
}

/* Timeline Container */
.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Center Line */
@media (min-width: 768px) {
    .timeline-container::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: rgba(201, 162, 77, 0.3);
        transform: translateX(-50%);
    }
}

/* Timeline Step */
.timeline-step {
    position: relative;
    margin-bottom: 80px;
}

/* Badge */
.step-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFFFF0;
    border: 2px solid var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    z-index: 2;
    position: relative;
}

/* Card */
.step-card {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 32px;
    max-width: 520px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Desktop Grid */
@media (min-width: 768px) {
    .timeline-step {
        display: grid;
        grid-template-columns: 1fr 80px 1fr;
        align-items: center;
    }

    .step-badge {
        grid-column: 2;
    }

    .timeline-step:nth-child(odd) .step-card {
        grid-column: 1;
        justify-self: end;
        border-right: 4px solid var(--color-gold);
        padding-right: 36px;
    }

    .timeline-step:nth-child(even) .step-card {
        grid-column: 3;
        justify-self: start;
        border-left: 4px solid var(--color-gold);
        padding-left: 36px;
    }
}

/* Card Content */
.step-card h3 {
    font-family: var(--font-headline);
    font-size: 26px;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* What You Get */
.what-you-get {
    background: rgba(201, 162, 77, 0.08);
    padding: 16px;
    border-radius: 10px;
}

.what-you-get h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.what-you-get ul {
    list-style: none;
    padding: 0;
}

.what-you-get li {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 767px) {
    .timeline-container::before {
        display: none;
    }

    .step-card {
        max-width: 100%;
        border-left: 4px solid var(--color-gold);
    }
}

/* 
* =========================================
* TESTIMONIALS SECTION (Marquee)
* =========================================
*/

.testimonials-section {
    background-color: #FFF9F0;
    /* Light cream/ivory */
    padding: 80px 0;
    overflow: hidden;
    /* Hide horizontal scroll */
    color: var(--color-navy);
}

/* Header */
.testimonials-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.testimonials-header h2 {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.testimonials-header .subheadline {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #374151;
    /* Dark grey */
    margin: 0;
}

@media (min-width: 1024px) {
    .testimonials-header h2 {
        font-size: 40px;
    }

    .testimonials-header .subheadline {
        font-size: 18px;
    }
}

/* Marquee Container */
.testimonials-container {
    width: 100%;
    position: relative;
    padding: 20px 0;
    /* Space for shadows */
    /* Remove container constraints to let it flow full width */
}

/* Moving Track */
.testimonials-track {
    display: flex;
    gap: 24px;
    /* Calculate width based on items: 10 items * (min-width + gap) approx */
    /* But simpler to just flex and let it flow */
    width: max-content;

    /* Animation */
    animation: scroll 40s linear infinite;
}

/* Scroll Keyframes */
/* Move from 0 to -50% because we have 2 sets of identical content */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
        /* -50% is half (one set), -12px is half gap */
    }
}

/* Pause on Hover */
.testimonials-container:hover .testimonials-track {
    animation-play-state: paused;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(201, 162, 77, 0.25);
    /* Subtle Gold Border */
    border-radius: 16px;
    padding: 24px;
    min-width: 360px;
    max-width: 360px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Ensure not shrunk */
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.15);
    /* Lift with gold tint */
}

/* Stars */
.testimonial-card .stars {
    color: var(--color-gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

/* Quote */
.testimonial-card .quote {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: #4B5563;
    /* Grey text */
    margin: 0 0 24px 0;
    flex-grow: 1;
    /* Push info to bottom */
}

/* Client Info */
.client-info {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Light separation */
    padding-top: 16px;
}

.client-info strong {
    display: block;
    font-family: var(--font-headline);
    /* Brand consistency */
    font-weight: 700;
    font-size: 16px;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.client-info .project-details {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6B7280;
    /* Light grey */
}

.cta-section {
    background-color: #FFFFF0;
    /* Ivory */
    padding: 80px 20px;
}

.cta-container {
    max-width: 520px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(14, 27, 42, 0.12);
    text-align: center;
}

.cta-container h2 {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.cta-container p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-form input {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #D1D5DB;
    outline: none;
    transition: all 0.2s ease;
}

.cta-form input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.15);
}

.cta-form button {
    background-color: var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 10px;
}

.cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.4);
}

/* Thank You State */
.thank-you-box {
    display: none;
    margin-top: 32px;
    text-align: center;
}

.cta-container.submitted .cta-form {
    display: none;
}

.cta-container.submitted .thank-you-box {
    display: block;
}

.thank-you-box h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.thank-you-box p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #374151;
    margin-bottom: 20px;
}

/* Call Button */
.call-btn {
    display: inline-block;
    padding: 14px 24px;
    background-color: var(--color-navy);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.call-btn:hover {
    background-color: #0b1623;
    transform: translateY(-2px);
}

.cta-call-link {
    display: block;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
    text-align: center;
}

.cta-call-link:hover {
    text-decoration: underline;
}

.hero-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.hero-call-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 162, 77, 0.35);
}

html {
    scroll-behavior: smooth;
}

/* CTA Call Button – Hero Consistent */
.cta-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 28px;
    border-radius: 12px;
    border: 2px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover = premium feedback */
.cta-call-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 162, 77, 0.35);
}

/* =========================
   HEADER (IVORY PREMIUM)
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FEF9EF;
    border-bottom: 1px solid rgba(14, 27, 42, 0.08);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo img {
    height: 36px;
    width: auto;
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-navy);
    text-decoration: none;
    position: relative;
}

/* Subtle hover underline */
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

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

/* Header CTA */
.header-cta {
    padding: 8px 18px;
    border-radius: 10px;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.header-cta:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    box-shadow: 0 8px 20px rgba(201, 162, 77, 0.35);
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}

/* =========================
   MOBILE CHANGES 
========================= */
/* 
* =========================================
* MOBILE HEADER & NAVIGATION
* =========================================
*/

/* Default State (Desktop): Hide Mobile Components */
.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {

    /* Header Adjustments */
    .site-header {
        position: sticky;
        top: 0;
        height: 60px;
        /* Compact height */
        padding: 0;
        /* Ensure z-index is high enough for overlay */
        z-index: 1000;
    }

    .header-container {
        height: 100%;
        padding: 0 20px;
    }

    /* Logo Sizing */
    .logo img {
        height: 28px;
        /* Smaller mobile logo */
    }

    /* Hide Desktop Nav & CTA */
    .main-nav,
    .header-cta {
        display: none;
    }

    /* Hamburger Button */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1100;
        /* Above menu */
        margin-left: auto;
        /* Push to right */
    }

    .hamburger-box {
        width: 24px;
        height: 20px;
        position: relative;
    }

    .hamburger-inner {
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: var(--color-navy);
        border-radius: 2px;
        top: 50%;
        transform: translateY(-50%);
        transition: background-color 0s 0.2s;
        /* Hide middle bar delay */
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: '';
        display: block;
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: var(--color-navy);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

    .hamburger-inner::before {
        top: -8px;
    }

    .hamburger-inner::after {
        bottom: -8px;
    }

    /* Active State (X Icon) */
    .site-header.nav-open .hamburger-inner {
        background-color: transparent;
        /* Hide middle */
    }

    .site-header.nav-open .hamburger-inner::before {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.nav-open .hamburger-inner::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile Menu Drawer */
    .mobile-menu {
        display: flex;
        /* But hidden via transform */
        flex-direction: column;
        position: absolute;
        top: 60px;
        /* Below header */
        left: 0;
        width: 100%;
        background-color: #FEF9EF;
        /* Ivory */
        border-bottom: 1px solid rgba(14, 27, 42, 0.08);
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

        /* Animation State: Closed */
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        visibility: hidden;
        /* Accessibility hide */
    }

    .site-header.nav-open .mobile-menu {
        transform: translateY(0);
        visibility: visible;
    }

    /* Links */
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .mobile-nav-links a {
        font-family: var(--font-headline);
        font-size: 20px;
        font-weight: 600;
        color: var(--color-navy);
        padding: 16px 0;
        width: 100%;
        text-align: center;
        text-decoration: none;
        border-bottom: 1px solid rgba(14, 27, 42, 0.03);
    }

    .mobile-nav-links a:last-child {
        border-bottom: none;
    }

    /* Mobile CTA */
    .mobile-menu-footer {
        padding: 24px 20px 10px 20px;
        display: flex;
        justify-content: center;
    }

    .mobile-cta-btn {
        width: 100%;
        max-width: 300px;
        background-color: var(--color-gold);
        color: var(--color-navy);
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 16px;
        padding: 14px;
        border-radius: 10px;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
    }
}

/* 
* =========================================
* MOBILE HEADER FIX (Sticky & No Overlap)
* =========================================
*/

@media (max-width: 768px) {

    /* Enforce Sticky Positioning */
    .site-header {
        position: sticky;
        top: 0;
        height: 60px;
        /* Explicit compact height */
        padding: 0;
        z-index: 1000;
        width: 100%;
        background-color: #FEF9EF;
        /* Ensure opaque background */
        border-bottom: 1px solid rgba(14, 27, 42, 0.08);
    }

    /* Ensure container fits properly */
    .header-container {
        height: 100%;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo Sizing for Mobile */
    .logo img {
        height: 28px;
        width: auto;
    }

    /* Ensure Hamburger is visible and right-aligned */
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        /* Push to right */
    }

    /* Hide Desktop Elements explicitly */
    .main-nav,
    .header-cta {
        display: none;
    }

    /* Mobile Menu Positioning */
    .mobile-menu {
        top: 60px;
        /* Exactly below the 60px header */
    }
}

/* 
* =========================================
* FINAL MOBILE HEADER FIX (Sticky & Layout)
* =========================================
*/

@media (max-width: 768px) {

    /* 1. Header Behavior: Sticky + Opaque */
    .site-header {
        position: sticky;
        top: 0;
        height: 60px;
        background-color: #FEF9EF;
        border-bottom: 1px solid rgba(14, 27, 42, 0.08);
        /* Minimal border */
        z-index: 1000;
        width: 100%;
        padding: 0;
    }

    /* 2. Header Layout: Flex Container */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 0 20px;
        width: 100%;
    }

    /* Logo stays left */
    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 28px;
        width: auto;
    }

    /* Hamburger stays right (Flex logic handles this with space-between) */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        /* Reset margins */
        order: 2;
        /* Ensure it's last */
    }

    /* 3. Hero Overlap Prevention */
    /* Since sticky takes space, we don't need padding-top on body. */
    /* However, earlier user had negative margins or fixed positioning on hero. */
    /* Let's reset hero spacing to be safe. */

    .hero-section {
        margin-top: 0;
        padding-top: 80px;
        /* Breathing room below sticky header */
    }

    /* 4. Menu Drawer Positioning */
    .mobile-menu {
        top: 60px;
        /* Exact header height */
        background-color: #FEF9EF;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
        /* Below header */
    }
}

/* 
* =========================================
* FOOTER SECTION (Premium Navy)
* =========================================
*/

.site-footer {
    background-color: var(--color-navy);
    color: #E5E7EB;
    /* Light grey text */
    padding-top: 60px;
    font-size: 15px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Desktop Ratio */
    gap: 48px;
    padding-bottom: 40px;
}

/* Column General */
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* About Column */
.about-col .footer-logo img {
    max-width: 160px;
    margin-bottom: 16px;
    /* Invert logo or ensure it works on dark bg (assuming logo has transp bg) */
    /* If logo is black text, we might need a white version or filter */
    filter: brightness(0) invert(1);
    /* Force white logo if needed */
}

.about-col .tagline {
    font-family: var(--font-headline);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-col .company-desc {
    line-height: 1.6;
    color: #9CA3AF;
    max-width: 320px;
}

/* Links Lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(2px);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #D1D5DB;
}

.contact-info i {
    color: var(--color-gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--color-gold);
}

/* Bottom Bar */
.footer-bottom {
    background-color: #0A1219;
    /* Darker Navy */
    padding: 24px 0;
    border-top: 1px solid rgba(201, 162, 77, 0.15);
    margin-top: 20px;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #9CA3AF;
}

.legal-links {
    display: flex;
    gap: 16px;
}

.legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 Col Grid */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack */
        gap: 40px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 0 24px;
    }

    .legal-links {
        justify-content: center;
    }
}

/* ================================
   FOOTER LOGO FIX
================================ */

/* === FORCE FOOTER LOGO VISIBILITY === */
.site-footer .footer-logo,
.site-footer .footer-logo img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.site-footer .footer-logo img {
    width: 180px !important;
    height: auto !important;
    max-width: 100% !important;
}

.about-col {
    min-height: 1px;
    overflow: visible;
}

/* ================================
   MOBILE-ONLY HEADING TEXT CHANGE
================================ */
@media (max-width: 767px) {
    .sets-us-apart-heading h2 {
        font-size: 0;
        /* hide original text */
        position: relative;
    }

    .sets-us-apart-heading h2::after {
        content: "Topclass";
        font-size: 28px;
        /* match mobile heading size */
        font-family: var(--font-headline);
        font-weight: 700;
        color: var(--color-white);
        display: block;
        line-height: 1.2;
    }
}