/* =========================================
   HEADER TIPO BANNER (REFERENCIA COLEGIO ALEMÁN)
   ========================================= */

.page-banner {
    position: relative;
    width: 100%;
    height: 50vh; /* Altura media (Panorámica), no pantalla completa */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    /* IMAGEN DE FONDO PANORÁMICA */
    /* Asegúrate de usar una foto ancha del colegio aquí */
    background: url('../Image/Headers/header-nosotros-VER.jpeg') no-repeat center center;
    background-size: cover;
    
    /* Ajuste para que empiece detrás del menú fijo */
    margin-top: 0; 
}

/* Capa oscura encima de la foto para que el texto blanco resalte */
.banner-overlay {
    position: absolute;
    inset: 0;
    /* Degradado Dark Neon: De azul oscuro transparente a azul sólido abajo */
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.737), var(--navy-dark));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 60px; /* Compensación visualn por el navbar */
}

.banner-content h1 {
    font-family: 'Teko', sans-serif;
    font-size: 5rem; /* Título Gigante */
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Línea decorativa debajo del título (Estilo Neon) */
.banner-line {
    width: 120px;
    height: 6px;
    background: var(--accent-cyan); /* Cyan Neón */
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 0 15px var(--accent-cyan);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-banner {
        height: 40vh;
        min-height: 300px;
    }
    .banner-content h1 {
        font-size: 3.5rem;
    }
 }
        /* =========================================
   CONTACTO DARK NEON & GLASSMORPHISM
   ========================================= */

body.contact-body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
}

/* --- HERO SECTION --- */
.contact-hero {
    position: relative; height: 50vh;
    display: flex; align-items: center; justify-content: center;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-attachment: fixed; filter: brightness(0.5); z-index: 1;
}
.hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%); z-index: 2;
}
.hero-content { position: relative; z-index: 3; max-width: 800px; margin: 0 auto; }
.giant-title { font-family: 'Teko', sans-serif; font-size: 5rem; margin: 10px 0; line-height: 1; }
.hero-content p { color: #ccc; font-size: 1.2rem; }
.giant-title { 
    font-family: 'Teko', sans-serif; 
    font-size: 6rem; /* Lo hacemos un poco más grande */
    margin: 0; 
    line-height: 1; 
    color: #fff;
    /* Le añadimos un resplandor dorado súper sutil para que luzca Premium */
    text-shadow: 0 5px 20px rgba(251, 191, 36, 0.3); 
    letter-spacing: 2px;
}
/* --- GRID PRINCIPAL --- */
.contact-main-section { padding: 60px 0 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }

/* --- COLUMNA IZQUIERDA (INFO) --- */
.contact-info-column { display: flex; flex-direction: column; gap: 20px; }

.info-card {
    display: flex; align-items: center; gap: 20px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    padding: 25px; border-radius: 15px; transition: 0.3s;
}
.info-card:hover { background: rgba(255,255,255,0.05); transform: translateX(10px); }

.icon-box {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.icon-box.cyan { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); border: 1px solid var(--accent-cyan); }
.icon-box.gold { background: rgba(251, 191, 36, 0.1); color: var(--accent-gold); border: 1px solid var(--accent-gold); }

.info-text h4 { font-family: 'Teko', sans-serif; font-size: 1.8rem; margin: 0; letter-spacing: 1px; }
.info-text p { margin: 0; color: #aaa; font-size: 0.95rem; }

/* Tarjeta Destacada de Trámite */
.action-card {
    background: rgba(251, 191, 36, 0.05); border: 1px solid rgba(251, 191, 36, 0.3);
    padding: 30px; border-radius: 20px; text-align: left;
}
.action-card.gold-glow { box-shadow: 0 0 30px rgba(251, 191, 36, 0.1); }
.action-header { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.giant-icon { font-size: 3rem; }
.text-gold { color: var(--accent-gold); }
.action-header h3 { font-family: 'Teko', sans-serif; font-size: 2.2rem; margin: 0; color: #fff; line-height: 1; }
.action-header p { margin: 10px 0 0 0; color: #ccc; font-size: 0.9rem; }


/* --- COLUMNA DERECHA (FORMULARIO DARK) --- */
.glass-form-panel {
    background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08); padding: 50px; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.glass-form-panel h2 { font-family: 'Teko', sans-serif; font-size: 3.5rem; margin: 0; }

.dark-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.form-group label { font-family: 'Teko', sans-serif; font-size: 1.2rem; color: #aaa; letter-spacing: 1px; }

/* Estilo Inputs Dark Mode */
.dark-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; font-family: 'Poppins', sans-serif;
    padding: 15px 20px; border-radius: 10px;
    font-size: 1rem; outline: none; transition: 0.3s;
}
.dark-input::placeholder { color: rgba(255,255,255,0.3); }
.dark-input:focus { border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(6, 182, 212, 0.2); background: rgba(0, 0, 0, 0.4); }

/* Select personalizado */
.custom-select-wrapper { position: relative; }
.custom-select { width: 100%; appearance: none; cursor: pointer; }
.custom-select option { background: var(--bg-dark); color: #fff; }
.select-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--accent-cyan); pointer-events: none; }

/* --- BOTONES COMPLETOS --- */
.btn-full {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 15px; border-radius: 10px;
    font-family: 'Teko', sans-serif; font-size: 1.5rem; letter-spacing: 1px;
    cursor: pointer; transition: 0.3s; border: none; text-decoration: none; text-transform: uppercase;
}
.btn-full.cyan { background: var(--accent-cyan); color: var(--bg-dark); }
.btn-full.cyan:hover { background: #fff; box-shadow: 0 0 20px var(--accent-cyan); transform: translateY(-3px); }

.btn-full.gold { background: transparent; border: 2px solid var(--accent-gold); color: var(--accent-gold); }
.btn-full.gold:hover { background: var(--accent-gold); color: var(--bg-dark); box-shadow: 0 0 20px var(--accent-gold); }


/* --- MAPA DARK MODE (TRUCO CSS) --- */
.map-section { line-height: 0; }
.dark-map {
    /* Este filtro invierte los colores de Google Maps haciéndolo oscuro */
    filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(120%);
    pointer-events: auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { flex-direction: column; gap: 20px; }
    .glass-form-panel { padding: 30px; }
}
