@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,600&display=swap');

:root {
    --bg-dark: #090C12;
    --bg-surface: #121724;
    --bg-card: rgba(255, 255, 255, 0.025);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-active: rgba(225, 29, 72, 0.5);
    
    --primary: #E11D48;
    --primary-hover: #F43F5E;
    --secondary: #F59E0B;
    --success: #10B981;
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-subtle: #64748B;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 1, 0.3, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS & MICRO-INTERACTIONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.mt-4 { margin-top: 24px; }

/* --- INTERACTIVE CARDS & HOVER SPOTLIGHT --- */
.interactive-card {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: var(--y, 0);
    left: var(--x, 0);
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.interactive-card:hover::before { opacity: 1; }
.interactive-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.card-content { position: relative; z-index: 1; }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(9, 12, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.3rem; letter-spacing: -0.02em; display: flex; align-items: center; }
.logo strong { color: var(--text-main); font-weight: 800; }

.sheen-text {
    background: linear-gradient(90deg, var(--primary) 0%, #FFB020 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    margin-left: 6px;
    transition: background-position 0.5s ease;
}

.logo:hover .sheen-text { animation: shine 1.5s linear infinite; }
@keyframes shine { to { background-position: 200% center; } }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a:not(.btn) { font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:not(.btn):hover { color: var(--text-main); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger .bar {
    width: 24px; height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* --- HERO & VIDEO BACKGROUND --- */
.hero {
    padding: 200px 0 112px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-media-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-media-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(15%) brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(9, 12, 18, 0.6) 0%, rgba(9, 12, 18, 0.45) 50%, rgba(9, 12, 18, 0.98) 100%);
}

.glow-bg {
    position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, transparent 70%);
    pointer-events: none; z-index: 1;
}

.hero-container { position: relative; z-index: 2; max-width: 860px; }

.pulse-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 22px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; color: var(--secondary);
    margin-bottom: 32px; text-transform: uppercase; letter-spacing: 0.1em;
    backdrop-filter: blur(12px);
}

.pulse-dot {
    width: 8px; height: 8px; background-color: var(--success);
    border-radius: 50%; box-shadow: 0 0 12px var(--success);
    animation: blink 2s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(1.3); } }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 800; line-height: 1.15;
    margin-bottom: 28px; letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, #FF3B69 0%, #F59E0B 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub {
    font-size: 1.15rem; color: var(--text-muted); line-height: 1.7;
    margin-bottom: 44px; max-width: 760px; margin-left: auto; margin-right: auto;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.secondary-enroll { font-size: 0.9rem; color: var(--text-subtle); margin-bottom: 72px; }
.hover-underline { color: var(--text-muted); text-decoration: underline; margin-left: 6px; font-weight: 500; }
.hover-underline:hover { color: var(--primary); }

/* --- TRUST BAR --- */
.trust-bar { border-top: 1px solid var(--border-subtle); padding-top: 48px; }
.trust-bar p { font-size: 0.75rem; font-weight: 700; color: var(--text-subtle); letter-spacing: 0.25em; margin-bottom: 28px; }
.logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-logo { font-weight: 800; font-size: 1.25rem; color: var(--text-subtle); letter-spacing: 0.1em; transition: color 0.3s ease, transform 0.3s ease; }
.trust-logo:hover { color: var(--text-main); transform: translateY(-2px) scale(1.05); }

/* --- SECTION HEADERS --- */
.section-title { margin-bottom: 56px; }
.text-center { text-align: center; }
.section-title h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.section-title p { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; }

/* --- COHORTS SCHEDULE --- */
.cohorts-section { padding: 112px 0; background-color: #0E131F; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.cohorts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.cohort-card .card-content { padding: 36px 28px; display: flex; flex-direction: column; height: 100%; }

.tag { align-self: flex-start; font-size: 0.75rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.tag-urgent { background: rgba(225, 29, 72, 0.15); color: #FF3B69; border: 1px solid rgba(225, 29, 72, 0.3); }
.tag-warn { background: rgba(245, 158, 11, 0.15); color: var(--secondary); border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-open { background: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-virtual { background: rgba(56, 189, 248, 0.15); color: #38BDF8; border: 1px solid rgba(56, 189, 248, 0.3); }

.loc { font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; color: var(--text-main); }
.venue { font-size: 0.95rem; color: var(--text-subtle); margin-bottom: 28px; }
.date { font-size: 0.95rem; font-weight: 500; color: var(--text-main); margin-bottom: 16px; padding: 12px 16px; background: rgba(0, 0, 0, 0.3); border-radius: 8px; border: 1px solid var(--border-subtle); }
.fee { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 28px; flex-grow: 1; }

/* --- INPUT FIELDS & FOCUS MICRO-INTERACTION --- */
.input-wrapper { position: relative; width: 100%; }
.input-wrapper input, .input-wrapper select { width: 100%; padding: 16px 20px; border-radius: 8px; border: 1px solid var(--border-subtle); background: rgba(0, 0, 0, 0.5); color: white; font-size: 1rem; transition: border-color 0.3s ease, background 0.3s ease; }
.focus-border { position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--primary); transition: width 0.3s cubic-bezier(0.2, 1, 0.3, 1), left 0.3s cubic-bezier(0.2, 1, 0.3, 1); border-radius: 2px; }
.input-wrapper input:focus ~ .focus-border, .input-wrapper select:focus ~ .focus-border { width: 100%; left: 0; }
.input-wrapper input:focus, .input-wrapper select:focus { border-color: transparent; background: rgba(0, 0, 0, 0.7); outline: none; }

/* --- MID-PAGE CAPTURE BANNER --- */
.capture-section { padding: 80px 0; }
.capture-banner { border: 1px solid rgba(225, 29, 72, 0.3); border-radius: 20px; }
.banner-inner { padding: 56px 72px; display: flex; align-items: center; justify-content: space-between; gap: 48px; background: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%); }
.capture-banner .content { max-width: 560px; }
.capture-banner h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.capture-banner p { font-size: 1.05rem; color: var(--text-muted); }
.capture-form { display: flex; gap: 16px; width: 100%; max-width: 460px; }
.capture-form .btn { flex-shrink: 0; }

/* --- FRAMEWORK PILLARS & BACKGROUND IMAGE --- */
.framework-section {
    padding: 128px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.framework-media-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.framework-media-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(10%) brightness(0.85) contrast(1.05);
}

.framework-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(9, 12, 18, 0.95) 0%, rgba(9, 12, 18, 0.45) 50%, rgba(9, 12, 18, 0.95) 100%);
}

.framework-container {
    position: relative;
    z-index: 2;
}

.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.pillar-card {
    background: rgba(18, 23, 36, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.pillar-card .card-content { padding: 40px 32px; }
.pillar-card .num { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.pillar-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.pillar-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }

/* --- VERIFIED ALUMNI --- */
.alumni-section { padding: 112px 0; background-color: #0E131F; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.alumni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.alumni-card .card-content { padding: 40px; display: flex; flex-direction: column; gap: 24px; }
.user-info { display: flex; align-items: center; gap: 16px; }
.img-wrapper { position: relative; width: 56px; height: 56px; border-radius: 50%; padding: 2px; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.img-wrapper img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.user-info h4 { font-size: 1.15rem; font-weight: 700; }
.user-info span { font-size: 0.85rem; color: var(--text-subtle); }
.verify-badge { margin-left: auto; font-size: 0.8rem; font-weight: 600; color: #38BDF8; background: rgba(56, 189, 248, 0.1); padding: 6px 12px; border-radius: 50px; border: 1px solid rgba(56, 189, 248, 0.2); }
.verify-badge:hover { background: rgba(56, 189, 248, 0.25); color: white; transform: translateY(-1px); }
.quote { font-size: 1.05rem; color: var(--text-muted); font-style: italic; line-height: 1.75; }

/* --- CONSULTATION FORM --- */
.consultation-section { padding: 120px 0; }
.form-wrapper-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; padding: 72px; }
.consultation-wrapper .info h2 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 800; margin-bottom: 20px; }
.consultation-wrapper .info p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; }

.helpline { display: flex; flex-direction: column; gap: 6px; padding: 24px; background: rgba(0, 0, 0, 0.3); border: 1px solid var(--border-subtle); border-radius: 12px; }
.helpline span { font-size: 0.85rem; color: var(--text-subtle); }
.helpline strong { font-size: 1.15rem; color: var(--text-main); }

.lead-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }
.form-group select option { background: #121724; color: white; }
.confidential-note { font-size: 0.85rem; color: var(--text-subtle); text-align: center; margin-top: 4px; }

/* --- FOOTER --- */
.footer { border-top: 1px solid var(--border-subtle); padding: 64px 0; text-align: center; background: #07090E; }
.footer-container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo { font-weight: 800; font-size: 1.2rem; }
.footer-copy { font-size: 0.9rem; color: var(--text-subtle); }

/* --- MODAL --- */
.modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(12px); z-index: 10000; align-items: center; justify-content: center; }
.modal-card { background: var(--bg-surface); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 56px 48px; max-width: 500px; width: 90%; box-shadow: 0 30px 60px rgba(0,0,0,0.7), 0 0 40px rgba(225, 29, 72, 0.2); animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes modalPop { from { opacity: 0; transform: scale(0.92) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.icon-check { width: 72px; height: 72px; background: rgba(16, 185, 129, 0.15); color: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin: 0 auto 28px; box-shadow: 0 0 30px rgba(16, 185, 129, 0.3); }
.modal-card h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 16px; }
.modal-card p { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; }

/* ==========================================================================
   FULLY RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
    .form-wrapper-inner, .banner-inner { grid-template-columns: 1fr; flex-direction: column; padding: 48px 36px; text-align: center; }
    .capture-form { max-width: 100%; flex-direction: column; }
    .capture-form .btn { width: 100%; }
}

@media (max-width: 768px) {
    .hero { padding: 150px 0 80px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-sub { font-size: 1.05rem; padding: 0 16px; }
    .hero-actions { flex-direction: column; width: 100%; padding: 0 20px; }
    .hero-actions .btn { width: 100%; }
    
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(9, 12, 18, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column; padding: 40px 24px;
        border-bottom: 1px solid var(--border-subtle);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
        transform: translateY(-150%);
        transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1);
        z-index: 999;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a:not(.btn) { font-size: 1.25rem; }
    .nav-links .btn { width: 100%; margin-top: 16px; }

    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .form-row { grid-template-columns: 1fr; gap: 24px; }
    .form-wrapper-inner { padding: 40px 24px; }
    .banner-inner { padding: 40px 24px; }
    .alumni-card .card-content { padding: 32px 24px; }
    .footer-container { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 2rem; }
    .modal-card { padding: 40px 24px; }
    .logos { gap: 28px; }
    .trust-logo { font-size: 1.1rem; }
}
