/* ==========================================
   MÁLAGA RADIO TAXI — PREMIUM EDITION
   Diseño tipo Blacklane / Uber Black
   Optimizado para conversión
   ========================================== */

/* VARIABLES GLOBALES */
:root {
    --primary: #111111;
    --primary-light: #1c1c1c;
    --graphite: #181818;
    --graphite-soft: #252525;

    --accent: #b89b5e;
    --accent-hover: #9f854b;
    --accent-light: #d8c28a;

    --text: #2f3133;
    --text-light: #6f7377;
    --text-muted: #9da1a5;

    --border: rgba(17,17,17,0.08);
    --border-strong: rgba(17,17,17,0.14);

    --bg-white: #fbfaf7;
    --bg-alt: #f3f1ec;
    --bg-cool: #ebe8e1;

    --shadow-sm: 0 6px 18px rgba(0,0,0,0.05);
    --shadow: 0 14px 34px rgba(0,0,0,0.07);
    --shadow-lg: 0 22px 55px rgba(0,0,0,0.11);
    --shadow-xl: 0 32px 80px rgba(0,0,0,0.16);

    --radius: 8px;
    --radius-lg: 10px;
    --radius-xl: 14px;

    --transition: all 0.28s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
}

p { font-size: 17px; color: var(--text); }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

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

/* LAYOUT */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 48px;
    font-weight: 600;
}

/* ==========================================
   HEADER PREMIUM CON BLUR
   ========================================== */
.header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.logo span { color: var(--accent); font-weight: 800; }

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

.nav a {
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::after { width: 100%; }
.nav a:hover { color: var(--primary); }

.nav-phone {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-phone::after { display: none; }

.nav-phone:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(180,83,9,0.3);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
    padding: 4px;
}

/* ==========================================
   HERO COMPACTO Y EFECTIVO
   ========================================== */
.hero {
    padding: 48px 0 72px;
    background: linear-gradient(160deg, #ffffff 0%, #f8f9fb 40%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

/* Decoración sutil */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180,83,9,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(15,23,42,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 16px;
}

.hero-content h1 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--accent);
    display: inline;
}

.hero-content > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 480px;
}

/* Features compactas */
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    flex-shrink: 0;
    flex-shrink: 0;
}

/* Badges */
.hero-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-strong);
    border-radius: 50px;
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.trust-text { color: var(--text-light); font-size: 13px; }
.trust-text strong { color: var(--primary); font-weight: 700; }

/* ==========================================
   FORMULARIO PREMIUM
   ========================================== */
.booking-form {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 36px;
    border: 1px solid var(--border);
    position: sticky;
    top: 88px;
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.form-header h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.form-header p {
    color: var(--text-light);
    font-size: 14px;
}

/* Secciones */
.form-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.form-section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

/* Filas */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row-3 { grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.form-row-4 { grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
}

.form-group label small {
    color: var(--text-muted);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    margin-top: 1px;
    font-size: 11px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg-alt);
    transition: var(--transition);
    width: 100%;
    color: var(--text);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(180,83,9,0.08);
}

.form-group textarea { resize: vertical; min-height: 72px; }
.form-group input::placeholder { color: var(--text-muted); }

/* Trayecto */
.trip-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.trip-option { position: relative; }
.trip-option input { position: absolute; opacity: 0; }

.trip-label {
    display: block;
    padding: 14px 10px;
    text-align: center;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text);
}

.trip-label:hover { border-color: var(--accent); background: rgba(180,83,9,0.02); }

.trip-option input:checked + .trip-label {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15,23,42,0.2);
}

/* Vehículos */
.vehicle-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.vehicle-option { position: relative; }
.vehicle-option input { position: absolute; opacity: 0; }

.vehicle-card {
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vehicle-option input:checked + .vehicle-card {
    border-color: var(--accent);
    background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
    box-shadow: 0 8px 24px rgba(180,83,9,0.12);
}

.vehicle-card.disabled {
    opacity: 0.35;
    pointer-events: none;
    background: var(--bg-alt);
}

.vehicle-card.disabled::after {
    content: 'NO DISPONIBLE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-12deg);
    background: #dc2626;
    color: #fff;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 0.08em;
}

.vehicle-img {
    width: 100%;
    height: 110px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
}

.vehicle-img img { width: 100%; height: 100%; object-fit: cover; }

.vehicle-name { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.vehicle-info { font-size: 12px; color: var(--text-light); margin-bottom: 10px; line-height: 1.4; }
.vehicle-price { font-size: 22px; font-weight: 700; color: var(--accent); font-family: 'Inter', sans-serif; }

.vehicle-note {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border-left: 3px solid var(--accent);
    padding: 12px 16px;
    margin-top: 14px;
    font-size: 12px;
    color: #92400e;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-weight: 500;
    line-height: 1.5;
}

/* Precio */
.price-breakdown {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
    display: none;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.price-row:last-child { border-bottom: none; }

.price-row.total {
    border-top: 2px solid var(--primary);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.price-row.total span:last-child { color: var(--accent); font-size: 22px; }

/* Submit */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover:not(:disabled) {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(180,83,9,0.25);
}

.btn-submit:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px;
    border-radius: var(--radius);
    display: none;
}

.form-message.show { display: block; animation: fadeIn 0.3s; }
.form-message.success { background: #d1fae5; color: #065f46; }
.form-message.error { background: #fee2e2; color: #991b1b; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================
   SERVICIOS
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: var(--transition);
}

.service-card:hover .service-icon { transform: scale(1.1); }

.service-card h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   VENTAJAS
   ========================================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.advantage {
    text-align: center;
    padding: 20px 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.advantage:hover { background: var(--bg-white); box-shadow: var(--shadow-sm); }

.adv-icon { font-size: 28px; margin-bottom: 10px; color: var(--accent); }

.advantage h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.advantage p { font-size: 12px; color: var(--text-light); line-height: 1.4; }

/* ==========================================
   CTA
   ========================================== */
.cta { text-align: center; background: var(--primary); color: #fff; }
.cta-inner { padding: 56px 0; }
.cta-inner h2 { font-size: 30px; color: #fff; margin-bottom: 12px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

.btn-cta:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(180,83,9,0.3); color: #fff; }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: #fff; color: var(--primary); }

/* ==========================================
   FOOTER PREMIUM
   ========================================== */
.footer { background: var(--primary); color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Inter', sans-serif;
}

.footer-col p { font-size: 14px; margin-bottom: 10px; line-height: 1.6; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ==========================================
   PÁGINAS SECUNDARIAS
   ========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-alt) 100%);
    padding: 48px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.page-content { max-width: 1100px; margin: 0 auto; padding: 48px 28px; }
.page-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.page-content h2 { font-size: 24px; color: var(--primary); margin-bottom: 16px; }
.page-content h3 { font-size: 20px; color: var(--primary); margin: 24px 0 12px; }
.page-content p { color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }

.check-list { padding: 0; }
.check-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.page-sidebar { position: sticky; top: 88px; }

.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.info-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 16px; font-family: 'Inter', sans-serif; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table td { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
.price-table td:last-child { text-align: right; white-space: nowrap; font-weight: 600; color: var(--primary); }
.price-table tr:last-child td { border-bottom: none; }

.btn-card {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 16px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.btn-card:hover { background: var(--accent); color: #fff; }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-content { padding-top: 0; }
    .hero-features { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { height: 64px; }
    .nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }
    .nav.active { display: flex; }
    .menu-toggle { display: block; }

    .hero { padding: 36px 0 48px; }
    .hero-content h1 { font-size: 28px; }
    .hero-content > p { font-size: 15px; }
    .hero-features { grid-template-columns: 1fr; gap: 8px; }
    .hero-badges-row { justify-content: center; }
    .hero-trust { justify-content: center; }

    .booking-form { padding: 24px; position: static; }
    .form-row, .form-row-3, .form-row-4 { grid-template-columns: 1fr; }
    .trip-options { grid-template-columns: 1fr; }
    .vehicle-options { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }

    .section { padding: 48px 0; }
    .section-title { font-size: 28px; margin-bottom: 32px; }
    .page-grid { grid-template-columns: 1fr; }
    .page-sidebar { position: static; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 24px; }
    .booking-form { padding: 20px; }
    .form-header h2 { font-size: 20px; }
    .advantages-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
/* ==========================================
   PREMIUM VISUAL OVERRIDE
   Málaga Radio Taxi
   ========================================== */

body {
    background: var(--bg-white);
    color: var(--text);
}

h1, h2, h3 {
    letter-spacing: 0;
}

p {
    color: var(--text-light);
}

.container {
    max-width: 1240px;
}

/* HEADER */
.header {
    background: rgba(17,17,17,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header.scrolled {
    background: rgba(17,17,17,0.96);
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

.logo,
.nav a {
    color: rgba(255,255,255,0.88);
}

.logo span {
    color: var(--accent-light);
}

.nav a:hover {
    color: #fff;
}

.nav a::after {
    background: var(--accent);
}

.nav-phone {
    background: #fff;
    color: var(--primary) !important;
    border-radius: 6px;
}

.nav-phone:hover {
    background: var(--accent);
    color: #111 !important;
}

/* HERO */
.hero-premium {
    min-height: calc(100vh - 72px);
    padding: 78px 0 86px;
    background: #111;
    position: relative;
    isolation: isolate;
}

.hero-premium::before,
.hero-premium::after {
    display: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.58) 42%, rgba(0,0,0,0.28) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.68) 100%);
}

.hero-premium .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.72fr);
    gap: 56px;
    align-items: start;
}

.hero-premium .hero-content {
    padding-top: 34px;
    max-width: 650px;
}

.eyebrow,
.form-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-light);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow.centered {
    display: block;
    text-align: center;
}

.hero-premium .hero-content h1 {
    max-width: 650px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 600;
    line-height: 0.98;
}

.hero-premium .hero-content > p {
    max-width: 560px;
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: #111;
    box-shadow: 0 18px 40px rgba(184,155,94,0.24);
}

.btn-primary:hover {
    background: var(--accent-light);
    color: #111;
    transform: translateY(-2px);
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.hero-premium .hero-features {
    max-width: 620px;
}

.hero-premium .feature {
    color: rgba(255,255,255,0.82);
}

.hero-premium .feature-icon {
    background: rgba(184,155,94,0.16);
    border: 1px solid rgba(184,155,94,0.42);
    color: var(--accent-light);
}

.hero-premium .hero-badge {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.82);
    box-shadow: none;
}

.hero-premium .hero-trust {
    border-top-color: rgba(255,255,255,0.14);
}

.hero-premium .trust-text,
.hero-premium .trust-text strong {
    color: rgba(255,255,255,0.82);
}

/* FORMULARIO */
.booking-form-premium {
    border-radius: 12px;
    padding: 28px;
    background: rgba(251,250,247,0.97);
    border: 1px solid rgba(255,255,255,0.38);
    box-shadow: 0 34px 90px rgba(0,0,0,0.34);
}

.form-header {
    text-align: left;
    margin-bottom: 22px;
    padding-bottom: 18px;
}

.form-header h2 {
    font-size: 32px;
    line-height: 1;
}

.form-header p {
    font-size: 13px;
}

.form-section {
    margin-bottom: 18px;
    padding-bottom: 18px;
}

.form-section-title {
    color: var(--primary);
    letter-spacing: 0.14em;
}

.form-row {
    gap: 12px;
    margin-bottom: 12px;
}

.form-row-3,
.form-row-4 {
    display: grid;
    gap: 12px;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 11px;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 7px;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.12);
    color: var(--primary);
}

.form-group textarea {
    min-height: 76px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox-label input {
    width: auto;
    min-height: auto;
}

.trip-options {
    gap: 8px;
}

.trip-label {
    padding: 11px 10px;
    border-radius: 7px;
    background: #fff;
    font-size: 12px;
}

.trip-option input:checked + .trip-label {
    background: #111;
    border-color: #111;
    color: #fff;
    box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

/* VEHÍCULOS */
.form-section-vehicles {
    border-bottom: 0;
    padding-bottom: 0;
}

.vehicle-options {
    gap: 12px;
}

.vehicle-card {
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    text-align: left;
    background: #fff;
}

.vehicle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.vehicle-option input:checked + .vehicle-card {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 20px 48px rgba(184,155,94,0.18);
}

.vehicle-img {
    height: 132px;
    margin: 0;
    border-radius: 0;
    background: #111;
}

.vehicle-img img {
    transition: transform 0.45s ease;
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.045);
}

.vehicle-meta {
    padding: 15px;
}

.vehicle-badge {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--accent-hover);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vehicle-name {
    font-size: 15px;
}

.vehicle-price {
    margin-top: 8px;
    color: var(--primary);
}

/* PRECIO */
.price-breakdown {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9px;
}

.price-row {
    color: rgba(255,255,255,0.72);
    border-bottom-color: rgba(255,255,255,0.1);
}

.price-row.total {
    border-top-color: rgba(255,255,255,0.28);
    color: #fff;
}

.price-row.total span:last-child {
    color: var(--accent-light);
}

.btn-submit {
    min-height: 54px;
    border-radius: 7px;
    background: #111;
    font-size: 13px;
}

.btn-submit:hover:not(:disabled) {
    background: var(--accent);
    color: #111;
}

/* SECCIONES NUEVAS */
.section {
    padding: 86px 0;
}

.section-title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
}

.section-title.align-left {
    text-align: left;
    margin-left: 0;
    margin-bottom: 0;
}

.section-intro {
    background: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 72px;
    align-items: end;
}

.intro-grid p {
    font-size: 18px;
}

.premium-grid .service-card,
.testimonial-card,
.advantage {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.62);
    border-radius: 10px;
}

.service-card {
    text-align: left;
}

.service-number {
    display: block;
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.service-card h3 {
    font-size: 18px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 70px;
    align-items: center;
}

.split-grid.reverse {
    grid-template-columns: 0.86fr 1fr;
}

.split-media {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.split-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split-content h2,
.faq-grid h2 {
    margin-bottom: 20px;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.04;
}

.premium-list {
    margin-top: 26px;
    list-style: none;
}

.premium-list li {
    position: relative;
    padding: 13px 0 13px 28px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 15px;
}

.premium-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.destination-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(2, 270px);
    gap: 18px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.destination-card.large {
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.destination-card:hover img {
    transform: scale(1.045);
    opacity: 0.68;
}

.destination-card div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.destination-card span,
.inline-trust span,
.advantage span {
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.destination-card h3 {
    margin-top: 8px;
    color: #fff;
    font-size: 30px;
}

.advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.advantage {
    padding: 26px;
    text-align: left;
}

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

.advantage h4 {
    margin-top: 10px;
    font-size: 18px;
}

.advantage p {
    font-size: 14px;
}

.inline-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.inline-trust span {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--accent-hover);
    background: #fff;
}

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

.testimonial-card {
    padding: 30px;
}

.testimonial-card p {
    margin: 18px 0;
    font-size: 16px;
    color: var(--text);
}

.testimonial-card span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 70px;
    align-items: start;
}

.faq-list details {
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.faq-list summary {
    cursor: pointer;
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 12px;
    font-size: 15px;
}

/* CTA */
.cta-premium {
    background:
        linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
        url('/assets/images/mercedes-vito.jpg') center / cover;
}

.cta-inner h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(34px, 4vw, 52px);
}

/* FOOTER BASE */
.footer {
    background: #0d0d0d;
    padding: 52px 0 24px;
}

.footer-grid {
    gap: 32px;
    margin-bottom: 34px;
}

.footer-col h4 {
    color: var(--accent-light);
}

.footer-col a:hover {
    color: var(--accent-light);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-premium .hero-inner {
        grid-template-columns: 1fr;
    }

    .booking-form-premium {
        position: relative;
        top: auto;
        max-width: 760px;
    }

    .intro-grid,
    .split-grid,
    .split-grid.reverse,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        background: rgba(17,17,17,0.96);
    }

    .nav {
        background: rgba(17,17,17,0.98);
    }

    .menu-toggle {
        color: #fff;
    }

    .hero-premium {
        min-height: auto;
        padding: 46px 0 54px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.84));
    }

    .hero-premium .hero-content {
        padding-top: 0;
    }

    .hero-premium .hero-content h1 {
        font-size: 42px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .booking-form-premium {
        padding: 22px;
        border-radius: 10px;
    }

    .form-header h2 {
        font-size: 28px;
    }

    .vehicle-img {
        height: 170px;
    }

    .section {
        padding: 58px 0;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 34px;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .destination-card,
    .destination-card.large {
        min-height: 280px;
        grid-row: auto;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .split-content h2,
    .faq-grid h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container,
    .hero-inner,
    .header-inner,
    .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-premium .hero-content h1 {
        font-size: 36px;
    }

    .hero-premium .hero-content > p {
        font-size: 16px;
    }

    .hero-features {
        margin-bottom: 22px;
    }

    .hero-badges-row {
        justify-content: flex-start;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .booking-form-premium {
        padding: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .trip-label {
        text-align: left;
        padding: 13px 12px;
    }

    .vehicle-img {
        height: 150px;
    }

    .destination-card,
    .destination-card.large {
        min-height: 240px;
    }

    .destination-card h3 {
        font-size: 25px;
    }
}
/* HEADER REFINEMENT */
.logo {
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 0.16em;
}

.logo-main,
.logo-accent {
    display: inline-block;
}

.logo-accent {
    color: var(--accent-light);
}

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: var(--transition);
}

.menu-toggle.active span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav a {
        color: rgba(255,255,255,0.86);
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
    }
}
/* FOOTER PREMIUM FINAL */
.footer-premium {
    background: #0b0b0b;
    color: rgba(255,255,255,0.66);
    padding: 58px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 56px;
    align-items: start;
    padding-bottom: 38px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-logo strong {
    color: var(--accent-light);
}

.footer-brand p {
    max-width: 620px;
    color: rgba(255,255,255,0.66);
    font-size: 15px;
    line-height: 1.75;
}

.footer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.footer-trust span,
.payment-list span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(184,155,94,0.28);
    border-radius: 999px;
    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.04);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-card {
    padding: 24px;
    border: 1px solid rgba(184,155,94,0.28);
    border-radius: 10px;
    background: rgba(255,255,255,0.045);
}

.footer-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--accent-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-contact-card a,
.footer-contact-card p {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
}

.footer-contact-card .footer-phone {
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.footer-whatsapp {
    color: var(--accent-light) !important;
}

.footer-premium .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-bottom: 32px;
}

.footer-premium .footer-col h4 {
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.15em;
}

.footer-premium .footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-premium .footer-col li {
    margin-bottom: 9px;
}

.footer-premium .footer-col a {
    color: rgba(255,255,255,0.58);
    font-size: 14px;
}

.footer-premium .footer-col a:hover {
    color: var(--accent-light);
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-premium .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
    padding-top: 22px;
}

.footer-premium .footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.42);
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-contact-card {
        max-width: 460px;
    }

    .footer-premium .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-premium .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .footer-premium {
        padding-top: 44px;
    }

    .footer-premium .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-contact-card .footer-phone {
        font-size: 29px;
    }

    .footer-trust,
    .payment-list {
        gap: 6px;
    }
}
/* AJUSTE FINAL FAQ + CTA */
.faq-section {
    padding-top: 64px;
    padding-bottom: 72px;
}

.faq-grid {
    align-items: center;
}

.faq-grid h2 {
    margin-bottom: 18px;
}

.faq-list details:first-child {
    padding-top: 0;
}

.faq-list details {
    padding: 18px 0;
}

.faq-list summary {
    font-size: 17px;
    line-height: 1.35;
}

.cta-premium {
    min-height: 430px;
    display: flex;
    align-items: center;
    background-position: center 58%;
}

.cta-premium .cta-inner {
    padding: 72px 0;
}

.cta-premium .cta-inner h2 {
    max-width: 760px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.05;
}

.cta-premium .cta-inner p {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .faq-section {
        padding-top: 48px;
        padding-bottom: 54px;
    }

    .faq-grid {
        gap: 24px;
    }

    .faq-list summary {
        font-size: 16px;
    }

    .cta-premium {
        min-height: 520px;
        background-position: center center;
    }

    .cta-premium .cta-inner h2 {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding-top: 38px;
    }

    .cta-premium .cta-inner {
        padding: 58px 0;
    }

    .cta-premium .cta-inner h2 {
        font-size: 32px;
    }
}
.testimonials-section {
    padding-bottom: 64px;
}

.testimonials-section + .faq-section {
    padding-top: 54px;
}
/* CONTRASTE FINAL CTA + FOOTER */
.cta-premium {
    border-bottom: 1px solid rgba(184,155,94,0.28);
}

.footer-premium {
    background: #fbfaf7;
    color: #2b2b2b;
    padding-top: 64px;
}

.footer-top {
    border-bottom: 1px solid rgba(17,17,17,0.12);
}

.footer-logo {
    color: #111;
}

.footer-logo strong {
    color: var(--accent-hover);
}

.footer-brand p {
    color: #57534a;
}

.footer-trust span,
.payment-list span {
    background: #fff;
    border-color: rgba(17,17,17,0.14);
    color: #333;
}

.footer-contact-card {
    background: #111;
    border: 1px solid rgba(184,155,94,0.42);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.footer-contact-card a,
.footer-contact-card p {
    color: rgba(255,255,255,0.72);
}

.footer-contact-card .footer-phone {
    color: #fff;
}

.footer-kicker {
    color: var(--accent-light);
}

.footer-premium .footer-grid {
    border-bottom: 1px solid rgba(17,17,17,0.12);
    padding-bottom: 36px;
}

.footer-premium .footer-col h4 {
    color: #111;
}

.footer-premium .footer-col a {
    color: #625f58;
}

.footer-premium .footer-col a:hover {
    color: var(--accent-hover);
}

.footer-premium .footer-bottom {
    border-top: none;
}

.footer-premium .footer-bottom p {
    color: #77736a;
}
/* HEADER PREMIUM CLARO */
.header {
    background: rgba(251,250,247,0.94);
    border-bottom: 1px solid rgba(17,17,17,0.08);
    box-shadow: 0 10px 32px rgba(0,0,0,0.06);
}

.header.scrolled {
    background: rgba(251,250,247,0.98);
    box-shadow: 0 14px 40px rgba(0,0,0,0.10);
}

.header-inner {
    height: 74px;
}

.logo {
    color: #111;
}

.logo-main {
    color: #111;
}

.logo-accent,
.logo span {
    color: var(--accent-hover);
}

.nav a {
    color: #252525;
}

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

.nav a::after {
    background: var(--accent);
}

.nav-phone {
    background: #111;
    color: #fff !important;
    border: 1px solid #111;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.nav-phone:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #111 !important;
}

/* Separación visual entre header y hero */
.hero-premium {
    border-top: 1px solid rgba(184,155,94,0.18);
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        background: rgba(251,250,247,0.98);
    }

    .menu-toggle {
        color: #111;
        border-color: rgba(17,17,17,0.18);
    }

    .nav {
        background: rgba(251,250,247,0.98);
        border-bottom: 1px solid rgba(17,17,17,0.08);
        box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

    .nav a {
        color: #111;
    }

    .nav-phone {
        color: #fff !important;
    }
}
.header {
    background: #f8f3e8 !important;
}
/* HEADER PREMIUM CLARO - OVERRIDE FINAL */
body .header,
body .header.scrolled {
    background: rgba(248,243,232,0.98) !important;
    border-bottom: 1px solid rgba(17,17,17,0.10) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
}

body .header-inner {
    height: 74px !important;
}

body .logo,
body .logo-main {
    color: #111 !important;
}

body .logo-accent,
body .logo span {
    color: #9f854b !important;
}

body .nav a {
    color: #222 !important;
}

body .nav a:hover {
    color: #9f854b !important;
}

body .nav a::after {
    background: #b89b5e !important;
}

body .nav-phone {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #111 !important;
    box-shadow: 0 8px 22px rgba(0,0,0,0.14) !important;
}

body .nav-phone:hover {
    background: #b89b5e !important;
    color: #111 !important;
    border-color: #b89b5e !important;
}

@media (max-width: 768px) {
    body .menu-toggle {
        color: #111 !important;
        border-color: rgba(17,17,17,0.18) !important;
    }

    body .nav {
        background: rgba(248,243,232,0.98) !important;
        border-bottom: 1px solid rgba(17,17,17,0.10) !important;
    }

    body .nav a {
        color: #111 !important;
    }
}
/* HEADER FINAL PREMIUM */
body .header,
body .header.scrolled {
    background: rgba(250,247,239,0.98) !important;
    border-bottom: 1px solid rgba(17,17,17,0.10) !important;
    box-shadow: 0 12px 34px rgba(0,0,0,0.08) !important;
}

body .header-inner {
    height: 76px !important;
}

body .logo {
    color: #111 !important;
    letter-spacing: 0.18em !important;
}

body .logo-main {
    color: #111 !important;
}

body .logo-accent,
body .logo span {
    color: #9f854b !important;
}

body .nav {
    gap: 30px !important;
}

body .nav a:not(.nav-phone) {
    color: #242424 !important;
    font-weight: 700 !important;
}

body .nav a:not(.nav-phone):hover {
    color: #9f854b !important;
}

body .nav a.nav-phone {
    background: #111 !important;
    color: #fff !important;
    border: 1px solid #111 !important;
    border-radius: 7px !important;
    padding: 11px 18px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14) !important;
}

body .nav a.nav-phone:hover {
    background: #b89b5e !important;
    border-color: #b89b5e !important;
    color: #111 !important;
}

body .hero-premium {
    border-top: 1px solid rgba(184,155,94,0.22) !important;
}

@media (max-width: 768px) {
    body .nav {
        background: rgba(250,247,239,0.98) !important;
    }

    body .nav a:not(.nav-phone) {
        color: #111 !important;
    }

    body .nav a.nav-phone {
        color: #fff !important;
    }

    body .menu-toggle {
        color: #111 !important;
        border-color: rgba(17,17,17,0.18) !important;
    }
}
/* HERO IMAGE LIGHTER PREMIUM */
body .hero-premium {
    background: #f7f2e8 !important;
}

body .hero-media img {
    filter: brightness(1.18) contrast(0.96) saturate(1.04) !important;
    opacity: 1 !important;
}

body .hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.58) 0%,
            rgba(0,0,0,0.42) 36%,
            rgba(0,0,0,0.14) 62%,
            rgba(0,0,0,0.02) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.12) 0%,
            rgba(0,0,0,0.24) 100%
        ) !important;
}

body .hero-premium .hero-content h1 {
    text-shadow: 0 3px 18px rgba(0,0,0,0.34) !important;
}

body .hero-premium .hero-content > p,
body .hero-premium .feature,
body .hero-premium .trust-text,
body .hero-premium .trust-text strong {
    color: rgba(255,255,255,0.90) !important;
}

body .hero-premium .hero-badge {
    background: rgba(255,255,255,0.16) !important;
    border-color: rgba(255,255,255,0.28) !important;
    color: rgba(255,255,255,0.92) !important;
    backdrop-filter: blur(10px);
}

body .hero-premium .hero-trust {
    border-top-color: rgba(255,255,255,0.22) !important;
}

@media (max-width: 768px) {
    body .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,0.46) 0%,
                rgba(0,0,0,0.50) 48%,
                rgba(0,0,0,0.36) 100%
            ) !important;
    }

    body .hero-media img {
        filter: brightness(1.12) contrast(0.98) saturate(1.02) !important;
    }
}
/* BOOKING MULTI STEP */
.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
}

.booking-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    border: 1px solid rgba(17,17,17,0.12);
    border-radius: 999px;
    background: #fff;
    color: #777;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: default;
}

.booking-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #eee8dc;
    color: #111;
    font-size: 11px;
}

.booking-step.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.booking-step.active span {
    background: var(--accent);
    color: #111;
}

.booking-panel {
    display: none;
}

.booking-panel.active {
    display: block;
}

.form-section.booking-panel.active {
    animation: stepFade 0.22s ease;
}

@keyframes stepFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-navigation {
    display: flex;
    gap: 12px;
    margin: 22px 0;
}

.btn-step {
    flex: 1;
    min-height: 50px;
    border-radius: 7px;
    border: 1px solid rgba(17,17,17,0.14);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-step-back {
    background: #fff;
    color: #111;
}

.btn-step-next {
    background: #111;
    color: #fff;
}

.btn-step:hover {
    transform: translateY(-1px);
}

.btn-step[hidden] {
    display: none;
}
/* MULTISTEP HARD FIX */
.booking-panel {
    display: none !important;
}

.booking-panel.active {
    display: block !important;
}

.price-breakdown.booking-panel {
    display: none !important;
}

.price-breakdown.booking-panel.active {
    display: block !important;
}

.btn-submit.booking-panel {
    display: none !important;
}

.btn-submit.booking-panel.active {
    display: block !important;
}

.form-message.booking-panel {
    display: none !important;
}

.form-message.booking-panel.active.show {
    display: block !important;
}

.form-navigation {
    display: flex !important;
}

#bookingPrev[style*="display: none"] {
    display: none !important;
}
.manual-destination {
    display: none !important;
}

.manual-destination.show {
    display: flex !important;
}
/* BOOKING BUTTON REFINEMENT */
.form-navigation {
    gap: 12px;
    margin-top: 22px;
}

.btn-step {
    min-height: 56px;
    padding: 0 22px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 1;
}

.btn-step-next {
    background: #111;
    color: #fff;
}

.btn-step-back {
    background: #fff;
    color: #111;
}

#bookingNext {
    max-width: none;
}
/* VEHICLE SELECTED STATE FIX */
.vehicle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vehicle-option input[type="radio"]:checked + .vehicle-card {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(184,155,94,0.42), 0 18px 44px rgba(0,0,0,0.10) !important;
    background: #fff !important;
}

.vehicle-option input[type="radio"]:checked + .vehicle-card::before {
    content: 'Seleccionado';
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    padding: 7px 10px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vehicle-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.vehicle-card.disabled {
    cursor: not-allowed;
}
/* =========================================
   HERO MOBILE OPTIMIZADO
========================================= */

@media (max-width: 768px) {

    body .hero-media {

        position: relative;
        overflow: hidden;
        min-height: 58vh;
        margin-bottom: -120px;
        background-image: url('/assets/images/mercedes-clase-e-mobile.webp') !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    body .hero-media img {

        display: none !important;
    }
body .hero-content {
display: inline-block;
    position: relative;
    z-index: 5;

    margin-top: -390px;

    padding: 0 24px 12px 24px;
    max-width: 100%;
}

body .hero-content h1 {

    color: rgba(255,255,255,0.96) !important;

    line-height: 0.95 !important;

    letter-spacing: -0.02em;
}

body .hero-content p {

    color: rgba(255,255,255,0.82) !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.85);
font-weight: 500;
}
body .feature,
body .hero-badge {

   color: rgba(255,255,255,0.96) !important;

  text-shadow: 0 2px 10px rgba(0,0,0,0.85) !important;

    border: 1px solid rgba(255,255,255,0.06) !important;

  background: rgba(70,70,70,0.72) !important;

    backdrop-filter: blur(6px) !important;

    -webkit-backdrop-filter: blur(6px) !important;

    border-radius: 14px !important;

    opacity: 1 !important;

    filter: none !important;
}

body .hero-trust {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 18px;

    background: rgba(255,255,255,0.35);

    border-radius: 14px;
}


body .trust-text {

   color: #4a4a4a !important;
   opacity: 1 !important;

    font-weight: 600;

    text-shadow: none !important;
}

  
    body .hero-content h1 {

        font-size: 3rem !important;
        line-height: 1.08 !important;
    }
    body .hero-trust,
body .trust-text,
body .stars {

    opacity: 1 !important;

    filter: none !important;

}

body .hero-badges-row,
body .hero-badges-row * {

    color: #4a4a4a !important;

    opacity: 1 !important;

    text-shadow: none !important;

    filter: none !important;

}

}
/* CONTRASTE HERO MOBILE FINAL */
@media (max-width: 768px) {
    body .hero-premium .feature,
    body .hero-premium .hero-badge {
        color: #fff !important;
        background: rgba(17, 17, 17, 0.72) !important;
        border: 1px solid rgba(255,255,255,0.18) !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.75) !important;
        box-shadow: 0 10px 24px rgba(0,0,0,0.24) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }

    body .hero-premium .feature-icon {
        background: rgba(184,155,94,0.28) !important;
        border-color: rgba(184,155,94,0.58) !important;
        color: #f4dfaa !important;
    }

    body .hero-premium .hero-trust {
        background: rgba(17, 17, 17, 0.76) !important;
        border: 1px solid rgba(255,255,255,0.18) !important;
        box-shadow: 0 12px 28px rgba(0,0,0,0.26) !important;
    }

    body .hero-premium .trust-text,
    body .hero-premium .trust-text strong {
        color: #fff !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.75) !important;
    }
}
/* ==========================================
   CRO UX PASS - FORMULARIO MULTIPASO PREMIUM
   Solo visual / UX. No toca lógica.
   ========================================== */

/* Progreso más claro */
.booking-steps {
    gap: 10px !important;
    margin-top: 20px !important;
}

.booking-step {
    min-height: 44px !important;
    border: 1px solid rgba(17,17,17,0.14) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7) !important;
}

.booking-step.active {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.16) !important;
    transform: translateY(-1px);
}

.booking-step.active span {
    background: var(--accent) !important;
    color: #111 !important;
}

/* Transición premium entre pasos */
.booking-panel.active {
    animation: premiumStepIn 0.34s cubic-bezier(0.22, 1, 0.36, 1) both !important;
}

@keyframes premiumStepIn {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Badges persuasivos de vehículo */
#cardStandard::after,
#cardPremium::after {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(17,17,17,0.88);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#cardStandard::after {
    content: 'Más reservado';
}

#cardPremium::after {
    content: 'Más espacio';
}

/* Si ya está seleccionado, dejamos prioridad al badge seleccionado */
.vehicle-option input[type="radio"]:checked + .vehicle-card::before {
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
}

/* Confianza bajo precio */
.quick-trust-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px !important;
    margin-top: 16px !important;
}

.quick-trust-row span {
    justify-content: center;
    min-height: 38px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(184,155,94,0.12) !important;
    border: 1px solid rgba(184,155,94,0.30) !important;
    color: #332b1b !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

/* Botones más elegantes */
.btn-step,
.btn-submit {
    min-height: 54px !important;
    border-radius: 9px !important;
}

.btn-step-next,
.btn-submit {
    box-shadow: 0 14px 30px rgba(0,0,0,0.14) !important;
}

/* Mobile CRO */
@media (max-width: 768px) {
    body .hero-premium {
        padding-top: 0 !important;
        padding-bottom: 28px !important;
    }

    body .hero-media {
        min-height: 430px !important;
        margin-bottom: -285px !important;
    }

    body .hero-content {
        margin-top: 0 !important;
        padding: 22px 22px 8px 22px !important;
    }

    body .hero-premium .hero-content h1,
    body .hero-content h1 {
        font-size: 2.4rem !important;
        line-height: 1.02 !important;
        margin-bottom: 14px !important;
    }

    body .hero-premium .hero-content > p,
    body .hero-content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 18px !important;
    }

    body .hero-actions {
        gap: 10px !important;
        margin: 18px 0 !important;
    }

    body .btn-primary,
    body .btn-secondary {
        min-height: 48px !important;
        padding: 13px 18px !important;
        font-size: 12px !important;
    }

    body .hero-features {
        gap: 7px !important;
        margin-bottom: 14px !important;
    }

    body .feature {
        min-height: 34px !important;
        padding: 7px 10px !important;
        font-size: 13px !important;
        border-radius: 999px !important;
    }

    body .hero-badges-row {
        gap: 7px !important;
        margin-bottom: 14px !important;
    }

    body .hero-badge {
        min-height: 32px !important;
        padding: 7px 10px !important;
        font-size: 12px !important;
    }

    body .hero-trust {
        padding: 10px 12px !important;
        margin-top: 6px !important;
    }

    body .booking-form-premium {
        margin-top: -6px !important;
        padding: 18px !important;
        border-radius: 14px !important;
    }

    .form-header {
        margin-bottom: 18px !important;
        padding-bottom: 16px !important;
    }

    .form-header h2 {
        font-size: 26px !important;
    }

    .form-header p {
        font-size: 13px !important;
        line-height: 1.45 !important;
    }

    .booking-steps {
        gap: 7px !important;
    }

    .booking-step {
        min-height: 40px !important;
        font-size: 10px !important;
        letter-spacing: 0.05em !important;
    }

    .booking-step span {
        width: 22px !important;
        height: 22px !important;
    }

    .trip-options {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .trip-label {
        min-height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    .vehicle-options {
        gap: 12px !important;
    }

    .vehicle-card {
        border-radius: 12px !important;
    }

    .vehicle-img {
        height: 138px !important;
    }

    .vehicle-meta {
        padding: 14px !important;
    }

    .vehicle-name {
        font-size: 18px !important;
    }

    .vehicle-info {
        font-size: 13px !important;
    }

    .vehicle-price {
        font-size: 30px !important;
        margin-top: 10px !important;
    }

    .quick-trust-row {
        grid-template-columns: 1fr !important;
        gap: 7px !important;
    }

    .quick-trust-row span {
        min-height: 36px !important;
        font-size: 12px !important;
    }

    .form-navigation {
        margin-top: 18px !important;
        gap: 10px !important;
    }
}

@media (max-width: 420px) {
    body .hero-media {
        min-height: 405px !important;
        margin-bottom: -270px !important;
    }

    body .hero-premium .hero-content h1,
    body .hero-content h1 {
        font-size: 2.15rem !important;
    }

    body .booking-form-premium {
        padding: 16px !important;
    }

    .booking-step {
        font-size: 9px !important;
    }
}
/* =========================================
   HERO MOBILE BALANCE FIX
   Compacto, pero sin cortar CTAs
========================================= */

@media (max-width: 768px) {
    body .hero-premium {
        padding-top: 0 !important;
        padding-bottom: 42px !important;
        overflow: hidden !important;
    }

    body .hero-media {
        min-height: 64vh !important;
        margin-bottom: -150px !important;
        background-position: center top !important;
    }

    body .hero-content {
        margin-top: -455px !important;
        padding: 0 24px 8px 24px !important;
    }

    body .hero-premium .hero-content h1 {
        font-size: 2.55rem !important;
        line-height: 1.03 !important;
        margin-bottom: 18px !important;
    }

    body .hero-premium .hero-content > p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    body .hero-actions {
        gap: 12px !important;
        margin: 20px 0 26px !important;
    }

    body .btn-primary,
    body .btn-secondary {
        min-height: 56px !important;
        padding: 14px 18px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body .btn-secondary {
        background: rgba(17,17,17,0.42) !important;
        border-color: rgba(255,255,255,0.36) !important;
        color: #fff !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.75) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }
}

@media (max-width: 420px) {
    body .hero-media {
        min-height: 66vh !important;
        margin-bottom: -155px !important;
    }

    body .hero-content {
        margin-top: -450px !important;
    }

    body .hero-premium .hero-content h1 {
        font-size: 2.35rem !important;
    }
}
/* =========================================
   MOBILE HERO / TRUST SEPARATION
   Hero oscuro limpio + confianza en bloque claro
========================================= */

@media (max-width: 768px) {
    body .hero-premium {
        background: #f7f2e8 !important;
        padding-bottom: 34px !important;
        overflow: visible !important;
    }

    body .hero-media {
        min-height: 68vh !important;
        margin-bottom: 0 !important;
        background-position: center top !important;
    }

    body .hero-content {
        margin-top: -500px !important;
        padding: 0 24px !important;
    }

    body .hero-premium .hero-content h1 {
        font-size: 2.55rem !important;
        line-height: 1.03 !important;
        margin-bottom: 18px !important;
    }

    body .hero-premium .hero-content > p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
    }

    body .hero-actions {
        margin: 22px 0 0 !important;
        gap: 12px !important;
    }

    body .btn-primary,
    body .btn-secondary {
        min-height: 56px !important;
    }

    body .hero-features,
    body .hero-badges-row,
    body .hero-trust {
        position: relative !important;
        z-index: 8 !important;
        transform: none !important;
    }

    body .hero-features {
        margin-top: 72px !important;
        padding: 0 24px !important;
        display: grid !important;
        gap: 12px !important;
    }

    body .hero-premium .feature {
        background: #3f3f3c !important;
        color: #fff !important;
        border: 1px solid rgba(17,17,17,0.14) !important;
        border-radius: 999px !important;
        min-height: 54px !important;
        padding: 12px 18px !important;
        box-shadow: 0 12px 28px rgba(0,0,0,0.16) !important;
        text-shadow: none !important;
    }

    body .hero-premium .feature-icon {
        background: rgba(184,155,94,0.18) !important;
        border-color: rgba(184,155,94,0.55) !important;
        color: var(--accent-light) !important;
    }

    body .hero-badges-row {
        justify-content: center !important;
        margin: 26px 24px 0 !important;
        gap: 10px !important;
    }

    body .hero-premium .hero-badge {
        background: #4a4945 !important;
        color: #fff !important;
        border-color: rgba(17,17,17,0.12) !important;
        box-shadow: 0 10px 24px rgba(0,0,0,0.14) !important;
        text-shadow: none !important;
    }

    body .hero-trust {
        margin: 28px 24px 0 !important;
        padding: 18px 20px !important;
        border: 0 !important;
        border-radius: 18px !important;
        background: #4a4945 !important;
        box-shadow: 0 12px 30px rgba(0,0,0,0.14) !important;
    }

    body .hero-premium .trust-text,
    body .hero-premium .trust-text strong {
        color: #fff !important;
        text-shadow: none !important;
    }
}

@media (max-width: 420px) {
    body .hero-content {
        margin-top: -485px !important;
    }

    body .hero-premium .hero-content h1 {
        font-size: 2.35rem !important;
    }

    body .hero-features {
        margin-top: 64px !important;
    }
}
/* =========================================
   DESKTOP ALIGNMENT FIX
   Alinear pasajeros con destino en paso 1
========================================= */

@media (min-width: 769px) {
    #bookingForm #passengers {
        margin-top: 22px !important;
    }
}
/* =========================================
   STEP 2 DESTINATION + LUGGAGE ALIGNMENT
========================================= */

.readonly-destination {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 7px;
    background: rgba(184,155,94,0.10);
    border: 1px solid rgba(184,155,94,0.28);
    color: #111;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    display: flex;
    align-items: center;
}

/* =========================================
   STEP 2 LUGGAGE ALIGNMENT FINAL
========================================= */


.trustpilot-badge {
display: flex;
justify-content: center;
margin-top: 24px;
margin-bottom: 48px;
}

.trustpilot-badge a {
display: flex;
align-items: center;
gap: 14px;
text-decoration: none;
background: #ffffff;
border: 1px solid #ece7df;
border-radius: 999px;
padding: 14px 22px;
transition: all 0.25s ease;
box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.trustpilot-badge a:hover {
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.trustpilot-badge img {
height: 24px;
width: auto;
}

.trustpilot-text {
display: flex;
flex-direction: column;
line-height: 1.2;
}

.trustpilot-text strong {
font-size: 15px;
color: #111;
font-weight: 600;
}

.trustpilot-text span {
font-size: 13px;
color: #777;
}
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.hero-trust:hover {
    opacity: 0.85;
}
.hero-trust {
    cursor: pointer;
}
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    background: #c6a56b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    z-index: 9999;
    transition: all 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    background: #b69258;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        right: 18px;
        bottom: 18px;
    }
}
/* =========================================
   STEP 2 LIVE PRICE SUMMARY
========================================= */

.step-live-summary {
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #111;
    border: 1px solid rgba(184,155,94,0.36);
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

.step-live-summary.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.step-live-summary div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.step-live-summary span {
    color: rgba(255,255,255,0.62);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.step-live-summary strong {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.step-live-summary div:last-child strong {
    color: var(--accent-light);
    font-size: 22px;
}

@media (max-width: 768px) {
    .step-live-summary.active {
        grid-template-columns: 1fr;
    }

    .step-live-summary {
        margin-bottom: 16px;
        padding: 14px;
    }
}
/* =========================================
   URGENT BOOKING CODE
========================================= */

.urgent-code-group {
    margin-top: 8px;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(153,27,27,0.08);
    border: 1px solid rgba(153,27,27,0.22);
}

.urgent-code-group label {
    color: #991b1b;
}

.urgent-code-group input {
    max-width: 240px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-align: center;
    background: #fff;
}

.urgent-code-group::before {
    content: 'Reserva con menos de 24h: llámenos para confirmar disponibilidad y recibir el código.';
    display: block;
    margin-bottom: 10px;
    color: #7f1d1d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}
/* =========================================
   URGENT CODE VALID STATE FIX
========================================= */

.urgent-code-group:not(.invalid) .form-error {
    display: none !important;
}

.urgent-code-group.invalid .form-error {
    display: block !important;
}
/* =========================================
   URGENT CODE VALID VISUAL STATE
========================================= */

.urgent-code-group.valid {
    background: rgba(22,101,52,0.08) !important;
    border-color: rgba(22,101,52,0.28) !important;
}

.urgent-code-group.valid::before {
    content: 'Código validado. Puede continuar con la reserva.';
    color: #166534 !important;
}

.urgent-code-group.valid label {
    color: #166534 !important;
}

.urgent-code-group.valid input {
    border-color: rgba(22,101,52,0.38) !important;
    box-shadow: 0 0 0 3px rgba(22,101,52,0.08) !important;
}

/* =========================================
   PÁGINAS LEGALES
========================================= */

.legal-page {
    max-width: 920px;
    margin: 0 auto;
    padding: 72px 28px;
}

.legal-header {
    margin-bottom: 48px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.legal-header h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 6vw, 64px);
}

.legal-header p {
    color: var(--text-light);
}

.legal-section {
    margin-bottom: 34px;
}

.legal-section h2 {
    margin-bottom: 14px;
    font-size: 25px;
}

.legal-section p,
.legal-section li {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.legal-section p {
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 12px 0 18px;
    padding-left: 24px;
}

.legal-section a {
    color: var(--accent-hover);
    text-decoration: underline;
}

.legal-back {
    max-width: 280px;
    margin-top: 48px;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 48px 20px;
    }

    .legal-header {
        margin-bottom: 36px;
    }

    .legal-section h2 {
        font-size: 22px;
    }
}
/* BANNER DE COOKIES */
.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    max-width: 900px;
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(184, 155, 94, 0.45);
    border-radius: 10px;
    background: #111;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner-text strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 17px;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.cookie-btn {
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid var(--accent);
    border-radius: 7px;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn-reject {
    background: transparent;
    color: #fff;
}

.cookie-btn-accept {
    background: var(--accent);
    color: #111;
}

.footer-cookie-settings {
    padding: 0;
    border: 0;
    background: transparent;
    color: #625f58;
    font: inherit;
    cursor: pointer;
}

.footer-cookie-settings:hover {
    color: var(--accent-hover);
}

@media (max-width: 700px) {
    .cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 18px;
    }

    .cookie-banner-content,
    .cookie-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-btn {
        width: 100%;
    }
}
.payment-methods {
    margin-top: 22px;
}

.payment-methods-title {
    display: block;
    margin-bottom: 12px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option span {
    display: block;
    min-height: 92px;
    padding: 16px 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    transition: var(--transition);
}

.payment-option strong {
    display: block;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.payment-option small {
    display: block;
    margin-top: 6px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
}

.payment-option input:checked + span {
    border-color: var(--accent);
    background: #fff8ea;
    box-shadow: 0 0 0 2px rgba(184, 155, 94, 0.22);
}

.payment-option:hover span {
    border-color: var(--accent);
}

@media (max-width: 640px) {
    .payment-options {
        grid-template-columns: 1fr;
    }

    .payment-option span {
        min-height: auto;
    }
}
/* Ajuste visual: alinear Paradas extras con el resto de equipaje */
#extraStops {
    margin-top: -18px;
}
/* Alineación visual del bloque Equipaje */
.luggage-row .form-group {
    display: flex;
    flex-direction: column;
}

.luggage-row .form-group label {
    min-height: 76px;
    margin-bottom: 10px;
}

.luggage-row .form-group label small {
    display: block;
    margin-top: 4px;
}

.luggage-row .form-group select {
    margin-top: 0 !important;
}