/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Variables */
:root {
    --color-primary: #020617;
    --color-primary-light: #0f172a;
    --color-accent: #d4af37;
    --color-accent-dark: #b8935f;
    --color-bg: #ffffff;
    --color-bg-light: #f8fafc;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    --gradient-gold: linear-gradient(135deg, #c6a246 0%, #a17f28 100%);
    --gradient-gold-text: linear-gradient(135deg, #e5c772 0%, #a17f28 100%);
    --gradient-gold-hover: linear-gradient(135deg, #e5c772 0%, #b5952f 100%);
    --gradient-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 162, 70, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(198, 162, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 162, 70, 0);
    }
}

@keyframes bg-shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes shine-sweep {
    0% {
        left: -100%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    50%,
    100% {
        left: 200%;
        opacity: 0;
    }
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    /* Wider container for modern look */
    margin: 0 auto;
    padding: 0 24px;
}

.calc-display {
    text-align: center;
    position: relative;
}

.growth-chart-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.calc-amount {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-accent);
    /* Fallback */
}

.text-center {
    text-align: center;
}

.text-gold {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-accent);
    /* Fallback */
}

/* Section Padding - Premium Spacing */
.section-padding {
    padding: 120px 0;
}

/* Global Typography Enhancements */
h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-padding h2 {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a1628 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.section-padding h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    border-radius: 2px;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    /* Increased horizontal padding */
    min-width: 180px;
    /* Minimum width for short labels */
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    /* Slightly larger text */
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.popup-content .submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8935f 100%);
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 15px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);

    /* Ensure Full Width */
    width: 100%;
    display: block;
}

.popup-content .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c772 0%, #c6a246 100%);
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 15px rgba(198, 162, 70, 0.3);
    position: relative;
    /* Ensure relative for pseudo-element */
    overflow: hidden;
    /* Contain the shine */
}

.btn-primary::after,
.popup-content .submit-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite ease-in-out;
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198, 162, 70, 0.4);
}

.btn-outline {
    border: 1px solid rgba(198, 162, 70, 0.3);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: white;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Hero Section - Immersive & Dramatic */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--color-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
}

/* Enhanced Video Background with Vignette */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, transparent 0%, rgba(2, 6, 23, 0.2) 50%, rgba(2, 6, 23, 0.6) 100%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.6) 0%, rgba(2, 6, 23, 0.3) 40%, rgba(2, 6, 23, 0.2) 70%, rgba(2, 6, 23, 0.5) 100%);
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    /* Full Opacity */
}

/* Hero Video */
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    /* Full Opacity for High Quality */
}

/* Trusted Strip */
.trusted-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.4));
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 30px;
    color: white;
    line-height: 1.05;
    letter-spacing: -1.5px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-text h1 .text-gold {
    background: linear-gradient(135deg, #f4d03f 0%, #c6a246 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: text-shimmer 3s ease-in-out infinite;
}

@keyframes text-shimmer {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.hero-text p {
    font-size: 1.35rem;
    margin-bottom: 45px;
    color: #cbd5e1;
    font-weight: 400;
    max-width: 650px;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Highlight Items (Replacing old boxes) */
.highlights-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.h-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-accent);
    font-weight: 700;
}

.h-lbl {
    font-size: 0.85rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.usp-badge {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Premium Glass Form - Enhanced */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
    position: relative;
}

.hero-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-form-wrapper h3 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-sub {
    color: #94a3b8;
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    /* Darker, glassier input */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-accent);
}

.form-control option {
    background: #0f172a;
    color: white;
}

/* Investment Calculator Section */
.calc-section {
    background: white;
    position: relative;
    z-index: 10;
}

.calc-container {
    background: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-display {
    background: var(--color-primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.calc-amount {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--color-accent);
    margin: 10px 0;
    font-weight: 700;
}

.range-slider {
    width: 100%;
    margin: 20px 0;
    height: 6px;
    background: #e2e8f0;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--color-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(198, 162, 70, 0.2);
    transition: all 0.2s;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Timeline Section */
.timeline-section {
    background: var(--color-bg-light);
    padding: 100px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #cbd5e1;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    /* Altered by :nth-child */
    padding-bottom: 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    justify-content: flex-start;
    text-align: left;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border-radius: 50%;
    top: 0;
    right: -10px;
    /* Adjusted for odd */
    border: 4px solid white;
    box-shadow: 0 0 0 4px rgba(198, 162, 70, 0.2);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
}

.timeline-content h4 {
    color: var(--color-primary);
    /* Changed to primary from white for this version if bg is light, but overridden inline in HTML to white if section bg is dark */
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Trust Strip (Modified) */
.trust-strip {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #f1f5f9;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-text h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.trust-text span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Features Grid Redesign */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: var(--color-accent);
}

/* Feature Image Styles */
.feature-img-container {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
}

.feature-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.1) translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Connectivity (Refined) */
.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.connect-item {
    background: white;
    padding: 40px 25px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
}

.connect-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.connect-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-bg-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.connect-item:hover .connect-icon {
    background: var(--color-accent);
    color: white;
    transform: rotateY(180deg);
}

.connect-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0;
}

.connect-item span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Gallery Style (Retained & Polished) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: pointer;
    background: #000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: blur(8px);
    transform: scale(1.1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item.unlocked img {
    filter: none;
    transform: scale(1);
    cursor: default;
}

.gallery-item.unlocked:hover img {
    transform: scale(1.05);
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
    z-index: 5;
    pointer-events: none;
}

.gallery-item.unlocked .lock-overlay {
    opacity: 0;
}

.lock-overlay i {
    font-size: 2rem;
    color: white;
    background: var(--color-accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(198, 162, 70, 0.5);
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: var(--color-accent);
    box-shadow: 0 15px 35px rgba(198, 162, 70, 0.3);
    transform: translateY(-3px);
}

/* Premium Hero Submit Button */
.hero-submit-btn {
    background: linear-gradient(135deg, var(--color-accent), #d4af37) !important;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(198, 162, 70, 0.25);
}

.hero-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-submit-btn:hover::before {
    left: 100%;
}

.hero-submit-btn:hover {
    background: linear-gradient(135deg, #d4af37, var(--color-accent)) !important;
    box-shadow: 0 15px 40px rgba(198, 162, 70, 0.4);
    transform: translateY(-4px);
}

.hero-submit-btn .btn-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.hero-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-submit-btn .btn-text {
    position: relative;
    z-index: 1;
}


.gallery-item:hover .lock-overlay i {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, #020617, transparent);
    color: white;
    z-index: 10;
}

.gallery-caption p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: #fff;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #e2e8f0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
footer {
    background: #020617;
    color: #94a3b8;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 30px;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-box {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.7;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Mobile FAB */
.mobile-fab {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 990;
    display: none;
    /* Shown in media queries */
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* Location Map */
.connectivity-section h2 {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-accent);
}

.connectivity-section p {
    color: #e2e8f0 !important;
}

.location-map-wrapper {
    margin: 0 auto 50px;
    max-width: 800px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.location-map-wrapper:hover .location-map-img {
    transform: scale(1.02);
}

/* Luxury Pattern Overlay */
.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/luxury_pattern.webp');
    background-size: 300px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* Unlock Icon Styling */
.unlock-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-primary), #0a1628);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
    animation: pulse-icon 2s ease-in-out infinite;
}

.unlock-icon-wrapper i {
    font-size: 2rem;
    color: var(--color-accent);
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(198, 162, 70, 0.3);
    }
}

/* Modal Input Styling */
.modal-input {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #1e293b !important;
    padding: 14px 16px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

.modal-input:focus {
    background: white !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 4px rgba(198, 162, 70, 0.1) !important;
    outline: none !important;
}

.modal-input::placeholder {
    color: #94a3b8 !important;
}

/* Enhanced Unlock Button */
.unlock-btn {
    background: linear-gradient(135deg, var(--color-primary), #0a1628) !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 16px !important;
    font-size: 1rem !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.unlock-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.unlock-btn:hover::before {
    left: 100%;
}

.unlock-btn:hover {
    background: linear-gradient(135deg, var(--color-accent), #b8935f) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(198, 162, 70, 0.3) !important;
}

.unlock-btn i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.unlock-btn:hover i {
    transform: rotate(-15deg);
}


/* Lead Gen Popup (Auto/Exit) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    /* Dark Navy tint */
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    border-radius: var(--radius-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-image {
    /* Fixed: Use WebP and remove if handled by HTML img tag (which it is) */
    /* background: url('../../assets/images/site_photograph.webp') no-repeat center/cover; */
    background-color: var(--color-primary);
    position: relative;
}

.popup-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.8), rgba(2, 6, 23, 0.4));
}

.popup-text {
    padding: 40px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #94a3b8;
    z-index: 10;
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--color-primary);
}

.popup-badge {
    display: inline-block;
    background: #fefce8;
    color: var(--color-accent-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid #fef08a;
}

/* Responsive Popup Adjustments */
@media (max-width: 768px) {
    .popup-content {
        grid-template-columns: 1fr;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
    }

    .popup-image {
        display: none;
    }

    .popup-text {
        padding: 25px 20px;
    }
}

/* Fix for Popup Inputs (Resetting Global Dark Styles) */
.popup-content .form-control {
    background: #f1f5f9;
    color: #1e293b !important;
    /* Dark text for visibility */
    border-color: #e2e8f0;
}

.popup-content .form-control::placeholder {
    color: #64748b !important;
    /* Visible placeholder */
    opacity: 1;
}

.popup-content .form-control:focus {
    background: #ffffff;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: #000000 !important;
}

.popup-content .submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8935f 100%);
    color: #000000 !important;
    /* Force Black Text */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 20px;
    /* Taller Height */
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);

    /* Ensure Full Width */
    width: 100%;
    display: block;
}

.popup-content .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c772 0%, #c6a246 100%);
    color: #000000 !important;
}


/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .highlights-grid {
        justify-content: center;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .connectivity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mobile-fab {
        display: flex;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: left;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 10px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
    }

    .hidden-mobile {
        display: none;
    }
}

/* Hero Video */
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    /* Match previous img opacity */
}

/* Trusted Strip */
.trusted-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.7));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    z-index: 5;
}

.trusted-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.trusted-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 600;
}

.trusted-logos {
    display: flex;
    gap: 50px;
}

.t-logo {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.t-logo:hover {
    transform: translateY(-2px);
    color: var(--color-accent);
}

/* Trust Badges - Left Column Integrated */
.trust-badges-left {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badges-grid-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
}

.trust-badge-small {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-badge-small i {
    font-size: 1.2rem;
    color: var(--color-accent);
    filter: drop-shadow(0 0 10px rgba(198, 162, 70, 0.3));
}

@media (max-width: 991px) {
    .trust-badges-left {
        justify-content: center;
        display: flex;
        border-top: none;
        margin-top: 30px;
    }
}

/* Trust Badges Section */
.trust-badges-section {
    position: relative;
    margin-top: -60px;
    /* Pull up slightly into hero bottom area */
    margin-bottom: 60px;
    z-index: 5;
    padding: 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle gold border */
    border-radius: 16px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.trust-badge:hover {
    background: rgba(2, 6, 23, 0.8);
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(198, 162, 70, 0.2);
}

.badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #b8935f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #020617;
    /* Dark icon on gold */
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: white;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 700;
}

.badge-text span {
    color: #cbd5e1;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Adjustments for Polish */
@media (max-width: 768px) {
    .trusted-strip {
        position: relative;
        background: var(--color-primary);
        padding: 30px 0;
    }

    .trusted-strip .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .trusted-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    /* Slightly smaller for better fit */
    .hero {
        padding-bottom: 0;
        min-height: auto;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on mobile */
        gap: 15px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }

    .trust-badges-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

/* Fix for Timeline Distance Text Visibility */
.timeline-content span {
    color: #ffd700 !important;
    /* Bright Gold */
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    /* Strong shadow for contrast */
}

/* Ensure timeline headings are visible */
.timeline-content h4 {
    color: #ffffff !important;
}

/* Ensure timeline descriptions are visible */
.timeline-content p {
    color: #e2e8f0 !important;
}

/* Lively Pulse Animation for Timeline Dots */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.timeline-dot {
    /* Existing basic styles override/enhancement */
    width: 20px;
    height: 20px;
    background: var(--color-accent);
    border: 4px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    z-index: 2;
    /* Animation */
    animation: pulse-gold 2s infinite;
}

/* Default: Hide Mobile FAB on Desktop */
.mobile-fab {
    display: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Pulse Animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* =========================================
   Mobile Optimization (Max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    /* Global Container */
    .container {
        padding: 0 20px;
        width: 100%;
    }

    /* Header / Nav */
    .nav-container {
        flex-direction: row !important;
        /* Force Horizontal */
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px;
        padding-bottom: 10px;
    }

    .nav-contact {
        width: auto !important;
        /* Allow it to shrink */
        justify-content: flex-end;
        gap: 0;
    }

    .nav-contact .btn {
        padding: 8px 15px !important;
        font-size: 0.85rem !important;
    }

    .nav-contact .hidden-mobile {
        display: none !important;
        /* Hide secondary info to save space */
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero {
        padding: 140px 15px 80px;
        /* Added horizontal padding to prevent edge collision */
        text-align: center;
        background-position: center top !important;
        /* Safety clip removed */
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 25px;
        width: 100%;
        /* Ensure full safe width */
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-text h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        /* Reduced min size from 2.2rem to 1.8rem */
        line-height: 1.2;
        margin-top: 15px;
        margin-bottom: 15px;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
        word-wrap: break-word;
        /* Prevent long words from breaking layout */
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
        opacity: 0.95;
        padding: 0 5px;
        /* Extra safety padding */
    }

    /* Highlights Grid - Strict 3-Col Row */
    .highlights-grid {
        display: grid !important;
        /* Force Grid */
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        /* Tight gap */
        padding: 15px 5px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .highlight-item {
        min-width: 0 !important;
        padding: 0 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        flex: none;
        /* Reset flex props */
    }

    .highlight-item:last-child {
        border-right: none;
    }

    .h-val {
        font-size: 0.95rem !important;
        /* Smaller to fit */
        font-weight: 700;
        color: var(--color-accent);
        margin-bottom: 4px;
        white-space: nowrap;
    }

    .h-lbl {
        font-size: 0.75rem !important;
        color: #cbd5e1;
        /* Lighter text */
        letter-spacing: 0.5px;
        white-space: normal !important;
        /* Allow wrapping */
        line-height: 1.1;
        max-width: 100%;
    }

    /* Trust Badges - Stack vertically for clean list */
    .badges-grid-left {
        grid-template-columns: 1fr !important;
        /* Stack vertically */
        gap: 12px;
        margin-top: 20px;
        width: 100%;
        text-align: left;
        /* Align text left for list view */
        padding-left: 10px;
    }

    .trust-badge-small {
        justify-content: flex-start;
        /* Left align */
    }

    /* Trusted Strip - Force Stack Below */
    .trusted-strip {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin-top: 30px !important;
        background: rgba(0, 0, 0, 0.2) !important;
        padding: 20px 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        transform: none !important;
        display: block !important;
    }

    .trusted-strip .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .trusted-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Wrap USP Badge text if needed */
    .usp-badge {
        white-space: normal !important;
        display: inline-block !important;
        line-height: 1.4;
        padding: 8px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Ensure Pricing Banner Wraps */
    .pricing-banner {
        padding: 15px !important;
    }

    .pricing-banner>div {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .pricing-banner h4 {
        font-size: 0.9rem !important;
        white-space: normal !important;
    }

    .pricing-banner span {
        font-size: 0.85rem !important;
    }

    /* Hero Form */
    .hero-form-wrapper {
        padding: 30px 20px;
        margin-top: 20px;
    }

    /* Investment Calculator */
    .calc-grid {
        grid-template-columns: 1fr;
        /* Stack input and result */
        gap: 40px;
    }

    .calc-container {
        padding: 30px 20px;
    }

    .range-slider::-webkit-slider-thumb {
        width: 28px;
        /* Larger touch target */
        height: 28px;
    }

    .tenure-btn {
        flex: 1;
        /* Equal width buttons */
        padding: 10px 5px !important;
        font-size: 0.75rem !important;
    }

    /* Timeline Section */
    .timeline::before {
        left: 20px;
        /* Move line to left */
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        left: 0 !important;
        margin-bottom: 30px;
    }

    .timeline-dot {
        left: 10px !important;
        /* Align dot with line */
        right: auto !important;
    }

    .timeline-container img.location-map-img {
        transform: none !important;
        /* Disable hover scale on mobile */
    }

    /* Grids (Features, Gallery) */
    .features-grid,
    .gallery-grid,
    .connectivity-grid,
    .trusted-logos {
        grid-template-columns: 1fr;
        /* 1 Column */
        gap: 25px;
    }

    .trusted-logos {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .connect-item {
        padding: 30px 20px;
    }

    /* Typography Overrides */
    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* =========================================
   Final Mobile Layout Fixes (High Specificity)
   ========================================= */
@media (max-width: 768px) {

    /* ROOT FIX: Disable Flex on Hero to prevent side-by-side layout */
    .hero {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        /* Reset min-height */
        overflow: visible !important;
        /* Fix double scrollbar */
        /* Disable internal scroll */
        padding-bottom: 20px !important;
    }

    /* 1. Force Trusted Strip Below Content */
    .hero .trusted-strip {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        margin-top: 30px !important;
        transform: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 20px 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: block !important;
        z-index: 10;
        clear: both;
        /* Just in case */
    }

    .hero .trusted-strip .container {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .hero .trusted-logos {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        /* Force internal row */
        justify-content: center !important;
        gap: 20px !important;
        grid-template-columns: none !important;
        /* Override grid */
    }

    /* 2. Force Trust Badges to Single Column */
    .hero .badges-grid-left {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
        margin-top: 20px !important;
    }

    .hero .trust-badge-small {
        justify-content: flex-start !important;
        padding-left: 10px;
    }

    /* 3. Strict Highlights Row */
    .hero .highlights-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        padding: 15px 5px !important;
        gap: 5px !important;
        width: 100% !important;
    }

    .hero .highlight-item {
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hero .highlight-item:last-child {
        border-right: none !important;
    }

    /* =========================================
       Premium Mobile FAB (Glass Dock)
       ========================================= */

    /* Hide old circular button on mobile */
    .whatsapp-float {
        display: none !important;
    }

    .mobile-fab {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 400px;
        /* Limit max width on larger mobiles */
        display: flex !important;
        justify-content: space-between !important;
        gap: 15px !important;
        z-index: 9999 !important;
        /* Top layer */
        background: rgba(255, 255, 255, 0.85) !important;
        /* Milky Glass */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px);
        padding: 10px 15px !important;
        border-radius: 50px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4) !important;
    }

    .fab-btn {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        /* Taller touch target */
        border-radius: 30px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        text-decoration: none !important;
        transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        text-transform: uppercase;
    }

    .fab-btn:active {
        transform: scale(0.96);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    }

    .fab-btn i {
        margin-right: 10px !important;
        font-size: 1.2rem !important;
    }

    /* Call Button - Dark Premium */
    .fab-call {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: fab-pulse-grow 3s infinite ease-in-out;
    }

    /* Chat Button - Gold/WhatsApp Gradient */
    .fab-whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: fab-pulse-grow 3s infinite ease-in-out 1.5s;
        /* Staggered by 1.5s */
    }

    /* FAB Pulse Animation */
    @keyframes fab-pulse-grow {

        0%,
        100% {
            transform: scale(1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        50% {
            transform: scale(1.05);
            /* Subtle grow */
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            /* Glow effect */
        }
    }
}