/* ============================================================
   Spotlight Quotes — Light Mode Redesign
   Deep Indigo Hero + Crisp White Body + Amber Accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Backgrounds */
    --bg-white:      #ffffff;
    --bg-light:      #f8fafc;
    --bg-hero:       #1e1b4b; /* Deep Indigo */
    --bg-panel:      #ffffff;
    --bg-panel-light:#f1f5f9;

    /* Text */
    --text-heading:  #1e293b;
    --text-body:     #475569;
    --text-light:    #94a3b8;

    /* Colors */
    --primary:       #4f46e5; /* Indigo */
    --primary-light: #818cf8;
    --primary-glow:  rgba(79,70,229,0.5);
    
    --accent:        #f59e0b; /* Amber */
    --accent-glow:   rgba(245,158,11,0.5);

    /* UI Elements */
    --border-light:  #e2e8f0;
    --border-dark:   rgba(255,255,255,0.15);
    --border-glow:   rgba(79,70,229,0.3);
    --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--text-heading); font-weight: 700; }
.text-glow {
    color: #fff;
    text-shadow: 0 0 20px var(--primary-glow);
}
.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn-primary-glow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    background: var(--primary); color: #fff;
    font-size: 1rem; font-weight: 600;
    border-radius: 0; /* Sharp */
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary-glow:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 25px var(--primary-glow);
    transform: translateY(-2px);
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 34px;
    background: transparent; color: #fff;
    font-size: 1rem; font-weight: 500;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--primary-light); background: rgba(255,255,255,0.05); }
.btn-nav {
    padding: 10px 24px; background: var(--primary); color: #fff !important;
    font-weight: 600; font-size: 0.9rem;
    transition: var(--transition);
}
.btn-nav:hover { background: var(--primary-light); box-shadow: 0 0 15px var(--primary-glow); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 20px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(30,27,75,0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark); padding: 12px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 8px; font-size: 1.5rem; font-weight: 800; color: #fff; }
.brand-icon { color: var(--accent); }
.brand-light { font-weight: 300; opacity: 0.7; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 0.95rem; font-weight: 400; color: #fff; opacity: 0.8; }
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--primary-light); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   SPLIT HERO (DARK)
   ================================================================ */
.hero-split {
    min-height: 100vh; display: flex; align-items: center;
    padding: 140px 0 80px; position: relative;
    background: radial-gradient(circle at 100% 50%, #2e287a 0%, #1e1b4b 60%);
    color: #fff;
}
.hero-split h1, .hero-split h2, .hero-split h3 { color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.glow-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px; background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-dark);
    font-size: 0.85rem; color: #fff; margin-bottom: 30px;
}
.pulse-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
.hero-text h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 24px; }
.hero-text p { font-size: 1.1rem; max-width: 500px; margin-bottom: 40px; color: rgba(255,255,255,0.8); }
.hero-cta-group { display: flex; gap: 20px; margin-bottom: 60px; }
.hero-metrics { display: flex; gap: 40px; border-top: 1px solid var(--border-dark); padding-top: 30px; }
.metric h3 { font-size: 1.8rem; margin-bottom: 4px; color: var(--accent); }
.metric span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }

.hero-visual { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.spotlight-container {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
}
.spotlight-orb {
    position: absolute; width: 350px; height: 350px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: var(--primary); border-radius: 50%;
    filter: blur(90px); opacity: 0.6; pointer-events: none;
}
.glass-panel {
    position: absolute; padding: 24px; width: 280px;
    background: rgba(255,255,255,0.06); backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 2; top: 10%; right: 5%; animation: float 6s infinite ease-in-out;
}
.panel-small { width: 220px; top: auto; bottom: 10%; right: 35%; animation-delay: 1.5s; }
.floating-icon { font-size: 2rem; color: var(--accent); margin-bottom: 16px; }
.floating-icon-2 { font-size: 1.5rem; color: var(--primary-light); margin-bottom: 12px; }
.progress-bar-fake { width: 100%; height: 6px; background: rgba(255,255,255,0.1); margin-top: 16px; overflow: hidden; border-radius: 0; }
.progress-bar-fake::after { content: ''; display: block; width: 60%; height: 100%; background: var(--accent); }

/* ================================================================
   ZIG-ZAG ABOUT (LIGHT)
   ================================================================ */
.about-dark { padding: 120px 0; background: var(--bg-light); border-bottom: 1px solid var(--border-light); }
.about-zigzag { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.zigzag-content h2 { font-size: 2.5rem; margin-bottom: 24px; }
.zigzag-content p { font-size: 1.1rem; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--text-heading); font-weight: 500; }
.check-list li i { color: var(--primary); font-size: 1.1rem; }
.abstract-art { position: relative; width: 100%; height: 400px; display: flex; align-items: center; justify-content: center; }
.art-ring { position: absolute; width: 250px; height: 250px; border: 2px solid var(--border-light); border-radius: 50%; }
.ring-2 { width: 350px; height: 350px; border-color: rgba(79,70,229,0.2); animation: spin 20s linear infinite; }
.art-icon { font-size: 4rem; color: var(--primary); z-index: 2; }

/* ================================================================
   SERVICES HORIZONTAL (LIGHT)
   ================================================================ */
.services-list { padding: 120px 0; }
.text-center { text-align: center; margin-bottom: 60px; }
.text-center h2 { font-size: 2.8rem; }
.service-horizontal-grid { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.service-row {
    display: grid; grid-template-columns: 80px 1fr 50px; align-items: center; gap: 24px;
    padding: 32px; background: var(--bg-panel); border: 1px solid var(--border-light);
    transition: var(--transition); cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.service-row:hover { background: var(--bg-panel-light); border-color: var(--primary); transform: translateX(10px); box-shadow: 0 10px 20px rgba(79,70,229,0.08); }
.s-icon { width: 60px; height: 60px; background: rgba(79,70,229,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary); }
.service-row:hover .s-icon { background: var(--primary); color: #fff; }
.s-content h3 { font-size: 1.4rem; margin-bottom: 8px; }
.s-content p { font-size: 0.95rem; margin: 0; }
.s-action i { color: var(--text-light); transition: var(--transition); }
.service-row:hover .s-action i { color: var(--accent); transform: translateX(5px); }

/* ================================================================
   SPLIT QUOTE (LIGHT)
   ================================================================ */
.quote-split { padding: 120px 0; background: var(--bg-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote-info h2 { font-size: 3rem; margin-bottom: 24px; line-height: 1.1; }
.quote-info p { font-size: 1.15rem; margin-bottom: 40px; }
.quote-benefits { display: flex; flex-direction: column; gap: 20px; }
.benefit { display: flex; align-items: center; gap: 16px; font-size: 1.1rem; color: var(--text-heading); font-weight: 500; }
.benefit i { width: 40px; height: 40px; background: rgba(245,158,11,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; }

.glass-form-card {
    background: var(--bg-panel); border: 1px solid var(--border-light);
    padding: 50px; position: relative; overflow: hidden;
    display: flex; gap: 40px; min-height: 400px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
/* Vertical Progress */
.quiz-progress-vertical { display: flex; flex-direction: column; gap: 30px; position: relative; padding-top: 10px; }
.quiz-progress-vertical::before { content: ''; position: absolute; top: 20px; bottom: 20px; left: 6px; width: 2px; background: var(--border-light); }
.v-step { width: 14px; height: 14px; background: var(--bg-white); border: 2px solid var(--text-light); border-radius: 50%; z-index: 2; transition: var(--transition); }
.v-step.active { border-color: var(--primary); background: var(--primary); box-shadow: 0 0 10px var(--primary-glow); }
.v-step.completed { border-color: var(--primary-light); background: var(--bg-white); }

.quiz-questions-vertical { flex: 1; }
.quiz-question { display: none; animation: fadeInRight 0.4s ease; }
.quiz-question.active { display: block; }
.q-number { font-size: 0.8rem; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 12px; font-weight: 600; }
.quiz-question h3 { font-size: 1.4rem; margin-bottom: 30px; line-height: 1.4; color: var(--text-heading); }
.quiz-options-grid { display: flex; flex-direction: column; gap: 16px; }
.quiz-opt {
    padding: 18px 24px; background: transparent; border: 1px solid var(--border-light);
    color: var(--text-heading); font-family: 'Outfit', sans-serif; font-size: 1.1rem;
    cursor: pointer; text-align: left; transition: var(--transition); font-weight: 500;
}
.quiz-opt:hover { border-color: var(--primary); background: rgba(79,70,229,0.05); padding-left: 30px; }

.quiz-result-dark { text-align: center; flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; animation: fadeInUp 0.5s ease; }
.result-glow { width: 80px; height: 80px; background: rgba(79,70,229,0.1); border: 1px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary); margin-bottom: 24px; box-shadow: 0 0 30px var(--primary-glow); }
.btn-call-now { display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; background: var(--primary); color: #fff; font-size: 1.3rem; font-weight: 700; margin: 24px 0; transition: var(--transition); }
.btn-call-now:hover { transform: scale(1.05); box-shadow: 0 10px 25px var(--primary-glow); }
.agent-status { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-heading); margin-bottom: 20px; font-weight: 500; }
.live-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
.btn-text-only { background: none; border: none; color: var(--text-light); cursor: pointer; text-decoration: underline; font-family: 'Outfit', sans-serif; }
.btn-text-only:hover { color: var(--primary); }

/* ================================================================
   UNIFIED CONTACT
   ================================================================ */
.contact-banner { padding: 80px 0; }
.banner-inner { background: var(--primary); padding: 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; box-shadow: 0 20px 40px rgba(79,70,229,0.2); }
.banner-text h2 { font-size: 2.2rem; color: #fff; margin-bottom: 10px; }
.banner-text p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin: 0; }
.banner-details { display: flex; gap: 40px; }
.contact-item { display: flex; align-items: center; gap: 16px; color: #fff; }
.contact-item i { font-size: 2rem; opacity: 0.8; }
.contact-item span { display: block; font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; }
.contact-item a { font-size: 1.2rem; font-weight: 700; color: #fff; }

/* ================================================================
   MINIMAL FOOTER
   ================================================================ */
.footer-minimal { background: var(--bg-white); padding: 40px 0; border-top: 1px solid var(--border-light); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.footer-brand { color: var(--text-heading); font-size: 1.2rem; font-weight: 700; }
.brand-icon-small { color: var(--accent); margin-right: 8px; }
.footer-socials-minimal { display: flex; gap: 16px; }
.footer-socials-minimal a { color: var(--text-light); transition: var(--transition); font-size: 1.2rem; }
.footer-socials-minimal a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 20px; text-align: center; font-size: 0.85rem; color: var(--text-light); }
.footer-bottom a { color: var(--primary); font-weight: 500; }

/* ================================================================
   ANIMATIONS & RESPONSIVE
   ================================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes float { 0%, 100% { transform: translateY(0) translate(-40px, -40px); } 50% { transform: translateY(-15px) translate(-40px, -40px); } }
@keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, -40px) scale(1.1); } }
@keyframes spin { 100% { transform: rotate(360deg); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero-grid, .about-zigzag, .quote-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { height: 400px; }
    .banner-inner { flex-direction: column; text-align: center; }
    .banner-details { flex-direction: column; gap: 24px; }
    .contact-item { justify-content: center; }
}
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-toggle span { background: #fff; }
    .navbar.scrolled .nav-toggle span { background: #fff; } /* Because scrolled navbar is dark indigo */
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(30,27,75,0.98); border-bottom: 1px solid var(--border-dark); flex-direction: column; padding: 20px; gap: 15px; }
    .nav-links.open { display: flex; }
    .service-row { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 24px; }
    .glass-form-card { flex-direction: column; padding: 30px 20px; }
    .quiz-progress-vertical { flex-direction: row; justify-content: center; padding-top: 0; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
    .quiz-progress-vertical::before { display: none; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-metrics { flex-direction: column; gap: 20px; }
}
