/* ==================== FONTS ==================== */
@font-face {
    font-family: 'Ewofi';
    src: url('fonts/EwofiRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ewofi';
    src: url('fonts/EwofiBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ewofi';
    src: url('fonts/EwofiThin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

/* ==================== VARIABLES ==================== */
:root {
    color-scheme: light; 

    /* Color Palette */
    --dark: #4754a6;      
    --primary: #ff842a;   
    --secondary: #1fa78e; 
    --accent: #e04949;    
    --light: #f4f7f6;     
    --white: #ffffff;
    
    /* Layout */
    --spacing: 80px;      
    --spacing-mob: 50px;  
}

/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Ewofi', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400; 
}

h1, h2, h3, h4 { 
    font-family: 'Ewofi', sans-serif; 
    font-weight: 600; 
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block; padding: 10px 25px; border-radius: 50px; font-weight: 600; text-align: center;
    transition: all 0.3s ease; cursor: pointer; border: none; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; margin: 5px;
}

.btn-primary { background-color: var(--primary); color: var(--white); }
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--dark); }
.btn-dark { background-color: var(--dark); color: var(--white); }

.btn-hero { background-color: var(--primary); color: var(--white); border: 2px solid var(--primary); padding: 12px 35px; font-size: 1rem; }
.btn-hero:hover { background-color: var(--white); color: var(--primary); border-color: var(--white); }

.btn-secondary-header { padding: 8px 20px; font-size: 0.85rem; background-color: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary-header:hover { background-color: var(--white); color: var(--dark); }

.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }

/* ==================== TYPOGRAPHY ==================== */
.section-title { text-align: center; font-size: 2.8rem; margin-bottom: 40px; color: var(--dark); }
.section-subtitle { text-align: center; font-size: 1.2rem; margin-bottom: 60px; color: #555; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; }
.flow-footer { text-align: center; margin-top: 50px; font-size: 1.2rem; color: var(--secondary); font-weight: bold; }

/* ==================== HEADER ==================== */
.main-header { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 10px 40px; width: 100%; top: 0; position: fixed; z-index: 1000; 
    background: rgba(40, 48, 95, 0.45); backdrop-filter: blur(15px) saturate(110%);
    -webkit-backdrop-filter: blur(15px) saturate(110%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.logo { display: flex; align-items: center; font-family: 'Ewofi', sans-serif; font-size: 1.3rem; color: var(--white); font-weight: bold; z-index: 101; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.logo-img { height: 40px; width: auto; margin-right: 12px; object-fit: contain; }
.main-nav ul { display: flex; gap: 30px; }
.main-nav a { color: var(--white); font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s; position: relative; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.header-cta { display: flex; gap: 15px; }
.mobile-toggle { display: none; font-size: 1.5rem; color: var(--white); cursor: pointer; z-index: 101; }
.mobile-only { display: none; } 

/* ==================== HERO SECTION OPTIMIZATION ==================== */
#hero {
    /* 1. Force full screen height */
    min-height: 100vh; 
    width: 100%;
    background-color: var(--dark);
    
    /* 2. Vertically center the content */
    display: flex;
    align-items: center; 
    justify-content: center;
    
    /* 3. Handle Header Space & prevent overflow */
    position: relative;
    padding: 80px 20px 40px; /* Top padding compensates for fixed header */
    box-sizing: border-box; 
    overflow: hidden; /* Hides decorative elements that float outside */
}

/* Container alignment */
.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center; /* Centers grid items vertically */
    width: 100%;
    max-width: 1200px; /* Keeps content contained on huge screens */
    margin: 0 auto;
    z-index: 2; /* Ensures text stays on top of background decor */
}

.hero-image-container { 
    width: 100%; 
    position: relative; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    /* Removed translate as flex centering handles it better */
}

.hero-slider { 
    display: grid; 
    grid-template-areas: "stack"; 
    width: 100%; 
    max-width: 500px; 
    margin: 0 auto; 
}

.hero-slide { 
    grid-area: stack; 
    width: 100%; 
    border-radius: 20px; 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
    z-index: 0; 
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-text-content { 
    color: var(--white); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    padding-left: 20px; 
}

.hero-main-logo { 
    width: 220px; 
    height: auto; 
    display: block; 
    margin-bottom: 10px; 
    position: relative; 
    z-index: 1; 
}

.hero-title { 
    font-size: 2rem; 
    line-height: 1.2; 
    margin-bottom: 10px; 
    color: var(--primary); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.hero-desc { 
    font-size: 1rem; 
    margin-bottom: 20px; 
    max-width: 450px; 
    color: var(--light); 
    line-height: 1.4; 
}

.hero-details { 
    margin-top: 15px; 
    font-weight: 500; 
    color: var(--white); 
    font-size: 0.9rem; 
    line-height: 1.4; 
    border-top: 1px solid rgba(255,255,255,0.2); 
    padding-top: 10px; 
    width: 100%; 
}

.hero-buttons { 
    display: flex; 
    gap: 10px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

/* ==================== FLOW SECTION ==================== */
#flow { padding: var(--spacing) 0; overflow: hidden; }
.flow-container { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; position: relative; max-width: 1000px; margin: 0 auto; }
.flow-line-bg { position: absolute; top: 40px; left: 0; width: 100%; height: 4px; background: #e0e0e0; z-index: 0; border-radius: 4px; }
.flow-line-progress { position: absolute; top: 40px; left: 0; width: 0%; height: 4px; background: var(--primary); z-index: 0; border-radius: 4px; transition: width 1.5s ease-out; }
.flow-step { z-index: 1; width: 150px; text-align: center; position: relative; }
.flow-circle { width: 80px; height: 80px; background: var(--white); color: var(--primary); border: 3px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 15px auto; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.flow-text { font-weight: 600; font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.flow-info { font-size: 0.9rem; color: #666; line-height: 1.4; opacity: 0; transform: translateY(10px); transition: all 0.5s ease; background: var(--light); padding: 10px; border-radius: 8px; border: 1px solid #eee; }
.flow-step.active .flow-circle { background: var(--primary); color: var(--white); transform: scale(1.1); }
.flow-step.active .flow-info { opacity: 1; transform: translateY(0); }

/* ==================== ZONES & ACTIVITIES ==================== */
#zones { padding: var(--spacing) 0; background-color: var(--dark); color: var(--white); position: relative; overflow: hidden; }
#zones .section-title { color: var(--white); }

.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }
.zone-card { background: rgba(255,255,255,0.05); padding: 40px 30px; border-radius: 20px; text-align: center; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s ease; height: 100%; }
.zone-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-10px); border-color: var(--primary); }
.zone-icon { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    display: inline-block; 
    /* ADD THIS LINE BELOW to fix emoji display */
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif !important;
}
.zone-title { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); font-weight: 600; }
.zone-card p { font-size: 1rem; color: #ddd; line-height: 1.5; }

.activities-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.activity-card { background: rgba(255,255,255,0.08); padding: 25px 15px; border-radius: 15px; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; min-height: 140px; flex: 1 1 220px; max-width: 280px; }
.activity-card i { font-size: 2rem; color: var(--secondary); transition: transform 0.3s ease; }
.activity-card span { font-weight: 600; font-size: 1.1rem; color: var(--white); line-height: 1.3; }
.activity-card:hover { background: var(--white); transform: scale(1.05); }
.activity-card:hover i { color: var(--primary); transform: scale(1.2); }
.activity-card:hover span { color: var(--dark); }
.activity-card:last-child i { color: var(--accent); }

/* ==================== WHY ATTEND ==================== */
#why { padding: var(--spacing) 0; background: var(--white); }
.reasons-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto; }
.reason-item { display: flex; align-items: center; font-size: 1.1rem; padding: 20px; background: var(--light); border-radius: 15px; opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.reason-item.visible { opacity: 1; transform: translateY(0); }
.reason-item:nth-child(1) { transition-delay: 0.1s; } .reason-item:nth-child(2) { transition-delay: 0.2s; } .reason-item:nth-child(3) { transition-delay: 0.3s; } .reason-item:nth-child(4) { transition-delay: 0.4s; } .reason-item:nth-child(5) { transition-delay: 0.5s; }
.check-icon { color: var(--secondary); margin-right: 15px; font-size: 1.5rem; font-weight: bold; background: rgba(31, 167, 142, 0.1); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

/* ==================== SNAPSHOT ==================== */
#snapshot { padding: var(--spacing) 0; background-color: var(--light); text-align: center; }
.snapshot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.snap-card { background: var(--white); padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; border-bottom: 5px solid var(--primary); }
.snap-card:hover { transform: translateY(-5px); }
.snap-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.snap-label { display: block; font-size: 0.9rem; color: #777; text-transform: uppercase; margin-bottom: 5px; letter-spacing: 1px; font-weight: 600; }
.snap-value { font-size: 1.2rem; font-weight: 600; color: var(--dark); }
.map-placeholder { width: 100%; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-top: 40px; }

/* ==================== FOOTER CTA ==================== */
#footer-cta { background: var(--primary); padding: 80px 20px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
#footer-cta h2 { font-size: 2.5rem; margin-bottom: 30px; }
.footer-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.footer-socials { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.footer-socials .social-icon { background: rgba(255,255,255,0.2); }
.footer-socials .social-icon:hover { background: var(--white); color: var(--primary); }

/* ==================== DECOR & ANIMATIONS ==================== */
.decor { position: absolute; z-index: 1; pointer-events: none; color: var(--accent); }

/* Hero Decor */
.decor-robot { top: 60%; left: 5%; font-size: 4rem; color: var(--secondary); opacity: 0.9; transform: rotate(10deg); animation: float 5s ease-in-out infinite; }
.decor-lego-left { top: 35%; left: 8%; font-size: 3rem; color: var(--primary); opacity: 0.8; animation: float-faster 5s ease-in-out infinite; }
.decor-gear { top: 8%; right: 20%; font-size: 2.5rem; color: var(--white); opacity: 0.4; animation: spin-slow 10s linear infinite; }
.decor-lego-1 { top: 20%; left: 90%; font-size: 2.5rem; color: var(--primary); opacity: 0.8; animation: float-faster 6s ease-in-out infinite; }
.decor-lego-2 { bottom: 65%; right: 55%; font-size: 3rem; color: var(--accent); opacity: 0.7; animation: float 8s ease-in-out infinite reverse; }
.decor-lego-3 { top: 50%; left: 50%; font-size: 1.5rem; color: var(--secondary); opacity: 0.5; z-index: 0; animation: float 5s ease-in-out infinite; }
.star-1 { top: 15%; left: 5%; font-size: 2rem; color: var(--primary); animation: float 4s ease-in-out infinite; }
.star-2 { bottom: 20%; right: 10%; font-size: 1.5rem; color: var(--white); opacity: 0.6; animation: float 5s ease-in-out infinite reverse; }
.star-3 { top: 40%; right: 45%; font-size: 1rem; opacity: 0.4; animation: float 3s ease-in-out infinite; }
.star-4 { bottom: 10%; left: 35%; font-size: 0.8rem; color: var(--white); animation: float 2s ease-in-out infinite; }
.star-5 { top: 25%; left: 40%; font-size: 1.2rem; color: var(--secondary); opacity: 0.5; animation: float 4s ease-in-out infinite; }
.star-6 { top: 80%; right: 5%; font-size: 2.2rem; color: var(--accent); opacity: 0.2; animation: float 7s ease-in-out infinite; }
.spaceship-main { top: 8%; left: 30%; font-size: 3.5rem; animation: float 6s ease-in-out infinite; color: var(--white); opacity: 0.9; }
.spaceship-small { bottom: 55%; left: 90%; font-size: 1.8rem; transform: rotate(45deg); opacity: 0.8; animation: float-faster 4s ease-in-out infinite reverse; }
.rocket-tiny { top: 40%; right: 10%; font-size: 1.2rem; color: var(--secondary); transform: rotate(-45deg); opacity: 0.6; animation: float 3s ease-in-out infinite; }
.planet-large { top: 5%; right: 5%; font-size: 5rem; opacity: 0.3; color: var(--secondary); animation: float 8s ease-in-out infinite; }
.planet-small { bottom: 35%; right: 25%; font-size: 2rem; opacity: 0.5; animation: float 5.5s ease-in-out infinite reverse; }

/* Zones Decor */
.zone-gear { top: 10%; left: -5%; font-size: 8rem; color: var(--white); opacity: 0.4; animation: spin-slow 20s linear infinite; }
.zone-atom { top: 15%; right: 5%; font-size: 5rem; color: var(--secondary); opacity: 0.4; animation: float 6s ease-in-out infinite; }
.zone-dna { bottom: 5%; left: 5%; font-size: 4rem; color: var(--primary); opacity: 0.5; transform: rotate(-15deg); animation: float-faster 8s ease-in-out infinite; }
.zone-beaker { top: 60%; left: 7%; font-size: 3rem; color: var(--secondary); opacity: 0.5; animation: float 5s ease-in-out infinite; }
.zone-lego-1 { bottom: 15%; right: 10%; font-size: 3rem; color: var(--white); opacity: 0.2; animation: float-faster 6s ease-in-out infinite reverse; }
.zone-robot-small { top: 5%; left: 20%; font-size: 2.5rem; color: var(--white); opacity: 0.25; animation: giggle 4s ease-in-out infinite; }
.zone-robot-small-2 { bottom: 40%; right: 8%; font-size: 4rem; color: var(--secondary); opacity: 0.7; animation: giggle 5s ease-in-out infinite reverse; }
.zone-star-1 { top: 50%; left: 50%; font-size: 1.5rem; color: var(--white); opacity: 0.4; animation: float 4s ease-in-out infinite; }
.zone-star-2 { top: 10%; right: 20%; font-size: 2rem; color: var(--accent); opacity: 0.5; animation: float 5s ease-in-out infinite reverse; }
.zone-star-3 { top: 10%; left: 40%; font-size: 1rem; color: var(--secondary); opacity: 0.5; animation: float 3s ease-in-out infinite; }
.zone-star-4 { top: 40%; left: 5%; font-size: 1.5rem; color: var(--primary); opacity: 0.7; animation: float-faster 4s ease-in-out infinite reverse; }

/* Footer Decor */
.footer-heart { top: 10%; left: 10%; font-size: 3rem; color: var(--white); opacity: 0.5; transform: rotate(-10deg); animation: giggle 3s ease-in-out infinite; }
.footer-rocket { bottom: 10%; right: 5%; font-size: 5rem; color: var(--white); opacity: 0.5; transform: rotate(-45deg); animation: float 5s ease-in-out infinite; }
.footer-lego { top: 25%; right: 20%; font-size: 2.5rem; color: var(--white); opacity: 0.5; animation: float-faster 7s ease-in-out infinite; }
.footer-planet { bottom: 15%; left: 5%; font-size: 3.5rem; color: var(--white); opacity: 0.5; animation: spin-slow 15s linear infinite; }
.footer-star-1 { top: 20%; right: 15%; font-size: 1.5rem; color: var(--white); opacity: 0.5; animation: float-faster 4s ease-in-out infinite; }
.footer-star-2 { bottom: 30%; left: 20%; font-size: 1.2rem; color: var(--white); opacity: 0.5; animation: float 6s ease-in-out infinite reverse; }
.footer-star-3 { top: 50%; left: 50%; font-size: 1rem; color: var(--white); opacity: 0.4; animation: float 3s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(5deg); } }
@keyframes float-faster { 0%, 100% { transform: translateY(0) translateX(0) rotate(45deg); } 50% { transform: translateY(-15px) translateX(10px) rotate(50deg); } }
@keyframes spin-slow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes giggle { 0% { transform: rotate(0deg) scale(1); } 25% { transform: rotate(-3deg) scale(1.05); } 50% { transform: rotate(3deg) scale(1.05); } 75% { transform: rotate(-1deg) scale(1.05); } 100% { transform: rotate(0deg) scale(1); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(0); } 40% { transform: translateX(10px); } 60% { transform: translateX(5px); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.social-icons { position: absolute; bottom: 50px; right: 40px; display: flex; flex-direction: column; gap: 15px; z-index: 10; }
.social-icon { width: 45px; height: 45px; background: rgba(255,255,255,0.1); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s; }
.social-icon:hover { background: var(--primary); transform: scale(1.1); }

.scroll-indicator { position: absolute; bottom: 50px; left: 40px; color: var(--white); display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: 1px; transform: rotate(-90deg); transform-origin: left; z-index: 10; }
.scroll-arrow { font-size: 1.5rem; animation: bounce 2s infinite; }

/* ==================== RESPONSIVE DESIGN ==================== */

/* Specific fix for average Laptops (1280px - 1440px) */
@media screen and (max-width: 1440px) {
    #hero {
        /* Adjust padding if content feels too squeezed */
        padding-top: 100px; 
    }
    
    .hero-title {
        font-size: 3rem; /* Scale down text slightly */
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    /* Prevent image from pushing content off screen */
    .hero-image-container img {
        max-width: 90%; 
        height: auto;
        max-height: 70vh; /* Ensures image isn't taller than the screen */
        object-fit: contain;
    }
}

/* Fix for Smaller Laptops/Tablets (max-width 1024px) */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-grid {
        gap: 20px;
    }
}

/* TABLET & MOBILE (Max 992px) */
@media (max-width: 992px) {
    :root { --spacing: 50px; }
    
    .mobile-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: var(--dark); border-top: 1px solid rgba(255,255,255,0.1); padding: 20px; z-index: 100; box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
    .main-nav.active { display: block; animation: fadeIn 0.3s ease; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 20px; }
    
    .mobile-only { display: block; margin-top: 15px; width: 100%; text-align: center; }
    .mobile-only .btn { display: block; width: 80%; margin: 10px auto; max-width: 300px; }
    
    .header-cta { display: none; } 
    
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-text-content { text-align: center; align-items: center; padding: 0 10px; }
    
    #hero { min-height: auto; padding-top: 100px; padding-bottom: 50px; }
    .hero-image-container { transform: translateY(0); order: -1; margin-bottom: 20px; }
    .hero-slider { max-width: 300px; }
    
    .hero-main-logo { margin: 0 auto 15px auto; width: 180px; }
    .hero-title { font-size: 1.6rem; margin-bottom: 10px; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 20px; }
    .hero-details { width: 100%; margin-top: 20px; font-size: 0.9rem; }
    .hero-buttons { justify-content: center; width: 100%; }
    
    .social-icons, .scroll-indicator { display: none; }
    
    /* Decoration Control */
    .decor-lego-1, .decor-lego-2, .decor-lego-3, .rocket-tiny, .star-3, .star-4, .star-5, .decor-gear { display: none; }
    .decor-robot { top: 90%; left: 80%; font-size: 2.5rem; opacity: 0.3; z-index: 0; }
    .decor-lego-left { display: none; }
    .spaceship-main { top: 2%; left: 2%; font-size: 2rem; opacity: 0.5; }
    .planet-large { opacity: 0.2; top: 2%; right: 2%; }
}

/* SMARTPHONE (Max 768px) */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; margin-bottom: 25px; }
    .section-subtitle { font-size: 1rem; margin-bottom: 30px; }
    
    .reasons-list { grid-template-columns: 1fr; }
    .activities-grid { gap: 10px; }
    .activity-card { padding: 15px 10px; min-height: 110px; flex: 1 1 40%; max-width: none; }
    .activity-card span { font-size: 0.85rem; }
    
    .flow-container { display: flex; flex-direction: column; align-items: flex-start; gap: 30px; padding-left: 10px; position: relative; }
    .flow-line-bg, .flow-line-progress { left: 40px; width: 4px; height: 100%; top: 0; transform: none; z-index: 0; }
    .flow-line-progress { width: 4px; height: 0%; transition: height 1.5s ease-out; }
    .flow-step { width: 100%; display: flex; flex-direction: row; align-items: center; z-index: 2; }
    .flow-circle { width: 60px; height: 60px; font-size: 1.4rem; margin: 0 20px 0 0; flex-shrink: 0; }
    .flow-content-wrapper { text-align: left; padding: 0; transform: none !important; flex: 1; }
    .flow-text { font-size: 1.1rem; margin-bottom: 5px; }
    .flow-info { padding: 8px; font-size: 0.8rem; background: rgba(255,255,255,0.9); }
    .flow-step.active .flow-info { transform: none; }
    
    .snapshot-grid { grid-template-columns: 1fr; gap: 15px; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
    .btn { width: 100%; max-width: 280px; margin: 5px 0; }
}

/* ==================== TICKET PAGE COMPONENT ==================== */

/* --- 1. Page Layout & Background --- */
.ticket-page { 
    background-color: var(--light); 
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 1;
    position: relative;
    min-height: 100vh;
}

.ticket-header { 
    background-color: var(--dark); 
    position: relative; 
    padding: 15px 40px; 
}

.ticket-hero { 
    background-color: var(--dark); 
    padding: 40px 0 60px; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    border-bottom-left-radius: 50px; 
    border-bottom-right-radius: 50px; 
}

/* --- 2. Ticket Cards Grid --- */
#ticket-options { 
    margin-top: -40px; 
    padding-top: 80px;
    padding-bottom: var(--spacing); 
    position: relative;
    overflow: hidden;
}

#ticket-options .container { 
    position: relative; 
    z-index: 1; 
}

.tickets-grid { 
    display: flex;           
    flex-wrap: wrap;         
    justify-content: center; 
    gap: 30px; 
    margin: 0 auto;           
    max-width: 1200px;        
}

.ticket-card { 
    background: var(--white); 
    border-radius: 20px; 
    padding: 30px 20px; 
    text-align: center; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
    position: relative; 
    border: 2px solid transparent; 
    transition: all 0.3s ease; 
    overflow: hidden; 
    flex: 0 1 300px;          
    width: 100%;              
    max-width: 320px;         
}

.ticket-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
}

.ticket-header-strip { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background: var(--accent); 
    color: white; 
    font-size: 0.8rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    padding: 5px; 
    letter-spacing: 1px; 
}

.ticket-card h3 { 
    font-size: 1.5rem; 
    color: var(--dark); 
    margin-top: 15px; 
}

.ticket-audience { 
    font-size: 0.9rem; 
    color: #777; 
    margin-bottom: 15px; 
}

.price { 
    font-size: 2.2rem; 
    color: var(--primary); 
    font-weight: 700; 
    margin-bottom: 20px; 
}

.ticket-features { 
    text-align: left; 
    margin-bottom: 25px; 
    padding: 0 10px; 
}

.ticket-features li { 
    margin-bottom: 10px; 
    font-size: 0.95rem; 
    color: #555; 
    display: flex; 
    align-items: center; 
}

.ticket-features i { 
    color: var(--secondary); 
    margin-right: 10px; 
}

.ticket-selector { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    background: #f0f0f0; 
    padding: 5px; 
    border-radius: 50px; 
    max-width: 150px; 
    margin: 0 auto; 
}

.qty-btn { 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    border: none; 
    background: var(--white); 
    color: var(--dark); 
    font-weight: bold; 
    font-size: 1.2rem; 
    cursor: pointer; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.qty-input { 
    width: 40px; 
    text-align: center; 
    border: none; 
    background: transparent; 
    font-weight: bold; 
    font-size: 1.1rem; 
    pointer-events: none; 
}

.special-card { 
    border: 2px solid var(--primary); 
    background: #fff8f0; 
}

.proceed-btn-container { 
    text-align: center; 
    margin-top: 40px; 
}

/* --- 3. Inclusions Section --- */
#inclusions { 
    padding: 40px 0; 
    background-color: var(--white); 
}

.inclusion-list { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    margin-top: 30px; 
}

.inclusion-item { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    background: var(--light); 
    padding: 15px 25px; 
    border-radius: 50px; 
    font-weight: 600; 
    color: var(--dark); 
}

.inclusion-item i { 
    color: var(--primary); 
    font-size: 1.2rem; 
}

/* --- 4. DECORATIVE ELEMENTS --- */

/* Hero Icons */
.bg-icon { 
    position: absolute; 
    z-index: 0; 
    color: var(--dark); 
    opacity: 0.1; 
    pointer-events: none; 
}
.bg-icon i { font-size: 10rem; }
.icon-atom { top: 40%; left: 2%; transform: rotate(30deg); color: var(--primary); opacity: 0; }
.icon-dna { bottom: 50%; right: 3%; transform: rotate(-15deg); color: var(--secondary); opacity: 0; }
.icon-microscope { top: 7%; left: 20%; font-size: 6rem; opacity: 0.38; transform: rotate(15deg); color: var(--secondary); margin-top: 10px; }
.icon-robot-arm { top: 6%; left: 70%; transform: rotate(-10deg); color: var(--accent); opacity: 0.6; margin-top: 10px; }

/* Ticket Section Decor (Existing) */
.ticket-gear { top: 5%; left: -2%; font-size: 10rem; color: var(--dark); opacity: 0.5; animation: spin-slow 20s linear infinite; }
.ticket-dna { bottom: 15%; right: -2%; font-size: 8rem; color: var(--secondary); opacity: 0.5; transform: rotate(-15deg); animation: float 8s ease-in-out infinite; }
.ticket-star-1 { top: 35%; right: 5%; font-size: 2rem; color: var(--primary); opacity: 0.5; animation: float 4s ease-in-out infinite; }
.ticket-star-2 { bottom: 8%; left: 3%; font-size: 1.5rem; color: var(--accent); opacity: 0.5; animation: float 5s ease-in-out infinite reverse; }

.ticket-rocket { top: 12%; right: 10%; font-size: 4rem; color: var(--accent); opacity: 0.5; transform: rotate(45deg); animation: float-faster 6s ease-in-out infinite; }
.ticket-lego { top: 45%; left: 2%; font-size: 3rem; color: var(--primary); opacity: 0.5; animation: float 5s ease-in-out infinite; }
.ticket-planet { bottom: 40%; right: 2%; font-size: 3.5rem; color: var(--dark); opacity: 0.5; animation: spin-slow 15s linear infinite; }
.ticket-beaker { top: 70%; left: 8%; font-size: 2.5rem; color: var(--secondary); opacity: 0.5; transform: rotate(10deg); animation: float 7s ease-in-out infinite; }
.ticket-bulb { bottom: 65%; left: 12%; font-size: 2.5rem; color: var(--primary); opacity: 0.5; animation: giggle 3s ease-in-out infinite; }
.ticket-robot-head { top: 25%; right: 15%; font-size: 3rem; color: var(--dark); opacity: 0.5; animation: float 5s ease-in-out infinite; }

/* Footer Decor */
.footer-heart { top: 10%; left: 10%; font-size: 3rem; color: var(--white); opacity: 0.3; transform: rotate(-10deg); animation: giggle 3s ease-in-out infinite; }
.footer-rocket { bottom: 10%; right: 5%; font-size: 5rem; color: var(--white); opacity: 0.15; transform: rotate(-45deg); animation: float 5s ease-in-out infinite; }
.footer-lego { top: 25%; right: 20%; font-size: 2.5rem; color: var(--white); opacity: 0.25; animation: float-faster 7s ease-in-out infinite; }
.footer-planet { bottom: 15%; left: 5%; font-size: 3.5rem; color: var(--white); opacity: 0.15; animation: spin-slow 15s linear infinite; }
.footer-star-1 { top: 20%; right: 15%; font-size: 1.5rem; color: var(--white); opacity: 0.5; animation: float-faster 4s ease-in-out infinite; }
.footer-star-2 { bottom: 30%; left: 20%; font-size: 1.2rem; color: var(--white); opacity: 0.5; animation: float 6s ease-in-out infinite reverse; }
.footer-star-3 { top: 50%; left: 50%; font-size: 1rem; color: var(--white); opacity: 0.4; animation: float 3s ease-in-out infinite; }

/* --- 5. FAQ Section --- */
.faq-section { 
    padding: 60px 0 80px; 
    background: var(--dark); 
    border-top: none; 
}

.faq-wrapper { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-item { 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    margin-bottom: 10px; 
}

.faq-question {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white); 
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent; 
    transition: color 0.3s;
}

.faq-question:hover { 
    color: var(--primary); 
}

.faq-question i {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5); 
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,255,255,0.05); 
}

.faq-answer p { 
    padding: 0 20px 20px 20px; 
    color: #ccc; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin: 0; 
}

.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }
.faq-item.active .faq-answer { max-height: 300px; }

/* --- 6. Modal & Blur Effects --- */
.main-content-wrapper { transition: filter 0.3s ease; }
.blur-background { filter: blur(8px); pointer-events: none; }

.modal-overlay { 
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    align-items: center; 
    justify-content: center; 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.modal-overlay.show { display: flex; opacity: 1; }

.modal-content { 
    background-color: var(--white); 
    margin: 20px; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    width: 100%; 
    max-width: 600px; 
    position: relative; 
    transform: translateY(50px); 
    transition: transform 0.3s ease; 
    max-height: 90vh; 
    overflow-y: auto; 
}

.modal-overlay.show .modal-content { transform: translateY(0); }

.close-modal-btn { 
    color: #aaa; 
    position: absolute; 
    top: 15px; 
    right: 25px; 
    font-size: 28px; 
    font-weight: bold; 
    cursor: pointer; 
    z-index: 10; 
}

.close-modal-btn:hover { color: var(--primary); }

/* --- 7. Payment Form Styles --- */
.payment-wrapper { width: 100%; }
.modal-content .payment-wrapper { box-shadow: none; padding: 0; margin: 0; }

.payment-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 20px; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 15px; 
}

.form-group { margin-bottom: 15px; }

.form-group label { 
    display: block; 
    margin-bottom: 5px; 
    font-weight: 600; 
    font-size: 0.9rem; 
    color: #555; 
}

.form-group input { 
    width: 100%; 
    padding: 12px; 
    border: 1px solid #ddd; 
    border-radius: 10px; 
    font-size: 1rem; 
}

.radio-group { display: flex; gap: 15px; }

.radio-box { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border: 1px solid #ddd; 
    padding: 10px; 
    border-radius: 10px; 
    cursor: pointer; 
}

.radio-box input { width: auto; }

.order-summary { 
    background: var(--light); 
    padding: 20px; 
    border-radius: 15px; 
    margin: 20px 0; 
}

.order-summary h4 { margin-bottom: 15px; font-size: 1.1rem; color: var(--dark); border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 10px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.95rem; color: #555; }
.summary-row span:last-child { font-weight: 600; color: var(--dark); }
.summary-divider { height: 1px; background-color: rgba(0,0,0,0.1); margin: 15px 0; }
.summary-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.2rem; font-weight: 700; color: var(--primary); }

.payment-trust { margin-top: 20px; text-align: center; color: #888; font-size: 0.9rem; }
.payment-icons { margin-top: 10px; display: flex; justify-content: center; gap: 15px; font-size: 1.5rem; color: #bbb; }

/* --- 8. Sticky Footer --- */
.sticky-footer { 
    display: none; 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    background: var(--white); 
    padding: 15px 20px; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1); 
    z-index: 999; 
    justify-content: space-between; 
    align-items: center; 
}

.sticky-info { display: flex; flex-direction: column; }
.sticky-info span:first-child { font-size: 0.8rem; color: #777; }
.sticky-price { font-size: 1.4rem; color: var(--dark); font-weight: 800; }

/* --- 9. Footer CTA --- */
#footer-cta {
    background-color: var(--primary); 
    padding: 60px 0 100px; 
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1); 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,132,42,0.4);
}

/* --- 10. Responsive --- */
@media (max-width: 768px) {
    .sticky-footer { display: flex; }
    .proceed-btn-container { display: none; } 
    .ticket-header { padding: 15px 20px; }
    .ticket-hero { padding: 30px 0 60px; border-radius: 0 0 30px 30px; }
    .tickets-grid { gap: 20px; }
    .ticket-card { padding: 20px 15px; }
    .inclusion-list { flex-direction: column; gap: 10px; }
    .inclusion-item { width: 100%; }
    .modal-content { margin: 10px; padding: 20px; }
    .bg-icon i { font-size: 5rem; }
    .ticket-page { background-size: 20px 20px; }
    .icon-microscope { display: none; }
    
    /* MOBILE FIX: HIDE ROBOT ARM IN TICKET HEADER */
    .ticket-hero .icon-robot-arm { display: none; }
    
    /* Adjust decor size for mobile so they don't crowd the screen */
    .ticket-rocket, .ticket-planet, .ticket-dna, .ticket-gear { 
        font-size: 3rem; 
        opacity: 0.1; 
    }
}

/* ==================== PAGE 3: CONTACT PAGE STYLES ==================== */

/* --- CORE LAYOUT --- */
.contact-body { 
    background-color: var(--dark); 
    color: var(--white); 
    overflow-x: hidden;
    overflow-y: auto; 
    position: relative; 
    height: 100vh; 
    width: 100vw;
}

.contact-nav { 
    position: absolute; 
    width: 100%; 
    top: 0; 
    left: 0; 
    padding: 15px 40px; 
    background: transparent; 
    z-index: 10; 
}

.contact-split-wrapper { 
    display: flex; 
    height: 100vh; 
    padding-top: 60px; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
    max-width: 1400px;
    margin: 0 auto;
}

/* --- LEFT COLUMN (Sidebar) --- */
.contact-sidebar { 
    flex: 0.8; 
    padding: 0 40px; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    height: 100%;
}

.sidebar-content { 
    display: flex; 
    flex-direction: column; 
    width: 100%;
    align-items: center;
    max-width: 380px; 
    transform: translateY(-20px); 
}

/* LOGO */
.sidebar-logo { 
    width: 180px; 
    height: auto; 
    display: block; 
    margin: 0 auto 15px auto; 
    opacity: 1; 
}

/* CONTACT GROUPS */
.contact-group { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    margin-bottom: 15px; 
    gap: 3px; 
}

.contact-group h3 { 
    font-size: 1.2rem; 
    font-weight: 700; 
    color: var(--white); 
    margin: 0;
    line-height: 1.2;
}

.contact-group p { 
    font-size: 0.9rem; 
    color: var(--light); 
    opacity: 0.9; 
    margin: 0; 
}

.contact-group a, .contact-group span { 
    font-size: 1rem; 
    font-weight: 600; 
    color: var(--white); 
    text-decoration: underline; 
}

.icon-box { 
    font-size: 1.5rem; 
    color: var(--primary); 
    margin-bottom: 5px;
}

/* ORGANIZER BLOCK */
.organizer-block { 
    display: flex; 
    flex-direction: column;
    align-items: center;
    margin-top: 5px; 
    margin-bottom: 20px; 
}

.organizer-block small { 
    display: block; 
    font-size: 1.5rem; 
    color: var(--light); 
    opacity: 0.8; 
    margin-bottom: 4px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

.org-flex { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 15px; 
}

.org-logo-small { 
    height: 45px; 
    width: auto; 
    background: white; 
    padding: 2px; 
    border-radius: 3px; 
}

.org-flex span { 
    font-weight: 500; 
    color: var(--white); 
    font-size: 1.5rem; 
}

/* SOCIALS */
.sidebar-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px; 
}

.social-row-simple { 
    display: flex; 
    gap: 10px; 
    justify-content: center;
}

.social-row-simple a { 
    color: var(--white); 
    background: rgba(255,255,255,0.1); 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1rem; 
    transition: all 0.3s; 
}

.social-row-simple a:hover { 
    background: var(--primary); 
    transform: translateY(-3px); 
}

/* --- RIGHT SIDE (Form) --- */
.split-divider { 
    width: 1px; 
    height: 60vh; 
    background-color: rgba(255,255,255,0.15); 
    align-self: center; 
}

.contact-form-area { 
    flex: 1.2; 
    padding: 0 40px 0 60px; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    height: 100%;
}

/* COMPACT CARD DESIGN */
.brand-form-card { 
    background-color: var(--primary); 
    width: 100%; 
    max-width: 550px; 
    border-radius: 25px; 
    padding: 30px; 
    color: var(--white); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.3); 
}

.form-title { 
    font-size: 1.8rem; 
    line-height: 1.1; 
    margin-bottom: 5px; 
    color: var(--white); 
    text-align: left; 
}

.form-subtitle { 
    font-size: 0.9rem; 
    margin-bottom: 20px; 
    opacity: 0.95; 
    color: var(--white); 
    text-align: left; 
}

.clean-form { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
} 

.input-line { display: flex; flex-direction: column; }

.input-line label { 
    font-size: 0.85rem; 
    margin-bottom: 2px; 
    opacity: 0.95; 
    font-weight: 500;
}

.input-line input, .input-line textarea, .input-line select { 
    background: transparent; 
    border: none; 
    border-bottom: 1px solid rgba(255,255,255,0.6); 
    padding: 6px 0; 
    color: var(--white); 
    font-size: 0.95rem; 
    font-family: inherit; /* Ensures proper font */
    resize: none; 
    width: 100%; 
}

.input-line input:focus, .input-line textarea:focus, .input-line select:focus { outline: none; border-bottom-color: var(--white); border-bottom-width: 2px; }

/* === DROPDOWN VISIBILITY FIX === */
.input-line select option { 
    background-color: #ffffff; /* Explicit White Background */
    color: #000000; /* Explicit Black Text */
    font-size: 1rem;
}

/* === FIXED BUTTON FONT === */
.btn-black-block { 
    background-color: #000; 
    color: #fff; 
    border: none; 
    padding: 12px; 
    border-radius: 50px; 
    cursor: pointer; 
    margin-top: 10px; 
    transition: transform 0.2s; 
    width: 100%; 
    
    /* Font Optimization */
    font-family: 'Ewofi', sans-serif; 
    font-size: 1rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.btn-black-block:hover { transform: translateY(-3px); background-color: #222; }

/* RESPONSIVE CONTACT */
@media (max-width: 992px) {
    .contact-body { overflow-y: auto; height: auto; min-height: 100vh; }
    .contact-split-wrapper { flex-direction: column; padding-top: 80px; height: auto; padding-bottom: 40px; }
    .split-divider { display: none; }
    
    .contact-sidebar { 
        padding: 0 20px 30px; 
        order: 2; 
        gap: 20px; 
        justify-content: flex-start; 
        text-align: center; 
        flex: auto;
    }
    
    .sidebar-logo { margin: 10px auto 20px auto; width: 160px; }
    
    .contact-form-area { 
        padding: 0 20px 40px; 
        order: 1; 
        justify-content: center; 
        flex: auto;
        width: 100%;
    }
    .brand-form-card { padding: 30px 20px; border-radius: 20px; max-width: 100%; }
    .form-title { font-size: 1.6rem; }
}

/* Custom Scrollbar for T&C Modal */
.tnc-body::-webkit-scrollbar {
    width: 8px;
}
.tnc-body::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
.tnc-body::-webkit-scrollbar-thumb {
    background: #ccc; 
    border-radius: 4px;
}
.tnc-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary); 
}
/* FORCE FONT AWESOME FOR ICONS */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
    font-weight: 900; 
}
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

/* ==================== COMMON FAQ SECTION (Dark Theme) ==================== */
#faq-section {
    position: relative; /* <--- THIS IS THE KEY FIX */
    padding: 60px 0 80px;
    background-color: var(--dark);
    color: var(--white);
    z-index: 2;
    overflow: hidden; /* Ensures icons don't spill out of the section */
}
/* Force the section title inside this specific section to be white */
#faq-section .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
    /* Removed white background/shadow from previous version */
    background: transparent; 
    box-shadow: none;
    border-radius: 0;
}

.faq-question {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    background: transparent; /* Ensures it blends with dark bg */
}

.faq-question:hover {
    background: transparent; /* Removes the light hover effect */
    color: var(--primary);
}

.faq-question i {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255,255,255,0.05); /* Subtle container for the answer text */
    padding: 0; /* Reset padding, controlled by p tag below */
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #ccc; /* Light grey text for readability on dark */
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-answer {
    /* Padding is handled by the P tag inside, so we just set max-height here */
    max-height: 300px; 
}

/* ==================== FAQ DECORATIONS (FORCED FIX) ==================== */

/* Apply absolute positioning individually to be safe */
.faq-dec-1, .faq-dec-2, .faq-dec-3, .faq-dec-4, 
.faq-dec-5, .faq-dec-6, .faq-dec-7, .faq-dec-8 {
    position: absolute !important; /* Force positioning */
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Individual Positions */
.faq-dec-1 { top: 50px; left: 5%; color: var(--primary); transform: rotate(-15deg); }
.faq-dec-2 { top: 80px; right: 8%; color: var(--secondary); }
.faq-dec-3 { top: 45%; left: 2%; color: var(--accent); font-size: 2.5rem; }
.faq-dec-4 { top: 40%; right: 5%; color: var(--white); font-size: 2rem; }
.faq-dec-5 { bottom: 15%; left: 8%; color: var(--primary); transform: rotate(20deg); }
.faq-dec-6 { bottom: 10%; right: 5%; color: var(--secondary); font-size: 4rem; transform: rotate(-45deg); }
.faq-dec-7 { bottom: 40%; left: 20%; color: var(--white); opacity: 0.2; }
.faq-dec-8 { top: 25%; right: 25%; color: var(--dark); filter: brightness(1.5); opacity: 0.2; }

/* Animation Keyframes (Ensure these exist in your CSS) */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ==================== FOOTER LEGAL LINKS ==================== */
.legal-links-container {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.legal-links-container a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.legal-divider {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

/* MOBILE SPECIFIC LAYOUT */
@media (max-width: 768px) {
    .legal-links-container {
        flex-direction: column; /* Stacks items vertically */
        gap: 8px; /* Space between the top row and the bottom link */
    }

    /* Hide the divider between Privacy and Refund on mobile */
    .legal-divider.desktop-only {
        display: none;
    }

    /* Keep Terms and Privacy on the same line */
    .legal-group {
        display: block;
    }
}

/* ==================== FAQ MOBILE CUT-OFF FIX ==================== */

/* 1. Force the container to be huge when active */
.faq-item.active .faq-answer {
    max-height: 2000px !important; /* Using !important ensures nothing overrides this */
    height: auto !important;
    overflow: visible !important; /* Lets content spill out if it somehow exceeds height */
    padding-bottom: 20px;
}

/* 2. Ensure the internal paragraph expands too */
.faq-item.active .faq-answer p {
    display: block;
    height: auto;
}

/* ==================== LEGAL PAGES DESIGN ==================== */

/* --- Legal Page Container & Hero --- */
.legal-hero {
    background-color: var(--dark);
    padding: 80px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Subtle dot pattern */
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.legal-title {
    font-family: 'Ewofi', sans-serif; /* <--- IMPLEMENTED EWOFI HERE */
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.updated-pill {
    font-family: 'Ewofi', sans-serif; /* Keep body font for readability */
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* --- Paper Content Box --- */
.legal-body-section {
    background-color: var(--light);
    
    /* ADDED: Dotted Background Pattern */
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 30px 30px; /* Spacing between dots */
    
    padding-bottom: 80px;
    min-height: 60vh;
}

.legal-paper {
    background-color: var(--white);
    max-width: 960px;
    margin: -100px auto 0;
    padding: 60px 80px;
    border-radius: 20px;
    
    /* Orange Border */
    border: 3px solid var(--primary);
    
    /* Floating Shadow */
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

/* --- Content Typography --- */
.legal-paper p {
    font-family: 'Ewofi', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.legal-paper h3 {
    font-family: 'Ewofi', sans-serif; /* <--- IMPLEMENTED EWOFI HERE */
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 5px;
}

.legal-paper ul {
    font-family: 'Ewofi', sans-serif;
    padding-left: 25px;
    margin-bottom: 25px;
}

.legal-paper li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
    list-style-type: disc;
}

.legal-paper strong {
    color: var(--dark);
    font-weight: 600;
}

/* --- Floating Icons --- */
[class*="legal-dec-"] {
    position: absolute;
    opacity: 0.5;
    font-size: 3.5rem;
    z-index: 1;
    pointer-events: none;
}

.legal-dec-1 { top: 15%; left: 8%; color: var(--primary); transform: rotate(-20deg); }
.legal-dec-2 { top: 25%; right: 12%; color: var(--secondary); font-size: 4.5rem; }
.legal-dec-3 { bottom: 30%; left: 20%; color: var(--accent); transform: rotate(15deg); }
.legal-dec-4 { top: 10%; right: 30%; color: rgba(255, 255, 255, 0.15); font-size: 2.5rem; }

@media (max-width: 768px) {
    .legal-title { font-size: 2.2rem; }
    .legal-paper { padding: 40px 25px; margin-top: -60px; width: 90%; }
    [class*="legal-dec-"] { font-size: 2.5rem; opacity: 0.3; }
}

/* ==================== TICKET INFO POPUP ==================== */

/* The 'i' Button Style */
.ticket-info-btn {
    position: absolute;
    top: 8px;           /* Aligns with the header strip */
    right: 15px;
    z-index: 10;        /* Ensures it sits on top of the strip */
    color: var(--white); /* White text to contrast with the colored strip */
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.ticket-info-btn:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Modal Text Styling */
.info-modal-heading {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
    display: inline-block;
}

.info-modal-heading:first-child { margin-top: 0; }

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.info-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ==================== MODAL VISIBILITY ==================== */
.modal-overlay {
    display: none;             /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* This is the class the JavaScript adds to make it visible */
.modal-overlay.show {
    display: flex !important;  /* Force it to show */
    opacity: 1 !important;     /* Force it to be visible */
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.show {
    display: flex !important;  /* Force it to show */
    opacity: 1 !important;     /* Force it to be visible */
}

/* ==================== OUR PARTNERS SECTION ==================== */
#partners-section {
    padding: 60px 0 0 0; /* Space for the title at top, no padding at bottom */
    background-color: var(--white); /* Ensures background matches rest of site */
    position: relative;
    z-index: 5; /* Ensures the shadow casts over the next section */
}

#partners-section .section-title {
    margin-bottom: 30px; /* Adjust space between title and image */
    color: var(--dark);
}

.partner-image-wrapper {
    width: 100%;
    position: relative;
    line-height: 0;
    
    /* === NEW STYLES ADDED === */
    border: 5px solid var(--primary); /* Orange border using your theme variable */
    border-radius: 30px;            /* Makes the edges curved */
    overflow: hidden;               /* Clips the image to match the curved corners */
    box-sizing: border-box;         /* Ensures border doesn't make it wider than 100% */
    /* ======================== */

    /* The existing shadow */
    box-shadow: 0px 20px 40px -10px rgba(0,0,0,0.3);
}

.partner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive spacing */
@media (max-width: 768px) {
    #partners-section {
        padding-top: 40px;
    }
    #partners-section .section-title {
        margin-bottom: 20px;
    }
}

/* ==================== OUR PARTNERS SECTION ==================== */
#partners-section {
    /* Added 80px bottom padding so dots are visible below the image */
    padding: 60px 0 80px 0; 
    
    background-color: var(--white);
    position: relative;
    z-index: 5;

    /* DOTTED BACKGROUND PATTERN */
    background-image: radial-gradient(var(--secondary) 1px, transparent 1px);
    background-size: 30px 30px; /* Spacing between dots */
}

#partners-section .section-title {
    margin-bottom: 40px; /* Increased space between title and image */
    color: var(--dark);
    position: relative;
    z-index: 2; /* Ensures text sits above dots */
}

/* (The .partner-image-wrapper block remains the same as previous step) */

/* ==================== PARTNER SECTION DECOR ==================== */

/* Specific Positioning for Partner Icons */
.partner-dec-1 { 
    top: 15%; 
    left: 5%; 
    font-size: 3.5rem;       /* Medium Size */
    color: var(--primary); 
    opacity: 0.5;            /* Requested Opacity */
    animation: float 5s ease-in-out infinite; 
}

.partner-dec-2 { 
    bottom: 1%; 
    right: 5%; 
    font-size: 4rem;         /* Medium Size */
    color: var(--accent); 
    opacity: 0.5;            /* Requested Opacity */
    transform: rotate(-15deg);
    animation: float 7s ease-in-out infinite reverse; 
}

.partner-dec-3 { 
    top: 10%; 
    right: 3%; 
    font-size: 3rem;         /* Medium Size */
    color: var(--secondary); 
    opacity: 0.5;            /* Requested Opacity */
    animation: float 6s ease-in-out infinite; 
}

.partner-dec-4 { 
    bottom: 5%; 
    left: 10%; 
    font-size: 2.5rem;       /* Medium Size */
    color: var(--dark); 
    opacity: 0.3;            /* Slightly lower opacity for dark color */
    animation: float 4s ease-in-out infinite; 
}

/* Mobile Adjustment: Make them smaller so they don't cover the image */
@media (max-width: 768px) {
    .partner-dec-1, .partner-dec-2, .partner-dec-3, .partner-dec-4 {
        font-size: 2rem;
        opacity: 0.3;
    }
}

/* --- New Desktop Elements --- */
.partner-dec-5 { 
    top: 90%; 
    left: 52%; 
    font-size: 3rem; 
    color: var(--secondary); 
    opacity: 0.5; 
    transform: rotate(20deg);
    animation: float 6s ease-in-out infinite; 
}

.partner-dec-6 { 
    top: 10%; 
    right: 32%; 
    font-size: 3.5rem; 
    color: var(--dark); 
    opacity: 0.4; 
    animation: giggle 4s ease-in-out infinite; 
}

.partner-dec-7 { 
top: 10%; 
    left: 32%; 
    font-size: 3rem; 
    color: var(--accent); 
    opacity: 0.5; 
    transform: rotate(20deg);
    animation: float 6s ease-in-out infinite;  
}
/* --- Mobile Adjustments (UPDATED) --- */
@media (max-width: 768px) {
    
    /* 1. Thinner Border & Less Curve for Mobile */
    .partner-image-wrapper {
        border-width: 3px;  /* Thinner border */
        border-radius: 15px; /* Sharper corners */
    }

    /* 2. Hide the new extra elements on mobile to prevent clutter */
    .partner-dec-5, .partner-dec-6 {
        display: none;
    }

    /* 3. Adjust existing elements */
    .partner-dec-1, .partner-dec-2, .partner-dec-3, .partner-dec-4 {
        font-size: 2rem;
        opacity: 0.3;
    }
}

/* ==================== PRICE DROP STYLING ==================== */
.price-wrapper {
    display: flex;
    align-items: baseline; /* Aligns text by the bottom baseline */
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 1.6rem; /* Increased from 1.2rem */
    color: #999; 
    text-decoration: line-through; 
    font-weight: 600;  /* Made slightly bolder */
}

/* This replaces the old .price class for the new number */
.current-price {
    font-size: 2.2rem;
    color: var(--primary);
    font-weight: 700;
}