/* ============================================
   BOOKING ENGINE — Tour Vallarta theme
   Warm orange palette · matches main site
   Accent: #cf4739
   ============================================ */

:root {
    /* Tour Vallarta palette */
    --sand:        #fff7f3;
    --sand-2:      #ffffff;
    --ink:         #1a1a1a;
    --ink-soft:    #555555;
    --ink-mute:    #888888;
    --sun:         #ff8a3d;     /* light orange */
    --sun-2:       #cf4739;     /* accent - red orange */
    --sea:         #cf4739;     /* aliased to accent */
    --sea-deep:    #a83426;
    --accent:      #cf4739;
    --orange-strong: #ff6b35;
    --orange-soft:   #ffb088;
    --gradient-orange: linear-gradient(135deg, #ff8a3d 0%, #ff6b35 50%, #cf4739 100%);
    --gradient-warm:   linear-gradient(135deg, #ff6b35 0%, #cf4739 50%, #ffb088 100%);
    --radius: 14px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    --shadow-sm: 0 8px 24px -12px rgba(26,26,26,.15);
    --shadow:    0 20px 50px -20px rgba(26,26,26,.22);
    --shadow-lg: 0 30px 60px -20px rgba(26,26,26,.30);
}

.bk-body * { box-sizing: border-box; }

.bk-body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: var(--sand);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bk-body h1, .bk-body h2, .bk-body h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin: 0;
}

.bk-body em { font-style: italic; color: var(--sun-2); }

/* Hide the legacy header that Header::getHeader emits */
.bk-body .mobile-header,
.bk-body .header.simple-header { display: none !important; }

/* =====================================================
   NAV (matches main Tour Vallarta site)
   ===================================================== */
.bk-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.bk-nav.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.bk-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bk-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity .3s;
}
.bk-logo:hover { opacity: .85; }
.bk-logo img {
    height: 56px;
    width: auto;
    transition: height .3s;
}
.bk-nav.scrolled .bk-logo img { height: 48px; }

.bk-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.bk-nav-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
    align-items: center;
}
.bk-nav-links ul a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: color .3s;
}
.bk-nav-links ul a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-orange);
    transition: width .3s;
}
.bk-nav-links ul a:hover { color: var(--accent); }
.bk-nav-links ul a:hover::after { width: 100%; }

.bk-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    background: var(--gradient-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(207,71,57,.35);
    transition: all .3s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
}
.bk-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(207,71,57,.5);
    filter: brightness(1.05);
}
.bk-nav-cta.active {
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(207,71,57,.35);
}

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

.bk-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-mute);
}
.bk-lang a {
    color: var(--ink-mute);
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color .25s;
}
.bk-lang a.active { color: var(--accent); }
.bk-lang a:hover { color: var(--accent); }
.bk-lang-sep { color: var(--ink-mute); opacity: .5; }

.bk-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
}
.bk-hamburger span {
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: all .3s;
}

/* Mobile menu */
.bk-mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--gradient-warm);
    z-index: 200;
    padding: 60px 30px 30px;
    transition: right .4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.bk-mobile-menu.open { right: 0; }
.bk-mobile-close {
    position: absolute;
    top: 20px; right: 20px;
    color: #fff;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}
.bk-mobile-logo { height: 70px; width: auto; margin: 0 auto 30px; }
.bk-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bk-mobile-menu ul a {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
    text-decoration: none;
}
.bk-mobile-menu ul li:last-child a {
    border: none;
    background: #fff;
    color: var(--accent);
    text-align: center;
    border-radius: 50px;
    margin-top: 20px;
    padding: 14px 24px;
}
.bk-mobile-info {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.2);
}
.bk-mobile-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    font-size: 14px;
}

@media (max-width: 900px) {
    .bk-nav-links { display: none; }
    .bk-hamburger { display: flex; }
}

/* =====================================================
   HERO
   ===================================================== */
.bk-hero {
    position: relative;
    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    padding: 120px 2rem 8rem;
}

.bk-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(20,15,10,.45), rgba(20,15,10,.55)),
        linear-gradient(135deg, #ff8a3d 0%, #ff6b35 35%, #cf4739 70%, #a83426 100%);
    background-size: 200% 200%;
    animation: bkGradientShift 14s ease infinite;
}

.bk-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(255,176,136,.25) 0, transparent 35%);
    animation: bkFloat 20s ease-in-out infinite alternate;
}

@keyframes bkGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

@keyframes bkFloat {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-30px, 20px) scale(1.1); }
}

.bk-hero-waves {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}

.bk-hero-waves svg {
    width: 100%; height: 110px;
    display: block;
}

.bk-hero-content {
    max-width: 760px;
    z-index: 1;
}

.bk-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .25em;
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    margin-bottom: 1rem;
}

.bk-eyebrow.dark { color: var(--sun-2); }

.bk-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 1.2rem;
}

.bk-hero h1 .accent {
    background: linear-gradient(120deg, #ffb088, #ff8a3d, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bk-hero h1 {
    font-family: 'Playfair Display', serif;
}

.bk-lede {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    max-width: 540px;
    margin: 0 auto;
    color: rgba(255,255,255,.92);
    font-weight: 300;
}

/* =====================================================
   FORM CARD (lifted on top of hero curve)
   ===================================================== */
.bk-form-section {
    background: var(--sand);
    padding: 0 1.5rem 3.5rem;
    position: relative;
    z-index: 2;
}

.bk-form-card {
    max-width: 880px;
    margin: 100px auto 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.6rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.bk-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 2.6rem; right: 2.6rem;
    height: 4px;
    background: linear-gradient(90deg, var(--sun), var(--sun-2), var(--accent));
    border-radius: 0 0 4px 4px;
}

.bk-form-head {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(26, 26, 26,.06);
}

.bk-form-head h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    color: var(--ink);
    margin-bottom: .4rem;
}

.bk-form-head p {
    color: var(--ink-soft);
    font-size: .92rem;
    margin: 0;
}

@media (max-width: 700px) {
    .bk-form-card { padding: 1.8rem 1.4rem; margin-top: 70px; }
}

/* Travel type pills */
.bk-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--sand-2);
    border-radius: var(--radius-pill);
    padding: 5px;
    margin-bottom: 1.6rem;
}

.bk-toggle label { cursor: pointer; margin: 0; position: relative; }

.bk-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bk-toggle .pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: var(--radius-pill);
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.bk-toggle input:checked ~ .pill {
    background: linear-gradient(135deg, var(--sun), var(--sun-2));
    color: #fff;
    box-shadow: 0 8px 20px rgba(207, 71, 57,.3);
}

.bk-toggle label:hover .pill { color: var(--ink); }
.bk-toggle input:checked ~ .pill:hover { color: #fff; }

/* Form grid */
.bk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.2rem;
    margin-bottom: 1.8rem;
}

.bk-grid .full { grid-column: 1 / -1; }

@media (max-width: 600px) { .bk-grid { grid-template-columns: 1fr; } }

/* Field */
.bk-fld { position: relative; }

.bk-fld-label {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: .5rem;
}

.bk-fld-label .req { color: var(--sun-2); font-size: .85rem; }

.bk-fld input,
.bk-fld select {
    width: 100%;
    height: 52px;
    padding: 0 1rem 0 2.8rem;
    background: var(--sand-2);
    border: 1.5px solid transparent;
    border-radius: 14px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    outline: none;
    transition: all .25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.bk-fld input::placeholder { color: var(--ink-mute); }

.bk-fld input:hover,
.bk-fld select:hover {
    background: #fff;
    border-color: rgba(207, 71, 57,.2);
}

.bk-fld input:focus,
.bk-fld select:focus {
    background: #fff;
    border-color: var(--sun-2);
    box-shadow: 0 0 0 4px rgba(207, 71, 57,.10);
}

.bk-fld input:disabled {
    background: var(--sand-2);
    color: var(--ink);
    cursor: not-allowed;
    opacity: .9;
}

.bk-fld-icon {
    position: absolute;
    left: 1rem;
    bottom: 17px;
    color: var(--sun-2);
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
}

.bk-fld.has-select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    bottom: 18px;
    color: var(--sun-2);
    font-size: .75rem;
    pointer-events: none;
}

.bk-return-row.hidden {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    margin: 0;
}

/* CTA button */
.bk-submit {
    width: 100%;
    padding: 1.05rem 2rem;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--sun), var(--sun-2));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 12px 30px rgba(207, 71, 57,.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    text-transform: uppercase;
}

.bk-submit:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 40px rgba(207, 71, 57,.5);
}

.bk-submit i { font-size: 1rem; }

/* =====================================================
   SELECTIZE OVERRIDE (warm theme)
   ===================================================== */
.bk-form-card .selectize-input {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 16px 36px 16px 44px !important;
    background: var(--sand-2) !important;
    border: 1.5px solid transparent !important;
    border-radius: 14px !important;
    color: var(--ink) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: .95rem !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
}

.bk-form-card .selectize-input.input-active,
.bk-form-card .selectize-input.focus {
    background: #fff !important;
    border-color: var(--sun-2) !important;
    box-shadow: 0 0 0 4px rgba(207, 71, 57,.10) !important;
}

.bk-form-card .selectize-input input {
    color: var(--ink) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: .95rem !important;
}

.bk-form-card .selectize-input > div.item {
    color: var(--ink) !important;
    font-weight: 600;
}

.bk-form-card .selectize-input::after {
    border: none !important;
    content: '\f078' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    color: var(--sun-2) !important;
    font-size: .75rem !important;
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}

.selectize-dropdown {
    background: #fff !important;
    border: 1px solid rgba(26, 26, 26,.08) !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 50px -10px rgba(26, 26, 26,.20) !important;
    color: var(--ink) !important;
    margin-top: 6px !important;
    overflow: hidden !important;
    padding: 6px !important;
}

.selectize-dropdown .option {
    color: var(--ink) !important;
    padding: .8rem 1rem !important;
    border-radius: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: .9rem !important;
    font-weight: 500 !important;
    transition: all .15s ease !important;
}

.selectize-dropdown .option.active,
.selectize-dropdown .option:hover {
    background: linear-gradient(135deg, rgba(255, 138, 61,.08), rgba(207, 71, 57,.10)) !important;
    color: var(--sun-2) !important;
}

.selectize-dropdown .option.selected {
    background: linear-gradient(135deg, var(--sun), var(--sun-2)) !important;
    color: #fff !important;
}

/* =====================================================
   DATEPICKER OVERRIDE (warm theme)
   ===================================================== */
.datepicker-picker {
    background: #fff !important;
    border: 1px solid rgba(26, 26, 26,.08) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px -10px rgba(26, 26, 26,.20) !important;
    color: var(--ink) !important;
    padding: 8px !important;
    font-family: 'Inter', sans-serif !important;
}

.datepicker-header { background: transparent !important; }

.datepicker-controls .button {
    background: transparent !important;
    color: var(--ink) !important;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

.datepicker-controls .button:hover {
    background: rgba(207, 71, 57,.08) !important;
    color: var(--sun-2) !important;
}

.datepicker .dow {
    color: var(--ink-mute) !important;
    font-weight: 700 !important;
    font-size: .7rem !important;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.datepicker-cell {
    color: var(--ink) !important;
    border-radius: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: .85rem !important;
    font-weight: 500 !important;
}

.datepicker-cell:not(.disabled):hover {
    background: rgba(207, 71, 57,.08) !important;
    color: var(--sun-2) !important;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover {
    background: linear-gradient(135deg, var(--sun), var(--sun-2)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 14px rgba(207, 71, 57,.35);
}

.datepicker-cell.today:not(.selected) {
    background: rgba(255, 176, 136,.18) !important;
    color: var(--sun) !important;
    font-weight: 700 !important;
}

.datepicker-cell.disabled { color: rgba(26, 26, 26,.18) !important; }
.datepicker-cell.next:not(.selected),
.datepicker-cell.prev:not(.selected) { color: rgba(26, 26, 26,.30) !important; }

/* =====================================================
   VEHICLES SELECTION
   ===================================================== */
.bk-vehicles-section {
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%);
}

.bk-vehicles-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.bk-vehicles-head {
    text-align: center;
    margin-bottom: 3rem;
}

.bk-vehicles-head h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--ink);
    margin-bottom: .6rem;
}

.bk-vehicles-head p {
    color: var(--ink-soft);
    font-size: 1rem;
    margin: 0;
}

.bk-vehicles-list {
    display: grid;
    gap: 1.4rem;
}

.bk-vehicle-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.8rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    border: 1px solid rgba(26, 26, 26,.04);
}

.bk-vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(207, 71, 57,.2);
}

@media (max-width: 800px) {
    .bk-vehicle-card { grid-template-columns: 1fr; padding: 1.3rem; }
}

.bk-vehicle-img {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.bk-vehicle-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 26,.25) 100%);
}

.bk-vehicle-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

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

.bk-vehicle-info {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.bk-vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.bk-vehicle-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.bk-vehicle-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--sun), var(--sun-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bk-vehicle-meta {
    display: flex;
    gap: 1.2rem;
    font-size: .85rem;
    color: var(--ink-soft);
}

.bk-vehicle-meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.bk-vehicle-meta i { color: var(--sun-2); }

.bk-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .35rem 1rem;
}

.bk-amenities li {
    font-size: .82rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.bk-amenities i {
    color: var(--sun-2);
    font-size: .75rem;
    width: 14px;
}

.bk-select-vehicle {
    margin-top: .6rem;
    align-self: flex-start;
    padding: .75rem 1.6rem;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--sun), var(--sun-2));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 8px 20px rgba(207, 71, 57,.3);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.bk-select-vehicle:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(207, 71, 57,.45);
}

.bk-not-found {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: #fff;
    border-radius: var(--radius);
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
}

/* =====================================================
   FOOTER (simple, single line — used by destinos inline)
   ===================================================== */
.bk-footer {
    padding: 2rem;
    background: #1a1a1a;
    color: rgba(255,255,255,.6);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .9rem;
}

.bk-footer a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .3s;
}

.bk-footer a:hover { color: var(--accent); }
.bk-footer-links { display: flex; gap: 1.5rem; }

/* =====================================================
   FOOTER RICH (multi-column, used by Footer::getFooter)
   ===================================================== */
.bk-footer-rich {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a1810 100%);
    color: rgba(255,255,255,.65);
    padding: 4.5rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.bk-footer-rich::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-orange);
}

.bk-footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 18px;
}

/* Footer CTA strip (above the rich footer) */
.bk-footer-cta {
    background: var(--gradient-warm);
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.bk-footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0, transparent 50%);
}
.bk-footer-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.bk-footer-cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    margin: 4px 0 6px;
}
.bk-footer-cta-inner p { opacity: .92; margin: 0; }
.bk-eyebrow-light {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange-soft);
    margin-bottom: 10px;
}
.bk-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: #fff;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.bk-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.bk-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 900px) { .bk-footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .bk-footer-inner { grid-template-columns: 1fr; } }

.bk-footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.2rem;
}

.bk-footer-brand .bk-logo {
    color: #fff;
    margin-bottom: 1rem;
}

.bk-footer-about {
    font-size: .92rem;
    line-height: 1.65;
    color: rgba(255,255,255,.6);
    max-width: 320px;
    margin-bottom: 1.4rem;
}

.bk-footer-social {
    display: flex;
    gap: .6rem;
}

.bk-footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    transition: all .25s ease;
    text-decoration: none;
}

.bk-footer-social a:hover {
    background: linear-gradient(135deg, var(--sun), var(--sun-2));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(207, 71, 57,.4);
}

.bk-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.bk-footer-col ul a,
.bk-footer-col ul span {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .25s ease;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    line-height: 1.5;
}

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

.bk-footer-col ul i {
    color: var(--sun-2);
    font-size: .85rem;
    width: 16px;
}

.bk-footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}

.bk-footer-legal { display: flex; gap: 1.2rem; }

.bk-footer-legal a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: color .25s ease;
}

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

/* =====================================================
   CONTACT-DETAILS PAGE OVERRIDES
   (Re-styles existing .section / .form-element / etc.)
   ===================================================== */
.bk-body { background: var(--sand); }

.bk-body .section.confirmation-section,
.bk-body > .section,
.bk-body .section:not(.bk-form-section):not(.bk-vehicles-section):not(.bk-hero) {
    padding: 7rem 1.5rem 1.5rem;
    max-width: none;
    background: var(--sand);
}

.bk-body .section .section-container {
    max-width: 1180px;
    margin: 0 auto;
}

.bk-body .section .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .8rem;
}

.bk-body > .section > .section-container > div:nth-child(2) {
    color: var(--ink-soft);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 720px;
}

/* Two-column layout (summary | form) */
.bk-body .flex {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .bk-body .flex {
        grid-template-columns: 1fr;
    }
}

.bk-body .w-30, .bk-body .w-70, .bk-body .w-50, .bk-body .w-100 { width: 100%; }

/* SUMMARY CARD */
.bk-body .summary-section {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.bk-body .summary-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(26, 26, 26,.08);
}

.bk-body .summary-section-content { display: flex; flex-direction: column; gap: .9rem; }

.bk-body .summary-row {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.bk-body .summary-row .row-title {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 700;
    color: var(--ink-mute);
}

.bk-body .summary-row .row-details {
    font-size: .92rem;
    color: var(--ink);
    font-weight: 500;
}

.bk-body .summary-row .row-details.total {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--sun), var(--sun-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.bk-body .summary-row:last-child {
    padding-top: .9rem;
    border-top: 1px solid rgba(26, 26, 26,.08);
}

/* FORM CONTAINER (right column) */
.bk-body .w-70 .section {
    background: transparent;
    padding: 0;
}

.bk-body .form-section {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.4rem;
}

.bk-body .form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(26, 26, 26,.08);
}

.bk-body .form-section-content { display: flex; flex-direction: column; gap: 1rem; }

.bk-body .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bk-body .form-row > .w-100 { grid-column: 1 / -1; }

@media (max-width: 600px) {
    .bk-body .form-row { grid-template-columns: 1fr; }
}

/* INPUT / SELECT / TEXTAREA */
.bk-body .form-element { position: relative; display: block; }

.bk-body .form-element .label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: .45rem;
}

.bk-body .form-element input[type="text"],
.bk-body .form-element input[type="email"],
.bk-body .form-element select,
.bk-body .form-element textarea {
    width: 100%;
    padding: .85rem 1rem;
    background: var(--sand-2);
    border: 1.5px solid transparent;
    border-radius: 12px;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    outline: none;
    transition: all .25s ease;
}

.bk-body .form-element textarea {
    min-height: 110px;
    resize: vertical;
}

.bk-body .form-element input:focus,
.bk-body .form-element select:focus,
.bk-body .form-element textarea:focus {
    background: #fff;
    border-color: var(--sun-2);
    box-shadow: 0 0 0 4px rgba(207, 71, 57,.10);
}

.bk-body .form-element input:hover,
.bk-body .form-element select:hover,
.bk-body .form-element textarea:hover {
    background: #fff;
    border-color: rgba(207, 71, 57,.2);
}

.bk-body .form-element .error {
    display: none;
    font-size: .78rem;
    color: var(--sun-2);
    margin-top: .35rem;
    font-weight: 500;
}

.bk-body .dirty .form-element input:invalid,
.bk-body .dirty .form-element select:invalid,
.bk-body .dirty .form-element textarea:invalid {
    border-color: var(--sun-2);
    background: rgba(207, 71, 57,.04);
}

.bk-body .dirty .form-element input:invalid ~ .error,
.bk-body .dirty .form-element select:invalid ~ .error,
.bk-body .dirty .form-element textarea:invalid ~ .error {
    display: block;
}

/* CHECKBOX */
.bk-body .form-element.checkbox {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .9rem 1rem;
    background: var(--sand-2);
    border-radius: 12px;
    cursor: pointer;
    transition: all .25s ease;
}

.bk-body .form-element.checkbox:hover { background: #fff; box-shadow: var(--shadow-sm); }

.bk-body .form-element.checkbox input[type="checkbox"] {
    width: 20px; height: 20px;
    cursor: pointer;
    accent-color: var(--sun-2);
}

.bk-body .form-element.checkbox .label {
    margin: 0;
    font-size: .92rem;
    text-transform: none;
    letter-spacing: 0;
    color: var(--ink);
    font-weight: 500;
}

/* RADIO PAYMENT METHOD */
.bk-body .form-element.radio2 {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.2rem;
    background: var(--sand-2);
    border: 1.5px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    transition: all .25s ease;
}

.bk-body .form-element.radio2:hover { background: #fff; border-color: rgba(207, 71, 57,.2); }

.bk-body .form-element.radio2 input[type="radio"] {
    width: 20px; height: 20px;
    cursor: pointer;
    accent-color: var(--sun-2);
}

.bk-body .form-element.radio2 input[type="radio"]:checked ~ * {
    color: var(--sun-2);
}

.bk-body .form-element.radio2 .radio-icons {
    display: flex;
    gap: .5rem;
    font-size: 1.8rem;
    color: var(--ink-soft);
}

.bk-body .form-element.radio2 .radio-icons i { transition: transform .2s ease; }
.bk-body .form-element.radio2:hover .radio-icons i { transform: translateY(-2px); }

.bk-body .form-element.radio2 .radio-label {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
}

/* BUTTON (.btn used in contact-details and confirmation) */
.bk-body .btn,
.bk-body .btn-container .btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--sun), var(--sun-2));
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 12px 28px rgba(207, 71, 57,.32);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
}

.bk-body .btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 16px 36px rgba(207, 71, 57,.45);
}

.bk-body .btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* HIDE LEGACY HEADER FROM Header::getHeader */
.bk-body .mobile-header,
.bk-body .header.simple-header { display: none !important; }

/* =====================================================
   CONFIRMATION PAGE OVERRIDES
   ===================================================== */
.bk-body .confirmation-section {
    padding: 9rem 1.5rem 5rem !important;
    min-height: 90vh;
    background: var(--sand) !important;
}

.bk-body .confirmation-form {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bk-body .confirmation-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--sun), var(--sun-2), var(--accent));
}

.bk-body .confirmation-form .form-icon {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sun), var(--sun-2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    color: #fff;
    font-size: 2.6rem;
    box-shadow: 0 16px 40px rgba(207, 71, 57,.4);
    animation: bkConfirmPop .7s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes bkConfirmPop {
    0%   { opacity: 0; transform: scale(.4) rotate(-12deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

.bk-body .confirmation-form .form-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .8rem;
    line-height: 1.15;
}

.bk-body .confirmation-form .form-subtitle,
.bk-body .confirmation-form .text {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.bk-body .confirmation-form .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 1.2rem;
    background: var(--sand-2);
    border-radius: 12px;
    margin-bottom: .55rem;
    text-align: left;
    grid-template-columns: unset;
}

.bk-body .confirmation-form .form-row .row-title {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--ink-mute);
}

.bk-body .confirmation-form .form-row .row-details {
    font-size: .95rem;
    color: var(--ink);
    font-weight: 600;
    text-align: right;
}

.bk-body .confirmation-form .form-row.total {
    background: linear-gradient(135deg, rgba(255, 138, 61,.08), rgba(207, 71, 57,.10));
    margin-top: 1rem;
    padding: 1.2rem 1.4rem;
    border: 1.5px solid rgba(207, 71, 57,.2);
}

.bk-body .confirmation-form .form-row.total .row-title {
    font-size: .85rem;
    color: var(--ink);
}

.bk-body .confirmation-form .form-row.total .row-details {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--sun), var(--sun-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.bk-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}

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

/* =====================================================
   LEGACY BUTTON OVERRIDES (styles.css → Tour Vallarta)
   ===================================================== */
.bk-body .btn {
    background: var(--gradient-orange) !important;
    color: #fff !important;
    border: 2px solid transparent !important;
    border-radius: 50px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 20px rgba(207,71,57,.35) !important;
    transition: all .3s cubic-bezier(.4,0,.2,1) !important;
}
.bk-body .btn:hover {
    background: var(--gradient-orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(207,71,57,.5) !important;
    filter: brightness(1.05);
}
.bk-body .btn.secondary {
    background: transparent !important;
    color: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    box-shadow: none !important;
}
.bk-body .btn.secondary:hover {
    background: var(--gradient-orange) !important;
    color: #fff !important;
}

/* Transport section header background → warm */
.bk-body .transport-section {
    background: var(--gradient-warm) !important;
}

/* Section subtitle / labels using legacy red */
.bk-body .summary-row .row-details strong,
.bk-body .price,
.bk-body .total-price {
    color: var(--accent) !important;
}

/* Legacy borders → soft */
.bk-body .list-item,
.bk-body .summary-row + .summary-row {
    border-color: rgba(26,26,26,.08) !important;
}

/* =====================================================
   CART BANNER (destinos page when tours in session)
   ===================================================== */
.bk-cart-banner {
    background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
    padding: 40px 24px 60px;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

/* When the cart banner is present, the form card below should NOT use
   its negative margin (which is meant to overlap the hero wave directly). */
.bk-cart-banner + .bk-form-section { padding-top: 1rem; }
.bk-cart-banner + .bk-form-section .bk-form-card { margin-top: 0; }
@media (max-width: 700px) {
    .bk-cart-banner + .bk-form-section .bk-form-card { margin-top: 0; }
}
.bk-cart-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: 0 20px 60px rgba(26,26,26,.10);
    border-top: 4px solid transparent;
    border-image: var(--gradient-orange) 1;
}
.bk-cart-banner-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.bk-cart-banner-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: var(--ink);
    margin: 6px 0 8px;
}
.bk-cart-banner-head p {
    color: var(--ink-soft);
    font-size: 14px;
    margin: 0;
    max-width: 520px;
}
.bk-cart-banner-total {
    text-align: right;
    background: var(--gradient-warm);
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    min-width: 200px;
}
.bk-cart-banner-total span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .9;
    margin-bottom: 4px;
}
.bk-cart-banner-total strong {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

.bk-cart-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 16px 0;
    border-top: 1px solid rgba(26,26,26,.08);
    border-bottom: 1px solid rgba(26,26,26,.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bk-cart-list li {
    display: flex;
    align-items: center;
    gap: 14px;
}
.bk-cart-list img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.bk-cart-item-info { flex-grow: 1; min-width: 0; }
.bk-cart-item-info strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 2px;
}
.bk-cart-item-info span {
    font-size: 13px;
    color: var(--ink-soft);
}

.bk-cart-banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.bk-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    font-family: 'Poppins', sans-serif;
}
.bk-cart-btn-primary {
    background: var(--gradient-orange);
    color: #fff;
    box-shadow: 0 8px 20px rgba(207,71,57,.35);
    flex-grow: 1;
    justify-content: center;
}
.bk-cart-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(207,71,57,.5);
    filter: brightness(1.05);
}
.bk-cart-btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border-color: rgba(26,26,26,.15);
}
.bk-cart-btn-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 700px) {
    .bk-cart-banner-inner { padding: 26px 22px; }
    .bk-cart-banner-head { flex-direction: column; }
    .bk-cart-banner-total { width: 100%; text-align: center; }
    .bk-cart-banner-actions { flex-direction: column; align-items: stretch; }
    .bk-cart-btn { width: 100%; justify-content: center; }
}
