/* ==========================================================================
   1. CONFIGURACIÓN GLOBAL Y VARIABLES (Buenas Prácticas)
   ========================================================================== */
:root {
    --primary: #0056b3;        /* Azul Fontanería Profesional */
    --primary-dark: #004085;   /* Azul para estados Hover */
    --secondary: #28a745;      /* Verde para botones de conversión */
    --secondary-dark: #218838; /* Verde Hover */
    --danger: #dc3545;         /* Rojo Alerta para Modo Urgencia */
    --dark: #1a252f;           /* Gris casi negro para textos principales */
    --light: #f8f9fa;          /* Fondo gris claro para contraste de secciones */
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Corta drásticamente cualquier elemento que intente salirse por la derecha */
    width: 100%;
}

body {
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Evita que el contenido toque los bordes físicos de la pantalla */
}

/* Títulos y Subtítulos Genéricos */
.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 35px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}


/* ==========================================================================
   2. CABECERA / HEADER (Fixed & Flexbox)
   ========================================================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed; /* CAMBIO: De sticky a fixed para que no dependa del padre */
    top: 0;
    left: 0;        /* CAMBIO: Asegura que empiece desde el borde izquierdo */
    width: 100%;    /* CAMBIO: Fuerza a que ocupe todo el ancho de la pantalla */
    z-index: 1000;  /* CAMBIO: Subimos el z-index para evitar que lo tapen otros elementos */
    padding: 15px 0;
    transition: var(--transition);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0; /* Evita que el logo colapse si el botón de llamada empuja */
}

.logo-icon i {
    color: var(--primary);
    font-size: 24px;
}

.logo-bold {
    font-weight: 800;
    color: var(--primary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.btn-call {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.2);
}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* ==========================================================================
   3. SECCIÓN HERO (Diseño de Impacto)
   ========================================================================== */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(240, 244, 248, 0.95)), 
                url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80&w=1200') no-repeat center center/cover;
    padding: 90px 0;
    border-bottom: 1px solid #e2e8f0;
}

.hero-content {
    max-width: 700px;
}

.badge-local {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-main-call {
    background: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-main-call:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary-action {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.btn-secondary-action:hover {
    background: var(--primary);
    color: var(--white);
}

.hero-features {
    display: flex;
    gap: 25px;
    color: #4a5568;
    font-size: 14px;
    font-weight: 600;
}

.hero-features i {
    color: var(--secondary);
    margin-right: 4px;
}


/* ==========================================================================
   4. SERVICIOS (Animación Avanzada de Tarjetas)
   ========================================================================== */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    /* Fuerza 4 columnas idénticas en PC */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; /* Reducimos ligeramente de 25px a 20px para que las tarjetas respiren mejor en pantallas de portátiles */
}

.service-card {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--primary);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, opacity 0.5s ease;
    z-index: 1;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.service-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--white);
    transition: transform 0.5s ease;
}

.service-subtitle-card {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3498db;
    margin-bottom: 2px;
    transition: var(--transition);
}

.service-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    transition: transform 0.5s ease;
}

.service-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.service-description p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.service-link {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   ESTADOS HOVER (Solo ordenadores con ratón / Evita conflictos en móviles)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    .service-card:hover .service-img {
        opacity: 0;
        transform: scale(1.1);
    }

    .service-card:hover .service-overlay {
        opacity: 0;
    }

    /* El título sube en escritorio al pasar el ratón */
    .service-card:hover .service-content {
        transform: translateY(-10px);
    }

    .service-card:hover .service-description {
        max-height: 200px;
        opacity: 1;
        margin-top: 10px;
    }

    .service-card:hover {
        background-color: var(--primary-dark);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
}

/* ==========================================================================
   ESTADO ACTIVO EN MÓVILES (Controlado 100% por el click de JS)
   ========================================================================== */
.service-card.active-mobile .service-img {
    opacity: 0;
    transform: scale(1.1);
}

.service-card.active-mobile .service-overlay {
    opacity: 0;
}

/* El título sube en móvil ÚNICAMENTE si tiene la clase activa de JS */
.service-card.active-mobile .service-content {
    transform: translateY(-10px);
}

.service-card.active-mobile .service-description {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

.service-card.active-mobile {
    background-color: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ==========================================================================
   5. SECCIÓN VENTAJAS (Composición de Contenido)
   ========================================================================== */
.advantages-section {
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.advantages-image {
    height: 400px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
    text-align: center;
    z-index: 2;
}

.experience-badge .exp-years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.advantages-content .section-subtitle {
    text-align: left;
}

.advantages-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.advantages-lead {
    font-size: 16px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 25px;
}

.advantages-list {
    list-style: none;
}

.advantages-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #334155;
}

.advantages-list li i {
    color: var(--secondary);
    font-size: 20px;
    margin-top: 3px;
}


/* ==========================================================================
   6. SECCIÓN FAQ Y TARIFAS
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-intro {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

.faq-accordion {
    margin-bottom: 50px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    outline: none;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    background-color: #f8fafc;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
}


/* CUADRO DE TARIFAS */
.rates-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
}

.rates-header {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.rates-header i {
    color: var(--primary);
}

.rates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rate-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
}

.rate-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.rate-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f1f5f9;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.rate-card.urgent {
    border-left: 5px solid var(--danger);
}

.rate-card.urgent .rate-badge {
    color: var(--danger);
}

.rate-card.scheduled {
    border-left: 5px solid var(--primary);
}

.rate-card.scheduled .rate-badge {
    color: var(--primary);
}

.rate-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.rate-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.rate-card .price .iva {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.rate-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}


/* ==========================================================================
   7. FORMULARIO DE RESERVA / CONTACTO
   ========================================================================== */
.booking-section {
    padding: 80px 0;
    background-color: var(--light);
}

.form-max-width {
    max-width: 800px !important;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    width: 100%; /* Añade esto */
    box-sizing: border-box; /* Añade esto */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    grid-column: span 2;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}


/* ==========================================================================
   8. PIE DE PÁGINA / FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #334155;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.footer-brand p {
    color: #94a3b8;
    font-weight: 400;
    font-size: 15px;
    margin-top: 15px;
    max-width: 400px;
    line-height: 1.5;
}

.footer-brand .logo-icon i {
    color: #3498db;
}

.footer-legal {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}


/* ==========================================================================
   9. BOTÓN FLOTANTE WHATSAPP
   ========================================================================== */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-float-btn:hover {
    background-color: #1ebd59;
    transform: scale(1.05);
}


/* ==========================================================================
   10. MODO URGENCIA DINÁMICO (Inyectado por JS)
   ========================================================================== */
.urgencia-top-banner {
    background-color: var(--danger);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}


/* ==========================================================================
   11. DISEÑO RESPONSIVO (Media Queries de Control Absoluto)
   ========================================================================== */

/* --- TABLETS (Hasta 1024px) --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Pasa a 2 columnas bien equilibradas */
        gap: 25px;
    }
    .service-card {
        height: 380px; /* Un poco más altas para dar aire al texto en tablets */
    }
    .advantages-grid {
        grid-template-columns: 1fr; /* Apilado vertical del vídeo y las ventajas */
        gap: 40px;
    }
    .advantages-image {
        height: 350px;
    }
}

/* --- DISEÑO RESPONSIVO MÓVIL (CONTROL ABSOLUTO) --- */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    /* --- CABECERA MÓVIL (Fija arriba y en una sola línea) --- */
    .site-header {
        position: fixed !important; /* Cambiamos a fixed para garantizar soporte total en iOS y Android */
        top: 0;
        left: 0;
        width: 100% !important;
        background: var(--white) !important;
        z-index: 9999 !important;
        padding: 10px 0 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }

    /* Empujamos el Hero para que la cabecera fija no tape el texto principal */
    .hero-section {
        padding-top: 130px !important;
        padding-bottom: 40px !important;
        text-align: center;
    }

    .header-flex {
        display: flex !important;
        flex-direction: row !important; /* Fuerza a que se mantengan uno al lado del otro */
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }
    
    /* Ocultamos por completo el menú de scrolling */
    .main-nav .nav-link {
        display: none !important;
    }

    .logo {
        font-size: 14px !important;
        flex-shrink: 1 !important;
    }
    
    .logo-text {
        gap: 4px !important;
    }

    .main-nav .btn-call {
        padding: 8px 12px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    /* --- FORMULARIO DE PRESUPUESTO (Control de desborde) --- */
    .booking-form {
        grid-template-columns: 1fr !important; /* Pasa a una sola columna estricta */
        padding: 20px !important;
        gap: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group.full-width {
        grid-column: span 1 !important; /* Resetea el span para que no empuje la pantalla */
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        width: 100% !important;
        box-sizing: border-box !important; /* Hace que el ancho se adapte al contenedor interno */
    }

    .btn-submit {
        grid-column: span 1 !important;
        width: 100% !important;
        padding: 14px !important;
        font-size: 15px !important;
    }

    /* --- BOTÓN WHATSAPP MÓVIL (Dentro de la pantalla) --- */
    .whatsapp-float-btn {
        bottom: 20px !important;
        right: 20px !important; /* Posición segura hacia dentro */
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
        position: fixed !important;
    }

    /* Otras adaptaciones de secciones */
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    .service-card {
        height: 300px !important;
    }
    .advantages-grid, .rates-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .advantages-image {
        height: 250px !important;
    }
    .rates-box {
        padding: 20px !important;
    }
    .footer-legal {
        text-align: center !important;
    }
}

/* ==========================================================================
   ANIMACIÓN Y ESTILOS DEL LOGOTIPO (Mantenemos al final de todo)
   ========================================================================== */
.logo-text {
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.logo-text.fade-out {
    opacity: 0;
}

.logo-text .text-light {
    color: rgba(26, 37, 47, 0.8);
    font-weight: 500;
}

.logo-text .text-bold-blue {
    color: var(--primary);
    font-weight: 800;
}

.logo-text .text-bold-orange {
    color: #F54927;
    font-weight: 800;
}

/* Corrección de margen para que el menú fijo no tape los títulos al hacer scroll */
section {
    scroll-margin-top: 80px;
}

/* ==========================================================================
   12. COMPONENTES PÁGINAS DE ZONA (Las Rozas / Pozuelo / Boadilla)
   ========================================================================== */
.breadcrumb-bar {
    padding: 110px 0 15px 0;
    font-size: 13px;
    color: #64748b;
}

.breadcrumb-bar a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-bar a:hover {
    text-decoration: underline;
}

.fleet-strip {
    background: var(--light);
    padding: 18px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.fleet-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    flex-wrap: wrap;
}

.fleet-strip i {
    color: var(--secondary);
    font-size: 20px;
}

.fleet-strip p {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.zone-intro-section {
    padding: 60px 0 20px 0;
}

.zone-intro-section p {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 16px;
    max-width: 850px;
}

.zone-intro-section .barrios-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.barrio-chip {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.nearby-zones-section {
    padding: 60px 0 80px 0;
    background: var(--light);
}

.nearby-zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nearby-zone-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.nearby-zone-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.nearby-zone-card i {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 8px;
    display: block;
}

.nearby-zone-card span {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .nearby-zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breadcrumb-bar {
        padding: 100px 0 10px 0;
        font-size: 12px;
    }
    .fleet-strip .container {
        flex-direction: column;
        gap: 6px;
    }
    .zone-intro-section {
        padding: 40px 0 10px 0;
    }
    .nearby-zones-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .nearby-zone-card {
        padding: 15px;
    }
}