/* =========================================
   1. CSS VARIABLES & THEME SETUP
   ========================================= */
:root {
    --bg-main: #ffffff;
    --bg-offset: #f8fafc; 
    --navy-deepest: #020c1b;  
    --navy-dark: #0a192f;     
    --navy-medium: #112240;   
    --navy-light: #233554;    
    --accent-primary: #007bff;
    --accent-glow: #64ffda;
    --text-gradient: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
    --junior-accent: #ff9f1c; 
    --edu-accent: #a374ff; 
    --whatsapp-green: #25D366; 
    --text-dark: #0a192f;
    --text-black: #000000; 
    --text-light: #495670;
    --text-white: #e6f1ff;
    --shadow-card: 0 5px 15px -5px rgba(2, 12, 27, 0.08);
    --shadow-hover: 0 15px 25px -5px rgba(2, 12, 27, 0.15);
    --glass-nav: rgba(255, 255, 255, 0.98);
    --transition-smooth: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-main); color: var(--text-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; overflow-x: hidden; 
    font-size: 15px; line-height: 1.6; position: relative;
}

/* =========================================
   3. NAVIGATION & DROPDOWNS (EXTREME LEFT/RIGHT)
   ========================================= */
nav {
    position: fixed; top: 0; width: 100%; padding: 0 1.5%; 
    display: flex; justify-content: space-between; align-items: center; 
    background: var(--glass-nav); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    height: 70px; transition: var(--transition-smooth);
}

.nav-logo { display: flex; align-items: center; gap: 8px; cursor: pointer; height: 100%; min-width: max-content; margin-right: auto; }
.nav-logo i { color: var(--accent-primary); font-size: 1.5rem; display: flex; align-items: center; }
.nav-text-group { display: flex; flex-direction: column; justify-content: center; line-height: 1.2; }
.brand-name { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.1rem; font-weight: 900; color:191970; letter-spacing: 0.5px; margin-bottom: 1px; white-space: nowrap; }
.brand-tagline { font-family: 'Inter', sans-serif; font-size: 0.56rem; color:black; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }

.nav-links { display: flex; gap: 1rem; align-items: center; justify-content: center; height: 100%; margin: 0 15px; }
.nav-links a {
    display: inline-flex; align-items: center; height: 100%;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.75rem; 
    color: var(--text-black) !important; transition: var(--transition-smooth); 
    text-transform: uppercase; cursor: pointer; position: relative; 
    letter-spacing: 0.5px; text-decoration: none; padding: 5px 0; white-space: nowrap; 
}
.nav-links > a::after, .nav-dropdown > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 20px; left: 0; background-color: var(--accent-primary); transition: width 0.3s ease; }
.nav-links > a:hover, .nav-dropdown > a:hover { color: var(--accent-primary) !important; }
.nav-links > a:hover::after, .nav-dropdown > a:hover::after { width: 100%; }
.junior-nav-link:hover { color: var(--junior-accent) !important; }
.junior-nav-link::after { background-color: var(--junior-accent) !important; }

.nav-dropdown { position: relative; height: 100%; display: inline-flex; align-items: center; }
.dropdown-content { 
    display: none; position: absolute; top: 70px; left: -10px; background-color: var(--bg-main); 
    min-width: 240px; box-shadow: 0 10px 25px rgba(2, 12, 27, 0.1); border-radius: 0 0 8px 8px; 
    z-index: 1001; border: 1px solid rgba(0,0,0,0.05); border-top: 3px solid var(--accent-primary); padding: 0.5rem 0;
}
.nav-dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s ease; }
.dropdown-content a { 
    color: var(--text-dark) !important; padding: 0.8rem 1.5rem; display: block; font-size: 0.8rem; 
    border-bottom: none; text-transform: capitalize; font-family: 'Inter', sans-serif; 
    font-weight: 600; letter-spacing: 0.5px; transition: var(--transition-smooth); height: auto; line-height: 1.4;
}
.dropdown-content a::after { display: none; }
.dropdown-content a:hover { background-color: rgba(0, 123, 255, 0.05); color: var(--accent-primary) !important; padding-left: 1.8rem; }

.nav-actions { display: flex; align-items: center; gap: 8px; height: 100%; min-width: max-content; }
.whatsapp-btn, .cta-btn { height: 30px; display: inline-flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 700; border-radius: 4px; cursor: pointer; transition: var(--transition-smooth); font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; box-sizing: border-box; }
.whatsapp-btn { padding: 0 0.8rem; background: transparent; border: 1.5px solid var(--whatsapp-green); color: var(--whatsapp-green); gap: 5px; }
.whatsapp-btn i { font-size: 0.85rem; }
.whatsapp-btn:hover { background: var(--whatsapp-green); color: white; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2); transform: translateY(-1px); }
.cta-btn { padding: 0 1rem; background: var(--navy-deepest); color: white; border: none; }
.cta-btn:hover { background: var(--accent-primary); box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3); transform: translateY(-1px); }

/* =========================================
   4. PAGE WRAPPER & TRANSITIONS
   ========================================= */
.page-wrapper { padding-top: 70px; min-height: calc(100vh - 200px); animation: fadeIn 0.4s ease-out; }
.page-wrapper section { padding: 1.5rem 5% 2.5rem 5%; }
#main-page { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* SEO IMAGE FIX: Forces standard <img> tags to behave like background images */
.sector-bg, .daas-bg, .academy-bg, .junior-bg, .junior-tab-bg { object-fit: cover; width: 100%; height: 100%; }

/* =========================================
   5. FIXED TRI-SPLIT HERO SECTION 
   ========================================= */
.hero-split { display: flex; height: calc(100vh - 70px); width: 100%; margin-top: 0; overflow: hidden;}
.split { flex: 1; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; overflow: hidden; border-right: 1px solid rgba(255,255,255,0.1); transition: filter 0.4s ease; }
.split:hover { filter: brightness(1.1); }
.hero-split:hover .split:not(:hover) { filter: brightness(1.0) grayscale(0%); }
.split.services { background: url("/images/dronemain.jpg"); background-size: cover; background-position: center; }
.split.training { background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1950&q=80'); background-size: cover; background-position: center; }
.split.junior { background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1950&q=80'); background-size: cover; background-position: center; }
.split::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(2,12,27,0.10), rgba(2,12,27,0.5)); z-index: 1; }
/* Forces the content block to start EXACTLY at 25% from the top of the card */
.split-content { 
    position: absolute; 
    top: 25%; /* The 25% starting point requested */
    left: 0;
    z-index: 2; 
    width: 100%; 
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
}

/* Fixed heights guarantee horizontal alignment across all 3 columns */
.split h3 { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #ff9f1c !important; 
    height: 30px; 
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px; 
    text-transform: uppercase;
    text-align: center;
}

.split h2 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: white; 
    height: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px; 
    line-height: 1.2; 
    text-align: center;
}

.split p { 
    font-size: 0.95rem; 
    color: #e2e8f0; 
    margin: 0 auto 25px auto; 
    line-height: 1.6; 
    max-width: 320px; 
    height: 75px; 
    display: flex; 
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}
/* All Hero Buttons - Unified Green */
.btn-hero { 
    padding: 0.8rem 2rem; 
    border: none; 
    background: #8cc63f !important; 
    color: white !important; 
    font-family: 'Inter', sans-serif; 
    letter-spacing: -0.5px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    cursor: pointer; 
    transition: 0.3s; 
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%); 
    font-size: 0.85rem; 
}

.btn-hero:hover { 
    background: #76a835 !important; 
    color: white !important; 
}
.btn-junior { background: var(--junior-accent); }
.btn-junior:hover { background: #ffd166; color: var(--navy-deepest);}

/* =========================================
   6. SECTIONS & COMPONENTS
   ========================================= */
.intro-section { text-align: center; padding: 3.5rem 10% 2.5rem; background-color: var(--bg-main); border-bottom: 1px solid rgba(0,0,0,0.05); }
.intro-section h2 { font-size: 1.8rem; color: var(--navy-deepest); font-family: 'Inter', sans-serif; letter-spacing: -0.5px; margin-bottom: 1rem; line-height: 1.4; font-weight: 700; }
.intro-section p { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; max-width: 800px; margin: 0 auto; font-weight: 400; }
.intro-section::after { content: ''; display: block; width: 60px; height: 3px; background: var(--text-gradient); margin: 1.5rem auto 0; border-radius: 2px; }

.section-header { text-align: center; margin-bottom: 2rem; margin-top: 0.5rem; }
.section-header h2 { font-size: 2.2rem; color: var(--navy-deepest); margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-weight: 700; line-height: 1.2; }
.section-header span { background: var(--text-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header.junior-theme span { background: var(--junior-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header.edu-theme span { background: var(--edu-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

.sub-header-title { font-size: 1.5rem; color: var(--navy-deepest); margin: 1.5rem 0 1rem; text-align: left; border-left: 4px solid var(--accent-primary); padding-left: 1rem; font-family: 'Inter', sans-serif; letter-spacing: -0.5px; }
.sub-header-title.junior-theme { border-left-color: var(--junior-accent); }
.sub-header-title.edu-theme { border-left-color: var(--edu-accent); }

.page-top-bar { padding: 1.5rem 5% 0; display: flex; align-items: center; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 0.5rem; color: var(--text-light); font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.back-btn:hover { color: var(--accent-primary); transform: translateX(-5px); }
.back-btn.junior-theme:hover { color: var(--junior-accent); }
.back-btn.edu-theme:hover { color: var(--edu-accent); }

/* --- CAROUSEL (Industries) --- */
.carousel-wrapper { position: relative; max-width: 100%; margin: 0 auto; display: flex; align-items: center; }
.carousel-container { overflow: hidden; width: 100%; padding: 0 10px; }
.carousel-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.sector-card { min-width: 240px; flex: 0 0 calc(33.333% - 1rem); scroll-snap-align: start; background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); position: relative; height: 260px; transition: var(--transition-smooth); display: flex; flex-direction: column; justify-content: flex-end; }
.sector-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.sector-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.6s; z-index: 1; }
.sector-card:hover .sector-bg { transform: scale(1.05); }
.sector-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(2,12,27,0.95), rgba(2,12,27,0.1)); z-index: 2; }
.sector-content { position: relative; z-index: 3; padding: 1.2rem; color: white; }
.sector-icon { font-size: 1.8rem; color: var(--accent-glow); margin-bottom: 0.6rem; }
.sector-title { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.15rem; margin-bottom: 0.4rem; font-weight: 700; }
.sector-desc { font-size: 0.85rem; color: #a8b2d1; line-height: 1.4; }

/* Fixed Arrows */
.carousel-btn { 
    background: rgba(255,255,255,0.9); width: 45px; height: 45px; border-radius: 50%; border: none; 
    cursor: pointer; z-index: 10; color: var(--navy-deepest); box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
    font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: 0.3s;
    flex-shrink: 0;
}
.carousel-btn:hover { background: var(--accent-primary); color: white; }
.prev-btn { margin-right: 15px; }
.next-btn { margin-left: 15px; }

/* --- DAAS SERVICES GRID --- */
.daas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.daas-card { height: 200px; border-radius: 10px; overflow: hidden; position: relative; background-color: var(--navy-deepest); cursor: pointer; box-shadow: var(--shadow-card); border: 1px solid rgba(255,255,255,0.1); transition: var(--transition-smooth); }
.daas-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.4; transition: 0.4s; }
.daas-card:hover .daas-bg { opacity: 0.15; filter: blur(2px); transform: scale(1.05); }
.daas-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1.5rem; text-align: center; color: white; z-index: 2; }
.daas-title { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.15rem; color: white; font-weight: 700; transition: 0.3s; margin-bottom: 0; text-transform: uppercase; letter-spacing: 1px; }
.daas-popup { max-height: 0; opacity: 0; overflow: hidden; font-size: 0.9rem; color: var(--accent-glow); margin-top: 0; transition: all 0.4s ease; transform: translateY(15px); line-height: 1.5; }
.daas-card:hover .daas-popup { max-height: 100px; opacity: 1; margin-top: 0.8rem; transform: translateY(0); }
.daas-card:hover .daas-title { color: var(--accent-primary); transform: translateY(-5px); }

/* --- STANDARD SIZED CARDS --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.junior-card { height: 240px; border-radius: 12px; overflow: hidden; position: relative; box-shadow: var(--shadow-card); transition: var(--transition-smooth); border: 1px solid rgba(255, 159, 28, 0.2); display: flex; flex-direction: column; justify-content: flex-end; }
.junior-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255, 159, 28, 0.15); border-color: var(--junior-accent); }
.junior-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; z-index: 1; }
.junior-card:hover .junior-bg { transform: scale(1.05); }
.junior-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(2, 12, 27, 0.95), rgba(2, 12, 27, 0.2)); z-index: 2; }
.junior-content { position: relative; z-index: 3; padding: 1.5rem; color: white; text-align: left; }
.junior-icon { font-size: 2rem; color: var(--junior-accent); margin-bottom: 0.5rem; display: block; background: transparent; padding: 0; box-shadow: none; }
.junior-title { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.15rem; margin-bottom: 0.4rem; font-weight: 700; color: white; line-height: 1.3; }
.junior-desc { font-size: 0.9rem; color: #d1d5db; line-height: 1.4; margin-bottom: 1rem; }
.junior-btn { background: transparent; border: 1px solid var(--junior-accent); color: var(--junior-accent); padding: 0.5rem 1rem; border-radius: 4px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; cursor: pointer; transition: 0.3s; font-family: 'Inter', sans-serif; display: block; margin-left: auto; width: fit-content; }
.junior-card:hover .junior-btn { background: var(--junior-accent); color: var(--navy-deepest); }

.academy-card { height: 240px; border-radius: 12px; overflow: hidden; position: relative; box-shadow: var(--shadow-card); transition: var(--transition-smooth); border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; justify-content: flex-end; }
.academy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.academy-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; z-index: 1; }
.academy-card:hover .academy-bg { transform: scale(1.05); }
.academy-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(2, 12, 27, 0.95), rgba(2, 12, 27, 0.1)); z-index: 2; }
.academy-content { position: relative; z-index: 3; padding: 1.5rem; color: white; text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; }
.academy-icon { font-size: 2rem; color: var(--accent-glow); margin-bottom: 0.5rem; display: block; background: transparent; padding: 0; }
.edu-card .academy-icon { color: var(--edu-accent); }
.academy-title { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.15rem; margin-bottom: 0; font-weight: 700; color: white; line-height: 1.3; transition: 0.3s; }
.academy-card:hover .academy-title { color: var(--accent-primary); transform: translateY(-5px); }

.academy-desc { font-size: 0.9rem; color: #d1d5db; line-height: 1.4; margin-bottom: 0; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s ease; transform: translateY(15px); }
.academy-card:hover .academy-desc { max-height: 120px; opacity: 1; margin-top: 0.8rem; margin-bottom: 1rem; transform: translateY(0); }

.academy-link { color: var(--accent-primary); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 8px; cursor: pointer; letter-spacing: 1px; transition: all 0.4s ease; max-height: 0; opacity: 0; overflow: hidden; transform: translateY(15px); }
.academy-card:hover .academy-link { max-height: 50px; opacity: 1; transform: translateY(0); }
.academy-link:hover { color: var(--accent-glow) !important; gap: 12px; }
.edu-card .academy-link { color: var(--edu-accent); }
.edu-card .academy-link:hover { color: white; }

/* --- 5-TIER JUNIOR TABS --- */
.junior-tabs-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; margin-top: 1rem; margin-bottom: 2rem; }
.junior-tab { 
    position: relative; height: 240px; border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-card); transition: var(--transition-smooth); cursor: pointer;
    border: 1px solid rgba(255, 159, 28, 0.2); display: flex; flex-direction: column; justify-content: flex-end;
}
.junior-tab:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255, 159, 28, 0.15); border-color: var(--junior-accent); }
.junior-tab-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; z-index: 1; }
.junior-tab:hover .junior-tab-bg { transform: scale(1.05); }
.junior-tab-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(2, 12, 27, 0.95), rgba(2, 12, 27, 0.2)); z-index: 2; }
.junior-tab-content { position: relative; z-index: 3; padding: 1.2rem; color: white; text-align: center; }
.junior-tab-icon { font-size: 2rem; color: var(--junior-accent); margin-bottom: 0.5rem; display: inline-block; }
.junior-tab-title { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.1rem; margin-bottom: 0.3rem; font-weight: 700; color: white; line-height: 1.3; }
.junior-tab-desc { font-size: 0.8rem; color: #d1d5db; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; margin: 0; }

/* --- PROGRAM DETAILS UI --- */
.program-details-box {
    background: white; border-radius: 12px; padding: 3rem; box-shadow: var(--shadow-card); 
    border: 1px solid rgba(0,0,0,0.05); text-align: center; max-width: 800px; margin: 0 auto;
}
.program-details-box i { font-size: 3.5rem; color: var(--junior-accent); margin-bottom: 1rem; }
.program-details-box h2 { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 2.2rem; color: var(--navy-deepest); margin-bottom: 0.5rem;}
.program-details-box h3 { font-size: 1rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem;}
.program-details-box p { font-size: 1.05rem; color: var(--text-dark); line-height: 1.8; margin-bottom: 2rem; text-align: justify;}
.pd-metrics { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem;}
.pd-metric { background: var(--bg-offset); padding: 1.2rem; border-radius: 8px; border: 1px solid #e1e5ea; flex: 1; min-width: 200px;}
.pd-metric strong { display: block; font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.1rem; color: var(--navy-deepest); margin-bottom: 5px;}
.pd-metric span { font-size: 0.85rem; color: var(--text-light); }

/* --- FOUNDER BIO UI --- */
.bio-wrapper { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 800px; margin: 0 auto; background: white; padding: 3rem; border-radius: 12px; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.05); }
.bio-avatar { width: 180px; height: 180px; border-radius: 50%; border: 4px solid var(--accent-primary); margin-bottom: 1.5rem; object-fit: cover; }
.bio-name { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 2rem; color: var(--navy-deepest); margin-bottom: 0.2rem; font-weight: 700;}
.bio-role { font-size: 1rem; color: var(--accent-primary); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 1.5rem; display: block; }
.bio-text { font-size: 1.05rem; color: var(--text-dark); line-height: 1.8; text-align: justify; margin-bottom: 2rem;}
.bio-edu-card { background: var(--bg-offset); padding: 1.5rem; border-radius: 8px; border: 1px solid #e1e5ea; width: 100%; display: flex; align-items: center; justify-content: center; gap: 15px; }
.bio-edu-card i { font-size: 2rem; color: var(--navy-deepest); }
.bio-edu-text { text-align: left; }
.bio-edu-text strong { display: block; font-family: 'Inter', sans-serif; letter-spacing: -0.5px; color: var(--navy-deepest); }

/* --- SPACIOUS LEADERSHIP SECTION --- */
.team-grid { 
    display: grid; gap: 2rem; grid-template-columns: repeat(4, 1fr); 
    margin-top: 1rem; margin-bottom: 1rem; 
    max-width: 1200px; margin-inline: auto; 
}
.team-card {
    background: #ffffff; padding: 2.5rem 1.5rem; text-align: center; cursor: pointer;
    border-radius: 12px; box-shadow: 0 4px 20px rgba(2, 12, 27, 0.04);
    border: 1px solid #f0f0f0; transition: all 0.3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(2, 12, 27, 0.08); border-color: var(--accent-primary); }
.team-avatar {
    width: 130px; height: 130px; background: var(--bg-offset); border-radius: 50%;
    margin: 0 auto 1.5rem; padding: 5px; border: 2px solid var(--bg-offset); overflow: hidden;
    transition: all 0.3s ease;
}
.team-card:hover .team-avatar { border-color: var(--accent-primary); background: #fff; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.2rem; color: var(--navy-deepest); font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-weight: 700; }
.team-role { font-size: 0.8rem; color: var(--accent-primary); font-weight: 600; text-transform: uppercase; margin-bottom: 1rem; display: block; letter-spacing: 1px;}
.team-edu { font-size: 0.85rem; color: var(--text-light); line-height: 1.4; border-top: 1px solid #eaeaea; padding-top: 1rem; font-weight: 500; }

@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* =========================================
   7. INTERACTIVE TOOLS & LEAD MAGNETS
   ========================================= */
.interactive-tools-wrapper { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.05); }
.tool-box { background: white; border-radius: 12px; padding: 2rem; margin-bottom: 2rem; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.05); transition: var(--transition-smooth); }
.tool-box:hover { box-shadow: var(--shadow-hover); }
.tool-header { text-align: center; margin-bottom: 2rem; }
.tool-header h3 { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.5rem; color: var(--navy-deepest); margin-bottom: 0.5rem; font-weight: 700; }
.tool-header p { font-size: 1rem; color: var(--text-light); max-width: 650px; margin: 0 auto; line-height: 1.6; }

.visual-proof-container { position: relative; width: 100%; max-width: 800px; height: 350px; margin: 0 auto; background: #eee; border-radius: 8px; overflow: hidden; box-shadow: inset 0 0 10px rgba(0,0,0,0.1); }
.visual-img-base { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.visual-img-overlay { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; border-right: 4px solid white; z-index: 2; box-shadow: 5px 0 15px rgba(0,0,0,0.3); }
.visual-img-overlay img { width: 800px; height: 350px; object-fit: cover; filter: sepia(100%) hue-rotate(320deg) saturate(300%) contrast(150%); }
.visual-slider-ctrl { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 10; margin: 0; }
.visual-badge { position: absolute; bottom: 15px; padding: 6px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; font-family: 'Inter', sans-serif; color: white; z-index: 3; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); text-transform: uppercase; letter-spacing: 1px; }
.visual-badge.left-badge { left: 15px; }
.visual-badge.right-badge { right: 15px; }

.roi-calculator-wrap { max-width: 700px; margin: 0 auto; }
.roi-slider-group { text-align: center; margin-bottom: 2rem; }
.roi-input-range { width: 100%; cursor: pointer; height: 8px; background: #e1e5ea; border-radius: 4px; outline: none; appearance: none; margin-bottom: 1rem; }
.roi-input-range::-webkit-slider-thumb { appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-primary); cursor: pointer; box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4); border: 3px solid white; }
.roi-val-display { font-size: 1.1rem; font-weight: 600; color: var(--navy-deepest); }
.roi-val-display span { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.6rem; color: var(--accent-primary); font-weight: 700; padding: 0 5px; }
.roi-metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.roi-metric-card { background: var(--bg-offset); padding: 1.5rem; border-radius: 8px; border: 1px solid #e1e5ea; text-align: center; transition: 0.3s; }
.roi-metric-card h4 { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem; font-weight: 700;}
.roi-metric-card .cost-value { font-size: 1.8rem; font-weight: 700; color: var(--navy-deepest); font-family: 'Inter', sans-serif; letter-spacing: -0.5px; display: block; margin-bottom: 0.5rem;}
.roi-metric-card .time-value { font-size: 0.9rem; color: var(--text-light); font-weight: 600; display: block;}
.roi-metric-card.skyops-highlight { border-color: var(--accent-primary); background: rgba(0, 123, 255, 0.03); box-shadow: inset 0 0 0 1px var(--accent-primary); }
.roi-metric-card.skyops-highlight .cost-value { color: var(--accent-primary); }
.roi-metric-card.savings-highlight { border-color: var(--whatsapp-green); background: rgba(37, 211, 102, 0.05); }
.roi-metric-card.savings-highlight h4 { color: #1da851; }
.roi-metric-card.savings-highlight .cost-value { color: #1da851; }
.roi-metric-card.savings-highlight .time-value { color: #1da851; }

.quiz-container { max-width: 500px; margin: 0 auto; text-align: left; background: #ffffff; border-radius: 8px; padding: 1.5rem; border: 1px solid #e1e5ea; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.quiz-option { display: flex; align-items: center; gap: 12px; padding: 0.8rem 1rem; background: var(--bg-offset); border-radius: 6px; margin-bottom: 0.6rem; cursor: pointer; transition: var(--transition-smooth); border: 1px solid transparent; font-size: 0.85rem; font-weight: 500; color: var(--navy-deepest); }
.quiz-option:hover { border-color: var(--accent-primary); background: white; }
.quiz-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--accent-primary); cursor: pointer; margin: 0; }
.quiz-outcome { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; font-weight: 600; padding: 1rem; border-radius: 6px; display: none; line-height: 1.4; animation: fadeIn 0.4s ease-out; }
.quiz-outcome.eligible { background: rgba(37, 211, 102, 0.1); color: #15803d; border: 1px solid rgba(37, 211, 102, 0.3); }
.quiz-outcome.ineligible { background: rgba(239, 68, 68, 0.1); color: #b91c1c; border: 1px solid rgba(239, 68, 68, 0.3); }
.quiz-outcome i { font-size: 1.2rem; margin-bottom: 0.5rem; display: block; }

.lead-magnet-banner { background: linear-gradient(135deg, var(--navy-deepest) 0%, var(--navy-medium) 100%); color: white; padding: 3rem; border-radius: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2.5rem; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.lead-magnet-banner::after { content: ''; position: absolute; right: -50px; top: -50px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.03) 10%, transparent 10%), radial-gradient(circle, rgba(255,255,255,0.03) 10%, transparent 10%); background-size: 30px 30px; background-position: 0 0, 15px 15px; transform: rotate(45deg); pointer-events: none; z-index: 1; }
.lead-magnet-banner.junior-banner { background: linear-gradient(135deg, #e67e22 0%, #d35400 100%); }
.lead-magnet-banner.edu-banner { background: linear-gradient(135deg, #6c5ce7 0%, #4a235a 100%); }
.lm-text-zone { flex: 1; min-width: 300px; position: relative; z-index: 2; }
.lm-text-zone h3 { font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-size: 1.4rem; margin-bottom: 0.8rem; color: white; line-height: 1.3;}
.lm-text-zone p { font-size: 0.95rem; color: #e2e8f0; line-height: 1.5; margin-bottom: 1.2rem; }
.lm-features { list-style: none; margin-bottom: 1.2rem; }
.lm-features li { font-size: 0.9rem; color: #cbd5e1; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 8px; }
.lm-features li i { color: var(--accent-glow); font-size: 0.8rem; }
.lm-form-zone { flex: 1; min-width: 300px; position: relative; z-index: 2; background: rgba(255,255,255,0.05); padding: 2rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px); }
.lm-input-group { margin-bottom: 1rem; }
.lm-input-group input { width: 100%; padding: 0.8rem 1rem; border: none; border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.95rem; background: rgba(255,255,255,0.95); outline: none; transition: 0.3s; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); }
.lm-input-group input:focus { background: #ffffff; box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.3); }
.lm-submit-btn { width: 100%; padding: 1.2rem; background: var(--accent-primary); color: white; font-family: 'Inter', sans-serif; letter-spacing: -0.5px; font-weight: 700; border: none; border-radius: 4px; cursor: pointer; transition: var(--transition-smooth); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px;}
.lm-submit-btn:hover { background: var(--accent-glow); color: var(--navy-deepest); }
.junior-banner .lm-submit-btn { background: var(--navy-deepest); color: white; }
.junior-banner .lm-submit-btn:hover { background: white; color: var(--navy-deepest); }

/* --- FAQ ACCORDION STYLES --- */
.faq-container { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: white; border: 1px solid #e1e5ea; border-radius: 8px; box-shadow: var(--shadow-card); overflow: hidden; }
.faq-item summary { padding: 1.5rem; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--navy-deepest); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent-primary); transition: transform 0.3s ease; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { background: var(--bg-offset); border-bottom: 1px solid #e1e5ea; }
.faq-answer { padding: 1.5rem; font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.faq-category-title { font-family: 'Inter', sans-serif; font-size: 1.3rem; color: var(--navy-deepest); margin: 2rem 0 1rem; border-bottom: 2px solid var(--accent-primary); padding-bottom: 0.5rem; display: inline-block; }

/* --- COMING SOON UI --- */
.coming-soon-container { text-align: center; padding: 5rem 2rem; background: white; border-radius: 12px; box-shadow: var(--shadow-card); border: 1px solid #e1e5ea; max-width: 600px; margin: 2rem auto; }
.coming-soon-container i { font-size: 4rem; color: var(--accent-primary); margin-bottom: 1.5rem; }
.coming-soon-container h2 { font-family: 'Inter', sans-serif; font-size: 2.2rem; color: var(--navy-deepest); margin-bottom: 1rem; font-weight: 800; letter-spacing: -1px; }
.coming-soon-container p { font-size: 1.05rem; color: var(--text-light); line-height: 1.6; margin-bottom: 2rem; }

/* --- AIRSPACE MAP UI --- */
.airspace-container { background: white; border-radius: 12px; box-shadow: var(--shadow-card); border: 1px solid #e1e5ea; overflow: hidden; margin-top: 2rem; }
.airspace-header { padding: 1.5rem 2rem; border-bottom: 1px solid #e1e5ea; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; background: var(--bg-offset); }
.airspace-search { display: flex; gap: 10px; flex: 1; min-width: 300px; }
.airspace-search input { flex: 1; padding: 0.8rem 1rem; border: 1px solid #e1e5ea; border-radius: 6px; font-family: 'Inter', sans-serif; outline: none; font-size: 0.95rem; }
.airspace-search input:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1); }
.airspace-search button { padding: 0.8rem 1.5rem; background: var(--navy-deepest); color: white; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: 0.3s; white-space: nowrap; }
.airspace-search button:hover { background: var(--accent-primary); }
.airspace-legend { display: flex; gap: 1.5rem; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--navy-deepest); }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.5); }
.dot-yellow { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.5); }
.dot-green { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
.airspace-map-wrapper { width: 100%; height: 60vh; min-height: 500px; background: #e5e7eb; position: relative; }
.airspace-map-wrapper iframe { width: 100%; height: 100%; border: none; }
.airspace-overlay-panel { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); padding: 1.5rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); max-width: 320px; border-left: 4px solid var(--accent-primary); transition: 0.3s; }
.airspace-overlay-panel h4 { margin-bottom: 0.5rem; color: var(--navy-deepest); font-family: 'Inter', sans-serif; font-size: 1.1rem; }
.airspace-overlay-panel p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1rem; }

/* --- PAGE TRANSITIONS --- */
#academy-page, #mentorship-page, #lectures-form-section, #contact-page, #services-page, #junior-page, #edu-page, #courses-page, #program-details-page, #bio-page, #faq-page, #events-page, #store-page { display: none; }

/* --- CONTACT & FORMS --- */
.contact-details-box { background: var(--navy-deepest); color: white; padding: 2rem; border-radius: 12px; margin-bottom: 2rem; text-align: center; box-shadow: var(--shadow-card); background-image: linear-gradient(135deg, var(--navy-deepest) 0%, var(--navy-medium) 100%); }
.contact-details-box h3 { color: white; font-family: 'Inter', sans-serif; letter-spacing: -0.5px; margin-bottom: 1rem; font-size: 1.3rem; }
.contact-info-item { margin-bottom: 0.8rem; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 0.95rem; color: #ccd6f6; }
.form-container { max-width: 700px; margin: 0 auto; background: white; padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.05); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 0.2rem; }
.form-group.full-width { grid-column: span 2; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--navy-deepest); font-size: 0.85rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem; border: 1px solid #e1e5ea; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.95rem; background: #fcfcfc; transition: 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent-primary); outline: none; background: white; box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1); }
.submit-btn { width: 100%; padding: 1rem; border-radius: 6px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; background: var(--navy-deepest); color: white; border: none; font-weight: 700; transition: 0.3s;}
.submit-btn:hover { background: var(--accent-primary); }

/* --- PREMIUM MEGA-FOOTER --- */
.mega-footer { background-color: var(--navy-deepest); color: white; padding: 5rem 5% 2rem; margin-top: auto; border-top: 4px solid var(--accent-primary); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }

.footer-logo { font-family: 'Inter', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 10px; }
.footer-logo i { color: var(--accent-primary); }
.footer-vision { font-size: 0.95rem; color: #94a3b8; line-height: 1.7; margin-bottom: 1.5rem; padding-right: 2rem; }
.footer-vision strong { color: white; font-weight: 600; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid white; color: white; font-size: 1.0rem; transition: var(--transition-smooth); text-decoration: none; }
.footer-socials a:hover { background: var(--accent-primary); transform: translateY(-3px); }

.footer-links-col h4, .footer-contact-col h4 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.5px; color: white; }
.footer-links-col ul, .footer-contact-col ul { list-style: none; padding: 0; }
.footer-links-col ul li { margin-bottom: 0.8rem; }
.footer-links-col ul li a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: var(--transition-smooth); cursor: pointer; display: inline-flex; align-items: center; gap: 8px;}
.footer-links-col ul li a:hover { color: var(--accent-glow); padding-left: 5px; }
.highlight-link { color: var(--junior-accent) !important; font-weight: 600; }

.contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; font-size: 0.9rem; color: #94a3b8; line-height: 1.5; }
.contact-list li i { color: var(--accent-primary); margin-top: 3px; }
.footer-cta { background: transparent; border: 1px solid var(--accent-primary); color: white; padding: 0.6rem 1.2rem; border-radius: 6px; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; cursor: pointer; transition: var(--transition-smooth); margin-top: 1rem; width: 100%; }
.footer-cta:hover { background: var(--accent-primary); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.85rem; color: #64748b; flex-wrap: wrap; gap: 1rem; }
.copyright-group { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.visitor-badge { background: rgba(255,255,255,0.05); padding: 5px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; color: #cbd5e1; }
.visitor-badge i { color: var(--accent-glow); }
.visitor-badge span { font-weight: 700; color: white; }
.legal-links { display: flex; gap: 1.5rem; }
.legal-links a { color: #64748b; text-decoration: none; transition: var(--transition-smooth); }
.legal-links a:hover { color: white; }

/* --- FOOTER HD MAP --- */
.footer-map-container { width: 100%; height: 320px; margin: 3rem 0 1rem; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.3); background: #112240; }
.footer-map-container iframe { width: 100%; height: 100%; border: none; }

/* --- EVENT CARDS (Classic UI) --- */
.event-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid #e1e5ea; transition: var(--transition-smooth); display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent-primary); }
.event-img { height: 160px; width: 100%; object-fit: cover; border-bottom: 1px solid #e1e5ea; }
.event-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.event-badge { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.8rem; width: fit-content; }
.badge-blue { background: rgba(0, 123, 255, 0.1); color: var(--accent-primary); }
.badge-orange { background: rgba(255, 159, 28, 0.1); color: var(--junior-accent); }
.badge-green { background: rgba(37, 211, 102, 0.1); color: #1da851; }
.badge-purple { background: rgba(163, 116, 255, 0.1); color: var(--edu-accent); }
.event-title { font-family: 'Inter', sans-serif; font-size: 1.05rem; color: var(--navy-deepest); margin-bottom: 0.5rem; font-weight: 700; line-height: 1.3; }
.event-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.8rem; display: flex; flex-direction: column; gap: 6px; }
.event-meta i { width: 16px; color: var(--accent-primary); }
.event-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin-bottom: 1.2rem; flex: 1; }
.event-btn { background: transparent; border: 1px solid #e1e5ea; color: var(--navy-deepest); padding: 0.6rem; text-align: center; border-radius: 6px; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; transition: 0.3s; cursor: pointer; display: block; width: 100%; text-decoration: none; letter-spacing: 0.5px;}
.event-card:hover .event-btn { background: var(--accent-primary); color: white; border-color: var(--accent-primary); }

/* --- BLOG HUB & ARTICLE STYLES --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.blog-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; transition: var(--transition-smooth); border: 1px solid #e1e5ea; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--accent-primary); }
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 1.5rem; flex-grow: 1; }
.blog-tag { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: var(--accent-primary); margin-bottom: 0.5rem; display: block; }
.blog-title { font-size: 1.25rem; color: var(--navy-deepest); font-weight: 700; margin-bottom: 0.8rem; line-height: 1.3; }
.blog-excerpt { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }

/* Full Article View Styling */
.article-container { max-width: 900px; margin: 3rem auto; background: white; padding: 4rem 10%; border-radius: 12px; box-shadow: var(--shadow-card); border: 1px solid #e1e5ea; }
.article-header { margin-bottom: 2.5rem; text-align: center; }
.article-header h1 { font-size: 2.5rem; color: var(--navy-deepest); margin-bottom: 1rem; line-height: 1.2; font-weight: 800; }
.article-meta { color: var(--text-light); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.article-body { font-size: 1.1rem; color: var(--text-dark); line-height: 1.8; text-align: justify; }
.article-body h2 { margin: 2.5rem 0 1rem; color: var(--navy-deepest); border-left: 5px solid var(--accent-primary); padding-left: 1rem; font-size: 1.5rem; }
.article-body p { margin-bottom: 1.5rem; font-size: 1.05rem; line-height: 1.8; color: var(--text-dark); }
.article-body ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style-type: disc; }
.article-body li { margin-bottom: 0.8rem; font-size: 1rem; color: var(--text-dark); }

/* App-Like Mobile Menu Icon */
.mobile-menu-btn { display: none; font-size: 1.5rem; color: var(--navy-deepest); cursor: pointer; margin-left: 10px; }

@media (max-width: 900px) {
    /* Navbar & Slide-Out Menu */
    .mobile-menu-btn { display: block; }
    .nav-actions .cta-btn { display: none; } 
    .brand-tagline { display: none; } 
    
    .nav-links { 
        position: fixed; top: 70px; right: -100%; width: 80%; height: calc(100vh - 70px); 
        background: white; flex-direction: column; align-items: flex-start; justify-content: flex-start; 
        padding: 2rem; box-shadow: -10px 0 20px rgba(0,0,0,0.1); transition: right 0.4s ease; 
        overflow-y: auto; z-index: 999; margin: 0; gap: 0;
    }
    .nav-links.active { right: 0; }
    .nav-links > a, .nav-dropdown { width: 100%; padding: 1rem 0; border-bottom: 1px solid #e1e5ea; font-size: 0.95rem; }
    .nav-dropdown { flex-direction: column; align-items: flex-start; }
    .dropdown-content { position: static; box-shadow: none; border: none; border-left: 3px solid var(--accent-primary); display: none; padding: 0.5rem 0 0.5rem 1rem; margin-top: 0.5rem; width: 100%; }
    .nav-dropdown.active .dropdown-content { display: block; }
    .nav-links > a::after, .nav-dropdown > a::after { display: none; }

    /* Hero Section Fixes */
    .hero-split { flex-direction: column; height: auto; }
    .split { min-height: 33vh; height: auto; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 3rem 1rem; }
    .split-content { position: relative; top: 0; transform: none; padding-top: 0; }
    .split h2 { font-size: 1.6rem; height: auto; margin-bottom: 10px; }
    .split p { display: none; } /* Keeps it clean on small screens */

    /* Forms & Grids Stacking */
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .airspace-search { flex-direction: column; }
    
    /* Visual Slider & UI Adjustments */
    .sector-card { min-width: 260px; flex: 0 0 90%; height: 300px;}
    .lead-magnet-banner { flex-direction: column; text-align: left; padding: 2rem 1.5rem; }
    .lm-features li { justify-content: flex-start; }
    .visual-proof-container { height: 250px; }
    .visual-img-overlay img { max-width: none; width: 200%; height: 250px; } /* Prevents squishing */

    /* Footer Adjustments */
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; text-align: left; }
    .footer-brand-col { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; justify-content: center; gap: 1.5rem; }
    .copyright-group { justify-content: center; }
    .legal-links { justify-content: center; }
}