/* =========================================
   CSS RESET & VARIABLES
   ========================================= */
:root {
    --bg-primary: #050505;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-glass: rgba(255, 255, 255, 0.08);
    --gold-primary: #D4AF37;
    --gold-dark: #A88826;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --container-width: 1280px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glow-animation: 0 0 15px var(--gold-glow);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* =========================================
   UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.container.narrow { max-width: 800px; }
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

section {
    padding: 6rem 0;
    position: relative;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-bottom: 1rem; color: var(--text-primary); }
p { color: var(--text-secondary); font-size: clamp(1rem, 1.5vw, 1.125rem); max-width: 65ch; }

.text-gold { color: var(--gold-primary); }
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    border: 1px solid var(--gold-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: #000;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 25px var(--gold-glow); }
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--gold-primary); color: var(--gold-primary); }
.glow { box-shadow: 0 0 10px rgba(212, 175, 55, 0.25); }

/* =========================================
   NAVIGATION
   ========================================= */
/* HEADER NAVIGATION */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s;
}
.nav-logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; flex-shrink: 0; z-index: 2; }
.nav-logo span { color: var(--gold-primary); }

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center; /* PERFECTLY CENTERS NAV */
    gap: 2.5rem;
    z-index: 2;
}
.nav-links a { font-size: 0.95rem; font-weight: 500; transition: color 0.3s; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--gold-primary); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-primary); }

.nav-cta {
    margin-left: auto; /* Pushes CTA to the far right */
    flex-shrink: 0;
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    z-index: 2;
}
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; z-index: 3; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    /* Optional: Add mobile menu open state logic if you expand it later */
}
/* =========================================
   HERO
   ========================================= */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 8rem;
    overflow: hidden;
}
.hero-bg-gradient {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    z-index: -1;
    animation: pulseGlow 6s infinite alternate;
}
.hero-badge { margin-bottom: 1.5rem; background: rgba(255,255,255,0.05); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; }
.hero-sub { margin: 0 auto 2.5rem; font-size: clamp(1.1rem, 1.5vw, 1.25rem); opacity: 0.9; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    text-align: center; margin-top: 2rem;
}
.stat-item { font-weight: 600; font-size: 0.95rem; color: var(--text-secondary); }
.stat-item[data-count]::before { content: attr(data-prefix, "") attr(data-target, "0") attr(data-suffix, ""); font-size: 1.5rem; color: var(--gold-primary); display: block; }
.scroll-indicator { position: absolute; bottom: 2rem; animation: bounce 2s infinite; }

/* =========================================
   TRUST BAR
   ========================================= */
#trust { padding: 2rem 0; }
.trust-bar { padding: 2rem; display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; justify-content: center; }
.trust-title { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); min-width: 200px; text-align: center; }
.trust-metrics { display: flex; gap: 2.5rem; flex-wrap: wrap; justify-content: center; align-items: center; }
.trust-item { color: var(--text-secondary); font-size: 0.95rem; }
.trust-item strong { color: var(--gold-primary); font-size: 1.1rem; display: block; }

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { margin: 0 auto; }
.center-cta { text-align: center; margin-top: 3rem; }
.row-reverse { display: flex; gap: 4rem; align-items: center; flex-wrap: wrap-reverse; }
.section-content { display: flex; gap: 4rem; align-items: center; flex-wrap: wrap; }
.content-half, .story-text { flex: 1 1 450px; }
.visual-half, .story-visual { flex: 1 1 300px; }
.large-text { font-size: 1.2rem; margin: 1.5rem 0 2rem; }

/* =========================================
   RESULTS
   ========================================= */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.result-card { padding: 2rem; position: relative; overflow: hidden; }
.result-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-primary), transparent); }
.result-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.tag { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.3rem; display: block; }
.metric-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.metric-list li { font-weight: 500; display: flex; align-items: baseline; gap: 0.5rem; }
.metric-list span[data-count] { font-size: 1.4rem; color: var(--gold-primary); font-weight: 700; }

/* =========================================
   AI ADS & VISUALS
   ========================================= */
#chatgpt-ads { position: relative; }
.ai-visual-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 60%); z-index: -1; }
.ai-simulation { padding: 2rem; border-radius: var(--radius-md); background: rgba(0,0,0,0.3); border: 1px solid var(--border-glass); position: relative; }
.prompt-box { background: #1a1a1a; padding: 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-family: monospace; color: #fff; border-left: 3px solid var(--text-secondary); }
.response-box { background: #0a0a0a; padding: 1.5rem; border-radius: var(--radius-sm); border: 1px solid var(--gold-primary); position: relative; }
.ai-badge { position: absolute; top: -10px; left: 20px; background: var(--gold-primary); color: #000; padding: 0.2rem 0.8rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.highlight-text { color: var(--text-primary); font-size: 1.2rem; margin: 1rem 0 0.5rem; }
.ai-meta { font-size: 0.8rem; color: var(--text-secondary); }
.cta-mock { background: var(--gold-primary); color: #000; text-align: center; padding: 0.6rem; margin-top: 1rem; border-radius: var(--radius-sm); font-weight: 600; }
.data-stream { display: flex; justify-content: space-between; margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-secondary); opacity: 0.7; border-top: 1px solid var(--border-glass); padding-top: 1rem; }

/* =========================================
   SERVICES
   ========================================= */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { padding: 2.5rem 2rem; transition: var(--transition); position: relative; }
.service-card:hover { transform: translateY(-5px); border-color: var(--gold-primary); }
.service-card.featured { border-color: rgba(212,175,55,0.3); background: linear-gradient(180deg, rgba(212,175,55,0.05), rgba(0,0,0,0)); }
.service-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--gold-primary); }
.service-badge { font-size: 0.75rem; background: var(--gold-primary); color: #000; padding: 0.2rem 0.6rem; border-radius: 4px; font-weight: 700; margin-bottom: 1rem; display: inline-block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.service-card ul { margin: 1.5rem 0 2rem; padding-left: 0.5rem; }
.service-card ul li { margin-bottom: 0.6rem; color: var(--text-secondary); position: relative; padding-left: 1.5rem; }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-primary); }

/* =========================================
   STORY & WHY US
   ========================================= */
#story { overflow: hidden; }
.story-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 300px; }
.year-marker { font-size: 2rem; font-weight: 800; color: var(--gold-primary); }
.timeline-line { width: 2px; height: 150px; background: linear-gradient(180deg, var(--gold-primary), transparent); margin: 2rem 0; }
/* WHY CHOOSE US - CENTERED LAYOUT */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers cards horizontally */
    gap: 1.5rem;
    margin-top: 3rem;
}

.why-card {
    flex: 1 1 300px; /* Grows/shrinks responsively */
    max-width: 380px; /* Prevents awkward stretching on wide screens */
    min-width: 260px; /* Prevents squishing on small screens */
    padding: 2rem;
    text-align: center; /* Centers all card content */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    background: rgba(212,175,55,0.03);
}

.why-card h3 {
    margin: 1rem 0 0.8rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.why-card p {
    margin: 0 auto; /* Keeps text neatly centered */
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   PROCESS
   ========================================= */
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 2px; background: var(--border-glass); z-index: -1; }
.process-step { text-align: center; padding: 2rem; background: var(--bg-primary); position: relative; z-index: 1; }
.step-number { width: 60px; height: 60px; border-radius: 50%; background: var(--bg-card); border: 2px solid var(--gold-primary); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 1.5rem; color: var(--gold-primary); box-shadow: 0 0 15px rgba(212,175,55,0.15); }
.process-step h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }

/* TESTIMONIALS SECTION */
#testimonials {
    padding: 8rem 0;
    background: radial-gradient(circle at 20% 40%, rgba(212,175,55,0.04) 0%, transparent 50%);
}
.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-carousel { flex: 1; overflow: hidden; border-radius: var(--radius-lg); }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Premium Card Styling */
.testimonial-card {
    flex: 0 0 100%;
    padding: 3rem;
    position: relative;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(212,175,55,0.2);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 20px rgba(212,175,55,0.05);
}
.quote-watermark {
    position: absolute;
    top: 2.5rem; right: 2.5rem;
    color: rgba(212,175,55,0.12);
    transform: scale(-1, 1);
}
.stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.stars svg { width: 18px; height: 18px; color: var(--gold-primary); fill: var(--gold-primary); }

.testimonial-text {
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.65;
    color: #e8e8e8;
    margin-bottom: 2.5rem;
    font-style: italic;
    max-width: 90%;
}

/* Client Profile */
.client-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.client-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    display: flex; align-items: center; justify-content: center;
    color: #000; font-weight: 800; font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.1);
}
.client-details h4 { margin: 0; font-size: 1.1rem; color: #fff; }
.client-role { font-size: 0.9rem; color: var(--text-secondary); margin-top: 0.2rem; display: block; }

.verified-badge {
    margin-left: auto;
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.75rem; font-weight: 600;
    color: var(--gold-primary);
    background: rgba(212,175,55,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(212,175,55,0.15);
}

.result-metric {
    font-size: 0.95rem; font-weight: 600;
    padding: 0.8rem 1.2rem;
    background: rgba(212,175,55,0.06);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--gold-primary);
    display: inline-block;
}

/* Navigation & Progress */
.carousel-nav {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.carousel-nav:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    transform: scale(1.05);
}
.carousel-progress {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}
.progress-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.progress-dot:hover { background: rgba(212,175,55,0.5); }
.progress-dot.active {
    background: var(--gold-primary);
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .testimonial-wrapper { padding: 0; gap: 0.5rem; }
    .carousel-nav { width: 40px; height: 40px; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; }
    .prev { left: -1rem; }
    .next { right: -1rem; }
    .testimonial-card { padding: 2rem; }
    .testimonial-text { max-width: 100%; }
    .client-profile { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .verified-badge { margin-left: 0; }
}
@media (max-width: 600px) {
    .carousel-nav { display: none; } /* Hide arrows on mobile, rely on swipe/dots */
    .testimonial-wrapper { padding: 0; }
}
/* =========================================
   FAQ
   ========================================= */
.faq-item { border-bottom: 1px solid var(--border-glass); padding: 1.5rem 0; }
.faq-question { background: none; border: none; width: 100%; text-align: left; font-size: 1.2rem; color: var(--text-primary); cursor: pointer; display: flex; justify-content: space-between; padding: 0.5rem 0; font-weight: 600; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--gold-primary); transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }

/* =========================================
   CTA BOX & BOOKING
   ========================================= */
.cta-box { text-align: center; padding: 5rem 3rem; background: linear-gradient(180deg, rgba(212,175,55,0.05), rgba(0,0,0,0.8)); border-color: rgba(212,175,55,0.3); }
.cta-box h2 { margin-bottom: 1rem; }
.cta-box p { margin: 0 auto 2.5rem; max-width: 600px; }
.booking-embed-placeholder { padding: 4rem 2rem; text-align: center; min-height: 400px; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.calendar-mock { width: 100%; max-width: 400px; height: 250px; border: 2px dashed var(--border-glass); display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); margin-bottom: 1.5rem; color: var(--text-secondary); }

/* =========================================
   FOOTER
   ========================================= */
footer { background: #000; padding: 5rem 0 2rem; border-top: 1px solid var(--border-glass); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: 1rem; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 36px; height: 36px; border: 1px solid var(--border-glass); display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition); font-weight: 700; }
.social-links a:hover { border-color: var(--gold-primary); color: var(--gold-primary); background: rgba(212,175,55,0.1); }
.footer-links h4 { margin-bottom: 1.5rem; font-size: 1rem; }
.footer-links a { display: block; margin-bottom: 0.8rem; color: var(--text-secondary); transition: 0.3s; }
.footer-links a:hover { color: var(--gold-primary); }
.footer-contact p { margin-bottom: 0.6rem; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border-glass); padding-top: 2rem; flex-wrap: wrap; gap: 1rem; color: var(--text-secondary); font-size: 0.85rem; }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a:hover { color: var(--gold-primary); }

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
.floating-cta {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    background: var(--gold-primary); color: #000; width: 56px; height: 56px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 20px var(--gold-glow); transition: var(--transition);
}
.floating-cta:hover { transform: scale(1.1); }

.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
@keyframes pulseGlow { 0% { opacity: 0.3; transform: scale(1); } 100% { opacity: 0.6; transform: scale(1.05); } }

@media (max-width: 1024px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .section-content, .row-reverse { flex-direction: column; gap: 3rem; text-align: center; }
    .content-half p, .large-text { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    #hero { min-height: auto; padding: 8rem 0 4rem; }
    .trust-bar { flex-direction: column; gap: 1.5rem; padding: 1.5rem; }
    .process-timeline::before { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .floating-cta { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; }
}

/* RESULTS LIST ICONS */
.metric-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}
.result-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    flex-shrink: 0;
    stroke-width: 1.8px;
}
/* Ensure counter spans don't break flex alignment */
.metric-list span[data-count] {
    font-size: 1.3rem;
    color: var(--gold-primary);
    font-weight: 700;
    margin: 0 0.15rem;
}

/* BENEFITS LIST STYLING */
/* BENEFITS LIST - TIGHTENED PREMIUM SPACING */
.benefits-list {
    margin: 1.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem; /* Much tighter, modern agency spacing */
    padding-left: 0;
}
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.4; /* Tighter line-height for premium density */
    color: #d4d4d4;
    font-size: 1rem;
}
.benefit-icon {
    width: 18px;
    height: 18px;
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 3px; /* Perfectly aligns with first line of text */
    stroke-width: 1.8px;
}
.benefits-list li strong {
    color: #ffffff;
    font-weight: 600;
}
.benefits-list li span {
    display: inline;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .benefits-list { gap: 1rem; }
    .benefits-list li { font-size: 1rem; }
    .benefit-icon { width: 20px; height: 20px; }
}

/* SEAMLESS BOOKING SCHEDULER */
.scheduler-container {
    padding: 2rem;
    max-width: 700px;
    margin: 3rem auto 0;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}
.scheduler-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem;
}
.scheduler-header h3 { font-size: 1.2rem; color: #fff; font-weight: 600; }
.nav-btn {
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-glass);
    color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.nav-btn:hover { background: var(--gold-primary); color: #000; border-color: var(--gold-primary); }

.days-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; color: #666; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.6rem; margin-bottom: 1.5rem; }
.day-cell {
    aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.02); border: 1px solid transparent; border-radius: var(--radius-sm);
    cursor: pointer; transition: var(--transition); font-weight: 500; color: #aaa;
}
.day-cell:hover:not(.disabled) { border-color: var(--gold-primary); background: rgba(212,175,55,0.08); color: #fff; }
.day-cell.today { border-color: rgba(212,175,55,0.4); color: var(--gold-primary); }
.day-cell.selected { background: var(--gold-primary); color: #000; font-weight: 700; border-color: var(--gold-primary); }
.day-cell.disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.day-cell .day-num { font-size: 1.1rem; }
.tz-note { text-align: center; font-size: 0.8rem; color: #666; margin-top: 1rem; margin-bottom: 0; }

.times-container { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-glass); animation: fadeIn 0.4s ease; }
.times-container h4 { text-align: center; margin-bottom: 1.2rem; color: #e8e8e8; }
.times-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 0.7rem; }
.time-pill {
    padding: 0.8rem; text-align: center; background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass); border-radius: 50px; cursor: pointer;
    transition: var(--transition); font-size: 0.95rem; color: #ccc;
}
.time-pill:hover { border-color: var(--gold-primary); background: rgba(212,175,55,0.12); color: #fff; transform: scale(1.03); }

/* MODAL & FORM */
/* MODAL - HIDDEN BY DEFAULT */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(12px);
    display: none; /* CRITICAL: Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}
.modal-overlay.active {
    display: flex; /* Only show when .active class is added */
}

/* .hidden class with !important for safety */
.hidden {
    display: none !important;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.close-modal { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; color: #888; font-size: 1.8rem; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--gold-primary); }
.slot-summary {
    display: flex; align-items: center; gap: 0.6rem; background: rgba(212,175,55,0.08);
    padding: 0.8rem 1rem; border-radius: var(--radius-sm); margin: 1.2rem 0;
    color: var(--gold-primary); font-weight: 600; justify-content: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-size: 0.85rem; color: #888; }
.form-group input {
    width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass); border-radius: var(--radius-sm);
    color: #fff; font-size: 0.95rem; transition: 0.3s;
}
.form-group input:focus { outline: none; border-color: var(--gold-primary); background: rgba(255,255,255,0.08); }
#submit-btn { width: 100%; margin-top: 0.5rem; }
.loading-text { text-align: center; color: var(--text-secondary); margin-top: 1.5rem; font-style: italic; }
#booking-status { margin-top: 1rem; text-align: center; font-weight: 600; font-size: 0.95rem; }
#booking-status.success { color: #4ade80; }
#booking-status.error { color: #f87171; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
    .scheduler-container { padding: 1.2rem; }
    .form-row { grid-template-columns: 1fr; }
    .times-grid { grid-template-columns: repeat(2, 1fr); }
    .day-cell .day-num { font-size: 1rem; }
}

/* LOGO INTEGRATION */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}
.logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    line-height: 1;
}
.logo-text span {
    color: var(--gold-primary);
}

/* Hover effect (subtle premium lift) */
.nav-logo:hover .logo-img { transform: scale(1.03); }

/* Footer-specific sizing (slightly smaller for balance) */
.footer-brand .logo-img { height: 28px; }
.footer-brand .logo-text { font-size: 1.35rem; }

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-img { height: 28px; }
    .logo-text { font-size: 1.35rem; }
    .footer-brand .logo-img { height: 26px; }
    .footer-brand .logo-text { font-size: 1.25rem; }
}
/* STORY SECTION - REVERSED & TIGHTENED */
#story {
    padding: 7rem 0;
    background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.06) 0%, transparent 50%);
}
.story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr; /* Visuals left, text right */
    gap: 3.5rem;
    align-items: center;
}
.story-content { padding-left: 1.5rem; }

/* TIGHTENED TYPOGRAPHY SPACING */
.story-lead {
    font-size: 1.2rem;
    color: #e8e8e8;
    line-height: 1.45; /* Dense, premium spacing */
    margin-bottom: 1rem;
}
.story-body p {
    margin-bottom: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5; /* Apple/Consulting density */
}
.story-quote {
    border-left: 3px solid var(--gold-primary);
    padding: 1rem 1.25rem;
    margin: 1.4rem 0;
    background: rgba(212,175,55,0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.05rem;
    font-style: italic;
    color: #e8e8e8;
    line-height: 1.45;
}
.story-content .btn { margin-top: 0.5rem; }

/* VISUALS PANEL */
.story-visual-panel { position: relative; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.stat-card:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(212,175,55,0.05);
    transform: translateY(-3px);
}
.stat-icon {
    width: 40px; height: 40px;
    background: rgba(212,175,55,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 0.8rem;
    color: var(--gold-primary);
}
.stat-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.stat-data {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

.visual-accent {
    position: absolute;
    top: -25px; left: -25px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(45px);
    z-index: -1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .story-content { padding-left: 0; text-align: center; }
    .story-quote { text-align: left; margin: 1.2rem auto; max-width: 90%; }
    .story-visual-panel { order: -1; /* Keeps visuals on top when stacked */ }
    .stats-grid { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; max-width: 300px; }
    .stat-card { padding: 1.1rem; }
    #story { padding: 4.5rem 0; }
}

/* ANNOUNCEMENT POPUP */
.announcement-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(14px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.announcement-overlay.active {
    opacity: 1;
    visibility: visible;
}

.announcement-content {
    background: linear-gradient(180deg, rgba(12,12,12,0.96) 0%, rgba(6,6,6,0.98) 100%);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2.2rem;
    max-width: 460px;
    width: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.65), 0 0 25px rgba(212,175,55,0.08);
    transform: scale(0.96) translateY(18px);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.announcement-overlay.active .announcement-content {
    transform: scale(1) translateY(0);
}

.ann-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #888;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.ann-close:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(212,175,55,0.3); }

.ann-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #B8962E 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}
.announcement-content h3 {
    font-size: 1.65rem;
    line-height: 1.25;
    margin-bottom: 1.1rem;
    color: #fff;
    font-weight: 700;
}
.announcement-content p {
    color: #a3a3a3;
    font-size: 1rem;
    line-height: 1.55;
    margin: 0 auto 1.8rem;
    max-width: 92%;
}
.ann-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.ann-cta { width: 100%; }
.ann-dismiss {
    background: transparent !important;
    border: none !important;
    color: #555 !important;
    padding: 0.5rem !important;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.ann-dismiss:hover { color: #aaa !important; }

@media (max-width: 600px) {
    .announcement-content { padding: 2.2rem 1.5rem; }
    .announcement-content h3 { font-size: 1.45rem; }
}