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

:root {
    --royal-blue: #003366;
    --royal-blue-light: #004080;
    --royal-blue-dark: #002244;
    --copper-gold: #b87333;
    --copper-gold-light: #d4a574;
    --copper-gold-dark: #8b5a2b;
    --primary-color: #000000;
    --secondary-color: #b87333;
    --accent-color: #f8f9fa;
    --text-color: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --max-width: 1400px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 1.33rem;
    /* 1.5x smaller */
}

/* 1.5x smaller heading sizes */
h1,
.h1 {
    font-size: 2.67rem !important;
}

h2,
.h2 {
    font-size: 2rem !important;
}

h3,
.h3 {
    font-size: 1.67rem !important;
}

h4,
.h4 {
    font-size: 1.33rem !important;
}

h5,
.h5 {
    font-size: 1.17rem !important;
}

h6,
.h6 {
    font-size: 1rem !important;
}

p {
    font-size: 1.33rem !important;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 40;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    right: 0;
}

.header.scrolled {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo img,
.header.transparent.scrolled .logo img {
    animation: logo-glow-blue 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8)) drop-shadow(0 0 20px rgba(0, 150, 255, 0.6)) drop-shadow(0 0 30px rgba(64, 224, 208, 0.4));
}

.header.transparent {
    background: transparent;
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: none;
}

.header.transparent.scrolled {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

.header-content .logo {
    flex-shrink: 0;
    margin-left: 0;
}


.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
    padding: 0.4rem 0.4rem 0.4rem 0;
    margin-left: 0;
}

.logo img {
    height: 116px;
    /* 15% smaller than previous (136px * 0.85) */
    width: 405px;
    /* 15% smaller than previous (476px * 0.85) */
    object-fit: contain;
    transition: all 0.3s ease;
    animation: logo-glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Golden glow for transparent header (on hero, not scrolled) */
.header.transparent:not(.scrolled) .logo img {
    animation: logo-glow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

/* Neon blue glow for scrolled header */
.header.scrolled .logo img,
.header.transparent.scrolled .logo img {
    height: 101px;
    /* 15% smaller than previous (119px * 0.85) */
    width: 361px;
    /* 15% smaller than previous (425px * 0.85) */
    animation: logo-glow-blue 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8)) drop-shadow(0 0 20px rgba(0, 150, 255, 0.6)) drop-shadow(0 0 30px rgba(64, 224, 208, 0.4));
}

.logo-text {
    font-size: 2.41rem;
    /* 15% smaller than previous (2.839rem * 0.85) */
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
    animation: logo-text-glow 2s ease-in-out infinite;
}

.logo-phone {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.3rem;
    white-space: nowrap;
}

.header.transparent .logo-phone {
    color: var(--white);
}

.header.scrolled .logo-phone,
.header.transparent.scrolled .logo-phone {
    color: var(--text-color);
}

/* Golden glow for transparent header (on hero, not scrolled) */
.header.transparent:not(.scrolled) .logo-text {
    color: var(--white);
    animation: logo-text-glow 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
}

/* Neon blue glow for scrolled header (overrides transparent when scrolled) */
.header.scrolled .logo-text,
.header.transparent.scrolled .logo-text {
    color: var(--white);
    animation: logo-text-glow-blue 2s ease-in-out infinite;
    text-shadow:
        -1px -1px 0 var(--primary-color),
        1px -1px 0 var(--primary-color),
        -1px 1px 0 var(--primary-color),
        1px 1px 0 var(--primary-color),
        0 0 10px rgba(0, 191, 255, 0.8),
        0 0 20px rgba(0, 150, 255, 0.6),
        0 0 30px rgba(64, 224, 208, 0.4);
    -webkit-text-stroke: 1px var(--primary-color);
}

.logo-name {
    font-size: 2rem;
    /* 1.5x smaller */
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 1.2;
    display: none;
    /* Hide text, show logo image instead */
    text-transform: uppercase;
    font-family: 'Poppins', serif;
}

.header.transparent .logo-name {
    color: var(--white);
}

.header.scrolled .logo-name,
.header.transparent.scrolled .logo-name {
    color: var(--primary-color);
}

.brokerage {
    display: none;
    /* Hide text, logo image replaces it */
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.header.transparent .brokerage {
    color: rgba(255, 255, 255, 0.7);
}

.header.scrolled .brokerage,
.header.transparent.scrolled .brokerage {
    color: var(--text-light);
}

/* Logo - single image for all backgrounds */
.logo img {
    display: block;
}

/* Responsive scaling for large screens (27-30 inch monitors) */
@media (min-width: 1920px) {
    .logo img {
        height: 100px;
        width: 350px;
    }
    
    .header.scrolled .logo img,
    .header.transparent.scrolled .logo img {
        height: 88px;
        width: 312px;
    }
    
    .logo-text {
        font-size: 2.1rem;
    }
    
    .nav a {
        font-size: 1.3rem;
    }
    
    .nav-connect {
        font-size: 1.3rem;
        padding: 0.35rem 0.9rem;
    }
    
    .header-content {
        padding: 0 2rem;
    }
}

@media (min-width: 2560px) {
    .logo img {
        height: 95px;
        width: 332px;
    }
    
    .header.scrolled .logo img,
    .header.transparent.scrolled .logo img {
        height: 84px;
        width: 296px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .nav a {
        font-size: 1.2rem;
    }
    
    .nav-connect {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }
    
    .header-content {
        padding: 0 2.5rem;
    }
}

/* Responsive logo positioning */
@media (max-width: 1200px) {
    .header-content .logo {
        margin-left: 0;
    }
}

@media (max-width: 992px) {
    .header-content .logo {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .header {
        top: 0;
        background: var(--white) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin: 0;
        width: 100%;
        position: fixed;
        z-index: 40;
    }

    .header.scrolled {
        background: var(--white) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin: 0;
        width: 100%;
        top: 0;
        padding: 2rem 0;
        /* Significantly increased padding to prevent overlap */
    }

    .header.transparent {
        background: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        width: 100%;
        padding: 1.5rem 0;
    }

    .header.transparent.scrolled {
        background: var(--white) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0;
        margin: 0;
        width: 100%;
        top: 0;
        padding: 2rem 0;
        /* Significantly increased padding to prevent overlap */
    }

    /* Blue glow on mobile for all pages */
    .header .logo img {
        animation: logo-glow-blue 2s ease-in-out infinite;
        filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.8)) drop-shadow(0 0 20px rgba(0, 150, 255, 0.6)) drop-shadow(0 0 30px rgba(64, 224, 208, 0.4));
    }

    .header .logo-text {
        animation: logo-text-glow-blue 2s ease-in-out infinite;
        text-shadow: 0 0 10px rgba(0, 191, 255, 0.8), 0 0 20px rgba(0, 150, 255, 0.6), 0 0 30px rgba(64, 224, 208, 0.4);
    }

    /* Golden glow only on hero section when transparent and not scrolled */
    .header.transparent:not(.scrolled) .logo img {
        animation: logo-glow 2s ease-in-out infinite;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }

    .header.transparent:not(.scrolled) .logo-text {
        animation: logo-text-glow 2s ease-in-out infinite;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
        color: var(--white) !important;
    }

    .header-content {
        padding: 0.75rem 1rem;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }

    .header.scrolled .header-content,
    .header.transparent.scrolled .header-content {
        padding: 2rem 1.5rem;
        /* Further increased padding when scrolled to prevent name and phone overlap */
        min-height: 160px;
        /* Increased minimum height to accommodate logo, name, and phone number */
    }

    .header-content .logo {
        margin-left: 0;
        position: relative;
        flex: 1;
        align-items: flex-start;
        z-index: 1;
    }

    .mobile-menu-toggle {
        position: relative;
        right: 0;
        z-index: 50;
        flex-shrink: 0;
        order: 2;
    }

    .mobile-menu-toggle span {
        background: var(--primary-color);
    }

    .header.transparent .mobile-menu-toggle span {
        background: var(--white);
    }

    .header.scrolled .mobile-menu-toggle span,
    .header.transparent.scrolled .mobile-menu-toggle span {
        background: var(--primary-color);
    }

    .logo {
        align-items: center !important;
        padding-top: 0;
        gap: 0.5rem;
        /* Spacing between logo image and text */
    }

    .header.scrolled .logo,
    .header.transparent.scrolled .logo {
        gap: 0.8rem;
        /* Further increased gap when scrolled to prevent overlap */
    }

    .logo a {
        align-items: center !important;
    }

    /* Smaller logo when transparent (on hero) */
    .header.transparent:not(.scrolled) .logo img {
        height: 45px;
        width: 157.5px;
        transition: all 0.3s ease;
    }

    /* Larger logo when scrolled (white background) */
    .logo img {
        height: 52.5px;
        /* 30% smaller base size */
        width: 183.75px;
        /* 30% smaller base size */
        transition: all 0.3s ease;
    }

    .header.scrolled .logo img,
    .header.transparent.scrolled .logo img {
        height: 60px;
        /* Larger when scrolled to match web view behavior */
        width: 210px;
        /* Larger when scrolled to match web view behavior */
    }

    /* Smaller text when transparent (on hero) */
    .header.transparent:not(.scrolled) .logo-text {
        font-size: 0.9rem;
        text-align: center;
        color: var(--white) !important;
        margin-top: 0.25rem;
        transition: all 0.3s ease;
    }

    .logo-text {
        font-size: 1.05rem;
        /* 30% smaller base size */
        text-align: center;
        color: var(--primary-color) !important;
        margin-top: 0.25rem;
        transition: all 0.3s ease;
    }

    .header.scrolled .logo-text,
    .header.transparent.scrolled .logo-text {
        font-size: 1.2rem;
        /* Larger when scrolled to match web view behavior */
        margin-top: 0.8rem;
        /* Further increased margin to prevent overlap with logo */
        margin-bottom: 0.3rem;
        /* Added bottom margin to create space before phone number */
    }

    /* Smaller phone when transparent (on hero) */
    .header.transparent:not(.scrolled) .logo-phone {
        font-size: 0.4rem;
        text-align: center;
        color: var(--white) !important;
        margin-top: 0.15rem;
        width: 100%;
        display: block;
        cursor: pointer;
        text-decoration: underline;
        transition: all 0.3s ease;
    }

    .logo-phone {
        font-size: 0.45rem;
        /* 25% smaller base size */
        text-align: center;
        color: var(--text-color) !important;
        margin-top: 0.15rem;
        width: 100%;
        display: block;
        cursor: pointer;
        text-decoration: underline;
        transition: all 0.3s ease;
    }

    .header.scrolled .logo-phone,
    .header.transparent.scrolled .logo-phone {
        font-size: 0.55rem;
        /* Larger when scrolled to match web view behavior */
        margin-top: 0.6rem;
        /* Further increased margin to prevent overlap with name */
        padding-bottom: 0.5rem;
        /* Added padding at bottom to ensure full visibility */
    }

    .logo-phone:hover {
        opacity: 0.8;
    }

    .logo-phone a {
        color: inherit;
        text-decoration: inherit;
    }

    .header.scrolled .logo-text,
    .header.transparent.scrolled .logo-text {
        color: var(--white) !important;
        animation: logo-text-glow-blue 2s ease-in-out infinite;
        text-shadow:
            -1px -1px 0 var(--primary-color),
            1px -1px 0 var(--primary-color),
            -1px 1px 0 var(--primary-color),
            1px 1px 0 var(--primary-color),
            0 0 10px rgba(0, 191, 255, 0.8),
            0 0 20px rgba(0, 150, 255, 0.6),
            0 0 30px rgba(64, 224, 208, 0.4);
        -webkit-text-stroke: 1px var(--primary-color);
    }

    .header.scrolled .logo-phone,
    .header.transparent.scrolled .logo-phone {
        color: var(--text-color) !important;
    }

    /* White text only on hero when transparent */
    .header.transparent:not(.scrolled) .logo-text {
        color: var(--white) !important;
    }

    .header.transparent:not(.scrolled) .logo-phone {
        color: var(--white) !important;
    }

    .hero-title-large {
        font-size: 8rem;
    }

    .page-hero {
        margin-top: 180px;
        /* Account for header */
    }

    .premium-hero {
        padding-top: 0;
        min-height: 100vh;
    }

    .content-section,
    .intro-hero,
    .animated-stats-section {
        margin-top: 2rem;
    }
}

@media (max-width: 600px) {
    .header {
        top: 0;
        background: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        width: 100%;
    }


    .header.scrolled,
    .header.transparent.scrolled {
        background: var(--white) !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-radius: 0;
        margin: 0;
        width: 100%;
        top: 0;
        padding: 0.5rem 0 !important;
        min-height: auto !important;
        height: auto !important;
        transition: all 0.4s ease-in-out;
    }

    .header-content {
        padding: 0.6rem 0.75rem;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
    }

    .header.scrolled .header-content,
    .header.transparent.scrolled .header-content {
        padding: 0.5rem 1rem !important;
        min-height: auto !important;
        height: auto !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* King Style Grid Layout for Scrolled State */
    .header.scrolled .logo,
    .header.transparent.scrolled .logo {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 2px;
        align-items: center;
        justify-items: start;
        width: auto;
        margin-left: 0;
    }

    /* Unwrap the anchor so children fit in grid */
    .header.scrolled .logo>a:first-child,
    .header.transparent.scrolled .logo>a:first-child {
        display: contents !important;
    }

    /* Scrolled Logo Image */
    /* Scrolled Logo Image */
    .header.scrolled .logo img,
    .header.transparent.scrolled .logo img {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 68px !important;
        height: auto !important;
        margin: 0 !important;
        transition: width 0.4s ease-in-out;
    }

    /* Scrolled Name */
    .header.scrolled .logo-text,
    .header.transparent.scrolled .logo-text {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.1rem !important;
        text-align: left !important;
        width: auto !important;
        margin: 0 !important;
        line-height: 1.1;
        color: var(--royal-blue) !important;
        text-shadow: none !important;
        -webkit-text-stroke: 0 !important;
        animation: none !important;
    }

    /* Scrolled Phone */
    .header.scrolled .logo-phone,
    .header.transparent.scrolled .logo-phone {
        grid-column: 2;
        grid-row: 2;
        font-size: 0.75rem !important;
        text-align: left !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        color: var(--text-color) !important;
        text-decoration: none !important;
    }

    .mobile-menu-toggle {
        position: relative;
        right: 0;
        z-index: 50;
        flex-shrink: 0;
        order: 2;
        margin-left: auto;
    }

    .mobile-menu-toggle span {
        background: var(--primary-color);
    }

    .header.transparent .mobile-menu-toggle span {
        background: var(--white);
    }

    .header.scrolled .mobile-menu-toggle span,
    .header.transparent.scrolled .mobile-menu-toggle span {
        background: var(--primary-color);
    }

    .header:not(.scrolled) .logo {
        position: absolute !important;
        left: 50% !important;
        top: 5vh !important;
        transform: translateX(-50%) !important;
        width: max-content !important;
        align-items: center !important;
        padding-top: 0;
        gap: 0.5rem;
        z-index: 10;
        /* Spacing between logo image and text */
    }

    /* Legacy spacing removed */

    .logo a {
        align-items: center !important;
    }

    /* Smaller logo when transparent (on hero) */
    .header.transparent:not(.scrolled) .logo img {
        height: auto !important;
        width: 165px !important;
        transition: all 0.3s ease;
    }

    .logo img {
        height: auto !important;
        width: 190px !important;
        transition: all 0.3s ease;
    }

    /* Legacy image size removed */

    /* Smaller text when transparent (on hero) */
    .header.transparent:not(.scrolled) .logo-text {
        font-size: 1rem !important;
        text-align: center !important;
        width: 100% !important;
        color: var(--white) !important;
        margin-top: 0.2rem !important;
        letter-spacing: 0.1em !important;
        transition: all 0.3s ease;
    }

    .logo-text {
        font-size: 1.14rem !important;
        text-align: center !important;
        width: 100% !important;
        color: var(--primary-color) !important;
        margin-top: 0.2rem !important;
        letter-spacing: 0.1em !important;
        transition: all 0.3s ease;
    }

    /* Legacy text style removed */

    /* Smaller phone when transparent (on hero) */
    .header.transparent:not(.scrolled) .logo-phone {
        font-size: 0.6rem !important;
        text-align: center;
        color: var(--white) !important;
        margin-top: 0.1rem;
        width: 100%;
        display: block;
        cursor: pointer;
        text-decoration: underline;
        transition: all 0.3s ease;
    }

    .logo-phone {
        font-size: 0.67rem !important;
        /* 50% bigger + 20% base size */
        text-align: center;
        color: var(--text-color) !important;
        margin-top: 0.1rem;
        width: 100%;
        display: block;
        cursor: pointer;
        text-decoration: underline;
        transition: all 0.3s ease;
    }

    /* Legacy phone style removed */

    .logo-phone:hover {
        opacity: 0.8;
    }

    .logo-phone a {
        color: inherit;
        text-decoration: inherit;
    }

    /* Legacy text glow removed */

    /* Legacy phone color removed */

    /* White text only on hero when transparent */
    .header.transparent:not(.scrolled) .logo-text {
        color: var(--white) !important;
    }

    .header.transparent:not(.scrolled) .logo-phone {
        color: var(--white) !important;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .hero-content-centered {
        padding: 0 1rem;
        width: 100%;
    }

    .page-hero {
        margin-top: 140px;
        /* Account for header */
    }

    .premium-hero {
        padding-top: 0;
        min-height: 100vh;
    }

    .content-section,
    .intro-hero,
    .animated-stats-section {
        margin-top: 1.5rem;
    }
}



.nav ul {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    /* 2x bigger */
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.header.transparent .nav a {
    color: var(--white);
}

.header.transparent .nav a:hover {
    color: var(--copper-gold);
}

.header.scrolled .nav a,
.header.transparent.scrolled .nav a {
    color: var(--text-color);
}

.header.scrolled .nav a:hover,
.header.transparent.scrolled .nav a:hover {
    color: var(--copper-gold);
}

.nav-connect {
    padding: 0.4rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.5rem;
    /* 2x bigger */
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.header.transparent .nav-connect {
    border-color: var(--white);
    color: var(--white);
}

.header.transparent .nav-connect:hover {
    background: var(--white);
    color: var(--primary-color);
}

.header.scrolled .nav-connect,
.header.transparent.scrolled .nav-connect {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header.scrolled .nav-connect:hover,
.header.transparent.scrolled .nav-connect:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nav a:hover,
.nav a.active {
    color: var(--royal-blue);
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: rgba(0, 0, 0, 0.06);
    color: var(--text-color);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    z-index: 100;
    position: relative;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.4rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: 1.9rem;
    /* Doubled */
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(0, 51, 102, 0.3);
    border: none;
}

.btn-primary:hover {
    background: var(--royal-blue-light);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 51, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-copper {
    background: var(--copper-gold);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(184, 115, 51, 0.3);
}

.btn-copper:hover {
    background: var(--copper-gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(184, 115, 51, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

/* Fix white gap on sub-pages for mobile */
.page-hero {
    margin-top: 85px !important;
    padding-top: 1rem !important;
}

/* Email Collection Modal */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: opacity 0.3s ease-out;
}

.email-modal.active {
    display: flex;
    opacity: 1;
}

.email-modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: modalFadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

@keyframes modalFadeInUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.email-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.email-modal-close:hover {
    color: var(--royal-blue);
}

.email-modal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-family: 'Poppins', serif;
    text-align: center;
}

.email-modal-content>p {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
    font-size: 0.63rem;
    /* 1.5x smaller */
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-form input {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 51, 102, 0.2);
    border-radius: 8px;
    font-size: 1.33rem;
    /* 1.5x smaller */
    transition: all 0.3s ease;
    width: 100%;
    background: var(--white);
}

.email-form input:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.email-form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.95rem;
}

.email-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.email-modal-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.58rem;
    /* 1.5x smaller */
    transition: all 0.3s ease;
}

.email-modal-buttons .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.email-modal-buttons .btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.email-modal-buttons .btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: none;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 1.5rem;
    /* Doubled */
    padding: 0.5rem;
}

.email-modal-buttons .btn-secondary:hover {
    color: var(--primary-color);
}

/* Premium Hero Section */
.premium-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: calc(100% + 30px);
    z-index: 0;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: -10%;
    left: 0;
}

.hero-bg-image-pan {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?q=80&w=2613&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
    animation: slowPan 30s infinite alternate linear;
}

@keyframes slowPan {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2) translate(-2%, -2%);
    }
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.premium-hero .container {
    position: relative;
    z-index: 3;
}

.hero-content-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    pointer-events: none;
    box-sizing: border-box;
}

.hero-content-centered * {
    pointer-events: auto;
}

.hero-label {
    font-size: 1.5rem;
    /* Doubled */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    color: var(--copper-gold);
    animation: fadeIn 1s ease-out forwards;
    opacity: 1;
    visibility: visible;
}

.hero-title-large {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto 2rem;
    font-family: 'Poppins', serif;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1;
    visibility: visible;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    display: block;
    color: var(--white);
}

.hero-cta-buttons-centered {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out forwards;
    opacity: 1;
    visibility: visible;
}

.btn-hero-primary {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    /* 1.5x smaller */
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    background: #e5e5e5;
}

.btn-hero-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    /* 1.5x smaller */
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
    text-align: center;
    cursor: pointer;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 768px) {
    .hero-title-large {
        font-size: 4.5rem;
    }

    .hero-cta-buttons-centered {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-title-large {
        font-size: 5.5rem;
    }
}

@media (min-width: 1440px) {
    .hero-title-large {
        font-size: 6rem;
    }
}

.premium-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 90px);
    padding: 6rem 0 4rem;
    margin-top: 90px;
}

.hero-logo {
    color: var(--white);
}

.hero-logo h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Poppins', serif;
}

.hero-brokerage {
    font-size: 1.33rem;
    /* 1.5x smaller */
    color: var(--copper-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-text-content {
    color: var(--white);
}

.hero-subtitle {
    font-size: 0.6rem;
    /* 1.5x smaller */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--copper-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-main-title {
    font-size: 2.33rem;
    /* 1.5x smaller */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: 0.02em;
    font-family: 'Poppins', serif;
    text-transform: uppercase;
}

.hero-main-title .italic {
    font-style: italic;
    font-weight: 300;
    text-transform: none;
}

.hero-description {
    font-size: 0.73rem;
    /* 1.5x smaller */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Section (old - keeping for compatibility) */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.02) 0%, rgba(184, 115, 51, 0.02) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--royal-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--copper-gold);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--copper-gold);
    color: var(--white);
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-body {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-item .icon {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 1rem;
}

.image-placeholder {
    background: var(--accent-color);
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--royal-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 3px solid var(--copper-gold);
    object-fit: contain;
    max-height: 700px;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 51, 102, 0.25);
}

.hero-badge {
    position: absolute;
    bottom: 18px;
    left: -10px;
    background-color: var(--royal-blue);
    color: var(--white);
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 1.5rem;
    /* Doubled */
    box-shadow: 0 10px 22px rgba(0, 51, 102, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge span {
    font-weight: 600;
    display: block;
}

.hero-badge small {
    font-size: 0.65rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.1rem;
}

/* Animated Stats Section */
.animated-stats-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.stats-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-divider {
    width: 96px;
    height: 1px;
    background: var(--primary-color);
    margin: 1.5rem auto 2rem;
}

.stats-description {
    font-size: 1.33rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .stats-description {
        font-size: 1.5rem;
    }
}

.stats-label {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-light);
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .stats-label {
        font-size: 4.5rem;
    }
}

@media (min-width: 1440px) {
    .stats-label {
        font-size: 5rem;
    }
}

.stats-title {
    font-size: 6rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: 'Poppins', serif;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .stats-title {
        font-size: 7rem;
    }
}

@media (min-width: 1440px) {
    .stats-title {
        font-size: 8rem;
    }
}

.stats-title .italic {
    font-style: italic;
    color: var(--copper-gold);
    font-weight: 400;
}

.animated-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 3rem;
}

@media (min-width: 768px) {
    .animated-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.animated-stat-card {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.animated-stat-card:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    font-family: 'Poppins', serif;
}

.animated-stat-card .stat-label {
    font-size: 0.58rem;
    /* 1.5x smaller */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper-gold);
    margin-bottom: 0.25rem;
}

.animated-stat-card .stat-sublabel {
    font-size: 1.5rem;
    /* Doubled */
    color: rgba(0, 0, 0, 0.4);
    font-weight: 300;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

/* Stats Section (old - keeping for compatibility) */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 51, 102, 0.1);
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.stats-section-title {
    font-size: 1.8rem;
    text-align: center;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stats-section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.33rem;
    /* 1.5x smaller */
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card-large {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.03) 0%, rgba(184, 115, 51, 0.03) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 51, 102, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
    border-color: var(--copper-gold);
}

.stat-card-large h3 {
    font-size: 1.67rem;
    /* 1.5x smaller */
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card-large p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Why Section */
.why-section {
    padding: 4rem 0;
    background: var(--white);
}

.why-section h2,
.who-section h2,
.testimonials-teaser h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--royal-blue);
    font-weight: 700;
}

.testimonials-teaser h2 {
    color: var(--white);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 18px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.08);
    border: 2px solid rgba(0, 51, 102, 0.05);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
    border-color: var(--copper-gold);
}

.feature-card h3 {
    color: var(--royal-blue);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Who Section */
/* Premium Services Section - Dark Theme */
.premium-services-section-dark {
    background: var(--primary-color);
    color: var(--white);
}

.services-header {
    padding: 5rem 0 2rem;
    text-align: center;
}

.section-label-dark {
    font-size: 1.5rem;
    /* Doubled */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.section-title-dark {
    font-size: 1.67rem;
    /* 1.5x smaller */
    font-weight: 700;
    font-family: 'Poppins', serif;
    text-transform: uppercase;
    color: var(--white);
}

.premium-services-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.service-card-dark {
    position: relative;
    height: 24rem;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.service-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease-out;
}

.service-card-dark:hover .service-bg-image {
    transform: scale(1.1);
}

.service-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s;
}

.service-card-dark:hover .service-overlay-dark {
    background: rgba(0, 0, 0, 0.5);
}

.service-content-dark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 2;
}

.service-arrow {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.5s;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-dark:hover .service-arrow {
    opacity: 1;
    transform: translateY(0);
}

.service-content-dark h3 {
    font-size: 1.5rem;
    font-family: 'Poppins', serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.5rem;
    transition: all 0.5s;
}

.service-card-dark:hover .service-content-dark h3 {
    border-bottom-color: var(--white);
}

@media (max-width: 1024px) {
    .premium-services-grid-dark {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-services-grid-dark {
        grid-template-columns: 1fr;
    }

    .section-title-dark {
        font-size: 2rem;
    }
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper-gold);
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--royal-blue);
    margin-bottom: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.premium-service-card {
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.premium-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 51, 102, 0.25);
}

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

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.premium-service-card:hover .service-image-wrapper img {
    transform: scale(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 51, 102, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.premium-service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: var(--white);
    transition: transform 0.4s ease;
}

.premium-service-card:hover .service-content {
    transform: translateY(-5px);
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.premium-service-card:hover .service-content h3 {
    color: var(--copper-gold);
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Services Section (old - keeping for compatibility) */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.1) 0%, rgba(184, 115, 51, 0.1) 100%);
}

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

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

.service-card h3 {
    padding: 1.5rem;
    text-align: center;
    color: var(--royal-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.who-section {
    padding: 4rem 0;
    background: var(--accent-color);
}


.personas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.persona-card {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 18px;
    border: 2px solid rgba(0, 51, 102, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.08);
}

.persona-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
    border-color: var(--copper-gold);
}

.persona-card h3 {
    color: var(--royal-blue);
}

.persona-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Property Valuation Section */
.valuation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(184, 115, 51, 0.05) 100%);
    border-top: 1px solid rgba(0, 51, 102, 0.1);
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
}

.valuation-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.valuation-content h2 {
    font-size: 1.67rem;
    /* 1.5x smaller */
    color: var(--royal-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.valuation-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.valuation-form .form-group {
    flex: 1;
    min-width: 300px;
    margin-bottom: 0;
}

.valuation-form label {
    display: block;
    font-size: 1.5rem;
    /* Doubled */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.valuation-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 51, 102, 0.2);
    border-radius: 8px;
    font-size: 1.33rem;
    /* 1.5x smaller */
    transition: border-color 0.3s;
}

.valuation-form input:focus {
    outline: none;
    border-color: var(--royal-blue);
}

/* Search Section */
.search-section {
    padding: 4rem 0;
    background: var(--white);
}

.search-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.search-text h2 {
    font-size: 1.67rem;
    /* 1.5x smaller */
    margin-bottom: 1rem;
    color: var(--royal-blue);
    font-weight: 700;
}

.search-card {
    padding: 1.6rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    font-size: 0.95rem;
}

.search-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--royal-blue);
    font-weight: 600;
}

.search-card p {
    margin-bottom: 1.4rem;
    color: var(--text-light);
}

.search-disclaimer {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    opacity: 0.8;
    color: var(--text-light);
}

/* Testimonials Teaser */
.testimonials-teaser {
    padding: 4rem 0;
    background: var(--royal-blue);
    color: var(--white);
}

.testimonials-teaser h2 {
    color: var(--white);
}

.testimonials-teaser .testimonial-card {
    background: #181818;
    color: var(--white);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.testimonials-teaser .testimonial-text {
    color: var(--white);
}

.testimonials-teaser .testimonial-author {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-teaser h2 {
    font-size: 1.67rem;
    /* 1.5x smaller */
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 51, 102, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 51, 102, 0.25);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.05) 0%, rgba(184, 115, 51, 0.05) 100%);
    color: var(--text-color);
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--royal-blue);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.33rem;
    /* 1.5x smaller */
    margin-bottom: 0;
    color: var(--text-light);
}

/* About Aman Section */
.about-aman-section {
    padding: 6rem 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

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

.about-aman-text {
    padding-right: 2rem;
}

.about-aman-text h2 {
    font-size: 3rem;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--copper-gold);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-description {
    margin-bottom: 2.5rem;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 1.05rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-description strong {
    color: var(--royal-blue);
    font-weight: 600;
}

.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-aman-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.2);
    border: 3px solid var(--copper-gold);
}

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

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--royal-blue);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image-badge span {
    font-weight: 700;
    display: block;
    font-size: 1.33rem;
    /* 1.5x smaller */
}

.about-image-badge small {
    font-size: 0.7rem;
    opacity: 0.9;
    display: block;
    margin-top: 0.2rem;
}

/* Footer */
.footer {
    background: var(--royal-blue-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    margin-bottom: 1rem;
    color: var(--copper-gold);
    font-size: 1rem;
    /* Original size */
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 120px;
    width: 350px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.67rem;
    /* 1.5x smaller */
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    /* Original size */
}

.footer-links a:hover {
    opacity: 1;
    color: var(--copper-gold);
}

.office-list {
    list-style: none;
    font-size: 0.9rem;
    /* Original size - already correct */
}

.office-list li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.office-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.office-list a:hover {
    color: var(--copper-gold);
    opacity: 1;
    text-decoration: underline;
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.social-links a:hover {
    opacity: 1;
    color: var(--copper-gold);
    transform: translateY(-2px);
}

.social-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: all 0.3s;
    flex-shrink: 0;
}

.social-links a:hover .social-icon,
.social-links-light a:hover .social-icon {
    transform: scale(1.15);
}

/* Social icons for light backgrounds */
.social-links-light {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.social-links-light a {
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.social-links-light a:hover {
    opacity: 1;
    color: var(--copper-gold);
    transform: translateY(-2px);
}

.social-links-light .social-icon {
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.57rem;
    /* 1.5x smaller */
    opacity: 0.7;
}

/* Page Content Styles */
.page-hero {
    margin-top: 280px;
    /* Account for fixed header and large logo (160px logo + 53px text + 13px phone + gaps + padding) */
    padding: 3rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3.33rem;
    /* 1.5x smaller */
    margin-bottom: 1rem;
    color: var(--royal-blue);
    font-weight: 700;
}

.page-hero p {
    font-size: 1.6rem;
    /* 1.5x smaller */
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 3rem 0;
}

.content-section h2 {
    font-size: 2.67rem;
    /* 1.5x smaller */
    margin-bottom: 1.5rem;
    color: var(--royal-blue);
    font-weight: 700;
}

.content-section h3 {
    font-size: 2rem;
    /* 1.5x smaller */
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--royal-blue);
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--accent-color);
    border-radius: 10px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--copper-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.step-card {
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--copper-gold);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 51, 102, 0.12);
}

.step-card h3 {
    color: var(--royal-blue);
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--copper-gold);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--royal-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1.33rem;
    /* 1.5x smaller */
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Form Message Styles */
.form-message {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

.form-message p {
    margin: 0;
    font-size: 1rem;
}

.form-message-success {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.form-message-error {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 500;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .premium-hero {
        min-height: 80vh;
    }

    .about-aman-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-aman-text {
        padding-right: 0;
    }

    .about-aman-text h2 {
        font-size: 1.67rem;
        /* 1.5x smaller */
    }

    .about-image-wrapper img {
        max-height: 500px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .search-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .personas-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        margin-bottom: 2rem;
    }

    .contact-info {
        margin-top: 0;
    }

    .cta-section .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 1.67rem;
        /* 1.5x smaller */
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card-large h3 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .valuation-form {
        flex-direction: column;
    }

    .valuation-form .form-group {
        min-width: 100%;
    }

    .valuation-content h2 {
        font-size: 2rem;
    }

    .stats-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    .stats-grid-large,
    .services-grid,
    .premium-services-grid,
    .animated-stats-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.33rem;
        /* 1.5x smaller */
    }

    .premium-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-logo h1 {
        font-size: 1.67rem;
        /* 1.5x smaller */
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .stats-title {
        font-size: 6rem;
        /* Responsive - 2x bigger */
    }

    .stats-label {
        font-size: 4rem;
        /* Responsive - 2x bigger */
    }

    .stats-description {
        font-size: 3rem;
        /* Responsive - 2x bigger */
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .premium-hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero-logo h1 {
        font-size: 2rem;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
    }

    .animated-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .email-modal-content {
        padding: 2rem 1.5rem;
    }
}

/* Journey Selector Section - Matching Image Design */
.journey-selector-section {
    background: var(--white);
    padding: 4rem 0;
}

.journey-header {
    background: var(--royal-blue);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.journey-header h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .journey-header h2 {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .journey-header h2 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1440px) {
    .journey-header h2 {
        font-size: 5rem;
    }
}

.journey-header h2 strong {
    font-weight: 700;
}

.journey-grid-index {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 0;
    background: var(--white);
}

.journey-card-index {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 3px solid var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.journey-card-index:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.journey-card-img {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.journey-card-label {
    background: var(--white);
    color: var(--text-color);
    font-size: 2.66rem;
    /* 2x bigger */
    font-weight: 700;
    text-align: center;
    padding: 2rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 3px solid var(--primary-color);
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1024px) {
    .journey-grid-index {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .journey-grid-index {
        grid-template-columns: 1fr;
    }

    .journey-header h2 {
        font-size: 10rem;
        /* 2x bigger for mobile */
    }

    .journey-card-label {
        font-size: 2rem;
        /* 2x bigger */
        padding: 1.5rem 1rem;
    }

    .journey-card-img {
        height: 240px;
    }
}

/* =========================================
   Preloader Styles
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    text-align: center;
}

.spinner img {
    width: 120px;
    /* Adjust size as needed */
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}