/* ===============================================
   CONTACT & ENROLL PAGE STYLES
   Theme: Immersive Dark Mode & Glass
=============================================== */

/* --- 1. BACKGROUND ENGINE (The Aurora) --- */
body {
    background-color: #0f141e; /* Deep Tech Dark */
    color: #e8e8e8;
    overflow-x: hidden;
}

/* Force Headers to be White on this page */
h1, h2, h3, h4, h5, h6 { color: #ffffff !important; }
p { color: #b0bec5; }

.aurora-background {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; overflow: hidden; pointer-events: none;
}
.aurora-blob {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
    animation: float 10s infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: #00BFB3; top: -10%; left: -10%; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: #0A66C2; bottom: 10%; right: -5%; animation-delay: 2s; }
.blob-3 { width: 400px; height: 400px; background: #8e44ad; top: 40%; left: 30%; opacity: 0.2; animation-delay: 4s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* --- 2. HERO SECTION --- */
.contact-hero-glass {
    padding: 10rem 0 4rem; /* Spacing for fixed header */
    text-align: center; position: relative;
}
.hero-content-glass { max-width: 850px; margin: 0 auto; }

.hero-label-pill {
    background: rgba(0, 191, 179, 0.1); border: 1px solid rgba(0, 191, 179, 0.4);
    color: #00BFB3; padding: 6px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
    display: inline-block; margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 191, 179, 0.2);
}

.glitch-text {
    font-size: 3.5rem; font-weight: 800; color: #ffffff;
    letter-spacing: -1px; margin-bottom: 1.5rem; line-height: 1.2;
    text-shadow: 0 0 30px rgba(255,255,255,0.15);
}

.hero-sub { font-size: 1.2rem; color: #b0bec5; line-height: 1.6; margin-bottom: 3rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.highlight-text { color: #00BFB3; font-weight: 600; }

.stat-row { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.stat-pill {
    color: #fff; font-size: 0.95rem; font-weight: 500;
    display: flex; align-items: center; gap: 8px; opacity: 0.9;
    background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}
.stat-pill i { color: #00BFB3; }

/* --- 3. SPLIT INTERFACE GRID --- */
.contact-interface { padding-bottom: 6rem; }
.glass-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
}

/* Glass Panels (Common) */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* LEFT COLUMN: Directory Sidebar */
.glass-title { font-size: 1.5rem; color: #fff !important; margin-bottom: 5px; }
.glass-subtitle { color: #8a9bb7; margin-bottom: 2rem; font-size: 0.9rem; }

.directory-list { display: flex; flex-direction: column; gap: 15px; }

.directory-item {
    display: flex; align-items: center; gap: 15px;
    padding: 15px; border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    transition: all 0.3s ease; text-decoration: none;
}
.directory-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

/* Neon Icons */
.neon-icon {
    width: 45px; height: 45px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.blue-neon { background: rgba(10, 102, 194, 0.2); color: #4dabf7; box-shadow: 0 0 15px rgba(10, 102, 194, 0.2); }
.teal-neon { background: rgba(0, 191, 179, 0.2); color: #00BFB3; box-shadow: 0 0 15px rgba(0, 191, 179, 0.2); }
.orange-neon { background: rgba(230, 126, 34, 0.2); color: #f39c12; box-shadow: 0 0 15px rgba(230, 126, 34, 0.2); }
.green-neon { background: rgba(46, 204, 113, 0.2); color: #2ecc71; box-shadow: 0 0 15px rgba(46, 204, 113, 0.2); }

.dir-text h4 { color: #fff !important; font-size: 1rem; margin: 0; font-weight: 600; }
.dir-text span { color: #8a9bb7; font-size: 0.8rem; }
.arrow-fade { margin-left: auto; color: #fff; opacity: 0; transition: opacity 0.3s; }
.directory-item:hover .arrow-fade { opacity: 1; }

.legal-glass {
    margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
    color: #6c7a89; font-size: 0.85rem; line-height: 1.5;
}
.legal-glass i { color: #00BFB3; margin-right: 5px; }

/* RIGHT COLUMN: The Form (THIS WAS MISSING) */
.glass-header-row {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2.5rem;
}
.glass-header-row h3 { color: #fff !important; margin: 0; font-size: 1.6rem; }

.pulse-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(0, 191, 179, 0.1); color: #00BFB3;
    padding: 6px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700;
    border: 1px solid rgba(0, 191, 179, 0.3);
}
.pulse-dot {
    width: 8px; height: 8px; background: #00BFB3; border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,191,179,0.7); } 70% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(0,191,179,0); } 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,191,179,0); } }

/* Form Fields & Spacing */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-group, .floating-group { position: relative; margin-bottom: 2.5rem; }

.glass-input {
    width: 100%; padding: 16px; background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    color: #fff; font-size: 1rem; outline: none; transition: all 0.3s;
}
.glass-textarea { height: 140px; resize: none; font-family: inherit; }

.glass-input:focus {
    border-color: #00BFB3; background: rgba(0,0,0,0.4);
    box-shadow: 0 0 15px rgba(0, 191, 179, 0.1);
}

.floating-label {
    position: absolute; left: 16px; top: 16px;
    color: #8a9bb7; pointer-events: none; transition: 0.3s ease all;
    font-size: 0.95rem;
}

/* Floating Label Logic */
.glass-input:focus ~ .floating-label,
.glass-input:not(:placeholder-shown) ~ .floating-label {
    top: -10px; left: 10px; font-size: 0.75rem;
    background: #00BFB3; color: #000; padding: 2px 8px;
    border-radius: 4px; font-weight: 700;
}

/* Dropdown Fix */
.select-glass-wrapper { position: relative; }
.custom-select { appearance: none; cursor: pointer; color: #fff; }
.custom-select option { background-color: #ffffff; color: #333333; padding: 10px; } /* Mobile readable */
.glass-arrow { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: #00BFB3; pointer-events: none; }

/* Submit Button */
.btn-glass-submit {
    width: 100%; padding: 16px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #00BFB3 0%, #009688 100%);
    color: #fff; font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; justify-content: center; align-items: center; gap: 10px;
    transition: all 0.3s; box-shadow: 0 10px 20px rgba(0, 191, 179, 0.2); margin-top: 1rem;
}
.btn-glass-submit:hover {
    transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 191, 179, 0.4);
}
.btn-glass-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.glass-privacy { text-align: center; font-size: 0.8rem; color: #6c7a89; margin-top: 1.5rem; }

/* Error Banner (Visible by JS) */
.glass-error-banner {
    display: none; 
    margin-bottom: 20px; color: #ff6b6b; font-size: 0.9rem;
    border: 1px solid #ff6b6b; padding: 10px; border-radius: 8px;
    background: rgba(255, 107, 107, 0.1);
}

/* --- 4. FAQ SECTION --- */
.faq-glass-section { padding: 4rem 0; background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.05); }
.text-center { text-align: center; color: #fff !important; margin-bottom: 3rem; }
.faq-glass-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }

.faq-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; overflow: hidden;
}
.faq-trigger {
    width: 100%; padding: 20px; text-align: left; background: transparent; border: none;
    color: #fff; font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between;
    cursor: pointer;
}
.faq-trigger i { color: #00BFB3; transition: 0.3s; }
.faq-trigger.active i { transform: rotate(45deg); }
.faq-content {
    max-height: 0; overflow: hidden; transition: 0.3s ease;
    padding: 0 20px; color: #b0bec5; font-size: 0.95rem; line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .glass-grid { grid-template-columns: 1fr; }
    .glitch-text { font-size: 2.5rem; }
    .hero-content-glass { padding: 0 20px; }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-hero-glass { padding-top: 8rem; }
}