/* Blue Cave Tour - custom styles over Bootstrap */

:root {
    --bct-navy: #0a2540;
    --bct-navy-light: #0f3558;
    --bct-blue: #1a6b9a;
    --bct-sky: #4da8da;
    --bct-sand: #f7f5f0;
    --bct-sand-dark: #ece8df;
    --bct-gold: #c9a227;
    --bct-gold-hover: #ddb92e;
    --bct-white: #ffffff;
    --bct-text: #1e2d3d;
    --bct-muted: #5a6b7d;
    --bct-border: #dde4ec;
    --bct-radius: 0.75rem;
    --bct-radius-lg: 1rem;
    --bct-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
    --bct-shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.12);
    --bct-font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family: var(--bct-font);
    color: var(--bct-text);
    background-color: var(--bct-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
}

main {
    overflow-x: clip;
    max-width: 100%;
}

/* Inline textual links in page content */
.text-link,
.overview-meeting-link {
    color: var(--bct-blue);
    font-weight: 600;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible,
.overview-meeting-link:hover,
.overview-meeting-link:focus-visible {
    text-decoration: underline;
}

img,
picture,
video,
svg {
    max-width: 100%;
}

:focus-visible {
    outline: 3px solid var(--bct-sky);
    outline-offset: 2px;
}

/* ── Header & Nav ── */

.site-header {
    background: var(--bct-navy);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(10, 37, 64, 0.15);
    padding-top: env(safe-area-inset-top, 0);
}

.site-header .navbar {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    gap: 0.5rem;
}

.site-header .container {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

.site-header .navbar-brand {
    display: flex;
    align-items: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-right: 0.5rem;
}

.site-logo {
    display: block;
    width: auto;
    height: 40px;
    max-width: min(200px, 48vw);
}

.navbar-tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.site-header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
    padding: 0.4rem 0.55rem;
}

.site-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(77, 168, 218, 0.35);
}

.site-header .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible {
    color: var(--bct-sky) !important;
}

.lang-switcher .dropdown-toggle {
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 0.85rem;
    padding: 0.35rem 0.7rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.lang-switcher .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bct-white);
}

.lang-switcher__flag {
    width: 1.15em;
    line-height: 1em;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.skip-link:focus {
    z-index: 1100;
}

.lang-switcher .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

@media (min-width: 992px) {
    .navbar-tools {
        display: none;
    }

    .site-header .container {
        padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar {
        flex-wrap: wrap;
        align-items: center;
        column-gap: 0.5rem;
        row-gap: 0;
    }

    .site-header .navbar-brand {
        flex: 1 1 0;
        min-width: 0;
        margin-right: 0;
        max-width: calc(100% - 9.5rem);
    }

    .site-logo {
        max-width: 100%;
        height: 36px;
    }

    .navbar-tools {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-end;
        gap: 0.4rem;
        flex: 0 0 auto;
        width: auto;
        margin-left: auto;
    }

    .navbar-tools .lang-switcher {
        display: flex;
        flex: 0 0 auto;
    }

    .navbar-tools .lang-switcher .dropdown-toggle {
        padding: 0.3rem 0.55rem;
        font-size: 0.8rem;
    }

    .site-header .navbar-collapse {
        flex: 1 0 100%;
        width: 100%;
        max-width: 100%;
        margin-top: 0.65rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-header .container {
        padding-left: max(1.15rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.15rem, env(safe-area-inset-right, 0px));
    }

    .site-header .navbar-nav .nav-item {
        padding: 0.1rem 0;
    }

    .site-header .btn-book-nav {
        margin-top: 0.35rem;
        margin-bottom: 0.35rem;
    }
}


.btn-book-nav {
    background: var(--bct-gold);
    color: var(--bct-navy);
    font-weight: 600;
    border: none;
    padding: 0.45rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.15s;
}

.btn-book-nav:hover {
    background: var(--bct-gold-hover);
    color: var(--bct-navy);
    transform: translateY(-1px);
}

/* ── Hero ── */

.hero {
    position: relative;
    min-height: clamp(480px, 68vh, 720px);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bct-navy) 0%, var(--bct-navy-light) 50%, var(--bct-blue) 100%);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 37, 64, 0.93) 35%, rgba(10, 37, 64, 0.6) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--bct-white);
    padding: 4rem 0;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero__lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 580px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero__prices {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero__price-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--bct-radius);
    padding: 0.85rem 1.25rem;
    backdrop-filter: blur(6px);
    min-width: 148px;
}

.hero__price-card .tier-name {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
}

.hero__price-card .tier-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bct-white);
}

.hero__price-card .tier-note {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
}

.btn-hero-primary {
    background: var(--bct-gold);
    color: var(--bct-navy);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    border: none;
    font-size: 1rem;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}

.btn-hero-primary:hover {
    background: var(--bct-gold-hover);
    color: var(--bct-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--bct-white);
    border: 2px solid rgba(255, 255, 255, 0.45);
    font-weight: 600;
    padding: 0.8rem 1.75rem;
    border-radius: 2rem;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
    border-color: var(--bct-white);
    background: rgba(255, 255, 255, 0.12);
    color: var(--bct-white);
}

/* ── Sections ── */

.section {
    padding: 5rem 0;
}

.section--sand {
    background: var(--bct-sand);
}

.section--sky {
    background: linear-gradient(135deg, #f7fbfe 0%, #eef6fb 100%);
}

.section--navy {
    background: var(--bct-navy);
    color: var(--bct-white);
}

.section--booking {
    background: linear-gradient(165deg, var(--bct-navy) 0%, var(--bct-navy-light) 55%, #0d3a5c 100%);
    color: var(--bct-white);
    padding-bottom: 6rem;
}

.section__eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--bct-blue);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.section--navy .section__eyebrow,
.section--booking .section__eyebrow {
    color: var(--bct-sky);
}

.section h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.45rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bct-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section--navy h2,
.section--booking h2 {
    color: var(--bct-white);
}

.section h3.h4,
.section h3.h5 {
    color: var(--bct-navy);
    font-weight: 700;
}

.section__intro {
    color: var(--bct-muted);
    max-width: 680px;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.section--navy .section__intro,
.section--booking .section__intro {
    color: rgba(255, 255, 255, 0.82);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header .section__intro,
.section-header .section__eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.section-header .section__intro {
    margin-bottom: 0;
}

.section .text-muted {
    color: var(--bct-muted) !important;
}

/* ── Image placeholders ── */

.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e4edf4 0%, #cddbe8 100%);
    border: 2px dashed #9eb4c8;
    border-radius: var(--bct-radius);
    color: var(--bct-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.img-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.18) 10px,
        rgba(255, 255, 255, 0.18) 20px
    );
    pointer-events: none;
}

.img-placeholder span {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.92);
    padding: 0.45rem 0.85rem;
    border-radius: 0.35rem;
    color: var(--bct-text);
}

.img-placeholder--hero {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
}

.img-placeholder--16x9 { aspect-ratio: 16 / 9; width: 100%; }
.img-placeholder--4x3  { aspect-ratio: 4 / 3;  width: 100%; }
.img-placeholder--3x2  { aspect-ratio: 3 / 2;  width: 100%; }
.img-placeholder--square { aspect-ratio: 1 / 1; width: 100%; }

/* ── Responsive cropped images (picture / figure) ── */

.bct-media {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.bct-media picture,
.bct-media > picture {
    display: block;
    width: 100%;
    height: 100%;
}

.bct-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bct-media--16x9 { aspect-ratio: 16 / 9; }
.bct-media--4x3  { aspect-ratio: 4 / 3; }
.bct-media--3x2  { aspect-ratio: 3 / 2; }
.bct-media--1x1  { aspect-ratio: 1 / 1; }

.content-figure {
    margin: 0;
}

.content-figure picture {
    display: block;
    border-radius: var(--bct-radius);
    overflow: hidden;
    box-shadow: var(--bct-shadow);
    aspect-ratio: 4 / 3;
}

.content-figure picture,
.content-figure img {
    width: 100%;
}

.content-figure img {
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content-figure__caption {
    margin: 0.45rem 0.15rem 0;
    font-size: 0.82rem;
    line-height: 1.35;
    color: var(--bct-muted);
    font-style: italic;
}

.itinerary-media {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .itinerary-media {
        position: sticky;
        top: 5.5rem;
        align-self: flex-start;
    }
}

/* ── Overview cards ── */

.overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.overview-intro-card {
    background: linear-gradient(135deg, #f7fbfe 0%, #eef6fb 100%);
    border: 1px solid #d7e6f1;
    border-radius: var(--bct-radius-lg);
    padding: 2rem;
    box-shadow: var(--bct-shadow);
}

.overview-intro-card .section__intro {
    margin-bottom: 1rem;
}

.overview-intro-note {
    color: var(--bct-navy);
    font-size: 0.96rem;
    line-height: 1.7;
    padding-left: 1rem;
    border-left: 3px solid var(--bct-sky);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.overview-card {
    background: var(--bct-white);
    border-radius: var(--bct-radius-lg);
    padding: 1.35rem;
    box-shadow: var(--bct-shadow);
    border: 1px solid var(--bct-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.overview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--bct-shadow-lg);
}

.overview-card__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--bct-blue);
    margin-bottom: 0.65rem;
}

.overview-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bct-navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.overview-card p {
    font-size: 0.9rem;
    color: var(--bct-muted);
    margin: 0;
    line-height: 1.6;
}

.overview-included {
    background: var(--bct-white);
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--bct-shadow);
}

.overview-included__header {
    margin-bottom: 1.25rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1.25rem;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--bct-text);
    line-height: 1.55;
}

.included-list li::before {
    content: "✓";
    color: var(--bct-blue);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.overview-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.overview-note-card {
    background: #fbfcfd;
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    padding: 1.4rem 1.5rem;
}

.overview-note-card h3 {
    margin-bottom: 0.6rem;
}

.overview-note-card__highlight {
    color: var(--bct-navy);
    font-size: 0.95rem;
    line-height: 1.45;
    padding-left: 0.75rem;
    border-left: 3px solid var(--bct-sky);
}

.overview-note-card--meeting {
    grid-column: 1 / -1;
}

.overview-meeting-link {
    font-size: 0.9rem;
}

.included-optional-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.overview-optional {
    background: #f8fbfd;
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--bct-shadow);
}

.optional-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.optional-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--bct-text);
    line-height: 1.55;
}

.optional-list__badge {
    flex-shrink: 0;
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bct-muted);
    border: 1px dashed #c5d9e8;
    border-radius: 999px;
    padding: 0.15rem 0.45rem;
    margin-top: 0.1rem;
}

.optional-list li::before {
    content: "+";
    color: var(--bct-gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ── Pricing breakdown ── */

.pricing-breakdown {
    max-width: 58rem;
    margin: 0 auto;
}

.pricing-breakdown__equation {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-breakdown__term,
.pricing-breakdown__result {
    flex: 1 1 160px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.35rem 1.1rem;
    border-radius: var(--bct-radius-lg);
    background: var(--bct-white);
    border: 1px solid #d7e6f1;
    box-shadow: 0 4px 20px rgba(26, 107, 154, 0.06);
}

.pricing-breakdown__term--fixed {
    border-color: rgba(26, 107, 154, 0.32);
    box-shadow: 0 6px 24px rgba(26, 107, 154, 0.1);
}

.pricing-breakdown__term--optional {
    border-style: dashed;
    border-color: #c5d9e8;
}

.pricing-breakdown__result {
    border-color: var(--bct-navy);
    background: linear-gradient(160deg, #ffffff 0%, #f0f7fc 100%);
    box-shadow: 0 6px 24px rgba(10, 37, 64, 0.1);
}

.pricing-breakdown__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.7rem;
    border-radius: 50%;
    background: #eef6fb;
    color: var(--bct-blue);
    font-size: 1rem;
}

.pricing-breakdown__icon--result {
    background: var(--bct-navy);
    color: var(--bct-white);
}

.pricing-breakdown__badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bct-blue);
    margin-bottom: 0.35rem;
}

.pricing-breakdown__term--optional .pricing-breakdown__badge {
    color: var(--bct-muted);
}

.pricing-breakdown__label {
    color: var(--bct-navy);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.pricing-breakdown__amount {
    color: var(--bct-navy);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
}

.pricing-breakdown__amount--result {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bct-blue);
}

.pricing-breakdown__hint {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--bct-muted);
    line-height: 1.45;
}

.pricing-breakdown__operator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(26, 107, 154, 0.5);
    align-self: center;
}

.pricing-breakdown__operator--equals {
    font-weight: 400;
    color: var(--bct-navy);
    opacity: 0.45;
}

.pricing-breakdown__footer {
    font-size: 0.9rem;
    text-align: center;
    color: var(--bct-muted);
    max-width: 36rem;
    margin: 0 auto 2.25rem;
    line-height: 1.6;
}

.pricing-included-highlights {
    border-top: 1px solid var(--bct-border);
    padding-top: 2rem;
}

.pricing-included-highlights__eyebrow {
    margin: 0 0 0.35rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bct-blue);
}

.pricing-included-highlights__heading {
    margin: 0 0 0.45rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bct-navy);
}

.pricing-included-highlights__intro {
    margin: 0 auto 1.5rem;
    text-align: center;
    max-width: 32rem;
    font-size: 0.92rem;
    color: var(--bct-muted);
    line-height: 1.6;
}

.pricing-included-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
}

.pricing-included-item {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pricing-included-item__media {
    overflow: hidden;
    border-radius: var(--bct-radius);
    aspect-ratio: 4 / 3;
    background: #dce8f1;
}

.pricing-included-item__picture,
.pricing-included-item__image {
    display: block;
    width: 100%;
    height: 100%;
}

.pricing-included-item__image {
    object-fit: cover;
    object-position: center;
}

.pricing-included-item__caption {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.pricing-included-item__title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--bct-navy);
    line-height: 1.3;
}

.pricing-included-item__text {
    font-size: 0.9rem;
    color: var(--bct-muted);
    line-height: 1.55;
}

/* ── Itinerary timeline ── */

.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
    list-style: none;
    margin: 0;
}

.itinerary-timeline::before {
    content: "";
    position: absolute;
    left: 0.55rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: var(--bct-blue);
    opacity: 0.25;
}

.itinerary-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.itinerary-step::before {
    content: "";
    position: absolute;
    left: -1.55rem;
    top: 0.4rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bct-blue);
    border: 2px solid var(--bct-white);
    box-shadow: 0 0 0 2px var(--bct-blue);
}

.itinerary-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bct-navy);
    margin-bottom: 0.35rem;
}

.itinerary-step p {
    color: var(--bct-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.itinerary-note {
    background: #e8f4fc;
    border-left: 4px solid var(--bct-blue);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--bct-radius) var(--bct-radius) 0;
    font-size: 0.9rem;
    color: var(--bct-navy);
    margin-top: 1.5rem;
}

/* ── Lunch section ── */

.lunch-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    padding: 1rem 1.25rem;
    background: var(--bct-white);
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    box-shadow: var(--bct-shadow);
}

.lunch-flow__step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.lunch-flow__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #eef6fb;
    color: var(--bct-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lunch-flow__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bct-navy);
    white-space: nowrap;
}

.lunch-flow__arrow {
    color: var(--bct-muted);
    font-size: 0.75rem;
    opacity: 0.5;
}

.lunch-experience {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 0;
    align-items: stretch;
    margin-bottom: 1.75rem;
    background: var(--bct-white);
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    overflow: hidden;
    box-shadow: var(--bct-shadow);
}

.lunch-experience__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #dce8f1;
    max-width: 100%;
}

.lunch-carousel {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.lunch-carousel .carousel-inner,
.lunch-carousel .carousel-item {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.lunch-carousel__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: zoom-in;
}

.lunch-experience__picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.lunch-experience__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lunch-carousel .carousel-control-prev,
.lunch-carousel .carousel-control-next {
    width: 2.75rem;
    opacity: 0.9;
}

.lunch-carousel .carousel-control-prev-icon,
.lunch-carousel .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(10, 37, 64, 0.55);
    background-size: 55% 55%;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(10, 37, 64, 0.25);
}

.lunch-carousel .carousel-indicators {
    margin-bottom: 0.85rem;
    max-width: calc(100% - 1.5rem);
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    gap: 0.2rem;
    row-gap: 0.35rem;
}

.lunch-carousel .carousel-indicators [data-bs-target] {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.55);
    opacity: 1;
    flex: 0 0 auto;
}

.lunch-carousel .carousel-indicators .active {
    background-color: var(--bct-white);
    transform: scale(1.15);
}

.lunch-experience__body {
    padding: 1.75rem 1.85rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lunch-experience__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bct-blue);
}

.lunch-experience__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--bct-navy);
    line-height: 1.3;
}

.lunch-experience__text {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--bct-muted);
    line-height: 1.65;
}

.lunch-experience__features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.lunch-experience__features li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: var(--bct-text);
    line-height: 1.45;
}

.lunch-experience__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--bct-sky);
}

/* Lunch: compact menu block on the right side */
.lunch-experience .lunch-menus__heading {
    text-align: left;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.lunch-experience .lunch-menus__intro {
    text-align: left;
    margin: 0 0 1rem;
    font-size: 0.92rem;
}

.lunch-experience .lunch-menus__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.lunch-experience .lunch-menus__inclusions {
    padding: 1rem 1.05rem;
    text-align: left;
    margin-top: 0.25rem;
}

.lunch-experience .lunch-menus__inclusions-title {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.lunch-experience .lunch-menus__inclusions-list {
    justify-content: flex-start;
}

.lunch-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--bct-muted);
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.65;
}

.lunch-menus {
    margin-bottom: 1.75rem;
    padding: 2rem;
    background: var(--bct-white);
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    box-shadow: var(--bct-shadow);
}

.lunch-menus__heading {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bct-navy);
    margin-bottom: 0.45rem;
}

.lunch-menus__intro {
    text-align: center;
    font-size: 0.92rem;
    color: var(--bct-muted);
    max-width: 38rem;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
}

.lunch-menus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lunch-menu-card {
    padding: 1.25rem 1.15rem;
    border-radius: var(--bct-radius);
    border: 1px solid var(--bct-border);
    background: #fbfcfd;
}

.lunch-menu-card--fish {
    border-top: 3px solid var(--bct-sky);
}

.lunch-menu-card--meat {
    border-top: 3px solid var(--bct-blue);
}

.lunch-menu-card--vege {
    border-top: 3px solid #3d8b5e;
}

.lunch-menu-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.lunch-menu-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #eef6fb;
    color: var(--bct-blue);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lunch-menu-card--vege .lunch-menu-card__icon {
    background: #edf7f0;
    color: #3d8b5e;
}

.lunch-menu-card__header h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bct-navy);
    line-height: 1.3;
}

.lunch-menu-card__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lunch-menu-card__items li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.86rem;
    color: var(--bct-text);
    line-height: 1.5;
}

.lunch-menu-card__items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bct-blue);
    opacity: 0.45;
}

.lunch-menu-card--vege .lunch-menu-card__items li::before {
    background: #3d8b5e;
}

.lunch-menus__inclusions {
    padding: 1.15rem 1.25rem;
    border-radius: var(--bct-radius);
    background: #f7fbfe;
    border: 1px solid #d7e6f1;
    text-align: center;
}

.lunch-menus__inclusions-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bct-navy);
}

.lunch-menus__inclusions-title i {
    color: var(--bct-blue);
}

.lunch-menus__inclusions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.25rem;
}

.lunch-menus__inclusions-list li {
    font-size: 0.88rem;
    color: var(--bct-text);
}

/* ── Shared tour CTA (dark brand blue + decorative PNG) ── */

.section--shared-cta {
    position: relative;
    padding: 5rem 0;
    border-top: none;
    border-bottom: none;
    color: var(--bct-white);
    background-color: var(--bct-navy);
    background-image:
        linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(15, 53, 88, 0.88) 45%, rgba(26, 107, 154, 0.82) 100%),
        url('../img/shared-tour-cta-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.shared-cta {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.shared-cta__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.shared-cta__lead {
    display: block;
    color: var(--bct-white);
    margin-bottom: 0.65rem;
}

.shared-cta__detail {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
}

.btn-shared-cta {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--bct-gold);
    color: var(--bct-navy);
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s;
}

.btn-shared-cta:hover {
    background: var(--bct-gold-hover);
    color: var(--bct-navy);
    transform: translateY(-1px);
}

/* ── Boats ── */

.boat-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
}

.boat-card {
    background: var(--bct-white);
    border-radius: var(--bct-radius-lg);
    overflow: hidden;
    box-shadow: var(--bct-shadow);
    border: 1px solid var(--bct-border);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.boat-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bct-sand);
    flex: 0 0 auto;
}

.boat-card__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.boat-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.boat-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 37, 64, 0.78) 0%,
        rgba(10, 37, 64, 0.35) 42%,
        rgba(10, 37, 64, 0.12) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.boat-tier-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    left: auto;
    z-index: 2;
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.18);
}

.boat-tier-badge--economy {
    background: var(--bct-sky);
    color: var(--bct-navy);
}

.boat-tier-badge--standard {
    background: var(--bct-blue);
    color: var(--bct-white);
}

.boat-tier-badge--deluxe {
    background: var(--bct-gold);
    color: var(--bct-navy);
}

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

.boat-card__specs {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.boat-card__header {
    margin-bottom: 1.15rem;
}

.boat-card__gallery-btn {
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: auto;
    height: auto;
    min-height: 2.25rem;
    padding: 0.4rem 0.8rem 0.4rem 0.65rem;
    border: 0;
    border-radius: 2rem;
    background: rgba(10, 37, 64, 0.55);
    color: var(--bct-white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(10, 37, 64, 0.28);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.boat-card__gallery-btn:hover,
.boat-card__gallery-btn:focus-visible {
    background: rgba(10, 37, 64, 0.82);
    transform: scale(1.03);
}

.boat-card__gallery-btn:focus-visible {
    outline: 3px solid var(--bct-sky);
    outline-offset: 2px;
}

.boat-card__gallery-btn i {
    font-size: 0.85rem;
    line-height: 1;
}

.boat-card__price-overlay {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.boat-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bct-white);
    line-height: 1.1;
    text-shadow: 0 2px 14px rgba(10, 37, 64, 0.5);
}

.boat-card__price-note {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 10px rgba(10, 37, 64, 0.45);
}

.boat-card__specs h3 {
    color: var(--bct-navy);
}

.boat-card__subtitle {
    margin: 0.35rem 0 0;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--bct-blue);
    letter-spacing: 0.02em;
}

.boat-card__summary {
    color: var(--bct-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.boat-feature-list {
    display: grid;
    gap: 0.85rem;
    flex: 1 1 auto;
}

.boat-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.9rem 0.95rem;
    border: 1px solid var(--bct-border);
    border-radius: 0.85rem;
    background: #fafcfe;
}

.boat-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #eaf4fb;
    color: var(--bct-blue);
    flex-shrink: 0;
}

.boat-feature__icon i {
    font-size: 1rem;
    line-height: 1;
}

.boat-feature__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bct-blue);
    margin-bottom: 0.2rem;
}

.boat-feature strong {
    display: block;
    color: var(--bct-navy);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.55;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.15rem;
    background: #25D366;
    color: var(--bct-white);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.whatsapp-btn:hover {
    background: #1fb855;
    color: var(--bct-white);
    transform: translateY(-1px);
}

.whatsapp-btn__icon {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
}

.crew-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 0;
    align-items: stretch;
    margin-top: 2.5rem;
    overflow: hidden;
    border-radius: var(--bct-radius-lg);
    background: linear-gradient(135deg, #0a2540 0%, #0f3558 55%, #1a6b9a 100%);
    box-shadow: var(--bct-shadow-lg);
}

.crew-spotlight__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.crew-spotlight__picture {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.crew-spotlight__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.crew-spotlight__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(10, 37, 64, 0.35) 100%);
    pointer-events: none;
}

.crew-spotlight__body {
    padding: 2.25rem 2.35rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--bct-white);
}

.crew-spotlight__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bct-sky);
}

.crew-spotlight__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--bct-white);
}

.crew-spotlight__text {
    margin: 0 0 0.85rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36rem;
}

.crew-spotlight__text:last-of-type {
    margin-bottom: 1.15rem;
}

.crew-spotlight__points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
    max-width: 36rem;
}

.crew-spotlight__points li {
    position: relative;
    padding-left: 1.15rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.crew-spotlight__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--bct-sky);
}

/* ── Booking section ── */

.booking-section-header {
    margin-bottom: 2.5rem;
}

.booking-section-header.section-header .section__intro {
    margin-bottom: 0;
}

.booking-wizard {
    margin-top: 0;
}

.booking-form {
    background: var(--bct-white);
    color: var(--bct-text);
    border-radius: var(--bct-radius-lg);
    padding: 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    border: none;
    max-width: none;
    margin: 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .booking-form {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .booking-form__body {
        flex: 1 1 auto;
    }
}

/* Light header band - distinct from option cards below */
.booking-form__header {
    background: var(--bct-sand);
    padding: 1.35rem 2rem;
    border-bottom: 1px solid var(--bct-border);
}

.booking-form__header-title {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bct-muted);
}

.booking-form__body {
    background: var(--bct-white);
    color: var(--bct-text);
    padding: 2rem 2.25rem;
}

/* Reset inherited colors inside booking cards */
.booking-form__body *,
.price-calculator * {
    --bs-body-color: var(--bct-text);
}

.booking-form .form-label,
.booking-form legend.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--bct-navy) !important;
}

.booking-form .form-check-label {
    color: var(--bct-text);
    font-weight: 500;
    cursor: pointer;
}

.booking-form .form-text {
    color: var(--bct-muted) !important;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.booking-form .text-muted,
.booking-form small.text-muted {
    color: var(--bct-muted) !important;
}

.booking-form .form-control {
    border: 1.5px solid var(--bct-border);
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
    color: var(--bct-text);
    background: var(--bct-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-form .form-control:focus {
    border-color: var(--bct-blue);
    box-shadow: 0 0 0 3px rgba(26, 107, 154, 0.15);
}

.booking-form .form-check-input {
    border-color: #adb5bd;
}

.booking-form .form-check-input:checked {
    background-color: var(--bct-blue);
    border-color: var(--bct-blue);
}

.booking-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* ── Date picker (Flatpickr) ── */

.date-picker-wrap {
    position: relative;
}

.date-picker-wrap::after {
    content: "";
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.15rem;
    height: 1.15rem;
    pointer-events: none;
    opacity: 0.55;
    background-color: var(--bct-navy);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
}

.date-picker-input {
    cursor: pointer;
    padding-right: 2.5rem !important;
    background-color: var(--bct-white) !important;
}

.date-picker-input.form-control:disabled {
    cursor: not-allowed;
    background-color: #f1f3f5 !important;
}

.booking-form .flatpickr-input[readonly],
.booking-form .date-picker-input[readonly] {
    cursor: pointer;
    background-color: var(--bct-white);
}

.booking-form .flatpickr-input.form-control {
    border: 1.5px solid var(--bct-border);
    border-radius: 0.5rem;
    padding: 0.6rem 0.85rem;
    color: var(--bct-text);
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
}

.booking-form .flatpickr-input.form-control:focus {
    border-color: var(--bct-blue);
    box-shadow: 0 0 0 3px rgba(26, 107, 154, 0.15);
    outline: none;
}

/* Flatpickr calendar - site theme */
.flatpickr-calendar {
    border: none;
    border-radius: var(--bct-radius-lg);
    box-shadow: var(--bct-shadow-lg);
    font-family: var(--bct-font);
    padding: 0.35rem;
}

.flatpickr-months {
    padding: 0.35rem 0.25rem 0;
}

.flatpickr-months .flatpickr-month {
    height: 2.25rem;
}

.flatpickr-current-month {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bct-navy);
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700;
}

.flatpickr-weekdays {
    margin-top: 0.25rem;
}

.flatpickr-weekday {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bct-muted);
}

span.flatpickr-weekday {
    color: var(--bct-muted);
}

.flatpickr-day {
    border-radius: 0.4rem;
    color: var(--bct-text);
    font-weight: 500;
    max-width: 2.15rem;
    height: 2.15rem;
    line-height: 2.15rem;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: #edf6fc;
    border-color: #edf6fc;
    color: var(--bct-navy);
}

.flatpickr-day.today {
    border-color: var(--bct-sky);
    color: var(--bct-blue);
    font-weight: 700;
}

.flatpickr-day.today:hover {
    background: #edf6fc;
    border-color: var(--bct-blue);
    color: var(--bct-navy);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: var(--bct-navy);
    border-color: var(--bct-navy);
    color: var(--bct-white);
    font-weight: 700;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #c5cdd6;
    background: transparent;
    border-color: transparent;
    cursor: not-allowed;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--bct-navy);
    padding: 0.35rem;
    border-radius: 0.35rem;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: #edf6fc;
    fill: var(--bct-blue);
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 0.85rem;
    height: 0.85rem;
}

/* Wizard progress - light header, no bordered boxes like option cards */

.wizard-steps {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    overflow: hidden;
}

.wizard-step-indicator {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.5rem;
    border-radius: 0;
    background: transparent;
    border: none;
    font-size: 0.85rem;
    color: var(--bct-muted);
    transition: color 0.2s;
    position: relative;
}

.wizard-step-indicator:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1.25rem;
    background: var(--bct-border);
}

.wizard-step-indicator.active {
    background: transparent;
    border: none;
    color: var(--bct-navy);
    font-weight: 700;
}

.wizard-step-indicator.completed {
    background: transparent;
    border: none;
    color: var(--bct-blue);
    font-weight: 600;
}

.wizard-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #dde4ec;
    color: var(--bct-muted);
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border: none;
}

.wizard-step-indicator.active .wizard-step-num {
    background: var(--bct-navy);
    color: var(--bct-white);
}

.wizard-step-indicator.completed .wizard-step-num {
    background: var(--bct-blue);
    color: transparent;
    font-size: 0;
}

.wizard-step-indicator.completed .wizard-step-num::after {
    content: "✓";
    font-size: 0.75rem;
    color: var(--bct-white);
    line-height: 1;
}

.wizard-step-label {
    display: none;
    line-height: 1.3;
}

@media (min-width: 576px) {
    .wizard-step-label {
        display: inline;
    }
}

.wizard-panel-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bct-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.step1-boat-preview {
    background: #edf6fc;
    border: 1px solid #c8dff0;
    border-radius: var(--bct-radius);
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--bct-navy);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.step1-boat-preview:empty {
    display: none;
}

.step1-boat-preview strong {
    color: var(--bct-blue);
}

/* Tier radio cards */

.tier-radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: 0.75rem;
}

.tier-radio-group .form-check {
    background: var(--bct-sand);
    border: 2px solid var(--bct-border);
    border-radius: var(--bct-radius);
    padding: 1rem 1.1rem;
    margin: 0;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.tier-radio-group .form-check:hover {
    border-color: #b8cfe0;
    background: #f0f6fa;
}

.tier-radio-group .form-check:has(input:checked) {
    border-color: var(--bct-blue);
    background: #edf6fc;
    box-shadow: 0 0 0 3px rgba(26, 107, 154, 0.12);
}

.tier-radio-group .form-check-label {
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    color: var(--bct-navy);
}

.tier-radio-group .form-check-label small {
    font-weight: 400;
    color: var(--bct-muted) !important;
}

/* Inclusion options (step 2) */

.inclusion-option {
    background: var(--bct-sand);
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius);
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
}

.inclusion-option .form-check-label {
    font-weight: 600;
    color: var(--bct-navy);
}

.inclusion-option .form-check ~ .form-text {
    margin-left: 1.75rem;
    margin-bottom: 0;
}

.inclusion-option--transfer {
    background: #fafafa;
    border-style: dashed;
}

/* Payment options */

.payment-radio-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-radio-group .form-check {
    background: var(--bct-sand);
    border: 2px solid var(--bct-border);
    border-radius: var(--bct-radius);
    padding: 0.85rem 1.35rem;
    margin: 0;
    flex: 1;
    min-width: 140px;
    transition: border-color 0.2s, background 0.2s;
}

.payment-radio-group .form-check:has(input:checked) {
    border-color: var(--bct-blue);
    background: #edf6fc;
}

.payment-radio-group .form-check-label {
    font-weight: 600;
    color: var(--bct-navy);
}

/* Wizard navigation */

.wizard-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bct-border);
    flex-wrap: wrap;
}

.btn-wizard-back {
    background: var(--bct-white);
    border: 2px solid var(--bct-border);
    color: var(--bct-navy);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    transition: border-color 0.2s, color 0.2s;
}

.btn-wizard-back:hover {
    border-color: var(--bct-blue);
    color: var(--bct-blue);
    background: var(--bct-white);
}

.btn-wizard-next {
    background: var(--bct-blue);
    color: var(--bct-white);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    margin-left: auto;
    transition: background 0.2s, transform 0.15s;
}

.btn-wizard-next:hover {
    background: var(--bct-navy);
    color: var(--bct-white);
    transform: translateY(-1px);
}

.btn-submit-booking {
    background: var(--bct-gold);
    color: var(--bct-navy);
    font-weight: 700;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    margin-left: auto;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.btn-submit-booking:hover {
    background: var(--bct-gold-hover);
    color: var(--bct-navy);
    transform: translateY(-1px);
}

/* Booking sidebar - calculator + notes (not sticky) */

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .booking-sidebar {
        height: 100%;
    }

    .booking-notes {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.price-calculator {
    background: var(--bct-white);
    color: var(--bct-text);
    border-radius: var(--bct-radius-lg);
    padding: 1.35rem 1.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    border: none;
    flex: 0 0 auto;
}

.booking-notes {
    background: var(--bct-white);
    color: var(--bct-text);
    border-radius: var(--bct-radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.booking-notes__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bct-navy);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bct-sand);
}

.booking-notes__list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    display: grid;
    gap: 0.5rem;
}

.booking-notes__list li {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--bct-muted);
    padding-left: 0.95rem;
    position: relative;
}

.booking-notes__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: var(--bct-blue);
}

.booking-notes__list strong {
    color: var(--bct-navy);
    font-weight: 600;
}

.booking-notes__contact {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--bct-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--bct-border);
}

.booking-notes__contact-note {
    display: inline;
    font-size: inherit;
    margin-top: 0;
    white-space: nowrap;
}

.price-calculator__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bct-navy);
    margin-bottom: 0.85rem;
    padding-bottom: 0.55rem;
    border-bottom: 2px solid var(--bct-sand);
}

.price-calculator__placeholder {
    color: var(--bct-muted);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.5;
}

.price-calculator__lines {
    margin: 0;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.38rem 0;
    border-bottom: 1px solid #eef2f6;
    font-size: 0.8rem;
}

.price-line:last-of-type {
    border-bottom: none;
}

.price-line dt {
    font-weight: 400;
    color: var(--bct-muted);
    flex: 1;
    line-height: 1.4;
}

.price-line dd {
    margin: 0;
    font-weight: 700;
    color: var(--bct-navy);
    white-space: nowrap;
}

.price-line--group {
    padding-top: 0.5rem;
    border-bottom: none;
}

.price-line--group dt {
    font-weight: 700;
    color: var(--bct-navy);
    font-size: 0.82rem;
}

.price-line--group dd {
    display: none;
}

.price-line--sub {
    padding-left: 0.65rem;
    font-size: 0.76rem;
}

.price-line--sub dt {
    color: var(--bct-muted);
}

.price-line--subtotal {
    padding-left: 0.65rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 0.45rem;
}

.price-line--subtotal dt {
    font-weight: 600;
    color: var(--bct-navy);
    font-size: 0.76rem;
}

.price-calculator__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 2px solid var(--bct-navy);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--bct-navy);
}

.price-calculator__total strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--bct-blue);
}

.price-calculator__pay-split {
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px dashed var(--bct-border);
    display: grid;
    gap: 0.35rem;
}

.price-calculator__pay-split .price-line {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.82rem;
    margin: 0;
}

.price-calculator__pay-split .price-line dt {
    color: var(--bct-muted);
    font-weight: 500;
}

.price-calculator__pay-split .price-line dd {
    margin: 0;
    font-weight: 700;
    color: var(--bct-navy);
}

.price-calculator__pay-split .price-line--deposit dd {
    color: var(--bct-blue);
}


/* Form feedback */

.form-success {
    color: #1a6640;
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: #edf7f0;
    border: 1px solid #a8d5b5;
    border-radius: var(--bct-radius);
}

.form-error {
    color: #b53030;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

#booking-form-error.form-error {
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: #fdf0f0;
    border: 1px solid #e8b4b4;
    border-radius: var(--bct-radius);
}

/* ── FAQ ── */

.faq-list {
    max-width: none;
    margin: 0;
    height: 100%;
    background: var(--bct-white);
    border-radius: var(--bct-radius-lg);
    padding: 0 1.5rem;
    box-shadow: var(--bct-shadow);
    border: 1px solid var(--bct-border);
}

.faq-question-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-item {
    border-bottom: 1px solid var(--bct-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem 2.5rem 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bct-navy);
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--bct-blue);
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--bct-blue);
}

.faq-question[aria-expanded="true"]::after {
    content: "−";
}

.faq-answer {
    padding: 0 0 1.25rem;
    color: var(--bct-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer[hidden] {
    display: none;
}

/* ── Gallery ── */

.gallery-filters {
    margin-bottom: 1.75rem;
    position: relative;
}

.gallery-filters__track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0;
}

.gallery-filters .btn-filter {
    background: var(--bct-white);
    border: 2px solid var(--bct-blue);
    color: var(--bct-blue);
    padding: 0.4rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .gallery-filters .btn-filter {
        padding: 0.45rem 1.1rem;
        font-size: 0.85rem;
    }
}

.gallery-filters .btn-filter[hidden] {
    display: none !important;
}

.gallery-filters .btn-filter.active,
.gallery-filters .btn-filter:hover {
    background: var(--bct-blue);
    color: var(--bct-white);
    transform: translateY(-1px);
}

.gallery-grid {
    display: grid;
    /* Mobile test: 3-up without reprocessing masters */
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
        gap: 0.75rem;
    }
}

.gallery-item {
    border-radius: var(--bct-radius);
    overflow: hidden;
    box-shadow: var(--bct-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0;
    aspect-ratio: 4 / 3;
}

.gallery-item__link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    cursor: zoom-in;
}

.gallery-item__link:focus-visible {
    outline: 3px solid var(--bct-sky);
    outline-offset: -3px;
}

.gallery-item__picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-item:hover {
    box-shadow: var(--bct-shadow-lg);
}

.gallery-item[hidden] {
    display: none;
}

/* GLightbox - image only, larger nav arrows */
.glightbox-clean .gslide-description,
.glightbox-mobile .glightbox-container .gslide-description {
    display: none !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
    width: 3.25rem;
    height: 3.75rem;
    background: rgba(10, 37, 64, 0.65);
}

.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
    width: 2rem;
    height: 2rem;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
    background: rgba(10, 37, 64, 0.9);
}

.glightbox-clean .gclose {
    background: #fff;
    color: var(--bct-navy);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
    z-index: 9999;
}

.glightbox-clean .gclose svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke: var(--bct-navy);
    color: var(--bct-navy);
}

.glightbox-clean .gclose:hover {
    background: #f3f6f9;
    color: var(--bct-navy);
    opacity: 1;
}

.glightbox-mobile .glightbox-container .gclose {
    background: #fff;
    color: var(--bct-navy);
    opacity: 1;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

@media (min-width: 769px) {
    .glightbox-clean .gnext,
    .glightbox-clean .gprev {
        width: 3.75rem;
        height: 4.5rem;
    }

    .glightbox-clean .gnext svg,
    .glightbox-clean .gprev svg {
        width: 2.35rem;
        height: 2.35rem;
    }
}

/* ── Footer ── */

.site-footer {
    background: linear-gradient(180deg, #0a2540 0%, #081c30 100%);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0;
}

.site-footer__main {
    padding: 3.75rem 0 2.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: start;
}

.site-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: 44px;
    max-width: min(240px, 70vw);
}

.site-footer__tagline {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.65;
    margin: 0 0 0.85rem;
    max-width: 28rem;
}

.site-footer__shared-link {
    display: inline-block;
    margin-bottom: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--bct-sky);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__shared-link:hover,
.site-footer__shared-link:focus-visible {
    color: var(--bct-white);
    text-decoration: underline;
}

.site-footer__links .site-footer__address {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.5;
}

.site-footer__heading {
    color: var(--bct-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--bct-sky);
}

.site-footer__payment {
    padding: 1.15rem 1.2rem;
    border-radius: var(--bct-radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__stripe {
    margin-bottom: 0.75rem;
}

.site-footer__stripe-logo {
    display: block;
    height: auto;
    width: min(100%, 220px);
    max-width: 100%;
}

.site-footer__payment-text {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    padding: 1.1rem 0;
}

.site-footer__copyright {
    margin: 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}

/* ── Mobile bottom bar (example pattern) ── */

.bottom-btns {
    display: none;
}

.bottom-btn {
    position: relative;
    flex: 1 1 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 0;
    background-color: #2a2a2a;
    color: rgb(189, 189, 189);
    border: none;
    border-radius: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.bottom-btn i {
    font-size: 18px;
    margin-bottom: 3px;
    line-height: 1;
}

.bottom-btn p {
    font-size: 9px;
    margin-bottom: 0;
    line-height: 1.2;
}

.bottom-btn:hover,
.bottom-btn:focus-visible {
    background-color: #3a3a3a;
    color: #fff;
}

.bottom-btn:active {
    background-color: #1f1f1f;
}

/* ── Responsive ── */

@media (max-width: 991.98px) {
    .overview-shell {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        margin-top: 0.5rem;
    }

    .lunch-experience {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .lunch-experience__media {
        aspect-ratio: 16 / 10;
        min-height: 0;
        width: 100%;
    }

    .lunch-experience .lunch-menus__grid,
    .lunch-menus__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 3.75rem;
    }

    .bottom-btns {
        display: inline-flex;
        position: fixed;
        z-index: 1040;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section--booking {
        padding-bottom: 4rem;
    }

    .hero {
        min-height: clamp(440px, 62vh, 600px);
    }

    .hero .hero__content {
        padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
        padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    }

    .hero__prices {
        flex-direction: column;
    }

    .hero__price-card {
        width: 100%;
    }

    .overview-intro-card,
    .overview-included,
    .overview-note-card {
        padding: 1.35rem;
    }

    .overview-grid,
    .included-list,
    .included-optional-grid,
    .overview-notes {
        grid-template-columns: 1fr;
    }

    .pricing-breakdown__equation {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .pricing-breakdown__term,
    .pricing-breakdown__result {
        max-width: none;
        flex-basis: auto;
    }

    .pricing-breakdown__operator {
        width: 100%;
        padding: 0.15rem 0;
        font-size: 1.1rem;
    }

    .pricing-included-highlights__grid {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .lunch-flow__arrow {
        display: none;
    }

    .lunch-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .lunch-flow__step {
        justify-content: center;
    }

    .lunch-experience {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .lunch-experience__media {
        aspect-ratio: 4 / 3;
        min-height: 0;
        width: 100%;
    }

    .lunch-experience__body {
        padding: 1.25rem 1rem 1.35rem;
        min-width: 0;
        max-width: 100%;
    }

    /* Higher specificity than desktop .lunch-experience .lunch-menus__grid (3 cols) */
    .lunch-experience .lunch-menus__grid,
    .lunch-menus__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .lunch-menu-card {
        width: 100%;
        max-width: 100%;
    }

    .lunch-carousel .carousel-control-prev,
    .lunch-carousel .carousel-control-next {
        width: 2.25rem;
    }

    .lunch-carousel .carousel-indicators {
        max-width: calc(100% - 1rem);
        padding: 0 0.25rem;
    }

    .lunch-carousel .carousel-indicators [data-bs-target] {
        width: 0.45rem;
        height: 0.45rem;
    }

    .boat-specs {
        grid-template-columns: 1fr;
    }

    .crew-spotlight {
        grid-template-columns: 1fr;
    }

    .crew-spotlight__media {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .crew-spotlight__media::after {
        background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, 0.45) 100%);
    }

    .crew-spotlight__body {
        padding: 1.5rem 1.35rem 1.75rem;
    }

    .lunch-menus {
        padding: 1.35rem;
    }

    .lunch-menus__inclusions-list {
        flex-direction: column;
        gap: 0.35rem;
    }

    .booking-form__header {
        padding: 1.25rem 1.5rem;
    }

    .booking-form__body {
        padding: 1.5rem;
    }

    .tier-radio-group {
        grid-template-columns: 1fr;
    }

    .site-footer__main {
        padding: 2.75rem 0 1.25rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .site-footer__payment {
        order: 4;
    }

    .site-footer__bottom {
        padding-top: 0.85rem;
        padding-bottom: 0.85rem;
    }

    .wizard-step-indicator {
        padding: 0.4rem 0.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.35rem;
    }

    .wizard-step-indicator:not(:last-child)::after {
        display: none;
    }

    .wizard-step-label {
        display: none;
    }

    .btn-wizard-next,
    .btn-submit-booking {
        width: 100%;
        margin-left: 0;
    }

    .btn-wizard-back {
        width: 100%;
    }
}

/* Booking success / cancel result pages */

.booking-result-page {
    background: linear-gradient(180deg, var(--bct-sand) 0%, var(--bct-white) 45%);
    min-height: 100vh;
}

.booking-result {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.booking-result h1 {
    color: var(--bct-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.booking-result .lead {
    color: var(--bct-muted);
}

.booking-result__status {
    display: inline-block;
    margin: 0 0 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(26, 107, 154, 0.12);
    color: var(--bct-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.booking-result__card {
    background: var(--bct-white);
    border: 1px solid var(--bct-border);
    border-radius: var(--bct-radius-lg);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--bct-shadow);
    text-align: left;
}

.booking-result__card h2 {
    color: var(--bct-navy);
    margin-bottom: 1rem;
}

.booking-result__table {
    width: 100%;
    border-collapse: collapse;
}

.booking-result__table th,
.booking-result__table td {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--bct-border);
    vertical-align: top;
}

.booking-result__table th {
    width: 42%;
    color: var(--bct-muted);
    font-weight: 600;
    padding-right: 1rem;
}

.booking-result__table tr:last-child th,
.booking-result__table tr:last-child td {
    border-bottom: 0;
}

.booking-result .btn-submit-booking,
.booking-result .btn-wizard-back {
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
