/* ============================================================
   DR PREMIUM TRANSPORT — Tropical Luxury Theme
   Paleta vibrante tropical · Playfair Display + Poppins
   ============================================================ */

:root {
    /* Fondos */
    --bg: #F8FAFC;
    --bg-sand: #FFFBF5;
    --bg-alt: #FFFFFF;

    /* Texto */
    --text: #0B192C;
    --text-muted: #3B4D61;
    --text-light: #64748B;

    /* Acentos — MÁS VIVOS */
    --teal: #00E5E5;
    --teal-dark: #009F9F;
    --teal-light: #5BFFFF;
    --teal-soft: rgba(0, 229, 229, 0.15);
    --coral: #FF5722;
    --coral-dark: #E64A19;
    --coral-light: #FF8A65;
    --gold: #FFD700;
    --gold-dark: #E5A93C;
    --magenta: #FF2E93;
    --sky: #00B2FF;
    --lime: #10B981;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--teal), var(--sky));
    --grad-secondary: linear-gradient(135deg, var(--coral), var(--coral-dark));
    --grad-accent: linear-gradient(135deg, var(--teal-light), var(--teal));
    --grad-dark: linear-gradient(135deg, #0B192C 0%, #1E3A8A 50%, #0F172A 100%);

    /* Glass / superficies */
    --card-bg: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 229, 229, 0.15);
    --border: rgba(11, 25, 44, 0.08);

    /* Sombras */
    --shadow-sm: 0 4px 12px rgba(0, 229, 229, 0.04);
    --shadow-md: 0 10px 30px rgba(11, 25, 44, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 229, 229, 0.15);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 20px;
    --radius-sm: 14px;

    --maxw: 1280px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    zoom: 0.72;
}

/* En móvil se mantiene al 100% (ya tiene su propio diseño responsive) */
@media (max-width: 768px) {
    html {
        zoom: 1;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
}

h2 {
    font-size: clamp(2.1rem, 4.2vw, 3rem);
    text-align: center;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

/* Eyebrow / kicker above titles */
.section-eyebrow {
    display: block;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal-dark);
    margin-bottom: 0.8rem;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

a { color: inherit; }

/* ============================================================
   NAVBAR — Degradado vibrante
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.9rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(135deg, #0C1E35 0%, #0E3355 50%, #0A2A4A 100%);
    border-bottom: 1px solid rgba(0, 201, 201, 0.2);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    padding: 0.6rem 5%;
    background: linear-gradient(135deg, #0C1E35 0%, #102A48 100%);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 201, 201, 0.3);
    border: 2px solid rgba(0, 201, 201, 0.4);
    transition: var(--transition);
}

.logo:hover {
    border-color: var(--teal-light);
    box-shadow: 0 4px 20px rgba(0, 201, 201, 0.5);
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 201, 201, 0.3);
}

.brand-sub {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -2px;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal-light), var(--coral));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--coral), #FF6020);
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 18px rgba(255, 126, 51, 0.45);
    letter-spacing: 0.5px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: linear-gradient(135deg, var(--coral-light), var(--coral));
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 126, 51, 0.6);
}

/* Nav phone link */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}
.nav-phone::after { display: none; }
.nav-phone i { color: #25D366; font-size: 1rem; }
.nav-phone:hover { color: #fff !important; }

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #fff;
    background: rgba(0, 201, 201, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 201, 201, 0.3);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/destinations/punta-cana.jpg') center/cover no-repeat;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 40, 55, 0.82) 0%, rgba(0, 80, 90, 0.55) 50%, rgba(255, 126, 51, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    animation: fadeUp 1.2s ease-out;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 201, 201, 0.35), rgba(255, 126, 51, 0.25));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 201, 201, 0.4);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 1.4rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero h1 .accent {
    background: linear-gradient(90deg, #FFD700, #FF8A65, #FF5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    filter: drop-shadow(0 2px 18px rgba(255, 87, 34, 0.5));
}

.hero p {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    margin: 0 auto 2.6rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.4rem;
    background: linear-gradient(135deg, var(--coral) 0%, #FF8C00 100%);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(255, 87, 34, 0.45);
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF6B00 0%, var(--coral) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 36px rgba(255, 87, 34, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    border-color: #fff;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* ============================================================
   SECTION GENERALS
   ============================================================ */
section { padding: 6rem 5%; }

.why-section { background: var(--bg-alt); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    max-width: var(--maxw);
    margin: 0 auto;
}

.why-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--teal-light), var(--coral), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 201, 201, 0.15);
    border-color: rgba(0, 201, 201, 0.2);
}

.why-card:hover::before { transform: scaleX(1); }

.why-card .icon-wrap {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-soft), rgba(255, 126, 51, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    transform: rotate(-8deg) scale(1.1);
}

.why-card i {
    font-size: 1.7rem;
    color: var(--teal);
    transition: var(--transition);
}

.why-card:hover i { color: #fff; }

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--text);
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================================
   DESTINATIONS / TOURS
   ============================================================ */
.destinations-section {
    background: var(--bg-sand);
    position: relative;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2rem;
    max-width: var(--maxw);
    margin: 0 auto;
}

.dest-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dest-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 201, 201, 0.12);
    border-color: rgba(0, 201, 201, 0.15);
}

.dest-card:hover::after { transform: scaleX(1); }

.dest-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dest-card:hover .dest-image img { transform: scale(1.1); }

.dest-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, rgba(0, 201, 201, 0.92), rgba(0, 170, 255, 0.92));
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 3px 12px rgba(0, 201, 201, 0.35);
}

.dest-tag i { color: #fff; font-size: 0.8rem; }

.dest-content {
    padding: 1.6rem 1.6rem 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dest-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.dest-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.tour-price {
    color: var(--coral);
    font-weight: 700;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
}

.tour-duration {
    color: var(--text-light);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tour-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.3rem;
    line-height: 1.65;
    flex-grow: 1;
}

.dest-btn {
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, transparent, transparent);
    color: var(--teal-dark);
    border: 2px solid var(--teal);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    letter-spacing: 1.2px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.dest-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal), var(--sky));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.dest-btn:hover::before { opacity: 1; }

.dest-btn:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 229, 229, 0.4);
    transform: translateY(-3px);
}

.dest-btn span, .dest-btn i { position: relative; z-index: 1; }
.dest-btn:hover i { transform: translateX(4px); }
.dest-btn i { transition: transform 0.3s ease; }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-section { background: var(--bg-alt); }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: var(--maxw);
    margin: 0 auto;
}

.fleet-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fleet-card .fleet-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-sand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-card .fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img { transform: scale(1.05); }

.card-content { padding: 1.8rem; }

.fleet-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-soft), rgba(255, 126, 51, 0.1));
    color: var(--teal-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.7rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.fleet-spec i { color: var(--teal); }

.quote-btn {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--sky) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 229, 229, 0.35);
    position: relative;
    overflow: hidden;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.quote-btn:hover::before { left: 100%; }

.quote-btn span, .quote-btn i { position: relative; z-index: 1; }

.quote-btn:hover {
    background: linear-gradient(135deg, var(--sky) 0%, var(--teal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 229, 229, 0.55);
}

.quote-btn:active {
    transform: translateY(-1px) scale(0.97);
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking-section {
    background: url("imagen 2.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.booking-container {
    width: 100%;
    max-width: 860px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.booking-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 7px;
    background: linear-gradient(90deg, var(--teal-light), var(--sky), var(--magenta), var(--coral), var(--gold));
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
}

/* Booking Options Grid — hub page */
.booking-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.booking-option-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.booking-option-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.booking-option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 201, 201, 0.15);
    border-color: rgba(0, 201, 201, 0.2);
}

.booking-option-card:hover::before { transform: scaleX(1); }

.booking-option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-soft), rgba(255, 126, 51, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.booking-option-card:hover .booking-option-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

.booking-option-icon i {
    font-size: 1.5rem;
    color: var(--teal);
    transition: var(--transition);
}

.booking-option-card:hover .booking-option-icon i { color: #fff; }

.booking-option-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.booking-option-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.booking-option-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.booking-option-card:hover .booking-option-cta {
    color: var(--coral);
}

.booking-option-cta i { transition: transform 0.3s ease; }
.booking-option-card:hover .booking-option-cta i { transform: translateX(4px); }

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.form-group { margin-bottom: 1.5rem; }
.form-row { display: flex; gap: 1.5rem; }
.form-group.half { flex: 1; }

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text);
    font-size: 0.82rem;
    text-transform: uppercase;
}

label i { margin-left: 5px; color: var(--teal); }

input, select, textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

input::placeholder, textarea::placeholder { color: var(--text-light); }

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px var(--teal-soft);
    background: #fff;
}

.submit-button {
    width: 100%;
    padding: 1.1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.submit-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
}

.submit-button i { font-size: 1.2rem; }

/* ============================================================
   VEHICLE BOOKING MODAL
   ============================================================ */
.vehicle-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(7, 18, 33, 0.78);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.vehicle-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.vehicle-modal {
    width: 100%;
    max-width: 720px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.vehicle-modal-overlay.open .vehicle-modal {
    transform: translateY(0) scale(1);
}

.vehicle-modal::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--teal-light), var(--sky), var(--magenta), var(--coral), var(--gold));
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
    z-index: 2;
}

.vehicle-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(11, 25, 44, 0.08);
    color: var(--text);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
}

.vehicle-modal-close:hover {
    background: var(--coral);
    color: #fff;
    transform: rotate(90deg);
}

.vehicle-modal-scroll {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 2.5rem 2.5rem 2rem;
}

.vehicle-modal-scroll::-webkit-scrollbar { width: 8px; }
.vehicle-modal-scroll::-webkit-scrollbar-thumb { background: var(--teal-soft); border-radius: 8px; }

.vehicle-modal-header {
    margin-bottom: 0.5rem;
    padding-right: 40px;
}

.vehicle-modal-header h2 {
    text-align: left;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.5rem;
}

.vehicle-modal-sub {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vehicle-modal-vehicle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal-soft), rgba(255, 126, 51, 0.1));
    color: var(--teal-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 229, 0.25);
}

.vehicle-modal-vehicle i { color: var(--coral); }

.vehicle-modal-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0.5rem 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vehicle-modal-note i { color: var(--teal); }

.vehicle-booking-form .submit-button { margin-top: 0.5rem; }

/* Responsive modal */
@media (max-width: 600px) {
    .vehicle-modal-overlay { padding: 0; align-items: stretch; }
    .vehicle-modal { max-width: 100%; border-radius: 0; min-height: 100vh; }
    .vehicle-modal-scroll { padding: 2rem 1.25rem 1.5rem; max-height: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: linear-gradient(160deg, #0C1E35 0%, #0A1628 100%);
    color: #cdd6e0;
    padding: 4rem 5% 2rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--teal), var(--coral), var(--gold)) 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--maxw);
    margin: 0 auto;
}

.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.footer-logo-img { width: 50px; height: 50px; border-radius: 14px; border: 2px solid rgba(0, 201, 201, 0.3); }
.footer-logo h3 { color: #fff; font-size: 1.3rem; }

.footer-about p {
    color: #9aabb8;
    font-size: 0.9rem;
    line-height: 1.75;
    max-width: 360px;
    font-weight: 300;
}

.footer-contact h4, .footer-social h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.footer-contact p {
    color: #9aabb8;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.footer-contact i { color: var(--teal-light); width: 18px; }

.social-links { display: flex; flex-direction: column; gap: 0.8rem; }

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-wrapper:hover { transform: translateX(4px); }

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-wrapper:hover .social-icon {
    background: linear-gradient(135deg, var(--teal), var(--sky));
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 201, 201, 0.4);
}

.social-text { color: #cdd6e0; font-size: 0.9rem; }

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    color: #6a7a89;
    margin-top: 2.5rem;
    font-size: 0.82rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    font-weight: 300;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
    0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(8deg);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    section { padding: 4.5rem 5%; }

    .navbar { padding: 0.8rem 5%; }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 5%;
        right: 5%;
        width: auto;
        flex-direction: column;
        background: linear-gradient(160deg, #0C1E35 0%, #102A48 100%);
        padding: 1.5rem;
        gap: 1rem;
        border-radius: var(--radius);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(0, 201, 201, 0.25);
    }
    .nav-links.active { display: flex; }
    .nav-links a { width: 100%; }
    .nav-cta { text-align: center; }
    .menu-toggle { display: flex; }
    .brand-name { font-size: 1.05rem; }
    .brand-sub { font-size: 0.55rem; letter-spacing: 2px; }
    .logo { width: 46px; height: 46px; }

    .hero { padding-top: 110px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-button { width: 100%; max-width: 320px; justify-content: center; }

    .form-row { flex-direction: column; gap: 0; }
    .booking-container { padding: 2rem; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
    .footer-contact p { justify-content: center; }
    .footer-about p { margin: 0 auto; }
    .social-wrapper { justify-content: center; }
}

@media (max-width: 480px) {
    .logo { width: 42px; height: 42px; border-radius: 12px; }
    .dest-image, .fleet-image { height: 190px; }
    .brand-name { font-size: 0.95rem; }
}

/* ============================================================
   FORM BLOCKS (fieldset legend sections)
   ============================================================ */
.form-block {
    border: none;
    border-top: 2px dashed var(--border);
    margin: 1.5rem 0 0;
    padding: 1.5rem 0 0.5rem;
}

.form-block:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.form-block legend {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    padding: 0 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-block legend i {
    color: var(--teal);
}

.block-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0.5rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.block-note i { color: var(--teal); }

/* ============================================================
   PEOPLE COUNTER (stepper)
   ============================================================ */
.people-counter {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.people-counter input[type="number"] {
    width: 80px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    background: var(--bg);
    -moz-appearance: textfield;
}

.people-counter input[type="number"]::-webkit-outer-spin-button,
.people-counter input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pax-btn {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1.5px solid var(--border);
    border-radius: 50%;
    background: var(--bg);
    color: var(--teal);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.pax-btn:hover {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
    transform: scale(1.08);
}

.pax-btn:active {
    transform: scale(0.92);
}

/* ============================================================
   LIVE PRICE SUMMARY
   ============================================================ */
.price-summary {
    margin-top: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 229, 229, 0.08), rgba(13, 61, 92, 0.05));
    border: 1.5px solid rgba(0, 229, 229, 0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-line .price-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.78rem;
}

.price-line .price-value {
    font-weight: 600;
    color: var(--text);
}

.price-line.total {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1.5px solid var(--border);
}

.price-line.total .price-label {
    font-size: 1rem;
    color: var(--text);
}

.price-line.total .price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--teal);
}

.price-summary.has-total .price-line.total .price-value {
    animation: totalPulse 0.4s ease;
}

@keyframes totalPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.price-foot {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0.65rem 0 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.price-foot i { color: var(--teal); }

@media (max-width: 600px) {
    .price-line.total .price-value { font-size: 1.35rem; }
}

/* =============================================
   RATES TABLE SECTION
============================================= */
.rates-section {
    padding: 5rem 1.5rem;
    background: url("imagen 1.jpg") center/cover no-repeat;
    position: relative;
}

.rates-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.rates-container .section-eyebrow,
.rates-container h2,
.rates-container .section-sub {
    color: var(--text); /* dark text instead of white */
}

.rates-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem auto 0;
    max-width: 1100px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.03);
}

.rates-table thead {
    background: linear-gradient(135deg, var(--teal), var(--coral));
    position: sticky;
    top: 0;
    z-index: 2;
}

.rates-table th {
    padding: 1rem 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    text-align: left;
    white-space: nowrap;
}

.rates-table td {
    padding: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.rates-table tbody tr {
    transition: background 0.25s ease;
}

.rates-table tbody tr:hover {
    background: rgba(0,200,180,0.07);
}

.rates-table td:nth-child(4),
.rates-table td:nth-child(5) {
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.rates-table td:nth-child(3) {
    color: var(--text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

/* Book button in rates table */
.rate-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--teal), #00b89c);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rate-book-btn:hover {
    background: linear-gradient(135deg, #00b89c, var(--coral));
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,200,180,0.35);
}

.rate-book-btn:active {
    transform: scale(0.96);
}

/* Rates note under table */
.rates-note {
    max-width: 1100px;
    margin: 1.25rem auto 0;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.rates-note i {
    color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive rates table — mobile card layout */
@media (max-width: 768px) {
    .rates-section { padding: 4rem 4%; }

    .rates-container {
        padding: 1.8rem 1.2rem 2rem;
        border-radius: 18px;
    }

    .rates-container h2 { font-size: 1.5rem; }
    .rates-container .section-sub { font-size: 0.9rem; margin-bottom: 2rem; }

    .rates-table-wrap {
        border: none;
        box-shadow: none;
        overflow: visible;
    }

    .rates-table { background: transparent; }

    .rates-table thead { display: none; }

    /* Each row becomes a route card */
    .rates-table tbody tr {
        display: block;
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 1.1rem 1.1rem 0.9rem;
        margin-bottom: 0.85rem;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        position: relative;
    }

    .rates-table tbody tr:hover {
        background: var(--card-bg);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    /* Destination as card title — show "To" cell (2nd) as heading */
    .rates-table td:nth-child(2) {
        font-size: 1rem;
        font-weight: 700;
        font-family: 'Playfair Display', serif;
        color: var(--text);
        padding: 0 0 0.3rem 0;
        line-height: 1.3;
    }

    /* Hide "From" cell on mobile (same for all rows — shown in section heading) */
    .rates-table td:nth-child(1) {
        display: none;
    }

    /* Drive time — small badge below destination */
    .rates-table td:nth-child(3) {
        font-size: 0.75rem;
        color: var(--text-muted);
        padding: 0 0 0.7rem 0;
        border-bottom: 1px dashed var(--border);
        margin-bottom: 0.7rem;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

    .rates-table td:nth-child(3)::before {
        content: '\f017';
        font-family: 'Font Awesome 6 Free';
        font-weight: 400;
        display: inline;
        font-size: 0.7rem;
        color: var(--teal);
    }

    /* Prices row */
    .rates-table td:nth-child(4),
    .rates-table td:nth-child(5) {
        display: block;
        padding: 0;
        color: var(--teal);
    }

    /* Prices layout — stack on same visual row */
    .rates-table td:nth-child(4) {
        font-size: 0.82rem;
        font-weight: 600;
    }

    .rates-table td:nth-child(4)::before {
        content: 'One Way: ';
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-muted);
    }

    .rates-table td:nth-child(5) {
        font-size: 0.82rem;
        font-weight: 600;
        margin-top: 0.15rem;
    }

    .rates-table td:nth-child(5)::before {
        content: 'Round Trip: ';
        font-size: 0.68rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--text-muted);
    }

    /* Book button */
    .rates-table td:last-child {
        display: flex;
        justify-content: flex-end;
        margin-top: 0.7rem;
        padding: 0;
        border-bottom: none;
    }

    .rate-book-btn {
        padding: 0.5rem 1.4rem;
        font-size: 0.75rem;
        border-radius: 50px;
    }

    .rates-note {
        font-size: 0.72rem;
        flex-direction: column;
    }
}

/* Extra small screens */
@media (max-width: 420px) {
    .rates-container { padding: 1.2rem 0.9rem 1.5rem; }

    .rates-table tbody tr { padding: 0.9rem 0.9rem 0.75rem; }

    .rates-table td:nth-child(2) { font-size: 0.92rem; }
}
