/* ============================================
   SEVILLA FREENOW TAXI — Premium Styles
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #D4A824;
    --primary-dark: #B8901E;
    --primary-light: #F0D060;
    --secondary: #1A1A2E;
    --secondary-light: #16213E;
    --accent: #0F3460;
    --dark: #0A0A0F;
    --dark-card: #111118;
    --dark-surface: #18182A;
    --text: #E8E8F0;
    --text-muted: #9B9BB0;
    --white: #FFFFFF;
    --success: #28C76F;
    --border: rgba(212, 168, 36, 0.15);
    --glow: 0 0 30px rgba(212, 168, 36, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--primary-light);
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 168, 36, 0.1);
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-img {
    height: 42px;
    width: auto;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--primary);
    font-size: 1.4rem;
}

.logo-highlight {
    color: var(--primary);
}

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

.nav-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.nav-cta:hover {
    background: var(--primary-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* Nav Overlay (mobile menu backdrop) */
.nav-overlay {
    display: none;
}

/* ---- Language Selector ---- */
.lang-selector {
    position: relative;
    margin-left: auto;
    margin-right: 16px;
    z-index: 1002;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.lang-current:hover {
    background: rgba(212, 168, 36, 0.15);
    border-color: var(--primary);
}

.lang-current span {
    font-size: 0.8rem;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(18, 18, 30, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.lang-option:hover {
    background: rgba(212, 168, 36, 0.1);
    color: var(--white);
}

.lang-option.active {
    background: rgba(212, 168, 36, 0.15);
    color: var(--primary);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-name {
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .lang-selector {
        margin-right: 12px;
    }

    .lang-current {
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .lang-dropdown {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

/* ============================================
   HERO — Split Screen
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
}

/* --- Hero Left (Text) --- */
.hero-left {
    padding: 120px 60px 80px 80px;
    display: flex;
    align-items: center;
}

.hero-left-inner {
    max-width: 560px;
    margin-left: auto;
}

.hero-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 20px rgba(212, 168, 36, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
    border-radius: 50%;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 36, 0.08);
    border: 1px solid rgba(212, 168, 36, 0.2);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-typed-wrapper {
    display: inline-flex;
    align-items: baseline;
    color: var(--primary);
}

.hero-typed {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typed-cursor {
    color: var(--primary);
    animation: cursorBlink 1s infinite;
    font-weight: 300;
    margin-left: 2px;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Trust Badges */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* --- Hero Right (Image) --- */
.hero-right {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    height: 100%;
    width: 100%;
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--dark) 0%,
        rgba(10, 10, 15, 0.4) 30%,
        rgba(10, 10, 15, 0.1) 60%,
        transparent 100%
    );
    pointer-events: none;
}

/* Floating cards on image */
.hero-float-price {
    position: absolute;
    bottom: 120px;
    left: 30px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-price-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
}

.float-price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.float-price-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.hero-float-rating {
    position: absolute;
    top: 140px;
    right: 30px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    text-align: center;
    animation: floatUp 4s ease-in-out infinite 1s;
}

.hero-float-rating .stars {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

.hero-float-rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 36, 0.4);
    color: var(--dark);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(212, 168, 36, 0.1);
    color: var(--primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-glow {
    animation: glow 3s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(212, 168, 36, 0.3); }
    50% { box-shadow: 0 0 25px rgba(212, 168, 36, 0.5), 0 0 50px rgba(212, 168, 36, 0.2); }
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--text-muted);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 36, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: rgba(212, 168, 36, 0.4);
    background: linear-gradient(135deg, var(--dark-surface), rgba(212, 168, 36, 0.05));
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 168, 36, 0.1);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--white);
}

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

.service-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-price strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-display);
}

.service-price span {
    font-size: 0.85rem;
}

/* ============================================
   ROUTES
   ============================================ */
.routes-section {
    background: var(--dark-card);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 16px;
}

.route-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateX(5px);
    border-color: rgba(212, 168, 36, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.route-from,
.route-to {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}

.route-from {
    min-width: 70px;
}

.route-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.route-to {
    flex: 1;
}

.route-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.routes-note {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: rgba(212, 168, 36, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
}

.routes-note i {
    color: var(--primary);
    margin-right: 8px;
}

/* ============================================
   GUIDES
   ============================================ */
.guides-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guides-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.guides-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.guides-float-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.guides-float-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.guides-float-card strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.guides-float-card span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.guides-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.guides-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.guides-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.guides-features {
    list-style: none;
    margin-bottom: 32px;
}

.guides-features li {
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guides-features i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* ============================================
   BUSINESS / EMPRESAS
   ============================================ */
.business-section {
    background: var(--dark-card);
}

.business-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.business-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.business-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 20px;
}

.business-content > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.business-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.benefit:hover {
    border-color: rgba(212, 168, 36, 0.3);
    transform: translateX(5px);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 36, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 2px;
}

.benefit span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Discount Card Visual */
.business-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-card {
    width: 320px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.discount-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.discount-card-top i {
    font-size: 1.3rem;
}

.discount-card-body {
    padding: 32px 24px;
    text-align: center;
}

.discount-big {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.discount-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.discount-card-bottom {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-surface);
}

.pricing-table th {
    background: rgba(212, 168, 36, 0.1);
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border);
}

.pricing-table td {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 0.95rem;
}

.pricing-table td i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.pricing-table tbody tr:hover {
    background: rgba(212, 168, 36, 0.03);
}

.pricing-table .pricing-divider td {
    background: rgba(212, 168, 36, 0.08);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
}

/* ============================================
   BOOKING SYSTEM — Calendar + Slots
   ============================================ */
.booking-section {
    background: var(--dark-card);
}

.booking-app {
    max-width: 750px;
    margin: 0 auto;
}

/* Steps */
.booking-step {
    display: none;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    animation: fadeSlideIn 0.4s ease-out;
}

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

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

.step-header {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    transition: var(--transition);
}

.step-number.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(212, 168, 36, 0.3);
}

.step-number.completed {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 28px;
}

.step-title i {
    color: var(--primary);
    margin-right: 10px;
}

.step-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.step-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* Shake animation for validation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake {
    animation: shake 0.5s ease;
    border-color: #ff4d4d !important;
}

/* ---- Calendar ---- */
.calendar-container {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

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

.cal-month-year {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
}

.cal-nav {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-nav:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.cal-day.empty {
    cursor: default;
}

.cal-day.past {
    color: rgba(155, 155, 176, 0.3);
    cursor: not-allowed;
}

.cal-day:not(.empty):not(.past):hover {
    background: rgba(212, 168, 36, 0.15);
    color: var(--primary);
}

.cal-day.today {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.cal-day.selected {
    background: var(--primary) !important;
    color: var(--dark) !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 168, 36, 0.3);
}

/* ---- Time Slots ---- */
.timeslots-container {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    animation: fadeSlideIn 0.3s ease-out;
}

.timeslots-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.timeslots-title i {
    color: var(--primary);
}

.timeslots-info {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.slot-legend {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin-right: 4px;
    vertical-align: middle;
}

.slot-legend.available {
    background: rgba(212, 168, 36, 0.15);
    border: 1px solid rgba(212, 168, 36, 0.3);
}

.slot-legend.booked {
    background: rgba(255, 77, 77, 0.15);
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.slot-legend.selected {
    background: var(--primary);
}

.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
}

.time-slot {
    padding: 10px 4px;
    text-align: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.time-slot.available {
    background: rgba(212, 168, 36, 0.08);
    border: 1px solid rgba(212, 168, 36, 0.2);
    color: var(--text);
}

.time-slot.available:hover {
    background: rgba(212, 168, 36, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.time-slot.booked {
    background: rgba(255, 77, 77, 0.08);
    border: 1px solid rgba(255, 77, 77, 0.15);
    color: rgba(255, 77, 77, 0.4);
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--dark) !important;
    box-shadow: 0 4px 15px rgba(212, 168, 36, 0.35);
    transform: scale(1.05);
}

.time-slot.selected-range {
    background: rgba(212, 168, 36, 0.25);
    border-color: var(--primary);
    color: var(--primary);
}

.slots-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ---- Confirmation ---- */
.confirmation-card {
    text-align: center;
}

.confirm-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 16px;
    animation: confirmPop 0.5s ease-out;
}

@keyframes confirmPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.confirm-subtitle {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.confirm-details {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
    text-align: left;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

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

.confirm-row span {
    color: var(--text-muted);
}

.confirm-row span i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.confirm-row strong {
    color: var(--white);
}

.confirm-row.total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 14px;
}

.confirm-row.total strong {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.confirm-row.empresa strong {
    color: var(--success);
}

.confirm-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.confirm-buttons .btn {
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group label i {
    color: var(--primary);
    margin-right: 6px;
    width: 16px;
    text-align: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 168, 36, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(155, 155, 176, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23D4A824' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-check label {
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
}

/* ============================================
   REVIEWS / VALORACIONES
   ============================================ */
.reviews-section {
    background: var(--bg);
}

/* Summary */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 32px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.reviews-avg {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid var(--border);
}

.avg-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.avg-stars {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 8px 0 6px;
    letter-spacing: 2px;
}

.avg-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bar-row > span:first-child {
    width: 40px;
    text-align: right;
    white-space: nowrap;
}

.bar-row > span:first-child i {
    color: var(--primary);
    font-size: 0.7rem;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: var(--surface-light, rgba(255,255,255,0.05));
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    width: 0;
    transition: width 0.8s ease;
}

.bar-count {
    width: 24px;
    text-align: left;
    font-size: 0.8rem;
}

/* Review form */
.review-form-card {
    max-width: 700px;
    margin: 0 auto 48px;
    padding: 32px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--white);
}

.review-form-card h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.review-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 8px);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-field textarea {
    min-height: 80px;
    margin-bottom: 20px;
}

/* Star selector */
.star-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}

.star-selector i {
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.15s;
}

.star-selector i:hover {
    transform: scale(1.2);
}

.star-label {
    margin-left: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.star-selector.shake {
    animation: shake 0.4s ease-in-out;
}

/* Review success */
.review-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm, 8px);
    color: #22c55e;
}

.review-success i {
    font-size: 1.8rem;
}

.review-success p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Reviews list */
.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 168, 36, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

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

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
    color: var(--text-muted);
}

.no-reviews i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.3;
}

.reviews-loading {
    text-align: center;
    padding: 32px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reviews-loading i {
    color: var(--primary);
    margin-right: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

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

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 50%;
    filter: drop-shadow(0 2px 12px rgba(212, 168, 36, 0.25));
}

.footer-col h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-col ul li i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
/* ============================================
   FLOATING ACTION BUTTONS GROUP
   ============================================ */

/* Hide reCAPTCHA floating badge (attribution in footer per Google TOS) */
.grecaptcha-badge {
    visibility: hidden !important;
}

.fab-group {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    align-items: flex-end;
}

.fab-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.fab-btn:hover {
    transform: scale(1.1);
    color: white;
}

.fab-label {
    position: absolute;
    right: 56px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: var(--font-body);
}

.fab-btn:hover .fab-label {
    opacity: 1;
}

/* WhatsApp */
.fab-whatsapp {
    background: #25D366;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4);
    animation: fabPulse-whatsapp 2.5s infinite;
}
.fab-whatsapp:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
}

/* Llamar */
.fab-call {
    background: #0088cc;
    box-shadow: 0 3px 12px rgba(0, 136, 204, 0.35);
}
.fab-call:hover {
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.55);
}

/* Reservar */
.fab-book {
    background: var(--accent);
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.35);
}
.fab-book:hover {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.55);
}

@keyframes fabPulse-whatsapp {
    0%, 100% { box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 3px 12px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* Desktop: solo WhatsApp visible, layout horizontal abajo-derecha */
@media (min-width: 769px) {
    .fab-call,
    .fab-book {
        display: none;
    }
    .fab-btn {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

/* Mobile: los 3 visibles, layout vertical compacto */
@media (max-width: 768px) {
    .fab-group {
        bottom: 16px;
        right: 14px;
        gap: 8px;
    }
    .fab-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .fab-label {
        display: none;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 96px;
    width: 48px;
    height: 48px;
    background: var(--dark-surface);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .guides-wrapper,
    .business-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guides-image img {
        height: 350px;
    }

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

@media (max-width: 768px) {
    /* Reviews responsive */
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .reviews-avg {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 24px;
    }

    .review-form-card {
        padding: 24px;
    }

    .review-form-grid {
        grid-template-columns: 1fr;
    }

    .reviews-list {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(165deg, rgba(10, 10, 15, 0.98) 0%, rgba(20, 18, 10, 0.98) 100%);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 100px 28px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        border-left: 1px solid rgba(212, 168, 36, 0.15);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(180deg, rgba(212, 168, 36, 0.06), transparent);
        pointer-events: none;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 4px 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 20px;
        padding: 0;
    }

    .nav-link {
        width: 100%;
        padding: 22px 20px;
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        border-radius: 12px;
        transition: all 0.25s ease;
        position: relative;
        min-height: 56px;
        display: flex;
        align-items: center;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 168, 36, 0.08);
        color: var(--primary);
        padding-left: 28px;
    }

    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 20px;
        background: var(--primary);
        border-radius: 4px;
    }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
        justify-content: center;
        padding: 16px 24px !important;
        font-size: 1.1rem !important;
        border-radius: 50px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
        color: var(--dark) !important;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(212, 168, 36, 0.3);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        position: relative;
    }

    .hero-right {
        position: absolute;
        inset: 0;
        height: 100%;
        z-index: 0;
    }

    .hero-img {
        object-position: center top;
    }

    .hero-image-overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 15, 0.75) 0%,
            rgba(10, 10, 15, 0.6) 40%,
            rgba(10, 10, 15, 0.85) 100%
        );
    }

    .hero-left {
        position: relative;
        z-index: 2;
        padding: 120px 24px 100px;
        text-align: center;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-left-inner {
        margin: 0 auto;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        margin: 0 auto 16px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    }

    .hero-float-price {
        position: fixed;
        display: none;
    }

    .hero-float-rating {
        position: absolute;
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
        top: auto;
        z-index: 3;
    }

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

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

    .booking-wrapper,
    .booking-step {
        padding: 24px;
    }

    .timeslots-grid {
        grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
        gap: 6px;
    }

    .step-buttons,
    .confirm-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        padding: 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .business-card-visual {
        order: -1;
    }

    .discount-card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero-left {
        padding: 110px 20px 90px;
    }

    .hero-logo {
        width: 90px;
        height: 90px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-float-rating {
        bottom: 20px;
        padding: 10px 16px;
    }

    .route-card {
        padding: 16px 20px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

.cookie-text i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-accept-all {
    background: var(--primary);
    color: var(--dark);
}

.cookie-accept-all:hover {
    background: var(--primary-light);
    box-shadow: var(--glow);
}

.cookie-config-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-config-btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-only-necessary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-only-necessary:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cookie Config Panel */
.cookie-config-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-config-panel.open {
    max-height: 400px;
}

.cookie-config-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 0 8px;
}

.cookie-category {
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-cat-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.cookie-cat-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-cat-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 6px 0 0 52px;
}

/* Toggle switch */
.cookie-switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-slider::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-switch input:checked + .cookie-slider {
    background: var(--primary);
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(18px);
}

.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-config-actions {
    padding-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.cookie-save {
    background: var(--primary);
    color: var(--dark);
}

.cookie-save:hover {
    background: var(--primary-light);
    box-shadow: var(--glow);
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-cat-desc {
        margin-left: 0;
        margin-top: 8px;
    }

    .cookie-config-actions {
        justify-content: center;
    }
}

/* ---- Footer Legal Links ---- */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: var(--transition);
}

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

.recaptcha-notice {
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 8px;
}

.recaptcha-notice a {
    color: var(--text-muted);
    text-decoration: underline;
}

.recaptcha-notice a:hover {
    color: var(--primary);
}
