/* =========================================================================
   VARIABLES & THEME SETTINGS (MODERN GLASSMORPHISM)
   ========================================================================= */
:root {
    /* Brand Colors */
    --indigo: #19086d;
    --soft-pink: #db7eb7;
    --sky-blue: #abd9f4;
    --mist-grey: #cbd5e1;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8fbff;
    --text-dark: #1f1f2e;
    --text-muted: #5e6481;
    
    /* Glassmorphic variables */
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-bg-dark: rgba(25, 8, 109, 0.65);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 10px 40px rgba(25, 8, 109, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --nav-height: 80px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 500;
    width: 100%;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--indigo); line-height: 1.2; margin-bottom: 1rem; font-weight: 800; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { width: 90%; max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 2; }
.section-padding { padding: 80px 0; }
@media (min-width: 768px) { .section-padding { padding: 140px 0; } }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--text-dark) !important; }

/* Typography Config */
.singlish { font-style: italic; color: var(--soft-pink); font-weight: 700; }
.sinhala-text { font-family: 'Noto Sans Sinhala', sans-serif; font-style: normal; font-weight: 700; color: var(--soft-pink); }
.tamil-text { font-family: 'Noto Sans Tamil', sans-serif; font-style: normal; font-weight: 700; color: var(--soft-pink); }
.micro-text { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.sub-title { font-size: 2rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { 
    .section-title { font-size: 3.5rem; }
    .sub-title { font-size: 2.5rem; } 
    .huge-title { font-size: 5rem; }
}
.section-subtitle { font-size: 1.2rem; max-width: 600px; margin-bottom: 3rem; }
.huge-title { font-size: 2.2rem; margin-bottom: 2rem; }

/* =========================================================================
   ULTRA IMPRESSIVE GLASS & BLOBS (BACKGROUND)
   ========================================================================= */
.blob-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, #edf2fa 100%);
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: move-blob 25s infinite alternate ease-in-out;
    will-change: transform;
    mix-blend-mode: multiply;
}
.blob-1 { width: 600px; height: 600px; background: rgba(219, 126, 183, 0.7); top: -10%; left: -10%; animation-duration: 25s; }
.blob-2 { width: 500px; height: 500px; background: rgba(171, 217, 244, 0.8); top: 30%; right: -5%; animation-duration: 28s; animation-delay: -5s; }
.blob-3 { width: 700px; height: 700px; background: rgba(25, 8, 109, 0.2); bottom: -20%; left: 20%; animation-duration: 32s; }
.blob-4 { width: 450px; height: 450px; background: rgba(219, 126, 183, 0.5); top: 50%; left: 50%; animation-duration: 22s; animation-delay: -12s; transform: translate(-50%, -50%); }
.blob-5 { width: 400px; height: 400px; background: rgba(171, 217, 244, 0.7); bottom: 10%; right: 20%; animation-duration: 18s; animation-delay: -3s; }

/* Optional semi-transparent grid overlay */
.blob-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(25,8,109,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
    opacity: 0.8;
}

@keyframes move-blob {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(40px, -60px) scale(1.1) rotate(15deg); }
    66% { transform: translate(-30px, 30px) scale(0.9) rotate(-15deg); }
    100% { transform: translate(50px, 50px) scale(1) rotate(0deg); }
}

/* Glass Utility Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 32px;
    padding: 40px;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

.glass-title-panel {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 25px 35px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(25, 8, 109, 0.05);
}

.glass-panel-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(25, 8, 109, 0.3);
    border-radius: 40px;
    padding: 60px 40px;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    overflow: hidden;
    position: relative;
    padding: 30px 24px;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-pink), var(--indigo));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 40px rgba(25, 8, 109, 0.12);
}

.glass-card:hover::before { opacity: 1; }

.tilt-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 32px;
    padding: 50px;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
    cursor: pointer; border: none; outline: none; position: relative; overflow: hidden; z-index: 1;
    transition: var(--transition);
}
.btn-large { padding: 16px 36px; font-size: 1.1rem; }
.btn-primary { background: var(--indigo); color: var(--white); box-shadow: 0 8px 25px rgba(25, 8, 109, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(25, 8, 109, 0.4); background: #230d94; }
.btn-secondary { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); color: var(--indigo); border: 1px solid var(--white); }
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--glass-shadow); background: var(--white); }
.whatsapp-btn i { font-size: 1.3rem; margin-right: 8px; color: #25d366; }
.cta-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(25, 8, 109, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(25, 8, 109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(25, 8, 109, 0); }
}

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
    z-index: 1000; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.nav-logo { height: 48px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 25px; }
.nav-links a { color: var(--text-dark); font-weight: 600; font-size: 0.95rem; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--soft-pink); transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--indigo); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--indigo); cursor: pointer; }

@media (max-width: 991px) {
    .mobile-menu-btn { display: block; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column; padding: 30px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-top: 1px solid rgba(255,255,255,0.4);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out; gap: 20px;
    }
    .nav-menu.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links { flex-direction: column; align-items: center; width: 100%; }
    .nav-links a { display: block; padding: 10px; font-size: 1.1rem; }
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-height); position: relative; }
.hero-container { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 992px) { .hero-container { grid-template-columns: 1fr 1fr; } }
.hero-headline { font-size: 2.8rem; margin-bottom: 1.5rem; letter-spacing: -1px; }
@media (min-width: 992px) { .hero-headline { font-size: 5rem; } }
.hero-subtext { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-visuals { position: relative; display: flex; justify-content: center; align-items: center; perspective: 1000px; }
.hero-video-wrapper {
    padding: 15px; border-radius: 40px; 
    animation: float-video 8s ease-in-out infinite alternate; transform-style: preserve-3d;
}
.hero-video { width: 100%; max-width: 320px; border-radius: 28px; object-fit: cover; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
@media (min-width: 992px) { .hero-video { max-width: 400px; } }
@keyframes float-video {
    0% { transform: translateY(0) rotateX(3deg) rotateY(-3deg); }
    100% { transform: translateY(-20px) rotateX(-3deg) rotateY(3deg); }
}

/* =========================================================================
   REALITY SECTION
   ========================================================================= */
.relatable-line { font-size: 1.4rem; font-weight: 500; color: var(--text-dark); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 20px; }
.card-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(25, 8, 109, 0.05); display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--indigo); margin-bottom: 1.5rem; transition: var(--transition);
}
.glass-card:hover .card-icon { background: var(--indigo); color: var(--white); transform: scale(1.1); }
.glass-card p { font-weight: 600; color: var(--text-dark); margin: 0; }

/* =========================================================================
   APPROACH / SAFE SPACE
   ========================================================================= */
.safe-space-container { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 992px) { .safe-space-container { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.2rem; font-size: 1.15rem; font-weight: 600; }
.check-list i { color: var(--soft-pink); font-size: 1.2rem; margin-top: 4px; }
.illustration-placeholder {
    height: 450px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.circle-group { position: relative; width: 250px; height: 250px; }
.avatar { position: absolute; border-radius: 50%; border: 4px solid rgba(255,255,255,0.8); box-shadow: var(--shadow-soft); backdrop-filter: blur(10px); }
.avatar-1 { width: 100px; height: 100px; background: rgba(226, 232, 240, 0.8); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.avatar-2 { width: 80px; height: 80px; background: rgba(171, 217, 244, 0.8); top: 5%; left: 5%; z-index: 2; animation: float 4s ease-in-out infinite; }
.avatar-3 { width: 90px; height: 90px; background: rgba(219, 126, 183, 0.8); bottom: 5%; right: 5%; z-index: 2; animation: float 5s ease-in-out infinite alternate; }
.avatar-4 { width: 75px; height: 75px; background: rgba(180, 160, 240, 0.8); bottom: 15%; left: 5%; z-index: 2; animation: float 4.5s ease-in-out infinite reverse; }
.avatar-5 { width: 85px; height: 85px; background: rgba(160, 230, 210, 0.8); top: 15%; right: 5%; z-index: 2; animation: float 3.5s ease-in-out infinite alternate-reverse; }
.chat-bubble {
    position: absolute; top: -20px; right: 30px; font-size: 3rem; color: var(--indigo); background: var(--white);
    border-radius: 50%; padding: 15px; box-shadow: var(--shadow-soft); z-index: 4;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; animation-delay: 1s; opacity: 0; transform: scale(0);
}
@keyframes popIn { to { opacity: 1; transform: scale(1); } }
@keyframes float { 0% { transform: translate(0, 0); } 50% { transform: translate(10px, -20px); } 100% { transform: translate(0, 0); } }

/* =========================================================================
   DIFFERENT PORTION
   ========================================================================= */
.different-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 992px) { .different-grid { grid-template-columns: 3fr 2fr; align-items: center; } }
.emphasis { font-size: 1.4rem; font-weight: 500; }
.tags { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 15px; }
.tag {
    background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); backdrop-filter: blur(10px);
    padding: 10px 20px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; color: var(--white);
}
.quote-icon { font-size: 3rem; color: var(--soft-pink); opacity: 0.6; position: absolute; top: -20px; left: 20px; }
.quote-text { font-size: 1.3rem; font-weight: 700; color: var(--indigo) !important; font-style: italic; margin: 0; line-height: 1.4; }

/* =========================================================================
   HOW IT WORKS (TIMELINE)
   ========================================================================= */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
    content: ''; position: absolute; top: 0; left: 30px; height: 100%; width: 4px;
    background: rgba(255,255,255,0.4); border-radius: 2px;
}
@media (min-width: 768px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.timeline-step { position: relative; margin-bottom: 30px; display: flex; align-items: flex-start; }
.step-number {
    width: 60px; height: 60px; background: rgba(255,255,255,0.8); backdrop-filter: blur(10px);
    border: 3px solid var(--indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; color: var(--indigo); flex-shrink: 0; z-index: 2;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.3);
}
@media (min-width: 768px) {
    .timeline-step { margin-bottom: 50px; justify-content: flex-end; padding-left: 50%; }
    .timeline-step:nth-child(even) { justify-content: flex-start; padding-left: 0; padding-right: 50%; }
    .step-number { width: 80px; height: 80px; font-size: 2rem; position: absolute; left: 50%; transform: translateX(-50%); }
    .timeline-step .step-content { margin-left: 40px; }
    .timeline-step:nth-child(even) .step-content { margin-left: 0; margin-right: 40px; text-align: right; }
}
.step-content { margin-left: 20px; width: 100%; border: none !important; }
.step-content h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.step-content p { margin: 0; font-size: 1rem; }

/* =========================================================================
   PROGRAM DETAILS
   ========================================================================= */
.program-container { padding: 60px 40px; }
.info-group { display: flex; margin-bottom: 40px; }
.info-item { display: flex; align-items: center; gap: 20px; }
.info-icon {
    width: 60px; height: 60px; background: rgba(171, 217, 244, 0.4); border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--indigo);
}
.info-item h4 { margin: 0; font-size: 1.2rem; }
.info-item p { margin: 0; font-weight: 700; font-size: 1.4rem; color: var(--text-dark); }
.detail-blocks { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .detail-blocks { grid-template-columns: 1fr 1fr; } }
.detail-block h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--indigo); }
.detail-block ul { display: flex; flex-direction: column; gap: 15px; }
.glass-list-item {
    background: rgba(255,255,255,0.4); padding: 15px 20px; border-radius: 12px; font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02); border-left: 4px solid var(--soft-pink); backdrop-filter: blur(8px);
}

/* =========================================================================
   GAIN & AUDIENCE
   ========================================================================= */
.split-section { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 992px) { .split-section { grid-template-columns: 1fr 1fr; gap: 60px; } }
.gain-list li { padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-weight: 600; font-size: 1.1rem; display: flex; align-items: center; }
.gain-list li::before { content: '→'; color: var(--soft-pink); font-weight: 800; margin-right: 15px; font-size: 1.2rem; }
.growth-viz { display: flex; align-items: flex-end; gap: 10px; height: 100px; margin-top: 30px; }
.bar { flex: 1; background: var(--sky-blue); border-radius: 8px 8px 0 0; animation: growUp 2s ease-out forwards; transform-origin: bottom; opacity: 0; }
.bar-1 { height: 30%; animation-delay: 0.2s; }
.bar-2 { height: 50%; background: var(--mist-grey); animation-delay: 0.4s; }
.bar-3 { height: 80%; background: var(--soft-pink); animation-delay: 0.6s; }
.bar-4 { height: 100%; background: var(--indigo); animation-delay: 0.8s; }
@keyframes growUp { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.glass-card-pink {
    background: rgba(219, 126, 183, 0.8); backdrop-filter: blur(15px);
    color: var(--white); padding: 30px; border-radius: 20px; margin-top: 30px; border: 1px solid rgba(255,255,255,0.4);
}
.glass-card-pink p { color: var(--white); margin: 0; font-size: 1.2rem; font-weight: 700; }

/* =========================================================================
   EMOTIONAL TRUST
   ========================================================================= */
.trust-container { padding: 80px 40px; }
.promise-words {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 15px;
    font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.5rem;
}
.promise-words .dot { color: var(--soft-pink); }
.promise-highlight { font-size: 2.5rem; font-weight: 800; color: var(--indigo); font-family: var(--font-heading); }

/* =========================================================================
   JOIN SECTION
   ========================================================================= */
.join-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; }
.join-actions .btn-primary { background: var(--white); color: var(--indigo); }
.join-actions .btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.join-actions .btn-secondary i { color: var(--white); }

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-bottom: 60px; }
.contact-card { text-align: center; border: 1px solid rgba(255,255,255,0.8) !important; padding: 40px 30px; }
.contact-icon { font-size: 2.5rem; color: var(--indigo); margin-bottom: 20px; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.contact-card p { margin: 0; font-weight: 600; color: var(--text-dark); }
.social-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.social-circle {
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--indigo); border-radius: 50%; padding: 0 !important;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.glass-footer {
    background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.6); padding: 80px 0 20px; margin-top: 20px;
}
.footer-container { display: grid; gap: 40px; margin-bottom: 60px; }
@media (min-width: 768px) { .footer-container { grid-template-columns: 2fr 3fr; } }
.footer-logo { height: 60px; margin-bottom: 15px; }
.tagline { font-weight: 700; color: var(--indigo); font-size: 1.1rem; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.link-column h4 { margin-bottom: 1.5rem; }
.link-column ul { display: flex; flex-direction: column; gap: 15px; }
.link-column a { color: var(--text-dark); font-weight: 600; }
.link-column a:hover { color: var(--indigo); }
.footer-social-icons { display: flex; gap: 15px; }
.footer-social-icons a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--indigo); padding: 0 !important; }
.footer-social-icons a:hover { transform: scale(1.1); color: var(--white); background: var(--indigo); }
.copyright { border-top: 1px solid rgba(255,255,255,0.4); padding-top: 20px; }
.copyright p { margin: 0; font-size: 0.9rem; }

/* =========================================================================
   ADVISOR MODAL
   ========================================================================= */
.glass-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(25, 8, 109, 0.4); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.glass-modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content.glass-panel {
    width: 90%; max-width: 500px; transform: scale(0.9) translateY(20px); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh; overflow-y: auto; background: rgba(255,255,255,0.7);
}
.glass-modal-overlay.active .modal-content { transform: scale(1) translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; padding: 0 !important;
    display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--indigo); border: none; font-size: 1.2rem;
}
.modal-title { font-size: 1.8rem; margin-bottom: 5px; }
.modal-desc { margin-bottom: 25px; font-size: 1rem; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--indigo); font-size: 0.95rem; }
.glass-input {
    width: 100%; padding: 14px 20px; background: rgba(255,255,255,0.6); backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.8); border-radius: 16px; font-family: inherit; font-size: 1rem; color: var(--text-dark); transition: all 0.3s ease;
}
.glass-input:focus { outline: none; border-color: var(--soft-pink); background: rgba(255,255,255,0.9); }
textarea { resize: vertical; }
.form-submit-btn { width: 100%; margin-top: 10px; }
.checkbox-group { display: flex; align-items: center; gap: 12px; }
.checkbox-group label { margin-bottom: 0; font-weight: 600; color: var(--text-dark); }
.checkbox-group input[type="checkbox"] { width: auto; accent-color: var(--indigo); transform: scale(1.3); margin: 0; padding: 0; cursor: pointer; }
.success-icon { font-size: 5rem; color: #25d366; margin-bottom: 20px; }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal-up { opacity: 0; transform: translateY(60px) scale(0.98); filter: blur(5px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity, filter; }
.reveal-up.active { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal-left { opacity: 0; transform: translateX(60px); filter: blur(5px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity, filter; }
.reveal-left.active { opacity: 1; transform: translateX(0); filter: blur(0); }
.reveal-right { opacity: 0; transform: translateX(-60px); filter: blur(5px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity, filter; }
.reveal-right.active { opacity: 1; transform: translateX(0); filter: blur(0); }

/* =========================================================================
    PRICING SECTION
    ========================================================================= */
.pricing {
    padding: 0 0 60px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--indigo), transparent);
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.2;
}

.pricing-headline {
    font-size: 2.2rem;
    color: var(--indigo);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.price-highlight {
    color: var(--indigo);
    position: relative;
    display: inline-block;
}

.price-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--soft-pink);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.pricing-subline {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .pricing { padding-bottom: 40px; }
    .pricing-headline { font-size: 1.8rem; }
    .pricing-subline { font-size: 1.1rem; }
}

/* =========================================================================
   FLOATING ACTION BUTTONS (STACKED)
   ========================================================================= */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1010;
    align-items: flex-end;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(25, 8, 109, 0.2);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.fab-register {
    background: var(--indigo);
    color: var(--white);
    animation: pulse-fab 2s infinite;
}

.fab-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.fab-btn i {
    font-size: 1.4rem;
}

.fab-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@keyframes pulse-fab {
    0% { box-shadow: 0 0 0 0 rgba(25, 8, 109, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(25, 8, 109, 0); }
    100% { box-shadow: 0 0 0 0 rgba(25, 8, 109, 0); }
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .fab-btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
    .fab-btn i {
        font-size: 1.2rem;
    }
}

/* =========================================================================
   FURTHER MOBILE & TABLET OPTIMIZATIONS
   ========================================================================= */
@media (max-width: 768px) {
    .container { width: 92%; }
    .hero-headline { font-size: 2.4rem !important; }
    .hero-subtext { font-size: 1.1rem !important; }
    .section-title { font-size: 2.2rem !important; }
    .sub-title { font-size: 1.8rem !important; }
    .huge-title { font-size: 2rem !important; }
    .glass-panel { padding: 25px; }
    .glass-panel-dark { padding: 40px 25px; }
    .contact-grid { grid-template-columns: 1fr; }
    .promise-highlight { font-size: 2.2rem; }
    .blob-1, .blob-2, .blob-3, .blob-4, .blob-5 { filter: blur(50px); opacity: 0.4; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .glass-panel { padding: 30px; }
    .hero-headline { font-size: 3.2rem !important; }
    .section-title { font-size: 2.6rem !important; }
    .cards-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}
