/* ═══ CUSTOM DESIGN SYSTEM FOR MVV & GV THE GRAND ═══ */
:root {
    --primary: #163f62;
    /* Deep Luxury Navy Blue */
    --primary-mid: #25597E;
    /* Medium Navy Blue */
    --primary-light: #38779E;
    /* Light Navy for borders and cards */
    --primary-pale: #F4F6F9;
    /* Off-white background */
    --accent: #C5A059;
    /* Antique Luxury Gold */
    --accent-hover: #D8BA84;
    /* Lighter Gold for hover effects */
    --accent-dark: #A37E3E;
    /* Dark Gold for borders/shadows */
    --text-dark: #0A111C;
    /* Deep Slate for high-contrast headings */
    --text-body: #3E4B5E;
    /* Medium slate grey for body readability */
    --text-muted: #7A899C;
    /* Muted grey for sub-details */
    --white: #FFFFFF;
    --border-gold: rgba(197, 160, 89, 0.25);
    --border-light: rgba(37, 89, 126, 0.08);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & General ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--white);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* ── Typography Utilities ── */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Button Pulsing Effect ── */
.btn-pulse {
    position: relative;
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(197, 160, 89, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* ── Disclaimer Overlay ── */
#disclaimerOverlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 10, 20, 0.88);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#disclaimerOverlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.disclaimer-active {
    overflow: hidden !important;
    height: 100vh !important;
}

.disclaimer-box {
    background: var(--white);
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-gold);
    animation: disclaimerIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}

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

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

.disclaimer-header {
    background: var(--primary);
    padding: 30px 35px 25px;
    position: relative;
    border-bottom: 2px solid var(--accent);
}

.disclaimer-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.disc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid var(--accent);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.disclaimer-header h2 {
    color: var(--white);
    font-size: 24px;
    line-height: 1.25;
}

.disclaimer-body {
    padding: 30px 35px 25px;
    max-height: 280px;
    overflow-y: auto;
    border-bottom: 1px solid var(--border-light);
}

.disclaimer-body p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 15px;
}

.disclaimer-body .disc-highlight {
    background: var(--primary-pale);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    margin: 18px 0;
    font-size: 12.5px;
    color: var(--primary);
    font-style: italic;
}

.disclaimer-footer {
    padding: 20px 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--primary-pale);
    flex-wrap: wrap;
}

.disc-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 250px;
}

.disc-checkbox-wrap input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
}

.disc-checkbox-wrap label {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}

.disc-accept-btn {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--accent);
    padding: 14px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    opacity: 0.5;
    pointer-events: none;
}

.disc-accept-btn.enabled {
    opacity: 1;
    pointer-events: auto;
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

.disc-accept-btn.enabled:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.4);
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(22, 63, 98, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-gold);
    height: 70px;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 82px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

nav.scrolled .nav-logo-img {
    height: 64px;
}

.logo-icon-svg {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 10px;
    text-transform: uppercase;
    display: block;
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 500;
    font-family: var(--font-body);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: var(--transition-smooth);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hamburger animation */
.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Hero Section ── */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: var(--nav-height);
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 60px 0;
}

.hero-lead-form-box {
    background: rgba(22, 63, 98, 0.75);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 480px;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-form-title {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-form-subtitle {
    font-size: 12px;
    color: var(--accent-hover);
    margin-bottom: 20px;
}

/* ── Standard Input Groups ── */
.input-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.input-group input,
.input-group textarea,
.input-group select {
    background: rgba(37, 89, 126, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    padding: 12px 16px;
    font-size: 13.5px;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
    background: rgba(37, 89, 126, 0.6);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.error-msg {
    color: #E74C3C;
    font-size: 10px;
    margin-top: 4px;
    display: none;
}

/* Consent check-boxes */
.consent-wrapper {
    margin-bottom: 20px;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
}

.consent-row label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    cursor: pointer;
}

.consent-error {
    color: #E74C3C;
    font-size: 10px;
    margin-top: 4px;
    display: none;
}

.submit-btn {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4);
}

/* ── About Section ── */
.about-section {
    padding: clamp(40px, 5vw, 80px) 0;
    background-color: var(--primary-pale);
    background-image: 
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' width='100%25' height='100%25'%3E%3Cpath d='M 100,400 L 100,120 L 220,120 L 220,400 M 120,160 L 200,160 M 120,200 L 200,200 M 120,240 L 200,240 M 120,280 L 200,280 M 120,320 L 200,320 M 120,360 L 200,360 M 300,400 L 300,80 L 420,120 L 420,400 M 320,160 L 400,173 M 320,200 L 400,213 M 320,240 L 400,253 M 320,280 L 400,293 M 320,320 L 400,333 M 320,360 L 400,373 M 520,400 L 520,180 L 560,180 L 560,60 L 600,60 L 600,180 L 640,180 L 640,400 M 580,20 L 580,60 M 740,400 L 740,140 L 860,140 L 860,400 M 760,180 L 840,180 M 760,220 L 840,220 M 760,260 L 840,260 M 760,300 L 840,300 M 760,340 L 840,340 M 760,380 L 840,380 M 960,400 L 960,100 L 1010,70 L 1060,100 L 1060,400 M 1010,70 L 1010,400 M 980,140 L 1040,140 M 980,180 L 1040,180 M 980,220 L 1040,220 M 980,260 L 1040,260 M 980,300 L 1040,300 M 980,340 L 1040,340 M 980,380 L 1040,380' fill='none' stroke='rgba(197, 160, 89, 0.02)' stroke-width='1.5'/%3E%3C/svg%3E"),
        radial-gradient(rgba(22, 63, 98, 0.02) 1.5px, transparent 1.5px);
    background-position: bottom right, top left;
    background-repeat: no-repeat, repeat;
    background-size: 450px auto, 20px 20px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.about-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img-box img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.about-img-box:hover img {
    transform: scale(1.05);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-badge-callout {
    background: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 0 15px 15px 0;
    padding: 22px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-badge-callout h4 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.about-badge-callout p {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Specifications Section ── */
.specifications-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.specifications-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.spec-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-header {
    text-align: center;
    margin-bottom: 60px;
}

.spec-header h2 {
    color: var(--text-dark);
}

.spec-header p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 14px;
}

.specifications-section .spec-header h2 {
    color: var(--white);
}

.specifications-section .spec-header p {
    color: rgba(255, 255, 255, 0.6);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.spec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition-smooth);
}

.spec-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.spec-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.spec-info h4 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 700;
}

.spec-info p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 600;
}

.spec-info span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* ── Google Testimonials Section ── */
.testimonials-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background-color: var(--white);
    background-image: 
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' width='100%25' height='100%25'%3E%3Cpath d='M 100,400 L 100,120 L 220,120 L 220,400 M 120,160 L 200,160 M 120,200 L 200,200 M 120,240 L 200,240 M 120,280 L 200,280 M 120,320 L 200,320 M 120,360 L 200,360 M 300,400 L 300,80 L 420,120 L 420,400 M 320,160 L 400,173 M 320,200 L 400,213 M 320,240 L 400,253 M 320,280 L 400,293 M 320,320 L 400,333 M 320,360 L 400,373 M 520,400 L 520,180 L 560,180 L 560,60 L 600,60 L 600,180 L 640,180 L 640,400 M 580,20 L 580,60 M 740,400 L 740,140 L 860,140 L 860,400 M 760,180 L 840,180 M 760,220 L 840,220 M 760,260 L 840,260 M 760,300 L 840,300 M 760,340 L 840,340 M 760,380 L 840,380 M 960,400 L 960,100 L 1010,70 L 1060,100 L 1060,400 M 1010,70 L 1010,400 M 980,140 L 1040,140 M 980,180 L 1040,180 M 980,220 L 1040,220 M 980,260 L 1040,260 M 980,300 L 1040,300 M 980,340 L 1040,340 M 980,380 L 1040,380' fill='none' stroke='rgba(197, 160, 89, 0.025)' stroke-width='1.5'/%3E%3C/svg%3E"),
        radial-gradient(rgba(22, 63, 98, 0.03) 1.5px, transparent 1.5px);
    background-position: bottom left, top left;
    background-repeat: no-repeat, repeat;
    background-size: 450px auto, 24px 24px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.testimonials-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.test-carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 24px;
    padding-top: 10px;
    margin-top: -10px;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.test-carousel-wrapper::-webkit-scrollbar {
    display: none;
    /* Safari / Chrome */
}

.test-card {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 16px);
    /* 3 items per screen on desktop */
    min-width: 280px;
    background: var(--primary-pale);
    border-radius: 18px;
    padding: 35px;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.test-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(22, 63, 98, 0.08);
}

.test-rating {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
    line-height: 1.2;
    padding-top: 2px;
    padding-bottom: 2px;
}

.test-rating i {
    line-height: inherit;
}

.test-text {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 25px;
}

.test-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.test-user h5 {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
}

.test-user span {
    font-size: 11px;
    color: var(--text-muted);
}

.test-google-icon {
    font-size: 18px;
    color: #4285F4;
    /* Google Blue */
}

/* ── Interactive Tab Section ── */
.tabs-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background-color: var(--primary-pale);
    background-image: 
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' width='100%25' height='100%25'%3E%3Cpath d='M 100,400 L 100,120 L 220,120 L 220,400 M 120,160 L 200,160 M 120,200 L 200,200 M 120,240 L 200,240 M 120,280 L 200,280 M 120,320 L 200,320 M 120,360 L 200,360 M 300,400 L 300,80 L 420,120 L 420,400 M 320,160 L 400,173 M 320,200 L 400,213 M 320,240 L 400,253 M 320,280 L 400,293 M 320,320 L 400,333 M 320,360 L 400,373 M 520,400 L 520,180 L 560,180 L 560,60 L 600,60 L 600,180 L 640,180 L 640,400 M 580,20 L 580,60 M 740,400 L 740,140 L 860,140 L 860,400 M 760,180 L 840,180 M 760,220 L 840,220 M 760,260 L 840,260 M 760,300 L 840,300 M 760,340 L 840,340 M 760,380 L 840,380 M 960,400 L 960,100 L 1010,70 L 1060,100 L 1060,400 M 1010,70 L 1010,400 M 980,140 L 1040,140 M 980,180 L 1040,180 M 980,220 L 1040,220 M 980,260 L 1040,260 M 980,300 L 1040,300 M 980,340 L 1040,340 M 980,380 L 1040,380' fill='none' stroke='rgba(197, 160, 89, 0.02)' stroke-width='1.5'/%3E%3C/svg%3E"),
        radial-gradient(rgba(22, 63, 98, 0.02) 1.5px, transparent 1.5px);
    background-position: bottom right, top left;
    background-repeat: no-repeat, repeat;
    background-size: 450px auto, 20px 20px;
    position: relative;
    overflow: hidden;
}

.tabs-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
}

.tabs-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.tabs-header {
    text-align: center;
    margin-bottom: 50px;
}

.tabs-nav {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    max-width: 100%;
    margin: 0 auto 45px;
    padding: 10px 20px;
    background: transparent;
    border: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
    /* Safari/Chrome */
}

.tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    background: var(--white);
    border: 1px solid rgba(22, 63, 98, 0.15);
    border-radius: 50px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 12px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    font-family: var(--font-body);
}

.tab-btn.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.tab-btn:hover:not(.active) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(22, 63, 98, 0.2);
}

@media (min-width: 1024px) {
    .tabs-nav {
        justify-content: center;
        padding: 10px 0;
    }
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    animation: tabFadeIn 0.5s ease-out forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Blur & Lock Overlay Mechanism */
.tab-img-wrap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--primary-mid);
}

.tab-img-wrap img {
    width: 100%;
    display: block;
    transition: filter 0.6s ease, transform 0.6s ease;
}

.tab-img-wrap:hover img {
    transform: scale(1.05);
}

.tab-unlock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 63, 98, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    text-align: center;
    z-index: 5;
    transition: opacity 0.4s ease;
}

.tab-unlock-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    animation: lockPulse 2.5s infinite;
}

@keyframes lockPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
    }
}

.tab-unlock-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

.tab-unlock-btn {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
    transition: var(--transition-smooth);
}

.tab-unlock-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.tab-desc-wrap h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tab-desc-wrap p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 25px;
}

.tab-details-list {
    list-style: none;
}

.tab-details-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.tab-details-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 14px;
}

/* ── Project Highlights ── */
.highlights-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background-color: var(--white);
    background-image: 
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' width='100%25' height='100%25'%3E%3Cpath d='M 100,400 L 100,120 L 220,120 L 220,400 M 120,160 L 200,160 M 120,200 L 200,200 M 120,240 L 200,240 M 120,280 L 200,280 M 120,320 L 200,320 M 120,360 L 200,360 M 300,400 L 300,80 L 420,120 L 420,400 M 320,160 L 400,173 M 320,200 L 400,213 M 320,240 L 400,253 M 320,280 L 400,293 M 320,320 L 400,333 M 320,360 L 400,373 M 520,400 L 520,180 L 560,180 L 560,60 L 600,60 L 600,180 L 640,180 L 640,400 M 580,20 L 580,60 M 740,400 L 740,140 L 860,140 L 860,400 M 760,180 L 840,180 M 760,220 L 840,220 M 760,260 L 840,260 M 760,300 L 840,300 M 760,340 L 840,340 M 760,380 L 840,380 M 960,400 L 960,100 L 1010,70 L 1060,100 L 1060,400 M 1010,70 L 1010,400 M 980,140 L 1040,140 M 980,180 L 1040,180 M 980,220 L 1040,220 M 980,260 L 1040,260 M 980,300 L 1040,300 M 980,340 L 1040,340 M 980,380 L 1040,380' fill='none' stroke='rgba(197, 160, 89, 0.025)' stroke-width='1.5'/%3E%3C/svg%3E"),
        radial-gradient(rgba(22, 63, 98, 0.03) 1.5px, transparent 1.5px);
    background-position: bottom left, top left;
    background-repeat: no-repeat, repeat;
    background-size: 450px auto, 24px 24px;
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.highlights-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.accordion-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.accordion-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--primary-pale);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(22, 63, 98, 0.05);
    background: var(--white);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background: rgba(197, 160, 89, 0.04);
}

.ah-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.accordion-item.active .ah-title {
    color: var(--primary);
}

.ah-title i {
    color: var(--accent);
    font-size: 20px;
}

.ah-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(22, 63, 98, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition-smooth);
}

.accordion-item.active .ah-icon {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1200px;
    padding-bottom: 30px;
    border-top: 1px solid var(--border-light);
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 24px;
}

.acc-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 6px 0;
    border-radius: 0;
    font-size: 14px;
    color: var(--text-body);
    font-weight: 500;
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.accordion-item.active .acc-list-item {
    background: transparent;
    border-color: transparent;
}

.acc-list-item:hover {
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: none;
    color: var(--primary);
}

.acc-list-item i {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Gallery Section ── */
.gallery-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background: var(--white);
    position: relative;
}

.gallery-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.gallery-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 25px;
    margin-top: -50px;
}

.gallery-carousel-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-top: 10px;
    margin-top: -10px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.gallery-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    scroll-snap-align: start;
    flex: 0 0 calc(33.333% - 16px);
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(22, 63, 98, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Gallery Lightbox ── */
.gallery-lightbox-overlay {
    background: rgba(10, 17, 28, 0.95) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000 !important;
}

.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10002;
}

.lightbox-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.lightbox-prev-btn {
    left: 40px;
}

.lightbox-next-btn {
    right: 40px;
}

.lightbox-content-box {
    max-width: 80%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10001;
}

.lightbox-content-box img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
}

@media (max-width: 768px) {
    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .lightbox-prev-btn {
        left: 15px;
    }

    .lightbox-next-btn {
        right: 15px;
    }

    .gallery-lightbox-close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }

    .lightbox-content-box {
        max-width: 90%;
    }
}

/* ── Leader's Legacy Section ── */
.legacy-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background-color: var(--primary-pale);
    background-image: 
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' width='100%25' height='100%25'%3E%3Cpath d='M 100,400 L 100,120 L 220,120 L 220,400 M 120,160 L 200,160 M 120,200 L 200,200 M 120,240 L 200,240 M 120,280 L 200,280 M 120,320 L 200,320 M 120,360 L 200,360 M 300,400 L 300,80 L 420,120 L 420,400 M 320,160 L 400,173 M 320,200 L 400,213 M 320,240 L 400,253 M 320,280 L 400,293 M 320,320 L 400,333 M 320,360 L 400,373 M 520,400 L 520,180 L 560,180 L 560,60 L 600,60 L 600,180 L 640,180 L 640,400 M 580,20 L 580,60 M 740,400 L 740,140 L 860,140 L 860,400 M 760,180 L 840,180 M 760,220 L 840,220 M 760,260 L 840,260 M 760,300 L 840,300 M 760,340 L 840,340 M 760,380 L 840,380 M 960,400 L 960,100 L 1010,70 L 1060,100 L 1060,400 M 1010,70 L 1010,400 M 980,140 L 1040,140 M 980,180 L 1040,180 M 980,220 L 1040,220 M 980,260 L 1040,260 M 980,300 L 1040,300 M 980,340 L 1040,340 M 980,380 L 1040,380' fill='none' stroke='rgba(197, 160, 89, 0.02)' stroke-width='1.5'/%3E%3C/svg%3E"),
        radial-gradient(rgba(22, 63, 98, 0.02) 1.5px, transparent 1.5px);
    background-position: bottom right, top left;
    background-repeat: no-repeat, repeat;
    background-size: 450px auto, 20px 20px;
    position: relative;
    overflow: hidden;
}

.legacy-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.legacy-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.legacy-img-box {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--accent);
    width: 240px;
    height: 240px;
    flex-shrink: 0;
    justify-self: center;
}

.legacy-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.legacy-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.legacy-stat-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.legacy-stat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.legacy-stat-card strong {
    display: block;
    font-size: 28px;
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 5px;
}

.legacy-stat-card span {
    font-size: 12px;
    color: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Facts & Legacy Stats Section ── */
.facts-section {
    padding: clamp(40px, 5vw, 70px) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    position: relative;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.facts-section .spec-header {
    margin-bottom: 50px;
}

.facts-section .spec-header h2 {
    color: var(--white);
}

.facts-section .spec-header .section-eyebrow {
    color: var(--accent);
}

.facts-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    padding: 35px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.fact-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.fact-card strong {
    display: block;
    font-size: 38px;
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 8px;
}

.fact-card span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── Video Testimonials Carousel ── */
.video-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background: var(--white);
}

.video-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
}

/* Navigation controls for carousel */
.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: -50px;
    margin-bottom: 30px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-pale);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.carousel-wrapper {
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 24px;
    padding-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
    /* Safari / Chrome */
}

.carousel-item {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 18px);
    /* 4 items per screen on desktop */
    min-width: 260px;
}

.video-thumbnail-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background: var(--primary-mid);
}

.video-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.video-thumbnail-box:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 63, 98, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.video-thumbnail-box:hover .play-overlay {
    background: rgba(22, 63, 98, 0.6);
}

.play-btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 3px;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.video-thumbnail-box:hover .play-btn-circle {
    transform: scale(1.15);
    background: var(--accent-hover);
}

.video-title-bar {
    padding: 14px 5px 5px;
}

.video-title-bar h5 {
    font-size: 13.5px;
    color: var(--text-dark);
    font-weight: 600;
}

.video-title-bar p {
    font-size: 11px;
    color: var(--text-muted);
}

/* ── Contact Section ── */
.contact-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background: var(--primary-pale);
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-panel {
    background: var(--primary);
    border-radius: 20px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-gold);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.contact-info-panel>* {
    position: relative;
    z-index: 1;
}

.contact-info-panel h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-info-panel>div>p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 35px;
}

.contact-row-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.cri-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.cri-content strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.cri-content p,
.cri-content a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.6;
}

.cri-content a:hover {
    color: var(--accent-hover);
}

/* ── Proximity & Location Section ── */
.proximity-section {
    padding: clamp(40px, 5vw, 75px) 0;
    background: var(--primary-pale);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.proximity-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch;
}

.proximity-left-wrap {
    display: flex;
    flex-direction: column;
}

.proximity-item {
    display: contents;
}

.proximity-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: repeat(9, auto);
    gap: 12px 30px;
    align-items: start;
    margin-top: 10px;
    width: 100%;
}

/* Position each item's title in the first column */
.proximity-item:nth-child(1) .proximity-title {
    grid-row: 1;
}

.proximity-item:nth-child(2) .proximity-title {
    grid-row: 2;
}

.proximity-item:nth-child(3) .proximity-title {
    grid-row: 3;
}

.proximity-item:nth-child(4) .proximity-title {
    grid-row: 4;
}

.proximity-item:nth-child(5) .proximity-title {
    grid-row: 5;
}

.proximity-item:nth-child(6) .proximity-title {
    grid-row: 6;
}

.proximity-item:nth-child(7) .proximity-title {
    grid-row: 7;
}

.proximity-item:nth-child(8) .proximity-title {
    grid-row: 8;
}

.proximity-item:nth-child(9) .proximity-title {
    grid-row: 9;
}

.proximity-title {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.proximity-title i {
    color: var(--accent);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.proximity-title:hover,
.proximity-item.active .proximity-title {
    background: var(--primary);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(22, 63, 98, 0.12);
}

.proximity-title:hover i,
.proximity-item.active .proximity-title i {
    color: var(--accent-hover);
    transform: scale(1.1);
}

/* Position the content of the active item in the second column */
.proximity-content {
    grid-column: 2;
    grid-row: 1 / 10;
    /* Span all rows so it is positioned at the top right next to the titles list */
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--accent);
    min-height: 460px;
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: flex-start;
}

.proximity-item.active .proximity-content {
    display: flex;
    animation: contentFadeIn 0.3s ease forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.proximity-panel-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.proximity-panel-header h3 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.proximity-panel-header h3 i {
    color: var(--accent);
}



.proximity-table-scroll {
    max-height: 360px;
    overflow-y: auto;
    padding-right: 8px;
}

.proximity-table-scroll::-webkit-scrollbar {
    width: 6px;
}

.proximity-table-scroll::-webkit-scrollbar-track {
    background: var(--primary-pale);
    border-radius: 4px;
}

.proximity-table-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.proximity-table-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

.proximity-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.proximity-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(22, 63, 98, 0.08);
    font-size: 13.5px;
    color: var(--text-body);
}

.proximity-row.header {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    padding-bottom: 8px;
}

.proximity-row span:first-child {
    text-align: left;
    padding-right: 15px;
}

.proximity-row span:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--primary-mid);
    white-space: nowrap;
}

.proximity-map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    height: 100%;
    min-height: 480px;
}

.proximity-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 991px) {
    .proximity-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proximity-map-wrap {
        min-height: 380px;
        height: 380px;
    }
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-card-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(20px) scale(0.95) !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.contact-form-card h3 {
    font-size: 26px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-form-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.contact-form-card .input-group input,
.contact-form-card .input-group textarea {
    background: var(--primary-pale);
    border-color: var(--border-light);
    color: var(--text-dark);
}

.contact-form-card .input-group input:focus,
.contact-form-card .input-group textarea:focus {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.contact-form-card .input-group input::placeholder,
.contact-form-card .input-group textarea::placeholder {
    color: rgba(37, 89, 126, 0.4);
}

.contact-form-card .consent-row label {
    color: var(--text-body);
}

.contact-form-card .submit-btn {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--accent);
}

.contact-form-card .submit-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Thank you states */
.thankyou-banner {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 60px 20px;
    text-align: center;
}

.thankyou-banner.visible {
    display: flex;
    animation: tabFadeIn 0.5s ease-out forwards;
}

.ty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--accent);
}

.ty-title {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
}

.ty-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    font-style: italic;
}

/* ── Footer ── */
footer {
    background: var(--primary);
    padding: 80px 5% 40px;
    color: rgba(255, 255, 255, 0.7);
    border-top: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-left h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-left p {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 450px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13.5px;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--accent-hover);
    padding-left: 5px;
}

.footer-col p {
    font-size: 13.5px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;
}

.footer-policy-links {
    display: flex;
    gap: 20px;
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition-smooth);
}

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

.back-to-top-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.back-to-top-btn:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ── Modals ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 20, 0.82);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gold);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--accent);
    color: var(--primary);
}

.modal-header {
    background: var(--primary);
    padding: 25px 30px;
    position: relative;
    border-bottom: 2px solid var(--accent);
}

.modal-header-text h2 {
    color: var(--white);
    font-size: 20px;
}

.modal-header-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11.5px;
    font-style: italic;
    margin-top: 2px;
}

.modal-body-form {
    padding: 30px;
    background: var(--white);
}

.modal-body-form .input-group input {
    background: var(--primary-pale);
    color: var(--text-dark);
    border-color: var(--border-light);
}

.modal-body-form .input-group input:focus {
    background: var(--white);
    border-color: var(--accent);
}

.modal-body-form .consent-row label {
    color: var(--text-body);
}

.modal-body-form .submit-btn {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--accent);
}

.modal-body-form .submit-btn:hover {
    background: var(--accent);
    color: var(--primary);
}

.modal-note {
    font-size: 10.5px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 15px;
}

/* Video Iframe Modal specific */
.video-modal-content {
    max-width: 800px;
    border-radius: 12px;
    background: #000;
}

.iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ── Side Sticky Widget ── */
.side-sticky-widget {
    position: fixed;
    right: -86px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center center;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.side-sticky-widget:hover {
    right: -72px;
    background: var(--accent-hover);
}

.side-sticky-btn {
    border: none;
    background: transparent;
    color: var(--primary);
    padding: 12px 25px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-sticky-btn i {
    transform: rotate(90deg);
}

/* ── Left Side Sticky Widget (Desktop) ── */
.left-sticky-widget-desktop {
    position: fixed;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1900;
    opacity: 0;
    visibility: hidden;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.left-sticky-widget-desktop.show {
    left: 0px;
    opacity: 1;
    visibility: visible;
}

.left-sticky-pill {
    background: var(--white);
    border: 1px solid rgba(22, 63, 98, 0.12);
    border-radius: 40px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    width: 62px;
    box-sizing: border-box;
}

.left-sticky-btn-pill {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 24px 8px 16px;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.left-sticky-btn-pill:hover {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.05);
}

.left-sticky-link-pill {
    color: var(--primary);
    text-decoration: none;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    width: 100%;
    padding: 10px 0;
}

.left-sticky-link-pill:hover {
    color: var(--accent);
    transform: scale(1.08);
}

.left-sticky-pill i {
    font-size: 18px;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Hide on Mobile */
@media (max-width: 768px) {
    .left-sticky-widget-desktop {
        display: none !important;
    }
}

/* ── Bottom Floating Bar (Mobile Screen) ── */
.bottom-floating-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-smooth);
}

.bottom-floating-bar.show {
    bottom: 0;
}

.floating-action-btn {
    flex: 1;
    background: var(--accent);
    color: var(--primary);
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.floating-action-btn+.floating-action-btn {
    margin-left: 12px;
}

.floating-action-btn.btn-navy {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--accent);
}

/* ── Responsive Rules ── */
@media (max-width: 1200px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .carousel-item {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 991px) {
    .hero-container {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .legacy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tab-panel.active {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .carousel-item {
        flex: 0 0 calc(50% - 12px);
    }

    .test-card {
        flex: 0 0 calc(50% - 12px);
    }

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

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .accordion-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 12px);
    }

    .side-sticky-widget {
        display: none !important;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    /* ── Mobile Hero Optimization (Form below image) ── */
    .hero-section {
        min-height: auto;
        display: block;
        padding-top: var(--nav-height);
        background-attachment: scroll;
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: var(--primary);
    }

    .hero-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .hero-container::before {
        content: '';
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .hero-lead-form-box {
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-top: 3px solid var(--accent);
        background: var(--primary);
        padding: 30px 20px;
        box-shadow: none;
    }

    /* Prevent mobile input auto-zoom (font-size >= 16px) & enlarge tap target */
    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 16px !important;
        padding: 14px 16px !important;
    }

    /* ── Mobile Contact Optimization ── */
    .contact-info-panel {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }

    .contact-form-card {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--nav-height));
        background: var(--primary);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 25px;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.25);
        border-left: 1px solid var(--border-gold);
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .tabs-nav {
        background: rgba(22, 63, 98, 0.04);
        border: 1px solid rgba(22, 63, 98, 0.08);
        border-radius: 50px;
        padding: 6px;
        gap: 6px;
        margin-bottom: 35px;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .tab-btn {
        font-size: 11px;
        padding: 10px 16px;
        border-radius: 50px;
        border: none;
        background: transparent;
        box-shadow: none;
        color: var(--text-body);
    }

    .tab-btn.active {
        background: var(--accent);
        color: var(--primary);
        box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
    }

    .tab-btn:hover:not(.active) {
        background: transparent;
        color: var(--text-dark);
        border: none;
        box-shadow: none;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .spec-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 12px;
        gap: 12px;
    }

    .spec-icon {
        margin: 0 auto;
    }

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

    .carousel-item {
        flex: 0 0 100%;
    }

    .test-card {
        flex: 0 0 100%;
    }

    .side-sticky-widget {
        display: none !important;
    }

    .nav-logo-img {
        height: 60px;
    }

    nav.scrolled .nav-logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fact-card {
        padding: 20px 12px;
    }

    .fact-card strong {
        font-size: 26px;
    }

    .fact-card span {
        font-size: 9.5px;
        letter-spacing: 0.5px;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .gallery-carousel-controls {
        margin-top: 0;
        justify-content: center;
        margin-bottom: 20px;
    }

    .proximity-layout {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .proximity-item {
        border: 1px solid var(--border-light);
        border-radius: 12px;
        background: var(--primary-pale);
        overflow: hidden;
        transition: var(--transition-smooth);
        width: 100%;
    }

    .proximity-item.active {
        border-color: var(--accent);
        background: var(--white);
        box-shadow: 0 8px 20px rgba(22, 63, 98, 0.05);
    }

    .proximity-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        background: transparent;
        border: none;
        border-radius: 0;
        cursor: pointer;
        width: 100%;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 14px;
        box-shadow: none;
    }

    .proximity-title::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 11px;
        color: var(--primary);
        transition: var(--transition-smooth);
    }

    .proximity-item.active .proximity-title::after {
        transform: rotate(180deg);
        color: var(--accent);
    }

    .proximity-content {
        display: none;
        background: var(--white);
        border: none;
        border-radius: 0;
        padding: 0 20px 20px;
        box-shadow: none;
        border-top: 1px solid var(--border-light);
        min-height: auto;
        width: 100%;
    }

    .proximity-item.active .proximity-content {
        display: block;
    }

    .proximity-panel-header {
        display: none;
    }
}