/* style.css - Premium Design System for Mudanzas y Transportes Jorge (Light & Dark Theme with 3D Animations) */

/* --- THEME ROOT CONFIGURATION --- */
:root {
    /* TYPOGRAPHY */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* TRANSITIONS & RADIUS */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* DEFAULT LIGHT THEME TOKENS (Moving Industry: Premium Navy Blue & Safety Orange) */
    --color-bg-deep: #f2e9d8;        /* Warm Sandy Beige (matching mudanzasjorge.es) */
    --color-bg-card: #ffffff;        /* Pure White */
    --color-bg-nav: rgba(242, 233, 216, 0.8);
    --color-primary: #1a4275;        /* Premium Navy Blue */
    --color-primary-hover: #225391;  /* Navy Blue Hover */
    --color-primary-light: rgba(26, 66, 117, 0.08);
    --color-accent: #ea580c;         /* Vivid Safety Orange */
    --color-accent-hover: #c2410c;   /* Darker Orange */
    
    /* Text Colors */
    --color-text-main: #0f172a;      /* Slate 900 */
    --color-text-muted: #64748b;     /* Slate 500 */
    --color-text-light: #ffffff;
    
    /* Glassmorphism & Shadows */
    --glass-border: rgba(15, 23, 42, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.8);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
    --shadow-accent: 0 10px 20px rgba(26, 66, 117, 0.1);
}

/* --- DARK THEME OVERWRITES --- */
body.dark {
    --color-bg-deep: #0b0f19;        /* Deep Space Blue */
    --color-bg-card: #151b2d;        /* Dark Slate Blue */
    --color-bg-nav: rgba(11, 15, 25, 0.8);
    --color-primary: #4d7eb8;        /* Steel Navy Blue */
    --color-primary-hover: #6493ca;  /* Lighter Navy Hover */
    --color-primary-light: rgba(77, 126, 184, 0.15);
    --color-accent: #f97316;         /* Bright Orange */
    --color-accent-hover: #ea580c;
    
    /* Text Colors */
    --color-text-main: #f8fafc;      /* Silk Off-white */
    --color-text-muted: #94a3b8;     /* Slate 400 */
    --color-text-light: #ffffff;
    
    /* Glassmorphism & Shadows */
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.02);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 10px 20px rgba(77, 126, 184, 0.2);
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Ambient Particles Layer (PeachWeb.io inspired) */
#ambient-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 10% 20%, var(--color-primary-light) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(234, 88, 12, 0.03) 0%, transparent 40%);
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-card);
    border: 2px solid var(--color-bg-deep);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-quick);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- REUSABLE COMPONENTS & UTILITIES --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-text-main) 40%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: float-pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    /* Nav siempre oscuro → icono siempre blanco */
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle-btn .sun-icon {
    display: block;
}
.theme-toggle-btn .moon-icon {
    display: none;
}
body.dark .theme-toggle-btn .sun-icon {
    display: none;
}
body.dark .theme-toggle-btn .moon-icon {
    display: block;
}

/* Primary/Secondary Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--color-primary-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Glassmorphic Card base */
.glass-card {
    /* background: linear-gradient(135deg, var(--glass-highlight) 0%, rgba(255, 255, 255, 0.005) 100%); */
    border: 1px solid var(--glass-border);
    /* backdrop-filter: blur(20px); */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
}

.tilt-inner {
    transform: translateZ(30px);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 60px auto;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: var(--color-primary-light);
    border: 1px solid rgba(26, 66, 117, 0.15);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    transition: var(--transition-quick);
}

.tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    box-shadow: 0 0 8px var(--color-accent);
}

body.dark .tag {
    background-color: rgba(77, 126, 184, 0.12);
    border-color: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* --- HEADER / NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 99;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(11, 15, 25, 0.82);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.32);
}

header .container {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem   ;
}

.logo img {
    height: 7rem;
    width: auto;
    object-fit: contain;
    /* Halo blanco siempre activo — el nav es siempre oscuro */
    filter:
        drop-shadow(0 0 12px rgba(255, 255, 255, 1.00))
        drop-shadow(0 0 24px rgba(255, 255, 255, 1.00))
        brightness(1.35);
    transition: filter 0.4s ease;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

nav a {
    font-weight: 600;
    /* Siempre blanco sobre el fondo oscuro del nav */
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-bottom: 2px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: var(--radius-full);
    transition: width 0.25s ease;
}

nav a:hover, nav a.active {
    color: #ffffff;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 6px;
    cursor: pointer;
    /* Nav siempre oscuro → icono siempre blanco */
    color: #ffffff;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   HERO PREMIUM — Two-column split layout with video background
   ========================================================================== */

.hero-premium {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 4% 60px 4%;
    font-family: var(--font-body);
    color: #ffffff;
    z-index: 2;
}

/* Video wrapper with warm cinematic overlay */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-premium .hero-video-bg {
    /* Posicionamiento absoluto para cubrir el wrapper al 100% */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Centra en parte superior del video para mejor encuadre en móvil */
    object-position: center 30%;
    transform: none;
}

.hero-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: left side is almost opaque (navy-dark) for readability, right fades out */
    background: linear-gradient(
        105deg,
        rgba(11, 15, 25, 0.92) 0%,
        rgba(11, 15, 25, 0.78) 50%,
        rgba(11, 15, 25, 0.40) 100%
    );
    z-index: 2;
}

/* Main grid container */
.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ---- LEFT COLUMN ---- */
.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Glassmorphic badge pill */
.premium-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 24px;
}

.premium-badge-pill .stars-row-mini {
    color: #eab308;
    letter-spacing: 1px;
    font-size: 11px;
}

/* Override inherited .stars-row-mini for this context */
.premium-badge-pill .stars-row-mini span {
    display: inline;
    line-height: 1;
}

/* Hero headline */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Hero subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 560px;
    margin-bottom: 36px;
}

/* CTA pill buttons wrapper */
.hero-actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    width: 100%;
}

/* Primary pill button */
.btn-premium-primary,
.btn-premium-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: var(--transition-smooth);
    min-width: 260px;
}

.btn-premium-primary {
    background: var(--color-primary);
    color: #ffffff;
}

.btn-premium-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(26, 66, 117, 0.4);
}

/* WhatsApp pill button — verde WhatsApp */
.btn-premium-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
}

.btn-premium-whatsapp:hover {
    background: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Arrow circle inside buttons */
.arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.btn-premium-primary .arrow-circle {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-premium-whatsapp .arrow-circle {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-premium-primary:hover .arrow-circle,
.btn-premium-whatsapp:hover .arrow-circle {
    transform: rotate(45deg);
}

/* Direct contact strip with left border accent */
.hero-direct-contact {
    display: flex;
    flex-direction: column;
    border-left: 2px solid var(--color-accent);
    padding-left: 16px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.contact-phone {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-phone:hover {
    color: var(--color-accent);
}

.contact-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 2px;
}

/* ---- RIGHT COLUMN: feature items ---- */
.hero-right-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item-minimal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(20px);
    animation: featureSlideIn 0.6s forwards;
}

.feature-item-minimal:nth-child(1) { animation-delay: 0.2s; }
.feature-item-minimal:nth-child(2) { animation-delay: 0.4s; }
.feature-item-minimal:nth-child(3) { animation-delay: 0.6s; }

@keyframes featureSlideIn {
    to { opacity: 1; transform: translateX(0); }
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 66, 117, 0.25);
    border: 1px solid rgba(26, 66, 117, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-item-minimal:hover .feature-icon-wrapper {
    background: rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.5);
}

.feature-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.feature-text p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    max-width: 300px;
}

/* Mobile overrides */
@media (max-width: 576px) {
    .hero-premium {
        /* svh excluye la barra del navegador en iOS/Android */
        min-height: 100svh;
        padding-top: 90px;
        padding-bottom: 40px;
    }
    /* En portrait el overlay cubre uniformemente (no hay columna derecha) */
    .hero-video-wrapper::after {
        background: rgba(11, 15, 25, 0.80);
    }
    .hero-actions-wrapper {
        flex-direction: column;
    }
    .btn-premium-primary,
    .btn-premium-whatsapp {
        width: 100%;
        min-width: unset;
    }
    .feature-item-minimal {
        opacity: 1;
        transform: none;
        animation: none;
    }
    /* Ocultar columna de features en móvil muy pequeño para no saturar */
    .hero-right-features {
        display: none;
    }
}

@media (max-width: 991px) and (min-width: 577px) {
    /* Tablets en portrait: overlay más uniforme */
    .hero-video-wrapper::after {
        background: linear-gradient(
            135deg,
            rgba(11, 15, 25, 0.88) 0%,
            rgba(11, 15, 25, 0.70) 100%
        );
    }
}

/* --- SCROLL-DRIVEN MOVING VAN DIVIDER (PeachWeb.io inspired) --- */
.scroll-divider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    z-index: 5;
}

.scroll-road {
    height: 120px;
    width: 100%;
    background-color: var(--color-bg-card);
    border-top: 1px dashed var(--glass-border);
    border-bottom: 1px dashed var(--glass-border);
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-premium);
}

.road-lane {
    position: absolute;
    width: 100%;
    height: 4px;
    border-top: 2px dashed var(--color-accent);
    opacity: 0.2;
    top: 50%;
    transform: translateY(-50%);
}

.scroll-van {
    height: 90px;
    width: auto;
    position: absolute;
    left: 0;
    z-index: 6;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

body.dark .scroll-van {
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4)) brightness(0.9);
}

/* --- SERVICES SHOWCASE --- */
.services {
    position: relative;
    background-color: var(--color-bg-card);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-premium);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.service-price span {
    font-size: 1.8rem;
    color: var(--color-text-main);
}

/* --- BUDGET ESTIMATOR SECTION --- */
.estimator {
    position: relative;
}

.estimator-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.estimator-info h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.estimator-info p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-check {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.feature-text {
    font-weight: 600;
}

/* Interactive Calculator Wrapper */
.estimator-calculator {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-card);
}

.calculator-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.calc-group {
    margin-bottom: 20px;
}

.calc-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-weight: 600;
}

/* Custom Select & Inputs */
.calc-select, .calc-input {
    width: 100%;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-quick);
}

.calc-select:focus, .calc-input:focus {
    border-color: var(--color-primary);
}

.calc-grid-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Checklist Grid */
.calc-grid-check {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.check-card {
    border: 1px solid var(--glass-border);
    background-color: var(--color-bg-deep);
    padding: 16px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-quick);
    user-select: none;
}

.check-card:hover {
    border-color: var(--color-primary-light);
}

.check-card.selected {
    border-color: var(--color-primary);
    background-color: var(--color-primary-light);
}

.check-box {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 2px solid var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-quick);
}

.check-card.selected .check-box {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.check-box::after {
    content: '✓';
    font-size: 10px;
    color: var(--color-text-light);
    display: none;
    font-weight: 900;
}

.check-card.selected .check-box::after {
    display: block;
}

/* Result Dashboard (Without numeric price showing) */
.calc-result {
    margin-top: 28px;
    padding: 20px;
    border-radius: var(--radius-sm);
    background-color: var(--color-primary-light);
    border: 1px dashed rgba(30, 64, 175, 0.2);
    text-align: center;
    margin-bottom: 24px;
}

.calc-result h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.calc-result p {
    font-size: 0.9rem;
    color: var(--color-text-main);
    font-weight: 500;
    margin-bottom: 0;
}

/* --- FLEET GALLERY SECTION (PeachWeb.io inspired animations) --- */
.fleet-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.4) 60%, rgba(11, 15, 25, 0) 100%);
    color: #ffffff;
    transform: translateY(0);
    opacity: 1;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Gallery Animations on Hover */
.gallery-item:hover .gallery-photo {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.65) 60%, rgba(11, 15, 25, 0) 100%);
}

/* --- WHY CHOOSE US & BADGES --- */
.why-choose-us {
    position: relative;
}

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

.badge-card {
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--radius-md);
}

.badge-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary-light);
}

.badge-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-bg-deep);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    color: var(--color-primary);
    transition: var(--transition-quick);
}

.badge-card:hover .badge-icon {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.2);
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.badge-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.badge-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- REVIEWS / TESTIMONIALS --- */
.reviews {
    overflow: hidden;
}

.reviews-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    cursor: grab;
}

.reviews-carousel-wrapper:active {
    cursor: grabbing;
}

.reviews-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.review-item {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    padding: 32px;
    border-radius: var(--radius-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.user-name span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.review-stars {
    color: #eab308; /* Star Gold */
    display: flex;
    gap: 4px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.review-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.control-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background-color: transparent;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-quick);
}

.control-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

.control-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- FOOTER --- */
footer {
    background-color: #0b0f19;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
    color: #f8fafc;
    position: relative;
    z-index: 2;
}

body.dark footer {
    background-color: #050811;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-top: 16px;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-brand .logo {
    justify-content: flex-start;
}

.footer-brand .logo img {
    height: 7rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
}

.social-icon:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.social-icon svg, .social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    border-radius: var(--radius-full);
    filter: grayscale(1) brightness(1.2) opacity(0.7);
    transition: var(--transition-quick);
}

.social-icon:hover img {
    filter: grayscale(0) brightness(1) opacity(1);
}

.footer-links .footer-title, .footer-contact .footer-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-links .footer-title::after, .footer-contact .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #94a3b8;
    font-size: 0.95rem;
}

.contact-info-list svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    margin-top: 4px;
    flex-shrink: 0;
    fill: currentColor;
}

.contact-info-list a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a:hover {
    color: var(--color-primary);
}

/* --- ANIMATIONS --- */
@keyframes float-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    }
}

@keyframes slide-down {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    nav {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }

    nav.active {
        display: block;
        position: fixed;
        top: 75px;
        left: 16px;
        right: 16px;
        /* Glassmorphic oscuro — igual en light y dark */
        background: rgba(11, 15, 25, 0.92);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, 0.10);
        border-radius: var(--radius-md);
        padding: 28px 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: slide-down 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    nav.active ul {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    nav.active a {
        font-size: 1.1rem;
        font-weight: 600;
        display: block;
        padding: 14px 0;
        width: 100%;
        text-align: center;
        /* Siempre blanco sobre fondo oscuro */
        color: rgba(255, 255, 255, 0.88);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.2s ease;
    }

    nav.active ul li:last-child a {
        border-bottom: none;
    }

    nav.active a:hover,
    nav.active a.active {
        color: var(--color-accent);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-dashboard-card {
        padding: 32px 20px;
        margin: 0 auto;
    }

    .hero-dashboard-card h1.text-gradient {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-benefits {
        justify-content: center;
    }
    
    .google-brand-header {
        justify-content: center;
    }
    
    .rating-highlight-box {
        align-items: center;
    }
    
    .visual-quick-contact-bar-inline {
        display: inline-flex;
        justify-content: center;
        margin: 0 auto;
    }
    
    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .estimator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fleet-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-item {
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .review-item {
        min-width: 100%;
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links .footer-title::after, .footer-contact .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-info-list li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* ==========================================================================
   GOOGLE REVIEWS & MAP SECTION (MOBILE-FIRST APPROACH)
   ========================================================================== */

/* 1. Mobile Default Styles (1 Column, Stacked) */
.google-reviews-map {
    background-color: var(--color-bg-deep);
    position: relative;
}

.map-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

/* Google Rating Card - Glassmorphism inherited from .glass-card */
.google-rating-card {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: var(--radius-lg);
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.google-logo-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.google-brand h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.rating-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-text-main);
    line-height: 1;
}

.stars-outer {
    display: flex;
    justify-content: center;
}

.rating-highlight .review-stars {
    color: #eab308; /* Star Gold */
    display: flex;
    gap: 6px;
}

.rating-highlight .review-stars svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.rating-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #eab308;
    margin-top: 4px;
}

.rating-meta {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 450px;
}

.rating-meta strong {
    color: var(--color-text-main);
}

.google-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.btn-google {
    width: 100% !important;
    text-transform: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 14px 28px;
    white-space: nowrap;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

/* Primary Button: Write Review (safety orange gradient with premium glow) */
.btn-google.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #f97316 100%);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
    border: none;
}

.btn-google.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
}

.btn-google.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-google.btn-primary:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Secondary Button: View on Maps (Glassmorphism with light outline) */
.btn-google.btn-secondary {
    background: rgba(15, 23, 42, 0.03);
    color: var(--color-text-main);
    border: 1.5px solid var(--glass-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

body.dark .btn-google.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.btn-google.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--color-primary-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.1);
}

body.dark .btn-google.btn-secondary:hover {
    color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.btn-google.btn-secondary svg {
    transition: transform 0.3s ease;
}

.btn-google.btn-secondary:hover svg {
    transform: translateY(-2px) scale(1.1);
}

/* Map Container responsive styling */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.05) contrast(1.05);
    transition: var(--transition-smooth);
}

/* Custom dark mode map styling using advanced CSS filters */
body.dark .map-container iframe {
    filter: invert(90%) hue-rotate(180deg) grayscale(0.1) contrast(1.15);
}

/* 2. Responsive Enhancements (Desktop & Larger Viewports) */
@media (min-width: 992px) {
    .map-grid {
        display: grid;
        grid-template-columns: 1.1fr 1.3fr;
        gap: 40px;
        align-items: stretch;
    }

    .google-rating-card {
        padding: 48px 40px;
        justify-content: center;
    }

    .google-brand h3 {
        font-size: 1.6rem;
    }

    .rating-number {
        font-size: 4rem;
    }

    .google-actions {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 300px;
    }

    .map-container {
        height: auto;
        min-height: 480px;
    }
}

/* ==========================================================================
   COBERTURA GEOGRÁFICA SECTION (Local SEO & GEO)
   ========================================================================== */
.cobertura-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.cobertura-card {
    padding: 35px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cobertura-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cobertura-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.dark .cobertura-icon {
    background-color: rgba(77, 126, 184, 0.2);
    color: var(--color-primary-hover);
}

.cobertura-header h3 {
    font-size: 1.5rem;
    color: var(--color-text-main);
}

.cobertura-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.zones-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--glass-border);
    padding-top: 18px;
}

.zones-group h4 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}

body.dark .zones-group h4 {
    color: var(--color-primary);
}

.zones-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 15px;
    list-style: none;
}

.zones-list li {
    font-size: 0.9rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.zones-list li::before {
    content: '•';
    color: var(--color-accent);
    font-weight: bold;
}

.routes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.route-item {
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-quick);
}

body.dark .route-item {
    background: rgba(255, 255, 255, 0.02);
}

.route-item:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
}

.route-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-primary);
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.route-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.geo-fact-sheet {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.05) 0%, rgba(234, 88, 12, 0.01) 100%);
    border: 1px dashed var(--color-accent);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
}

.geo-fact-sheet h4 {
    font-size: 0.95rem;
    color: var(--color-accent);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fact-list li {
    font-size: 0.85rem;
    color: var(--color-text-main);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.fact-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
}

/* ==========================================================================
   FAQ ACCORDION SECTION
   ========================================================================== */
.faq-container {
    max-width: 850px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item-accordion {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-quick);
}

.faq-item-accordion:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-accent);
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
    padding-right: 15px;
    transition: var(--transition-quick);
}

.faq-trigger:hover .faq-question {
    color: var(--color-primary);
}

.faq-chevron-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron-icon {
    transform: rotate(180deg);
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.faq-content-wrapper {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.faq-content-wrapper.active {
    opacity: 1;
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
}

.faq-content-inner p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* --- RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS --- */
@media (min-width: 768px) {
    .cobertura-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .zones-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cobertura-card {
        padding: 20px;
    }
    
    .zones-list {
        grid-template-columns: 1fr;
    }
    
    .faq-trigger {
        padding: 18px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-content-inner {
        padding: 0 18px 18px 18px;
    }
}




