:root {
    --dark-bg: #0D0D0F; /* Deeper Black for better glow */
    --dark-surface: #16161A;     
    --cream-bg: #F9F7F2;
    --white-surface: #FFFFFF;
    --text-light: #F4F1EA;
    --text-dark: #0F0F0F;
    --text-muted-light: #BBBBBB; 
    --text-muted-dark: #555555;  
    --accent: #D4AF37; /* Rich Gold */
    --accent-glow: rgba(212, 175, 55, 0.4);
    --border-light: #E0DCD3;
    --border-dark: #2A2A2E;      
    --whatsapp: #25D366;
    --chart-green: #00C853;
    --chart-red: #FF1744;
}

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

/* Image Protection - Lock all images */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* Navbar */
nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(13, 13, 15, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-dark); transition: all 0.3s ease; }
nav.light-mode { background: rgba(249, 247, 242, 0.9); border-bottom: 1px solid var(--border-light); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.4rem; color: var(--text-light); letter-spacing: -0.02em; transition: color 0.3s; text-decoration: none; }
nav.light-mode .logo { color: var(--text-dark); }
.logo-svg { width: 38px; height: 38px; background: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 0 15px var(--accent-glow); }
.logo-svg::after { content: ''; position: absolute; right: 0; top: 10px; width: 4px; height: 4px; background: var(--dark-bg); border-radius: 50%; }
.logo-svg span { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 18px; color: var(--dark-bg); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { color: var(--text-muted-light); text-decoration: none; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; position: relative; }
nav.light-mode .nav-links a { color: var(--text-muted-dark); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

.nav-cta { padding: 0.7rem 1.5rem; background-color: transparent; border: 1px solid var(--accent); color: var(--accent); border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; text-decoration: none; }
.nav-cta:hover { background: var(--accent); color: var(--dark-bg); box-shadow: 0 0 20px var(--accent-glow); }

.container { max-width: 1280px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.legal-container { max-width: 800px; margin: 0 auto; padding: 8rem 2rem 4rem; background: var(--cream-bg); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; letter-spacing: -0.02em; }
.text-center { text-align: center; }
.max-w-600 { max-width: 600px; margin: 0 auto; }
.section-label { color: var(--accent); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; display: block; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Background Glowing Orbs */
.glow-orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.15; pointer-events: none; }
.orb-1 { width: 400px; height: 400px; background: var(--accent); top: 10%; left: -10%; animation: floatOrb 15s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: var(--chart-green); bottom: 10%; right: -5%; animation: floatOrb 20s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(50px, 30px); } }

/* HOME PAGE - HERO WITH CRAZY CHART ANIMATION */
.hero-dark { background-color: var(--dark-bg); color: var(--text-light); min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }

.hero-bg-animation { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.4; pointer-events: none; }

.bg-candle { position: absolute; bottom: -50px; width: 8px; border-radius: 2px; animation: floatUp 10s linear infinite; }
.candle-wick { position: absolute; left: 50%; transform: translateX(-50%); width: 1px; background: rgba(255,255,255,0.2); }
.candle-green { background: var(--chart-green); box-shadow: 0 0 15px rgba(0, 200, 83, 0.6); }
.candle-red { background: var(--chart-red); box-shadow: 0 0 15px rgba(255, 23, 68, 0.6); }
@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-110vh); opacity: 0; }
}

.bg-chart-line { position: absolute; top: 50%; left: 0; width: 100%; transform: translateY(-50%); }
.chart-path { fill: none; stroke: var(--accent); stroke-width: 2; stroke-dasharray: 2000; stroke-dashoffset: 2000; filter: drop-shadow(0 0 8px var(--accent-glow)); animation: drawLine 8s ease-in-out infinite alternate; }
.chart-path-2 { fill: none; stroke: var(--chart-green); stroke-width: 1; opacity: 0.5; stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: drawLine 10s ease-in-out infinite alternate; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; max-width: 1280px; margin: 0 auto; padding: 0 2rem; width: 100%; z-index: 2; }
.hero-tag { display: inline-block; padding: 0.4rem 1rem; background: rgba(212, 175, 55, 0.1); border: 1px solid var(--accent); color: var(--accent); border-radius: 20px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
.hero-title { font-size: 5.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-title span { font-style: italic; color: var(--accent); text-shadow: 0 0 20px var(--accent-glow); }
.hero-text { font-size: 1.2rem; color: var(--text-muted-light); margin-bottom: 2.5rem; max-width: 500px; }

.btn-primary { display: inline-block; padding: 1rem 2rem; background-color: var(--accent); color: var(--dark-bg); border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; text-decoration: none; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); position: relative; overflow: hidden; }
.btn-primary:hover { background-color: var(--text-light); color: var(--dark-bg); transform: translateY(-3px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.8); }

.hero-img-container { position: relative; border-radius: 12px; overflow: hidden; height: 550px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid var(--border-dark); }
.hero-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 5s ease; }
.hero-img-container:hover img { transform: scale(1.05); }

.marquee-section { background: var(--accent); color: var(--dark-bg); padding: 1rem 0; overflow: hidden; white-space: nowrap; box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
.marquee-track { display: inline-block; animation: marquee 20s linear infinite; font-weight: 600; letter-spacing: 0.1em; font-size: 0.9rem; }
.marquee-track span { margin: 0 2rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.stats-section { background: var(--dark-surface); padding: 4rem 2rem; border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1280px; margin: 0 auto; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--accent); margin-bottom: 0.5rem; text-shadow: 0 0 15px var(--accent-glow); }
.stat-item p { color: var(--text-muted-light); }

.section-cream { background-color: var(--cream-bg); color: var(--text-dark); }
.section-dark { background-color: var(--dark-bg); color: var(--text-light); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-light); } 
.section-dark p { color: var(--text-muted-light); } 

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-title { font-size: 3rem; margin-bottom: 1.5rem; }
.about-text { font-size: 1.1rem; color: var(--text-muted-dark); margin-bottom: 1rem; }
.about-card { background: var(--white-surface); padding: 3rem; border-radius: 12px; border: 1px solid var(--border-light); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }

.philosophy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.phil-card { padding: 2rem 1.5rem; background: var(--dark-surface); border: 1px solid var(--border-dark); border-radius: 8px; transition: all 0.3s ease; }
.phil-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); background: #1c1c20; }
.phil-num { font-family: 'Playfair Display'; font-size: 1.2rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.phil-card h4 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--text-light); }
.phil-card p { color: var(--text-muted-light); font-size: 0.9rem; }

.offerings-teaser { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.offer-card-dark { background: var(--dark-surface); padding: 2rem; border-radius: 8px; border: 1px solid var(--border-dark); transition: all 0.4s ease; }
.offer-card-dark:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1); }
.offer-card-dark h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--text-light); }
.offer-card-dark p { font-size: 0.95rem; color: var(--text-muted-light); }

/* SERVICES PAGE */
.page-header-dark { background: var(--dark-bg); color: var(--text-light); padding: 12rem 2rem 6rem; text-align: center; }
.page-header-cream { background: var(--cream-bg); color: var(--text-dark); padding: 12rem 2rem 6rem; text-align: center; border-bottom: 1px solid var(--border-light); }
.page-title { font-size: 4rem; margin-bottom: 1rem; }
.page-subtitle { font-size: 1.2rem; max-width: 600px; margin: 0 auto; color: var(--text-muted-light); }
.page-header-cream .page-subtitle { color: var(--text-muted-dark); }

.zig-zag-container { max-width: 1280px; margin: 0 auto; padding: 6rem 2rem; background-color: var(--dark-bg); }
.zz-row { display: flex; align-items: center; gap: 4rem; margin-bottom: 8rem; }
.zz-row:last-child { margin-bottom: 0; }
.zz-row.reverse { flex-direction: row-reverse; }
.zz-text { flex: 1; color: var(--text-light); } 
.zz-visual { flex: 1; height: 350px; background: var(--white-surface); border-radius: 12px; border: 1px solid var(--border-light); overflow: hidden; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.zz-visual img { width: 100%; height: 100%; object-fit: cover; }
.zz-num { font-family: 'Playfair Display'; font-size: 1.5rem; color: var(--accent); font-weight: 700; margin-bottom: 1rem; display: block; text-shadow: 0 0 10px var(--accent-glow); }
.zz-title { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text-light) !important; } 
.zz-desc { color: var(--text-muted-light) !important; font-size: 1.1rem; margin-bottom: 1.5rem; } 

.pricing-section { background: var(--cream-bg); padding: 6rem 2rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1280px; margin: 3rem auto 0; }
.plan-card { background: var(--white-surface); border-radius: 12px; padding: 2.5rem; border: 1px solid var(--border-light); display: flex; flex-direction: column; transition: all 0.3s ease; }
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--accent); }
.plan-card.featured { border: 2px solid var(--accent); position: relative; box-shadow: 0 0 30px rgba(212, 175, 55, 0.2); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--dark-bg); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; box-shadow: 0 0 10px var(--accent-glow); }
.plan-header h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.plan-subheader { color: var(--text-muted-dark); font-size: 0.9rem; margin-bottom: 1.5rem; }
.plan-price { font-size: 2.5rem; font-family: 'Playfair Display'; font-weight: 700; margin-bottom: 0.5rem; }
.plan-duration { color: var(--text-muted-dark); font-size: 0.85rem; margin-bottom: 2rem; }
.plan-features { list-style: none; flex-grow: 1; margin-bottom: 2rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.9rem; color: var(--text-dark); }
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.btn-plan { width: 100%; padding: 1rem; background: var(--text-dark); color: var(--text-light); border: none; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.btn-plan:hover { background: var(--accent); color: var(--dark-bg); box-shadow: 0 0 20px var(--accent-glow); }

.risk-strip { background: #0a0a0c; color: #999; padding: 1.5rem 2rem; text-align: center; font-size: 0.8rem; border-top: 1px solid var(--border-dark); }

/* WHY US PAGE */
.why-container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; max-width: 1280px; margin: 0 auto; padding: 6rem 2rem; align-items: start; }
.why-image { position: sticky; top: 120px; border-radius: 12px; overflow: hidden; height: 600px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border-light); }
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; }
.why-num { font-family: 'Playfair Display'; font-size: 2rem; color: var(--text-dark); font-weight: 700; opacity: 0.2; width: 60px; line-height: 1; }
.why-content h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.why-content p { color: var(--text-muted-dark); font-size: 1rem; }

.comparison-section { background: var(--dark-bg); color: var(--text-light); padding: 6rem 2rem; }
.comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1280px; margin: 3rem auto 0; }
.comp-col { padding: 2.5rem; border-radius: 12px; }
.comp-col.bad { background: rgba(255,255,255,0.03); border: 1px solid var(--border-dark); }
.comp-col.good { background: rgba(212, 175, 55, 0.05); border: 1px solid var(--accent); box-shadow: 0 0 30px rgba(212, 175, 55, 0.1); }
.comp-col h4 { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text-light); }
.comp-list { list-style: none; }
.comp-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-muted-light); font-size: 0.95rem; }

/* MISSION PAGE */
.mission-full { background: var(--dark-bg); color: var(--text-light); min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 10rem 2rem; position: relative; overflow: hidden; }
.mission-bg-art { position: absolute; width: 100%; height: 100%; opacity: 0.05; background-image: radial-gradient(circle, var(--accent) 1px, transparent 1px); background-size: 30px 30px; }
.mission-content-full { max-width: 1000px; position: relative; z-index: 2; }
.mission-quote { font-family: 'Playfair Display'; font-size: 3.5rem; font-style: italic; line-height: 1.4; margin-bottom: 3rem; }
.mission-quote span { color: var(--accent); text-shadow: 0 0 15px var(--accent-glow); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; text-align: left; }
.mission-card { background: var(--dark-surface); padding: 2rem; border-radius: 8px; border: 1px solid var(--border-dark); transition: all 0.3s ease; }
.mission-card:hover { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.mission-card h4 { color: var(--accent); font-size: 1.2rem; margin-bottom: 0.5rem; }
.mission-card p { color: var(--text-muted-light); font-size: 0.9rem; }

.vision-section { padding: 6rem 2rem; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.vision-img { border-radius: 12px; overflow: hidden; height: 400px; }
.vision-img img { width: 100%; height: 100%; object-fit: cover; }
.vision-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.vision-text p { color: var(--text-muted-dark); margin-bottom: 1rem; }

/* JOURNEY PAGE */
.timeline-container { max-width: 800px; margin: 0 auto; padding: 6rem 2rem; position: relative; }
.timeline-container::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border-light); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 4rem; width: 50%; padding: 0 2rem; }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-item::after { content: ''; position: absolute; top: 24px; width: 16px; height: 16px; background: var(--cream-bg); border: 2px solid var(--accent); border-radius: 50%; z-index: 2; box-shadow: 0 0 10px var(--accent-glow); }
.timeline-item.left::after { right: -8px; }
.timeline-item.right::after { left: -8px; }
.timeline-content { background: var(--white-surface); padding: 2rem; border-radius: 8px; border: 1px solid var(--border-light); box-shadow: 0 10px 20px rgba(0,0,0,0.03); transition: all 0.3s ease; }
.timeline-content:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1); }
.timeline-num { font-family: 'Playfair Display'; font-size: 2rem; color: var(--accent); font-weight: 700; margin-bottom: 0.5rem; }
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--text-muted-dark); font-size: 0.95rem; }

.cta-section { background: var(--dark-bg); color: var(--text-light); padding: 6rem 2rem; text-align: center; margin-top: 4rem; }
.cta-section h2 { font-size: 3rem; margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted-light); max-width: 500px; margin: 0 auto 2rem; }

/* Legal Pages */
.legal-page-bg { background: var(--cream-bg); }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--text-dark); border-bottom: 1px solid var(--border-light); padding-bottom: 0.5rem; }
.legal-section h3 { font-size: 1.2rem; margin-bottom: 0.75rem; margin-top: 1.5rem; color: var(--text-dark); }
.legal-section p, .legal-section li { color: #444; margin-bottom: 0.75rem; line-height: 1.7; font-size: 0.95rem; }
.legal-section ul, .legal-section ol { padding-left: 2rem; margin-bottom: 1rem; }
.legal-section strong { color: var(--text-dark); }

/* CONTACT PAGE */
.contact-section { background: var(--cream-bg); padding: 6rem 2rem; }
.contact-info-wrap { max-width: 800px; margin: 0 auto; background: var(--white-surface); padding: 3rem; border-radius: 12px; border: 1px solid var(--border-light); box-shadow: 0 15px 40px rgba(0,0,0,0.04); }
.contact-info-title { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-info-text { color: var(--text-muted-dark); font-size: 1.05rem; margin-bottom: 1.25rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.contact-info-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem; background: var(--cream-bg); border: 1px solid var(--border-light); border-radius: 8px; text-decoration: none; transition: all 0.3s ease; }
.contact-info-item:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.12); }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: rgba(212, 175, 55, 0.1); color: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.contact-info-item h4 { font-size: 1.05rem; margin-bottom: 0.2rem; color: var(--text-dark); }
.contact-info-item p { color: var(--text-muted-dark); font-size: 0.9rem; margin: 0; }

/* WhatsApp Floating Button - Crazy Glow */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: var(--whatsapp); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; text-decoration: none; animation: pulseGlow 2s infinite; }
.whatsapp-float svg { width: 35px; height: 35px; fill: white; }
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Modal Popup */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--white-surface); padding: 3rem; border-radius: 12px; max-width: 500px; width: 90%; position: relative; box-shadow: 0 0 50px rgba(0,0,0,0.5); animation: modalPop 0.4s ease; }
@keyframes modalPop { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--text-muted-dark); }
.modal-title { font-size: 1.8rem; margin-bottom: 0.5rem; }
.modal-text { color: var(--text-muted-dark); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem; border: 1px solid var(--border-light); border-radius: 4px; font-family: 'Inter', sans-serif; background: #fff; transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.form-group textarea { resize: vertical; }

/* Footer */
footer { background: var(--dark-bg); color: var(--text-light); padding: 6rem 2rem 2rem; border-top: 1px solid var(--border-dark); }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border-dark); }
.footer-col h4 { font-family: 'Inter', sans-serif; color: var(--text-light); font-size: 1rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.05em; }
.footer-col p { color: var(--text-muted-light); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--text-muted-light); text-decoration: none; font-size: 0.9rem; cursor: pointer; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid var(--border-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted-light); transition: all 0.3s ease; }
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.footer-brand-top .logo { color: var(--text-light); }

.footer-copyright { max-width: 1280px; margin: 2rem auto 0; text-align: center; color: var(--text-muted-light); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 968px) {
    .hero-grid, .about-grid, .vision-section { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title, .page-title, .mission-quote { font-size: 2.5rem; }
    .offerings-teaser, .stats-grid, .mission-grid, .resources-grid, .philosophy-grid, .comp-grid, .pricing-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .why-image { display: none; }
    .zz-row, .zz-row.reverse { flex-direction: column; gap: 2rem; margin-bottom: 4rem; }
    .timeline-container::before { left: 0; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 2rem; }
    .timeline-item::after { left: -8px !important; right: auto !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
}
