/* =========================================
    VARIABLES Y BASE (MIDNIGHT EMERALD)
   ========================================= */
:root {
    --bg-deep: #070b14;
    --bg-card: #0d131f;
    --mint-neon: #00f58b;
    --mint-dim: rgba(0, 245, 139, 0.1);
    --text-white: #ffffff;
    --text-gray: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }
body { background-color: var(--bg-deep); color: var(--text-white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; }
.page-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
.section-spacing { margin-top: 140px; margin-bottom: 100px; }
.text-mint { color: var(--mint-neon); }

/* Luces Ambientales (Aura verde en las esquinas) */
.ambient-light { position: fixed; border-radius: 50%; filter: blur(150px); z-index: 0; opacity: 0.2; pointer-events: none; }
.light-top { top: -20%; left: -10%; width: 600px; height: 600px; background: var(--mint-neon); }
.light-bottom { bottom: -20%; right: -10%; width: 700px; height: 700px; background: #0c4a6e; /* Un toque azul marino oscuro para contraste */ }

/* Títulos Globales */
.title-container { text-align: center; margin-bottom: 60px; }
.title-container h2 { font-size: 42px; font-weight: 800; letter-spacing: -1px; margin-bottom: 15px; }
.title-container p { color: var(--text-gray); font-size: 18px; max-width: 600px; margin: 0 auto; }

/* Botones Principales */
.btn-primary-mint { background-color: var(--mint-neon); color: var(--bg-deep); padding: 14px 28px; border-radius: 8px; font-weight: 700; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; }
.btn-primary-mint:hover { background-color: #00d679; box-shadow: 0 5px 20px rgba(0, 245, 139, 0.3); transform: translateY(-2px); }
.btn-ghost-mint { color: var(--text-white); border: 1px solid rgba(255,255,255,0.1); padding: 14px 28px; border-radius: 8px; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; justify-content: center; }
.btn-ghost-mint:hover { border-color: var(--mint-neon); color: var(--mint-neon); }
.btn-large { padding: 16px 36px; font-size: 16px; }

/* =========================================
    HERO SECTION
   ========================================= */
.hero-emerald { padding-top: 200px; min-height: 85vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; width: 100%; }

.tag-outline { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,0.1); padding: 6px 16px; border-radius: 30px; font-size: 13px; color: var(--text-gray); margin-bottom: 30px; font-weight: 500; }
.pulse-green { width: 8px; height: 8px; background-color: var(--mint-neon); border-radius: 50%; box-shadow: 0 0 10px var(--mint-neon); }

.hero-typography h1 { font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px; }
.hero-typography p { font-size: 18px; color: var(--text-gray); margin-bottom: 40px; line-height: 1.7; max-width: 90%; }
.hero-cta-group { display: flex; gap: 20px; }

/* Gráficos del Hero (Tarjetas flotantes tech) */
.hero-graphics { position: relative; height: 400px; display: flex; justify-content: center; align-items: center; }
.float-card { background-color: rgba(13, 19, 31, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(0, 245, 139, 0.15); padding: 25px; border-radius: 16px; position: absolute; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-1 { top: 10%; right: 5%; width: 320px; animation: float 6s ease-in-out infinite; }
.card-2 { bottom: 10%; left: 5%; width: 280px; animation: float 8s ease-in-out infinite reverse; border-color: rgba(255,255,255,0.05); }

.card-header { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; display: flex; align-items: center; gap: 10px;}
.card-body { color: var(--text-gray); font-size: 14px; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* =========================================
    MÉTODO (TARJETAS NEÓN)
   ========================================= */
.neon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.neon-card { background-color: var(--bg-card); border: 1px solid rgba(255,255,255,0.03); padding: 40px 30px; border-radius: 16px; transition: all 0.4s ease; position: relative; }
.neon-card:hover { border-color: rgba(0, 245, 139, 0.3); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 20px rgba(0, 245, 139, 0.02); }

.icon-ring { width: 50px; height: 50px; border-radius: 50%; background-color: var(--mint-dim); color: var(--mint-neon); display: flex; justify-content: center; align-items: center; font-size: 20px; margin-bottom: 25px; border: 1px solid rgba(0, 245, 139, 0.2); }
.neon-card h3 { font-size: 20px; margin-bottom: 15px; font-weight: 700; }
.neon-card p { color: var(--text-gray); font-size: 15px; }

/* =========================================
   NUEVOS SERVICIOS (ULTRA-VISUAL)
   ========================================= */
.training-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}
.training-block.alt-direction { flex-direction: row-reverse; }

.block-visual { flex: 1; position: relative; perspective: 1000px; }
.block-text { flex: 1; padding: 0 20px; }

/* Marco visual elegante (tipo app premium) */
.visual-frame {
    width: 100%;
    height: 400px;
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}
.visual-frame:hover { transform: rotateY(0) rotateX(0); border-color: var(--mint-neon); }
.neon-border-mint { border: 1px solid rgba(0, 245, 139, 0.15); box-shadow: 0 0 20px rgba(0, 245, 139, 0.03); }

.frame-header { background-color: rgba(0,0,0,0.3); padding: 12px 15px; display: flex; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dot-mint { width: 10px; height: 10px; background-color: rgba(0, 245, 139, 0.3); border-radius: 50%; }
.mono-text { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-gray); }

.frame-body { flex-grow: 1; position: relative; background-size: cover; background-position: center; background-color: #1a1a1a; }
.bg-theory-visual { color: #1a1a1a/* Añade tu imagen: background-image: url('../img/theory-live.jpg'); */ }
.bg-practice-visual { color: #1a1a1a;/* Añade tu imagen: background-image: url('../img/car-interior.jpg'); */ }

.frame-overlay { position: absolute; bottom: 0; width: 100%; padding: 30px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.9)); }
.frame-overlay h3 { color: #fff; font-size: 24px; }
.frame-overlay p { color: var(--text-gray); font-size: 14px; }

/* Selector de marchas (Visual Coche Manual/Auto) */
.gear-selector { position: absolute; top: 30px; right: 30px; display: flex; gap: 10px; }
.selector-item { width: 45px; height: 45px; border-radius: 50%; background-color: rgba(20, 20, 22, 0.8); border: 1px solid rgba(255,255,255,0.1); color: var(--text-gray); display: flex; justify-content: center; align-items: center; font-weight: 800; font-size: 18px; transition: 0.3s;}
.selector-item.active { background-color: var(--mint-neon); color: var(--bg-deep); border-color: var(--mint-neon); box-shadow: 0 0 15px rgba(0, 245, 139, 0.4); }

/* Textos de Servicios */
.icon-box-mint { width: 50px; height: 50px; background-color: var(--mint-dim); color: var(--mint-neon); border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 20px; margin-bottom: 25px; border: 1px solid rgba(0, 245, 139, 0.3); }
.block-text h3 { font-size: 40px; font-weight: 800; line-height: 1.1; margin-bottom: 25px; letter-spacing: -1px; }
.block-text p { color: var(--text-gray); font-size: 16px; margin-bottom: 40px; }

/* =========================================
   NUEVOS CENTROS (SHOWCASE CON MAPAS)
   ========================================= */
.centers-showcase { display: flex; flex-direction: column; gap: 50px; margin-top: 60px; }
.center-panel { display: flex; overflow: hidden; height: 450px; background-color: rgba(20, 20, 22, 0.8); }

.center-map { width: 50%; height: 100%; border-right: 1px solid rgba(255,255,255,0.05); background-color: #000; }
.center-data { width: 50%; padding: 50px; display: flex; flex-direction: column; justify-content: space-between; }

.data-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px;}
.data-header h3 { font-size: 24px; font-weight: 700; color: #fff; }
.maps-link { color: var(--mint-neon); font-size: 13px; font-weight: 600; text-decoration: underline; display: flex; align-items: center; gap: 8px; transition: 0.2s;}
.maps-link:hover { color: #fff; gap: 12px; }

.data-list { list-style: none; margin-bottom: 30px;}
.data-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--text-gray); font-size: 15px; }
.data-list li i { width: 20px; text-align: center; font-size: 18px;}

/* Bloque Horario idéntico a la captura de Google */
.schedule-block { background-color: rgba(0,0,0,0.2); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }

.schedule-status { display: flex; align-items: center; gap: 12px; padding: 15px 20px; font-size: 15px;}
.status-indicator { width: 10px; height: 10px; border-radius: 50%; }

/* Estados del horario */
.schedule-block.open .status-indicator { background-color: #00f58b; box-shadow: 0 0 10px rgba(0, 245, 139, 0.5); } /* Verde Abierto */
.schedule-block.open .schedule-status strong { color: #fff; }

.schedule-block.closed .status-indicator { background-color: #ef4444; } /* Rojo Cerrado */
.schedule-block.closed .schedule-status strong { color: var(--text-gray); }

.schedule-block.check .status-indicator { background-color: var(--text-gray); } /* Gris Consultar */
.schedule-block.check .schedule-status strong { color: var(--text-gray); }

/* Detalles desplegables idénticos a captura */
.schedule-details { padding: 0 20px 15px; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-gray); }
.schedule-details summary { padding-top: 15px; cursor: pointer; color: var(--text-gray); font-size: 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center;}
.schedule-details summary i { color: rgba(255,255,255,0.3); font-size: 12px;}

.schedule-details ul { list-style: none; padding: 15px 0 0 15px; font-size: 13px; }
.schedule-details li { display: flex; justify-content: space-between; color: var(--text-gray); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.02); }
.schedule-details li span:last-child { color: var(--text-white); font-weight: 500;}
.schedule-details li.closed-day span:last-child { color: #ef4444; font-weight: 600;}

/* =========================================
    FOOTER
   ========================================= */
.mint-footer { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 80px; position: relative; z-index: 10;}
.footer-cta { text-align: center; margin-bottom: 80px; }
.footer-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.footer-cta p { color: var(--text-gray); margin-bottom: 30px; }

.footer-base { max-width: 1200px; margin: 0 auto; padding: 30px 20px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-gray); font-size: 14px; }
.base-right { display: flex; gap: 20px; }
.base-right a { color: var(--text-gray); transition: 0.2s; }
.base-right a:hover { color: var(--mint-neon); }


/* =========================================
   SECCIÓN FORMACIÓN (TEÓRICA Y PRÁCTICA)
   ========================================= */
.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.training-card {
    position: relative;
    border-radius: 20px;
    padding: 1px; /* Para el borde degradado */
    background: linear-gradient(135deg, rgba(0, 245, 139, 0.4) 0%, rgba(255,255,255,0.02) 100%);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.training-card:hover {
    transform: translateY(-5px);
}

.card-glass-bg {
    position: absolute;
    top: 1px; left: 1px; right: 1px; bottom: 1px;
    background-color: var(--bg-card);
    border-radius: 19px;
    z-index: 1;
}

.training-content {
    position: relative;
    z-index: 2;
    padding: 50px 40px;
    height: 100%;
}

.training-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mint-neon) 0%, #0c8a58 100%);
    color: var(--bg-deep);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0, 245, 139, 0.2);
}

.training-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-white);
}

.training-desc {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-list li {
    color: var(--text-gray);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.5;
}

.check-list li i {
    font-size: 18px;
    margin-top: 2px;
}

.check-list li strong {
    color: var(--text-white);
}

/* =========================================
    SECCIÓN RESEÑAS
   ========================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: rgba(13, 19, 31, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.review-card:hover {
    background-color: rgba(13, 19, 31, 0.8);
    border-color: rgba(0, 245, 139, 0.2);
}

.highlight-review {
    border-color: rgba(0, 245, 139, 0.3);
    background: linear-gradient(180deg, rgba(0, 245, 139, 0.05) 0%, rgba(13, 19, 31, 0.5) 100%);
    transform: scale(1.02);
}

.review-stars {
    color: var(--mint-neon);
    font-size: 14px;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-white);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--mint-dim);
    color: var(--mint-neon);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid rgba(0, 245, 139, 0.3);
}

.review-author strong {
    display: block;
    color: var(--text-white);
    font-size: 15px;
}

.review-author span {
    color: var(--text-gray);
    font-size: 13px;
}

/* =========================================
   PRÁCTICAS: SPLIT VIEW (MANUAL / AUTO)
   ========================================= */
.dual-bg {
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.bg-half {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

/* Imágenes de ejemplo - Pon las reales de la autoescuela */
.manual-side {
    background-image: url('https://images.unsplash.com/photo-1605810230434-7631ac76ec81?q=80&w=800&auto=format&fit=crop');
    border-right: 1px solid rgba(255,255,255,0.05);
}

.auto-side {
    background-image: url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?q=80&w=800&auto=format&fit=crop');
}

/* El efecto mágico al pasar el ratón */
.bg-half:hover {
    flex: 1.8; /* Expande la imagen que estás mirando */
}

.half-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.badge-m, .badge-a {
    width: 35px; height: 35px;
    border-radius: 8px;
    display: flex; justify-content: center; align-items: center;
    font-weight: 800; font-size: 16px;
}

.badge-m { background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
.badge-a { background-color: var(--mint-dim); color: var(--mint-neon); border: 1px solid rgba(0, 245, 139, 0.3); }

/* =========================================
   TEXTOS: TARJETAS DE OPCIONES
   ========================================= */
.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.option-box {
    background: rgba(13, 19, 31, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.option-box:hover {
    border-color: var(--mint-neon);
    background: rgba(0, 245, 139, 0.03);
    transform: translateY(-3px);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.option-header h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 700;
}

.gear-badge {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
}

.gear-badge.auto {
    background: var(--mint-dim);
    color: var(--mint-neon);
}

.option-box p {
    font-size: 13px !important;
    color: var(--text-gray);
    margin-bottom: 0 !important;
    line-height: 1.6;
}

/* =========================================
   HORARIO VISIBLE Y DINÁMICO
   ========================================= */
.schedule-details-visible {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.schedule-details-visible h4 {
    font-size: 14px; color: #fff; margin-bottom: 15px; font-weight: 600;
}
.schedule-details-visible ul {
    list-style: none; font-size: 13px;
}
.schedule-details-visible li {
    display: flex; justify-content: space-between;
    color: var(--text-gray); padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.schedule-details-visible li:last-child { border-bottom: none; }
.schedule-details-visible li span:last-child { color: var(--text-white); font-weight: 500;}
.schedule-details-visible li.closed-day span:last-child { color: #ef4444; font-weight: 700;}

.status-time { color: var(--text-gray); font-size: 13px; margin-left: 5px; }


/* =========================================
   SECCIÓN CONTACTO Y FORMULARIO
   ========================================= */
.contact-panel {
    display: flex;
    gap: 60px;
    background: linear-gradient(135deg, rgba(13, 19, 31, 0.6) 0%, rgba(7, 11, 20, 0.8) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

/* Brillo de fondo sutil para el panel */
.contact-panel::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0, 245, 139, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-side { flex: 1; z-index: 2; }
.contact-form-side { flex: 1; z-index: 2; }

.contact-info-side h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Tarjetas rápidas de contacto (Izq) */
.quick-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.qc-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
}

.qc-card i { font-size: 20px; margin-top: 3px; }
.qc-card span { display: block; font-size: 13px; color: var(--text-gray); margin-bottom: 5px; }
.qc-card strong { display: block; font-size: 14px; color: var(--text-white); font-weight: 600; line-height: 1.4;}

/* Redes Sociales (Izq) */
.contact-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px; height: 45px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-white);
    display: flex; justify-content: center; align-items: center;
    font-size: 18px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--mint-dim);
    color: var(--mint-neon);
    border-color: rgba(0, 245, 139, 0.3);
    transform: translateY(-3px);
}

/* ================== FORMULARIO ================== */
.emerald-form {
    background: rgba(0,0,0,0.3);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: rgba(20, 20, 22, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 15px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;   
    max-height: 300px;
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

/* Efecto Neón al seleccionar el campo de texto */
.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--mint-neon);
    background: rgba(0, 245, 139, 0.02);
    box-shadow: 0 0 15px rgba(0, 245, 139, 0.1);
}

.btn-submit {
    width: 100%;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}



/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-emerald { padding-top: 150px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 60px;}
    .neon-grid { grid-template-columns: 1fr; }
    .premium-banner { flex-direction: column; }
    .banner-image { height: 300px; border-left: none; border-top: 1px solid rgba(255,255,255,0.05); }
    .locations-wrapper { grid-template-columns: 1fr; }
    .training-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .highlight-review { transform: scale(1); }

    .training-block { flex-direction: column !important; text-align: center; gap: 40px; }
    .hero-typography p { margin: 0 auto 40px; }
    .hero-cta-group { justify-content: center; }
    .block-text h3 { font-size: 32px; }
    .frame-body { height: 300px; }
    .visual-frame { height: 300px; }

    .center-panel { flex-direction: column; height: auto; }
    .center-map { width: 100%; height: 250px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .center-data { width: 100%; padding: 30px; }
    .data-header { flex-direction: column; gap: 10px; margin-bottom: 20px;}
    .schedule-details ul { padding-left: 0; }

    .contact-panel { flex-direction: column; padding: 40px 20px; gap: 40px; }
    .quick-contact-grid { grid-template-columns: 1fr; }
    .emerald-form { padding: 30px 20px; }
    .options-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hero-typography h1 { font-size: 42px; }
    .hero-cta-group { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .float-card { position: relative; width: 100%; top: auto !important; bottom: auto !important; left: auto !important; right: auto !important; margin-bottom: 20px; animation: none;}
    .hero-graphics { height: auto; flex-direction: column; }
    .footer-base { flex-direction: column; gap: 20px; text-align: center; }
}