/* ==========================================================================
   HOJA DE ESTILOS - PÁGINA DE CONTACTO PREMIUM
   ========================================================================== */
body {
    background-color: #030914;
    margin: 0;
    padding: 0;
}
/* ==========================================================================
   STYLE_CAR_DETAILING.CSS
   Único archivo de estilos unificado e independiente para car_detailing.php
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES GLOBALES, RESET Y BASE (Core Styles)
   -------------------------------------------------------------------------- */
:root {
    --dark-bg: #02070e;
    --deep-navy: #000a14;
    --electric-blue: #0066ff;
    --sky-cyan: #00c3ff;
    --pure-white: #ffffff;
    --text-muted: #94a3b8;
    
    /* Variantes de color para paquetes */
    --pkg-blue: #0055ff;
    --pkg-green: #00cc44;
    --pkg-orange: #ff7700;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--pure-white);
    overflow-x: hidden;
}

/* --------------------------------------------------------------------------
   2. BARRA DE NAVEGACIÓN (Navbar Fija & Blur)
   -------------------------------------------------------------------------- */
.navbar {
    background: rgba(2, 8, 19, 0.95);
    backdrop-filter: blur(10px);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.nav-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1010;
}

.main-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.7));
}

.nav-logo-wrapper a:hover .main-logo-img {
    transform: scale(1.03);
    filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 8px var(--sky-cyan));
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--sky-cyan);
}

.btn-nav {
    background-color: var(--electric-blue);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.menu-toggle {
    display: none;
}
/* Hero Moderno */
.cnt-hero-section {
    position: relative;
    background-image: url('../img/contact-bg.jpeg'); /* Coloca una foto imponente de fondo */
    background-size: cover;
    background-position: center;
    padding: 140px 0 90px 0;
    text-align: center;
    color: #fff;
}
.cnt-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(3, 9, 20, 0.9), rgba(3, 9, 20, 0.7));
    z-index: 1;
}
.cnt-hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.cnt-hero-tagline {
    color: #ff9900;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}
.cnt-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 4rem;
    margin: 0 0 15px 0;
    letter-spacing: -1px;
}
.cnt-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Grilla de Canales Directos */
.cnt-main-channels {
    padding: 65px 0;
    background: #030914;
}
.cnt-channels-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cnt-channel-card {
    background: #071121;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 45px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cnt-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Destacar Tarjeta de Booking */
.card-booking {
    border: 1px solid rgba(255, 153, 0, 0.2);
    background: linear-gradient(180deg, #0a172e 0%, #071121 100%);
}
.card-booking:hover {
    border-color: #ff9900;
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.08);
}
.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9900;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 4px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.cnt-card-icon {
    font-size: 3rem;
    color: #ff9900;
    margin-bottom: 20px;
}
.cnt-channel-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 12px 0;
}
.cnt-channel-card p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

/* Botones Interactivos */
.cnt-card-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn-orange {
    background: #ff9900;
    color: #000;
}
.btn-orange:hover {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(255,153,0,0.2);
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
}
.btn-outline:hover {
    background: #ffffff;
    color: #000;
    border-color: #ffffff;
}

/* Bloque Social Corporativo */
.cnt-social-experience {
    background: #050d1a;
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,0.02);
}
.cnt-social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.cnt-social-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}
.cnt-social-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 10px 0;
}
.cnt-social-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}
.cnt-social-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cnt-social-box {
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s transform ease;
}
.cnt-social-box:hover {
    transform: translateY(-5px);
}
.cnt-social-box i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 12px;
}
.cnt-social-box span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    display: block;
}
.cnt-social-box strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Colores de Marca en Tarjetas Sociales */
.ig-box { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tt-box { background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%); }
.fb-box { background: #1877F2; }

/* Responsive Rules */
@media (max-width: 992px) {
    .cnt-channels-container { grid-template-columns: 1fr; gap: 25px; }
    .cnt-social-showcase-grid { grid-template-columns: 1fr; gap: 15px; }
    .cnt-hero-title { font-size: 3rem; }
}
   /* ==========================================================================
       FOOTER CORPORATIVO PREMIUM UNIFICADO
       ========================================================================== */
    .main-corporate-footer {
        background-color: #030814;
        border-top: 2px solid rgba(0, 85, 255, 0.3);
        padding: 70px 0 0 0;
        width: 100%;
        position: relative;
    }

    .footer-top-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto 50px auto;
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
   }

    .footer-column {
        display: flex;
        flex-direction: column;
    }

    .footer-column h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-style: italic;
        font-size: 1.2rem;
        color: #ffffff;
        margin: 0 0 25px 0;
        letter-spacing: 1px;
        position: relative;
    }

    /* Línea decorativa debajo de los títulos de las columnas */
    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: -8px; left: 0;
        width: 40px; height: 3px;
        background-color: #008cff;
    }

    /* --- COLUMNA 1: BRANDING --- */
    .footer-logo-img {
        max-width: 280px;
        height: auto;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .brand-statement {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: #8a99ad;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }

    /* --- COLUMNA 2: LINKS RÁPIDOS --- */
    .quick-links ul {
        list-style: none;
        margin: 0; padding: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .quick-links ul li a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        color: #a0b2c6;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .quick-links ul li a i {
        font-size: 0.75rem;
        color: #008cff;
    }

    .quick-links ul li a:hover {
        color: #ffffff;
        transform: translateX(5px);
    }

    /* --- COLUMNA 3: CONTACTO Y BOTÓN SQUARE --- */
    .footer-contact-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    .footer-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        color: #ffffff;
    }

    .footer-contact-item i {
        color: #008cff;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }

    .footer-contact-item a {
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-contact-item a:hover {
        color: #00bcff;
    }

    /* Botón de Reserva Square */
    .footer-btn-booking {
        background: linear-gradient(90deg, #0044cc 0%, #0077ff 100%);
        border: 1px solid #008cff;
        border-radius: 8px;
        padding: 14px 24px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 0.95rem;
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0, 119, 255, 0.25);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        max-width: 280px;
    }

    .footer-btn-booking:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 119, 255, 0.4);
    }

    /* --- FAJA INFERIOR (LEGAL / DISCLAIMER) --- */
    .footer-bottom-bar {
        background-color: #01040a;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 25px 0;
    }

    .footer-bottom-container {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .copyright-text {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        color: #64748b;
        margin: 0;
    }

    .copyright-text strong {
        color: #8a99ad;
    }

    .footer-disclaimer-note {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 0.85rem;
        color: #eab308; /* Tono de advertencia amarillo ámbar */
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* --- AJUSTES RESPONSIVE --- */
    @media (max-width: 1024px) {
        .footer-top-container {
            grid-template-columns: 1fr; /* Colapsa todo a una sola fila en tablets y celulares */
            gap: 40px;
            text-align: center;
        }
        .footer-column {
            align-items: center;
        }
        .footer-column h3::after {
            left: 50%;
            transform: translateX(-50%); /* Centra la línea decorativa en móvil */
        }
        .quick-links ul li a {
            justify-content: center;
        }
        .footer-btn-booking {
            width: 100%;
            max-width: 100%;
        }
        .footer-bottom-container {
            flex-direction: column; /* Apilado vertical del copyright y disclaimer */
            text-align: center;
            gap: 12px;
        }
    }
    /* ==========================================================================
       BOTONES FIJOS FLOTANTES (STICKY ACTIONS)
       ========================================================================== */
    .sticky-actions-wrapper {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 9999; /* Asegura que siempre quede por encima de todo el contenido */
        align-items: flex-end;
    }

    /* Base de los botones flotantes */
    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .sticky-btn:hover {
        transform: translateY(-4px);
    }

    /* Estilos específicos de WhatsApp (Círculo) */
    .btn-whatsapp {
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        font-size: 2rem;
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    }

    .btn-whatsapp:hover {
        background-color: #20ba5a;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    }

    /* Estilos específicos de Square Appointments (Cápsula con Texto) */
    .btn-square {
        background: linear-gradient(90deg, #0044cc 0%, #0077ff 100%);
        border: 1px solid #008cff;
        border-radius: 50px;
        padding: 0 22px;
        height: 54px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        font-size: 0.95rem;
        color: #ffffff;
        gap: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
    }

    .btn-square i {
        font-size: 1.1rem;
    }

    .btn-square:hover {
        box-shadow: 0 10px 25px rgba(0, 119, 255, 0.5);
    }

    /* OPTIMIZACIÓN COMPACTA PARA CELULARES */
    @media (max-width: 768px) {
        .sticky-actions-wrapper {
            bottom: 20px;
            right: 20px;
            gap: 10px;
        }
        
        .btn-whatsapp {
            width: 52px;
            height: 52px;
            font-size: 1.7rem;
        }
        
        .btn-square {
            height: 46px;
            padding: 0 16px;
            font-size: 0.85rem;
        }
        
        /* Si notas que el texto "Book Online" ocupa mucho espacio en pantallas mini, 
           esta regla lo oculta y deja solo el ícono en celulares muy pequeños */
        @media (max-width: 360px) {
            .btn-square span {
                display: none;
            }
            .btn-square {
                width: 52px;
                height: 52px;
                border-radius: 50%;
                padding: 0;
            }
        }
    }
    @media (max-width: 1200px) {
    .res-main-title, .hero-info-side .main-title { font-size: 3rem; }
    .packages-container { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .hero-content, .hero-res-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 30px; 
    }
    .hero-info-side, .res-info-side {
        align-items: center;
    }
    .logo-wrapper-inner, .res-logo-wrapper {
        max-width: 380px;
    }
    .value-props-vertical {
        border-left: none;
        padding-left: 0;
        align-items: center;
    }
    .packages-container {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .extras-container {
        flex-direction: column;
    }
    .extras-badge-side {
        padding: 15px;
        border-right: none;
        border-bottom: 2px solid var(--pkg-blue);
    }
    .extras-badge-side span {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
    }
    .extras-content-side {
        flex-direction: column;
        padding: 30px 20px;
    }
    .extra-item:not(:last-child)::after {
        display: none;
    }
    .footer-top-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-column { align-items: center; }
    .footer-column h3::after { left: 50%; transform: translateX(-50%); }
    .quick-links ul li a { justify-content: center; }
    .footer-btn-booking { width: 100%; max-width: 100%; }
    .footer-bottom-container { flex-direction: column; text-align: center; gap: 12px; }
}
  .coverage-section {
        background: #020710;
        padding: 50px 0;
        border-top: 1px solid rgba(255,255,255,0.02);
    }
    .coverage-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
    }
    .coverage-header i {
        font-size: 2.5rem;
        color: #ff9900; /* Cámbialo a #00bcff si estás solo en la hoja de exterior */
        margin-bottom: 10px;
    }
    .coverage-header h2 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 900;
        color: #fff;
        margin: 0 0 5px 0;
    }
    .coverage-header p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        color: #64748b;
        margin: 0 0 30px 0;
    }
    .cities-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 900px;
        margin: 0 auto;
    }
    .cities-grid span {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: #cbd5e1;
        background: rgba(255,255,255,0.03);
        padding: 8px 18px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.05);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .cities-grid span i {
        color: #ff9900; /* Pin de ubicación resaltado */
        font-size: 0.8rem;
    }
    .footer-top-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Cambiado a 4 columnas */
        gap: 30px;
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Contenedor e iconos de Redes Sociales */
    .footer-social-icons {
        display: flex;
        gap: 12px;
        margin-top: 15px;
    }

    .footer-social-icons a {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-social-icons a:hover {
        background: #ff9900; /* Color corporativo de énfasis */
        color: #000000;
        border-color: #ff9900;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
    }
 /* Ajuste Responsivo para Tablets y Móviles */
    @media (max-width: 992px) {
        .footer-top-container {
            grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
        }
    }

    @media (max-width: 576px) {
        .footer-top-container {
            grid-template-columns: 1fr; /* 1 sola columna en pantallas pequeñas */
            text-align: center;
        }
        .footer-social-icons {
            justify-content: center;
        }
        .footer-contact-item {
            justify-content: center;
        }
    }
    /* ==========================================================================
       REDES SOCIALES EN EL MENÚ SUPERIOR (NAVBAR)
       ========================================================================== */
    .nav-links {
        display: flex;
        align-items: center; /* Asegura alineación vertical perfecta de todos los elementos */
    }

    .nav-social-group {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 0 10px;
        margin-right: 5px;
    }

    .nav-social-group a {
        color: #cbd5e1; /* Color suave para no competir visualmente */
        font-size: 1.15rem;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Efecto hover elegante con un sutil destello naranja */
    .nav-social-group a:hover {
        color: #ff9900; 
        transform: translateY(-2px);
        text-shadow: 0 0 10px rgba(255, 153, 0, 0.4);
    }
@media (max-width: 768px) {
    .menu-toggle { display: block; font-size: 1.6rem; cursor: pointer; color: var(--sky-cyan); }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(2, 8, 19, 0.98);
        border-bottom: 3px solid var(--electric-blue);
        padding: 20px 0;
    }
    .nav-links.show { display: flex; }
    .nav-links li { width: 100%; text-align: center; margin: 12px 0; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .res-main-title, .hero-info-side .main-title { font-size: 2.2rem; }
    .cities-grid { grid-template-columns: 1fr; }
    .res-utilities-bar { border-radius: 20px; }
}

.hours-item{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    align-items:flex-start;
}

.hours-item i{
    color:#1e90ff;
    margin-top:3px;
}

.hours-item strong{
    display:block;
    color:#fff;
    font-size:15px;
}

.hours-item span{
    color:#bdbdbd;
    font-size:14px;
}