/* ==========================================================================
   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;
}
/* Variante Residential */
.hero-residential {
    background-color: #000000;
    min-height: 85vh;
    padding-top: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-res-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.res-info-side {
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.res-logo-wrapper {
    max-width: 480px;
    margin-bottom: 25px;
}

.res-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.res-tagline {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--pure-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.res-main-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 3.5rem;
    color: var(--electric-blue);
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.0;
}

/* Barra de Utilidades (Water & Electricity) */
.res-utilities-bar {
    background: linear-gradient(90deg, #002244 0%, #0055b3 50%, #002244 100%);
    border: 2px solid var(--electric-blue);
    border-radius: 50px;
    padding: 12px 25px;
    max-width: 550px;
    margin-bottom: 35px;
    box-shadow: 0 5px 15px rgba(0, 140, 255, 0.2);
}

.util-item {
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.util-item i {
    color: #3bc3ff;
}

/* Bloque de Contacto */
.res-contact-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
}

.contact-row i {
    color: var(--sky-cyan);
    width: 20px;
    font-size: 1.2rem;
}

.contact-row a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-row a:hover {
    color: var(--sky-cyan);
}

.phone-highlight a {
    color: var(--sky-cyan);
    font-size: 1.2rem;
    font-weight: 900;
}

/* Control de la Imagen Derecha (¡Esto faltaba!) */
.res-image-side {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-image-wrapper {
    width: 100%;
    position: relative;
}

.res-car-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
}
/* Props verticales compartidos */
.value-props-vertical {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-left: 3px solid var(--electric-blue);
    padding-left: 20px;
}

.prop-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.prop-icon-box i {
    font-size: 1.3rem;
    color: var(--sky-cyan);
    background: rgba(0, 188, 255, 0.1);
    width: 45px; height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 188, 255, 0.3);
}

.prop-card-text {
    display: flex;
    flex-direction: column;
}

.prop-card-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
}

.prop-card-text strong {
    font-size: 1rem;
    color: var(--pure-white);
    font-weight: 900;
}

/* --------------------------------------------------------------------------
   4. SECCIÓN TARIFAS Y PAQUETES (pricing-packages)
   -------------------------------------------------------------------------- */
.pricing-packages {
    background-color: #000000;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.packages-container {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #050b14;
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-text h3 {
    font-weight: 900;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.header-text span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #a0b2c6;
    text-transform: uppercase;
}

.badge-popular {
    background: #00cc44;
    color: var(--pure-white) !important;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem !important;
    font-weight: 900;
}

.pricing-tier {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

.tier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.tier-item span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.tier-item strong {
    font-weight: 900;
    font-size: 1.6rem;
}

.card-image-box {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-features li {
    color: var(--pure-white);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.3;
}

.featured-package{
    transform: scale(1.05);
    box-shadow:
        0 0 20px rgba(0,255,120,.20),
        0 0 50px rgba(0,255,120,.10);
    position: relative;
    z-index: 5;
}

.package-subtitle{
    color:#00d26a;
    font-size:13px;
    font-weight:600;
    margin-top:5px;
}

.book-btn-blue {
    display: block;
    text-align: center;
    background: #0d6efd;
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.book-btn-green {
    display: block;
    text-align: center;
    background: #00c853;
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

.book-btn-orange {
    display: block;
    text-align: center;
    background: #ff6d00;
    color: white;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Modificadores de Identidad de Color */
.card-blue { border: 2px solid var(--pkg-blue); }
.card-blue:hover { box-shadow: 0 15px 35px rgba(0, 85, 255, 0.3); }
.card-blue .card-icon-circle { background: rgba(0, 85, 255, 0.15); border: 2px solid var(--pkg-blue); color: #3580ff; }
.card-blue .tier-item strong { color: var(--electric-blue); }
.card-blue .package-features li i { color: var(--electric-blue); }

.card-green { border: 2px solid var(--pkg-green); }
.card-green:hover { box-shadow: 0 15px 35px rgba(0, 204, 68, 0.3); }
.card-green .card-icon-circle { background: rgba(0, 204, 68, 0.15); border: 2px solid var(--pkg-green); color: #26e66c; }
.card-green .tier-item strong { color: var(--pkg-green); }
.card-green .package-features li i { color: var(--pkg-green); }

.card-orange { border: 2px solid var(--pkg-orange); }
.card-orange:hover { box-shadow: 0 15px 35px rgba(255, 119, 0, 0.3); }
.card-orange .card-icon-circle { background: rgba(255, 119, 0, 0.15); border: 2px solid var(--pkg-orange); color: #ff943d; }
.card-orange .tier-item strong { color: var(--pkg-orange); }
.card-orange .package-features li i { color: var(--pkg-orange); }

/* --------------------------------------------------------------------------
   5. SECCIÓN DE SERVICIOS EXTRAS (Estilo Horizontal Premium Capsule)
   -------------------------------------------------------------------------- */
.extras-section {
    background-color: #000000;
    padding: 40px 0 80px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.extras-container {
    width: 90%;
    max-width: 1400px;
    background: #020611;
    border: 2px solid var(--pkg-blue);
    border-radius: 24px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 85, 255, 0.15);
}

.extras-badge-side {
    background: linear-gradient(180deg, #0044cc 0%, #0077ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-right: 2px solid var(--pkg-blue);
}

.extras-badge-side span {
    font-weight: 900;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--pure-white);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    letter-spacing: 2px;
}

.extras-content-side {
    display: flex;
    flex: 1;
    justify-content: space-around;
    align-items: center;
    padding: 25px 40px;
    gap: 30px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
}

.extra-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 85, 255, 0.4), transparent);
}

.extra-img-box {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(0, 119, 255, 0.3);
    flex-shrink: 0;
}

.extra-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.extra-text-box h4 {
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.extra-price {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--sky-cyan);
    display: block;
}

/* --------------------------------------------------------------------------
   6. ÁREA DE COBERTURA (coverage-section)
   -------------------------------------------------------------------------- */
.coverage-section {
    padding: 90px 0;
    background-color: var(--deep-navy);
    text-align: center;
    border-top: 1px solid rgba(0, 132, 255, 0.1);
}

.coverage-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.coverage-header h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.coverage-header p {
    color: var(--sky-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cities-grid span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 15px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.cities-grid span:hover {
    background: var(--electric-blue);
    color: var(--pure-white);
    border-color: var(--sky-cyan);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 132, 255, 0.25);
}

/* --------------------------------------------------------------------------
   7. PIE DE PÁGINA CORPORATIVO (Main Corporate Footer)
   -------------------------------------------------------------------------- */
.main-corporate-footer {
    background-color: #030814;
    border-top: 2px solid rgba(0, 85, 255, 0.3);
    padding: 70px 0 0 0;
    width: 100%;
}

.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-weight: 900;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 40px; height: 3px;
    background-color: var(--electric-blue);
}

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

.brand-statement {
    font-size: 0.9rem;
    color: #8a99ad;
    line-height: 1.5;
}

.quick-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.quick-links ul li a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pure-white);
}

.footer-contact-item i {
    color: var(--electric-blue);
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: var(--pure-white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--sky-cyan);
}

.footer-btn-booking {
    background: linear-gradient(90deg, #0044cc 0%, #0077ff 100%);
    border: 1px solid var(--electric-blue);
    border-radius: 8px;
    padding: 14px 24px;
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--pure-white);
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    max-width: 280px;
}

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

.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;
}

.copyright-text {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-disclaimer-note {
    font-weight: 600;
    font-size: 0.85rem;
    color: #eab308;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --------------------------------------------------------------------------
   8. BOTONES FLOTANTES DE RESPUESTA INMEDIATA (Sticky Actions)
   -------------------------------------------------------------------------- */
.sticky-actions-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    align-items: flex-end;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-whatsapp {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-square {
    background: linear-gradient(90deg, #0044cc 0%, #0077ff 100%);
    border: 1px solid var(--electric-blue);
    border-radius: 50px;
    padding: 0 22px;
    height: 54px;
    font-weight: 900;
    font-size: 0.95rem;
    color: var(--pure-white);
    gap: 10px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
}

.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;
    }
    
    /* Redes sociles footer apariencia */
    /* 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);
    }
    
/* --------------------------------------------------------------------------
   9. MEDIA QUERIES RESPONSIVE (Ajustes de Adaptabilidad)
   -------------------------------------------------------------------------- */
@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; }
}

@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; }
}

/* --------------------------------------------------------------------------
   10. SECCION DE PAQUETES EXTRAS
   -------------------------------------------------------------------------- */

.addons-section{
    padding:80px 20px;
    text-align:center;
}

.addons-section h2{
    font-size:2rem;
    margin-bottom:10px;
}

.addons-section p{
    color:#bdbdbd;
}

.addons-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.addon-card{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:15px;
    padding:30px;
    transition:.3s ease;
}

.addon-card:hover{
    transform:translateY(-5px);
}

.addon-icon{
    font-size:40px;
    margin-bottom:15px;
}

.addon-card h3{
    margin-bottom:10px;
}

.addon-price{
    color:#ff9900;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.addons-cta{
    margin-top:40px;
    margin-bottom:80px;
    text-align:center;
}

.addons-main-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 30px;
    background:linear-gradient(135deg,#ff9900,#cc7a00);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.addons-main-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(255,153,0,.35);
}

.addons-footer{
    margin-top:60px;
    text-align:center;
}

.addons-footer h3{
    margin-bottom:15px;
    font-size:28px;
}

.addons-footer p{
    max-width:700px;
    margin:0 auto 30px;
    color:#bdbdbd;
}

.addons-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.addon-btn{
    display:inline-block;
    padding:14px 28px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:0.3s;
}

.addon-btn:hover{
    transform:translateY(-3px);
}

/* seccion de horario de negocio*/

.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;
}