/* ============================================================
   BIMINI ISLAND TOURS — Amali-Level Light Theme
   Palette: Caribbean Blue #00B8C8 · Sand Cream · White · Navy text only
   Fonts: Cormorant Garamond (display) · Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Pinyon+Script&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
    --aqua:       #00B8C8;
    --aqua-dk:    #008E9C;
    --aqua-lt:    #ADE8EE;
    --aqua-glow:  rgba(0, 184, 200, 0.15);
    --navy:       #0A1628;   /* TEXT ONLY — never a section background */
    --gold:       #C8A045;
    --cream:      #FFFFFF;
    --cream-dk:   #F8F9FA;
    --cream-bg: linear-gradient(135deg, #00B8C8 0%, #008E9C 100%);
    --sand:       #E5DBCA;
    --sand-dk:    #D4C9B5;
    --white:      #FFFFFF;
    --text-dark:  #0A1628;
    --text-mid:   #4A5870;
    --text-muted: #8A9AAE;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;
    --font-script:  'Pinyon Script', cursive;

    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.35s var(--ease-out);

    --container:  1280px;
    --gutter:     clamp(1.25rem, 5vw, 5rem);
    --section-v:  clamp(5rem, 10vw, 9rem);
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-pill:100px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul   { list-style: none; }

/* ── FIXED CHROME ───────────────────────────────────────── */
#progress-bar {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: var(--aqua);
    z-index: 9999; pointer-events: none;
}

#section-label {
    position: fixed; left: 1.5rem; bottom: 2rem;
    writing-mode: vertical-rl; transform: rotate(180deg);
    font-size: 0.58rem; letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(10,22,40,0.25);
    z-index: 900; pointer-events: none;
    transition: color 0.4s ease;
}
@media (max-width: 768px) { #section-label { display: none; } }

/* ── SHARED UTILITY ─────────────────────────────────────── */
.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 0.9rem;
}

/* ── BUTTON SYSTEM ──────────────────────────────────────── */
.btn-pill {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.65rem 1.25rem 0.65rem 1.6rem; 
    border-radius: var(--radius-pill);
    font-family: var(--font-body); font-weight: 500; font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap; cursor: pointer; text-decoration: none;
    border: 2px solid transparent;
}
.btn-pill:hover { transform: translateY(-2px); opacity: 0.92; }

/* Virtual tour CTA — solid aqua on white bg */
.vtour-cta-row .btn-pill--aqua {
    background: var(--aqua);
    border-color: var(--aqua);
    color: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.vtour-cta-row .btn-pill--aqua:hover {
    background: var(--aqua-dk);
    border-color: var(--aqua-dk);
    opacity: 1;
}

/* Hero Book button — solid aqua, not frosted glass */
.hero-actions .btn-pill--aqua {
    background: var(--aqua);
    border-color: var(--aqua);
    color: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.hero-actions .btn-pill--aqua:hover {
    background: var(--aqua-dk);
    border-color: var(--aqua-dk);
    opacity: 1;
}

/* Aqua fill */
.btn-pill--aqua {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.48);
    color: var(--white);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.btn-pill--aqua:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.75);
    opacity: 1;
}

/* Dark fill */
.btn-pill--dark {
    background: #223041; color: var(--white);
    border-color: #223041;
}
.btn-pill--dark:hover { opacity: 0.85; }

/* Ghost — Premium Glass (Match Reference) */
.btn-pill--ghost {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-pill--ghost:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.8);
}

/* Outline dark (on light bg) */
.btn-pill--outline-dark {
    background: transparent;
    border-color: rgba(10,22,40,0.25);
    color: var(--navy);
}
.btn-pill--outline-dark:hover {
    border-color: var(--aqua);
    color: var(--aqua-dk);
    opacity: 1;
}

/* Outline aqua (on aqua bg) */
.btn-pill--outline-aqua {
    background: rgba(10,22,40,0.08);
    border-color: rgba(10,22,40,0.3);
    color: var(--navy);
}
.btn-pill--outline-aqua:hover {
    background: rgba(10,22,40,0.15);
    border-color: rgba(10,22,40,0.5);
    opacity: 1;
}

/* Small variant */
.btn-pill--sm { padding: 0.55rem 1.2rem; font-size: 0.8rem; }

.pill-circle {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(10,22,40,0.08);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
    transition: transform 0.3s ease;
}
.btn-pill--dark .pill-circle { background: rgba(255,255,255,0.12); }
.btn-pill--ghost .pill-circle { background: rgba(255,255,255,0.18); }
.btn-pill:hover .pill-circle {
    transform: translate(2px, -2px);
}

/* Scrolled Navbar Button Fix */
#navbar.scrolled .btn-pill--ghost {
    color: var(--text-dark);
    border-color: rgba(10,22,40,0.15);
    background: rgba(10,22,40,0.03);
    backdrop-filter: none;
}
#navbar.scrolled .btn-pill--ghost .pill-circle {
    background: rgba(10,22,40,0.08);
    color: var(--text-dark);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mob-overlay {
    position: fixed; inset: 0;
    background: rgba(10,22,40,0.45);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
}
.mob-overlay.is-open { opacity: 1; pointer-events: all; }

.mob-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--white);
    padding: 2rem 1.75rem 2.5rem;
    display: flex; flex-direction: column; gap: 1.5rem;
    z-index: 1001;
    transform: translateX(110%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(10,22,40,0.12);
}
.mob-menu.is-open { transform: translateX(0); }

.mob-close {
    align-self: flex-end;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(10,22,40,0.1);
    color: var(--text-dark);
    transition: background 0.2s;
}
.mob-close:hover { background: var(--cream); }

.mob-logo-wrap { padding: 0.5rem 0; }
.mob-logo {
    height: 40px; width: auto;
    filter: brightness(0) invert(49%) sepia(90%) saturate(1908%) hue-rotate(155deg) brightness(97%) contrast(102%);
}

.mob-links { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mob-links li { border-bottom: 1px solid rgba(10,22,40,0.06); }
.mob-links a {
    display: block; padding: 0.9rem 0;
    font-family: var(--font-display); font-size: 1.4rem;
    font-weight: 400; color: var(--text-dark);
    transition: color 0.2s;
}
.mob-links a:hover { color: var(--aqua-dk); }

.mob-cta-btn {
    display: block; text-align: center;
    padding: 0.9rem 1.5rem;
    background: var(--aqua); color: var(--white);
    border-radius: var(--radius-pill);
    font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
    transition: background 0.25s;
}
.mob-cta-btn:hover { background: var(--aqua-dk); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    padding: 1.4rem var(--gutter);
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.35s, box-shadow 0.4s;
}
#navbar.scrolled {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    padding: 0.85rem var(--gutter);
    box-shadow: 0 1px 24px rgba(10,22,40,0.07);
}

.nav-inner {
    max-width: min(1520px, 92vw); margin: 0 auto;
    display: flex; align-items: center; gap: 2rem;
}

.nav-logo-wrap { flex-shrink: 0; }
.nav-logo {
    height: 44px; width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
}
#navbar.scrolled .nav-logo {
    /* Colorize logo to --aqua #00B8C8 */
    filter: brightness(0) invert(49%) sepia(90%) saturate(1908%) hue-rotate(155deg) brightness(97%) contrast(102%);
}

.nav-links {
    display: flex; gap: 2.2rem;
    list-style: none; margin: 0 auto;
}
.nav-links a {
    color: rgba(255,255,255,0.88);
    font-family: var(--font-body);
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.25s;
}
.nav-links a:hover { color: var(--aqua-lt); }
#navbar.scrolled .nav-links a { color: var(--text-dark); }
#navbar.scrolled .nav-links a:hover { color: var(--aqua-dk); }

.nav-cta-btn { flex-shrink: 0; }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    padding: 0.5rem; cursor: pointer;
}
.hamburger span {
    width: 24px; height: 2px;
    background: white; border-radius: 2px;
    display: block; transition: background 0.3s;
}
#navbar.scrolled .hamburger span { background: var(--navy); }

@media (max-width: 768px) {
    .nav-links, .nav-cta-btn { display: none; }
    .hamburger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100dvh; min-height: 620px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: flex-start;
    background: var(--navy);
    padding: 0 var(--gutter);
}

.hero-bg-wrap {
    position: absolute; inset: 0;
    will-change: transform;
}
.hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transform: scale(1.15);
    will-change: transform;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10,22,40,0.52) 0%,
        rgba(10,22,40,0.28) 55%,
        rgba(10,22,40,0.45) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    text-align: left;
    padding: 0;
    max-width: 700px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 1.1rem;
    display: block;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 300; line-height: 1.05;
    color: white;
    margin: 0 0 1.25rem;
    text-shadow: 0 2px 30px rgba(10,22,40,0.3);
}
.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--aqua);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin-bottom: 2.2rem;
    text-shadow: 0 1px 12px rgba(10,22,40,0.4);
}

.hero-actions {
    display: flex; gap: 1rem;
    justify-content: flex-start; flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body); font-size: 0.7rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    z-index: 2;
}
.scroll-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--aqua);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50%       { opacity: 0.35; transform: translateY(5px); }
}

/* ============================================================
   TRUST BAR — press + credentials combined
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-top: 1px solid rgba(10,22,40,0.05);
    border-bottom: 1px solid rgba(10,22,40,0.05);
    padding: 1.6rem var(--gutter);
}
.trust-bar-inner {
    max-width: min(1100px, 92vw); margin: 0 auto;
    display: flex; align-items: center; gap: 2.5rem;
    justify-content: center; flex-wrap: wrap;
}
.trust-press {
    display: flex; align-items: center; gap: 1.25rem;
    flex-shrink: 0; flex-wrap: wrap; justify-content: center;
}
.trust-label {
    font-family: var(--font-body);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
}
.trust-press-items {
    display: flex; align-items: center; gap: 1rem;
}
.trust-pub {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 400;
    color: var(--text-dark); letter-spacing: 0.02em;
    transition: color 0.2s;
}
.trust-pub:hover { color: var(--aqua-dk); }
.trust-pub em { font-style: italic; color: var(--aqua); }
.trust-dot { color: var(--text-muted); font-size: 1rem; }
.trust-divider {
    width: 1px; height: 44px;
    background: rgba(10,22,40,0.1);
    flex-shrink: 0;
}
.trust-creds {
    display: flex; align-items: center;
    gap: 0.25rem; flex-wrap: wrap; justify-content: center;
}

.cred-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.15rem; padding: 0.5rem 1.2rem;
    opacity: 1 !important;   /* guarantee — never let GSAP orphan these */
    transition: opacity 0.2s;
}
.cred-item:hover { opacity: 0.7 !important; }
.cred-title {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 500; color: var(--text-dark);
    letter-spacing: 0.02em;
}
.cred-name {
    font-family: var(--font-body); font-size: 0.68rem;
    font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text-muted);
}
.cred-sep {
    color: var(--aqua-dk); font-size: 1.1rem;
    opacity: 0.5;
}

/* ============================================================
   STORY / ABOUT SECTION
   ============================================================ */
.story-section {
    background: var(--white);
    padding: var(--section-v) 0;
}
.story-container {
    max-width: min(1280px, 92vw); margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
@media (max-width: 900px) {
    .story-container { grid-template-columns: 1fr; gap: 3rem; }
}

/* Story left — text */
.story-left { display: flex; flex-direction: column; gap: 0; }

.story-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400; line-height: 1.12;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.story-heading em { font-style: italic; color: var(--aqua); }

.story-body {
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 400; line-height: 1.78;
    color: var(--text-mid);
    margin-bottom: 1.1rem;
}

.story-stats {
    display: flex; align-items: center;
    gap: 0; margin: 2rem 0 2.2rem;
    border: 1px solid rgba(10,22,40,0.09);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.stat-item {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; gap: 0.2rem;
    padding: 1.2rem 1rem;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 500;
    color: var(--aqua); line-height: 1;
}
.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}
.stat-divider {
    width: 1px; height: 48px;
    background: rgba(10,22,40,0.08);
    flex-shrink: 0;
}

/* Story right — images */
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes floatDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

.story-img-stack {
    position: relative; height: 500px;
}
.story-img-stack::before {
    content: '';
    position: absolute;
    top: 10%; right: 10%;
    width: 80%; height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,200,0.15) 0%, transparent 70%);
    z-index: 0;
    filter: blur(20px);
}
.story-img-back-wrap {
    position: absolute; top: 0; right: 0;
    width: 78%; height: 82%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10,22,40,0.12);
    z-index: 1;
    animation: floatUp 8s ease-in-out infinite;
}
.story-img-back { width: 100%; height: 100%; object-fit: cover; }

.story-img-front-wrap {
    position: absolute; bottom: 0; left: 0;
    width: 54%; height: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: 0 20px 50px rgba(10,22,40,0.18);
    z-index: 2;
    animation: floatDown 9s ease-in-out infinite;
}
.story-img-front { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
    .story-img-stack { height: 360px; }
}

/* Highlights grid */
.highlights-container {
    max-width: min(1280px, 92vw); margin: 0 auto;
    padding: clamp(3rem, 5vw, 4.5rem) var(--gutter) 0;
    border-top: 1px solid rgba(10,22,40,0.07);
    margin-top: clamp(3rem, 5vw, 4.5rem);
}
.highlights-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 900px) { .highlights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .highlights-grid { grid-template-columns: 1fr; } }

.highlight-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
    border: 1px solid rgba(10,22,40,0.06);
    box-shadow: 0 8px 30px rgba(10,22,40,0.03);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.highlight-item::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aqua), var(--aqua-lt));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10,22,40,0.08);
    border-color: rgba(10,22,40,0.08);
}
.highlight-item:hover::before {
    transform: scaleX(1);
}
.highlight-icon { 
    font-size: 1.8rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, rgba(0,184,200,0.1), rgba(0,184,200,0.02));
    border-radius: 20px;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(0,184,200,0.15);
    transition: transform 0.4s var(--ease-out);
}
.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0,184,200,0.15), rgba(0,184,200,0.05));
}
.highlight-item h4 {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 500;
    color: var(--navy);
    line-height: 1.25;
    margin: 0;
    transition: color 0.3s;
}
.highlight-item:hover h4 { color: var(--aqua-dk); }
.highlight-item p {
    font-family: var(--font-body);
    font-size: 0.92rem; line-height: 1.7;
    color: var(--text-mid);
    margin: 0;
}

/* ============================================================
   TOURS SECTION
   ============================================================ */
.tours-section {
    background: var(--cream-bg);
    padding: calc(var(--section-v) + 60px) 0;
    position: relative;
    overflow: hidden;
}
.tours-container {
    max-width: min(1520px, 92vw); margin: 0 auto;
    padding: 0 clamp(1.5rem, 2.5vw, 3rem);
}

.tours-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    flex-wrap: wrap; gap: 1rem;
}
.tours-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400; line-height: 1.1; color: var(--navy);
    margin-top: 0.5rem;
}
.tours-heading em { font-style: italic; color: var(--aqua); }

.view-all-link {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--aqua);
    transition: gap 0.25s, color 0.2s;
    white-space: nowrap;
}
.view-all-link:hover { gap: 0.75rem; color: var(--aqua); }

/* Tour cards grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 900px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tours-grid { grid-template-columns: 1fr; } }

.tour-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(10,22,40,0.06);
    box-shadow: 0 2px 16px rgba(10,22,40,0.05);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    display: flex; flex-direction: column;
}
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(10,22,40,0.12);
}

/* Featured card elevation */
.tour-card--featured {
    outline: 2.5px solid var(--aqua);
    outline-offset: -1px;
}

.tour-card-img-wrap {
    position: relative; overflow: hidden;
    height: 220px;
}
.tour-card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}
.tour-card:hover .tour-card-img { transform: scale(1.06); }

.tour-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.35), transparent 55%);
}
.tour-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: rgba(10,22,40,0.72);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.92);
    font-family: var(--font-body);
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.38rem 0.85rem;
    border-radius: var(--radius-pill);
}

.tour-card-body {
    padding: 1.5rem;
    display: flex; flex-direction: column;
    flex: 1;
}
.tour-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 500;
    color: var(--navy); line-height: 1.25;
    margin-bottom: 0.6rem;
}
.tour-card-desc {
    font-family: var(--font-body);
    font-size: 0.88rem; font-weight: 400; line-height: 1.65;
    color: var(--text-mid); flex: 1;
    margin-bottom: 1.25rem;
}
.tour-card-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(10,22,40,0.07);
    padding-top: 1rem;
    margin-top: auto;
}
.tour-price {
    font-family: var(--font-body);
    font-size: 0.82rem; color: var(--text-mid);
}
.tour-price strong {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 500;
    color: var(--navy);
}

/* ============================================================
   VIRTUAL TOUR SECTION
   ============================================================ */
.vtour-section {
    background: var(--white);
    padding: var(--section-v) var(--gutter);
}
.vtour-container { max-width: var(--container); margin: 0 auto; }

.vtour-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.vtour-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; color: var(--navy); line-height: 1.15;
    margin-bottom: 1rem;
}
.vtour-heading em { font-style: italic; color: var(--aqua); }
.vtour-sub {
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 500;
    color: var(--text-mid); max-width: 50ch; margin: 0 auto;
}

.vtour-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2rem; margin-bottom: 3.5rem;
}
@media (max-width: 768px) { .vtour-grid { grid-template-columns: 1fr; } }

.vtour-item { display: flex; flex-direction: column; gap: 1rem; }
.vtour-embed {
    position: relative; border-radius: var(--radius-md);
    overflow: hidden; aspect-ratio: 16/9;
    background: var(--cream-dk);
    box-shadow: 0 16px 48px rgba(10,22,40,0.1);
}
.vtour-embed iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: none;
}
.vtour-caption {
    font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); text-align: center;
}
.vtour-cta-row { text-align: center; }

/* ============================================================
   MAX — MEET YOUR GUIDE
   ============================================================ */
.max-section {
    background: var(--cream-bg);
    padding: calc(var(--section-v) + 60px) var(--gutter);
    position: relative;
    overflow: hidden;
}
.max-container {
    max-width: min(1200px, 92vw); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}
@media (max-width: 768px) { .max-container { grid-template-columns: 1fr; } }

.max-photo-col {}
.max-photo-wrap {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    max-width: 440px;
    margin: 0 auto;
    border: 10px solid rgba(255,255,255,0.12);
    box-shadow: 0 32px 80px rgba(10,22,40,0.14);
}
.max-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.8);
    transform-origin: center 35%;
    transition: transform 0.6s var(--ease-out);
}
.max-photo-wrap:hover .max-photo { transform: scale(1.85); }

.max-content-col { display: flex; flex-direction: column; }
.max-heading {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 400; color: var(--navy);
    line-height: 1.1; margin-bottom: 2rem;
}
.max-heading em { font-style: italic; color: var(--aqua); }

.max-quote {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    font-style: italic; font-weight: 400;
    line-height: 1.85;
    color: var(--text-mid);
    border-left: 3px solid var(--aqua);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}
.max-sig {
    font-family: var(--font-script);
    font-size: 1.6rem; font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-muted);
}

/* ============================================================
   OCEAN BG SECTIONS — text + button overrides
   ============================================================ */

/* Eyebrows */
.tours-section .section-eyebrow,
.max-section .section-eyebrow,
.tours-pg-section--cream .section-eyebrow { color: rgba(255,255,255,0.65); letter-spacing: 0.2em; }

/* Headings */
.tours-section .tours-heading,
.max-section .max-heading { color: var(--white); }

/* Heading italics — use aqua-lt so they still pop */
.tours-section .tours-heading em,
.max-section .max-heading em { color: #E5DBCA; }

/* Sub text */
.tours-section .tours-sub,
.max-section .max-sub { color: rgba(255,255,255,0.8); }

/* View all link */
.tours-section .view-all-link { color: var(--white); }
.tours-section .view-all-link:hover { color: rgba(255,255,255,0.7); gap: 0.75rem; }

/* Max quote card */
.max-quote-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(10,22,40,0.12);
    margin-bottom: 1.5rem;
    position: relative;
}

/* Quote icon */
.max-quote-card::before {
    content: "“";
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    color: var(--white);
    opacity: 0.08;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-style: normal;
    pointer-events: none;
}

/* Quote text */
.max-section .max-quote {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 300;
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    border-left: none;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 0;
}

/* Max sig */
.max-section .max-sig {
    color: #E5DBCA;
    font-size: 2.2rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* Aqua button in Max section → dark on ocean bg */
/* max-section btn inherits frosted glass from .btn-pill--aqua */

/* Tours page — cream sections */
.tours-pg-section--cream .tours-pg-heading { color: var(--white); }
.tours-pg-section--cream .tours-pg-heading em { color: var(--sand); }
.tours-pg-section--cream .tours-pg-sub { color: rgba(255,255,255,0.8); }

/* Cat dividers on ocean bg */
.tours-pg-section--cream .cat-divider-title {
    color: rgba(255,255,255,0.8);
    border-left-color: rgba(255,255,255,0.5);
}
.tours-pg-section--cream .cat-divider::after { background: rgba(255,255,255,0.2); }


/* ── MAX SECTION — layout & photo polish ────────────────── */
.max-section .max-content-col .btn-pill {
    align-self: flex-start;
}
.max-section .max-photo-wrap {
    box-shadow: 0 40px 100px rgba(10,22,40,0.25);
}
/* ── TOURS SECTION — refined header + card overrides ─────── */

/* Eyebrow: soft white — readable but secondary */
.tours-section .section-eyebrow {
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.2em;
}

/* Heading italic: warm sand tone — pops against teal without clashing */
.tours-section .tours-heading em { color: #E5DBCA; }

/* VIEW ALL TOURS → styled as a frosted glass mini-pill */
.tours-section .view-all-link {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.38);
    padding: 0.5rem 1.1rem 0.5rem 1.3rem;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    gap: 0.5rem;
    transition: background 0.25s, border-color 0.25s, gap 0.25s;
}
.tours-section .view-all-link:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.65);
    color: var(--white);
    gap: 0.75rem;
}

/* Cards: stronger lift shadow against teal bg */
.tours-section .tour-card {
    box-shadow: 0 8px 40px rgba(10,22,40,0.22);
    border: none;
}
.tours-section .tour-card:hover {
    box-shadow: 0 24px 64px rgba(10,22,40,0.30);
}

/* Book buttons inside white cards — solid aqua, not frosted glass */
.tours-section .tour-card .btn-pill--aqua {
    background: var(--aqua);
    border-color: var(--aqua);
    color: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.tours-section .tour-card .btn-pill--aqua:hover {
    background: var(--aqua-dk);
    border-color: var(--aqua-dk);
    opacity: 1;
}
.tours-section .tour-card .pill-circle {
    background: rgba(255,255,255,0.2);
}

/* ── WAVE SECTION DIVIDERS ──────────────────────────────── */
.tours-section::before,
.max-section::before,
.tours-pg-section--cream::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 72px;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'><path d='M0,0 L1440,0 L1440,45 C1080,5 900,65 600,32 C320,5 140,58 0,42 Z' fill='%23FFFFFF'/></svg>") no-repeat top / 100% 100%;
    z-index: 2;
    pointer-events: none;
}
.tours-section::after,
.max-section::after,
.tours-pg-section--cream::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 72px;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 72' preserveAspectRatio='none'><path d='M0,30 C240,70 540,5 780,38 C1020,70 1230,18 1440,35 L1440,72 L0,72 Z' fill='%23FFFFFF'/></svg>") no-repeat bottom / 100% 100%;
    z-index: 2;
    pointer-events: none;
}
/* Keep section content above waves */
.tours-container,
.max-container,
.tours-pg-container {
    position: relative;
    z-index: 3;
}

/* ============================================================
   REVIEWS MARQUEE
   ============================================================ */
.reviews-section {
    background: var(--white);
    padding: var(--section-v) 0;
    overflow: hidden;
}
.reviews-header-wrap {
    text-align: center;
    padding: 0 var(--gutter);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.reviews-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; color: var(--navy);
    line-height: 1.15; margin-bottom: 0.75rem;
}
.reviews-heading em { font-style: italic; color: var(--aqua); }
.reviews-sub {
    font-family: var(--font-body); font-size: 0.9rem;
    color: var(--text-muted);
}

.reviews-marquee-outer {
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-marquee-track {
    display: flex; gap: 1.25rem;
    width: max-content;
    animation: marqueeScroll 50s linear infinite;
}
.reviews-marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rcard {
    background: var(--cream);
    border: 1px solid rgba(10,22,40,0.06);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    width: 320px; flex-shrink: 0;
    display: flex; flex-direction: column; gap: 0.85rem;
    transition: box-shadow 0.3s;
}
.rcard:hover {
    box-shadow: 0 12px 36px rgba(10,22,40,0.09);
}
.rcard-top {
    display: flex; align-items: center; gap: 0.75rem;
}
.rcard-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-weight: 700;
    font-size: 0.75rem; color: white;
    flex-shrink: 0;
}
.rcard-meta {
    display: flex; flex-direction: column; gap: 0.1rem;
    flex: 1; min-width: 0;
}
.rcard-name {
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.85rem; color: var(--text-dark);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rcard-role {
    font-family: var(--font-body); font-size: 0.72rem;
    color: var(--text-muted);
}
.rcard-stars {
    color: var(--gold); font-size: 0.85rem; letter-spacing: 2px;
}
.rcard-text {
    font-family: var(--font-display); font-style: italic; font-weight: 400;
    font-size: 0.95rem; line-height: 1.65;
    color: var(--text-mid);
}

/* ============================================================
   FINAL CTA — AQUA SECTION
   ============================================================ */
.cta-section {
    background:
        linear-gradient(135deg, rgba(0,184,200,0.62) 0%, rgba(0,142,156,0.58) 100%),
        url('images/clear-water-bg.webp') center / cover no-repeat;
    padding: var(--section-v) var(--gutter);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-content {
    max-width: 720px; margin: 0 auto;
    position: relative; z-index: 1;
}
.cta-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(10,22,40,0.72);
    margin-bottom: 0.9rem;
}
.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 400; color: var(--navy);
    line-height: 1.1; margin-bottom: 1.25rem;
}
.cta-heading em { font-style: italic; color: rgba(10,22,40,0.7); }
.cta-sub {
    font-family: var(--font-body); font-size: 1.05rem;
    color: rgba(10,22,40,0.65); margin-bottom: 2.5rem;
    max-width: 55ch; margin-left: auto; margin-right: auto;
}
.cta-actions {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    background: var(--navy);
    border-top: none;
    padding: clamp(4rem, 8vw, 6rem) var(--gutter) 2.5rem;
    overflow: hidden;
}

/* Subtle noise texture on dark */
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/footer_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    pointer-events: none;
    z-index: 0;
}

.footer-grid, .footer-bottom {
    position: relative;
    z-index: 1;
}
.footer-grid {
    max-width: min(1200px, 92vw); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(10,22,40,0.08);
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo {
    height: 44px; width: auto; margin-bottom: 1rem;
    filter: brightness(0) invert(49%) sepia(90%) saturate(1908%) hue-rotate(155deg) brightness(97%) contrast(102%);
}
.footer-tagline {
    font-family: var(--font-body); font-size: 0.9rem;
    color: rgba(255,255,255,0.55); line-height: 1.65;
    max-width: 280px; margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.social-icon:hover {
    border-color: var(--aqua);
    color: var(--aqua-lt);
    background: rgba(0,184,200,0.15);
}

.footer-right { display: flex; gap: 3rem; justify-content: flex-end; }
.footer-col { min-width: 120px; }
.footer-col-title {
    font-family: var(--font-body); font-size: 0.7rem;
    font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--aqua);
    margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li, .footer-col a {
    font-family: var(--font-body); font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    max-width: min(1200px, 92vw); margin: 0 auto;
    padding-top: 2rem;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p {
    font-family: var(--font-body); font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--aqua); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   INNER PAGE — navbar always frosted, body offset
   ============================================================ */
body.inner-page {
    padding-top: 76px;
}
body.inner-page #navbar {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    padding: 0.85rem var(--gutter);
    box-shadow: 0 1px 24px rgba(10,22,40,0.07);
}
body.inner-page .nav-logo {
    filter: brightness(0) invert(49%) sepia(90%) saturate(1908%) hue-rotate(155deg) brightness(97%) contrast(102%);
}
body.inner-page .nav-links a { color: var(--text-dark); }
body.inner-page .nav-links a:hover { color: var(--aqua-dk); }
body.inner-page .hamburger span { background: var(--navy); }
body.inner-page .btn-pill--ghost {
    color: var(--navy);
    border-color: rgba(10,22,40,0.2);
}
body.inner-page .btn-pill--ghost:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}
/* Active nav link */
.nav-active { color: var(--aqua) !important; }

/* ============================================================
   PAGE BANNER — cinematic left-aligned inner hero
   ============================================================ */
.page-banner {
    position: relative;
    height: clamp(400px, 58vh, 600px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.page-banner-bg { position: absolute; inset: 0; }
.page-banner-img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
}
.page-banner-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.35) 60%, rgba(10,22,40,0.15) 100%),
        linear-gradient(to top,   rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.05) 50%);
}
.page-banner-content {
    position: relative; z-index: 2;
    width: 100%;
    padding: 0 var(--gutter) clamp(3rem, 6vw, 5rem);
    max-width: min(900px, 100%);
}
.page-banner-eyebrow {
    display: block;
    font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--aqua); margin-bottom: 0.85rem;
}
.page-banner-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 300; line-height: 1.05; color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 40px rgba(10,22,40,0.4);
}
.page-banner-title em { font-style: italic; color: var(--aqua-lt); }
.page-banner-sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.8vw, 1.05rem);
    color: rgba(255,255,255,0.78); font-weight: 400;
    max-width: 56ch;
}

/* ── Breadcrumb bar ──────────────────────────────────────── */
.page-breadcrumb {
    background: var(--white);
    border-bottom: none;
    padding: 3rem var(--gutter) 1rem;
    display: flex;
    justify-content: center;
}
.page-breadcrumb-inner {
    width: fit-content;
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-body); font-size: 0.8rem;
    padding: 0.65rem 1.75rem;
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.05);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 25px rgba(10,22,40,0.03);
}
.page-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--aqua-dk); }
.page-breadcrumb-sep { color: var(--text-muted); font-size: 0.75rem; }
.page-breadcrumb-current {
    color: var(--navy); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
}

/* ============================================================
   TOURS PAGE — section wrappers
   ============================================================ */
.tours-pg-section {
    padding: var(--section-v) 0;
}
.tours-pg-section--white { background: var(--white); }
.tours-pg-section--cream { background: var(--cream-bg); position: relative; overflow: hidden; }

.tours-pg-container {
    max-width: min(1380px, 92vw); margin: 0 auto;
    padding: 0 clamp(1.5rem, 3vw, 4rem);
}

.tours-pg-header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.tours-pg-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; line-height: 1.12; color: var(--navy);
    margin-top: 0.5rem; margin-bottom: 0.75rem;
}
.tours-pg-heading em { font-style: italic; color: var(--aqua); }
.tours-pg-sub {
    font-family: var(--font-body); font-size: 1rem;
    color: var(--text-mid); max-width: 52ch; margin: 0 auto;
}

/* ============================================================
   SERVICE CARDS (Professional Services section)
   ============================================================ */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
@media (max-width: 700px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10,22,40,0.08);
    display: flex; flex-direction: column;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    position: relative;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10,22,40,0.15);
}
.svc-card-img-wrap {
    position: relative; height: 200px; overflow: hidden;
}
.svc-card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s var(--ease-out);
}
.svc-card-img--logo {
    object-fit: contain; padding: 2.5rem; opacity: 0.9;
    filter: brightness(0) invert(49%) sepia(90%) saturate(1908%) hue-rotate(155deg) brightness(97%) contrast(102%);
}
.svc-card:hover .svc-card-img:not(.svc-card-img--logo) { transform: scale(1.06); }
.svc-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.2), transparent 60%);
}
.svc-card-body {
    padding: 1.75rem 1.75rem 1.75rem;
    display: flex; flex-direction: column; flex: 1; gap: 0;
}
.svc-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 500;
    color: var(--navy); line-height: 1.2;
    margin-bottom: 0.65rem;
}
.svc-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem; line-height: 1.7;
    color: var(--text-mid); margin-bottom: 1rem;
}
.svc-includes {
    list-style: none; display: flex; flex-direction: column;
    gap: 0.35rem; margin-bottom: 1.5rem;
}
.svc-includes li {
    font-family: var(--font-body); font-size: 0.85rem;
    color: var(--text-mid); padding-left: 1rem; position: relative;
}
.svc-includes li::before {
    content: '✦';
    position: absolute; left: 0;
    color: var(--aqua); font-size: 0.6rem;
    top: 0.2rem;
}

/* ============================================================
   CATEGORY DIVIDERS
   ============================================================ */
.cat-divider {
    display: flex; align-items: center;
    gap: 1.25rem; margin: 4rem 0 2rem;
}
.cat-divider-title {
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--aqua-dk); white-space: nowrap;
    border-left: 3px solid var(--aqua);
    padding-left: 0.9rem;
}
.cat-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(10,22,40,0.08);
}

/* ============================================================
   TOUR CARDS (Pricing Guide)
   ============================================================ */
.tcard-grid {
    display: grid; gap: 1.5rem; align-items: stretch;
    margin-bottom: 0;
}
.tcard-grid--2col { grid-template-columns: repeat(2, 1fr); }
.tcard-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .tcard-grid--3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .tcard-grid--2col,
    .tcard-grid--3col { grid-template-columns: 1fr; }
}

.tcard {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10,22,40,0.08);
    display: flex; flex-direction: column;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
    position: relative;
}
.tcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10,22,40,0.15);
}
.tcard-img-wrap {
    position: relative; height: 260px; overflow: hidden; flex-shrink: 0;
}
.tcard-img-wrap::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.4), transparent 40%);
    pointer-events: none;
}
.tcard-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.tcard:hover .tcard-img { transform: scale(1.08); }
.tcard-badge {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: var(--navy);
    font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.45rem 1.1rem; border-radius: var(--radius-pill);
    box-shadow: 0 6px 20px rgba(10,22,40,0.15);
    z-index: 2;
}
.tcard-body {
    padding: 1.75rem;
    display: flex; flex-direction: column; flex: 1;
}
.tcard-title {
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 500;
    color: var(--navy); line-height: 1.2;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.tcard:hover .tcard-title { color: var(--aqua-dk); }
.tcard-desc {
    font-family: var(--font-body); font-size: 0.92rem; line-height: 1.7;
    color: var(--text-mid); margin-bottom: 1.25rem;
}
.tcard-prices {
    border-top: 1px solid rgba(10,22,40,0.06);
    padding-top: 1rem;
    margin-bottom: 1.5rem;
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 0.6rem;
    border-bottom: 1px dashed rgba(10,22,40,0.12);
    border-radius: 6px;
    transition: background 0.2s;
}
.price-row:hover { background: rgba(0,184,200,0.06); }
.price-row--last { border-bottom: none; }
.price-label {
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    color: var(--text-mid);
}
.price-value {
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
    color: var(--navy); text-align: right;
}
.tcard-note {
    font-family: var(--font-body); font-size: 0.8rem; font-style: italic;
    color: var(--text-muted); margin-bottom: 1rem;
}
.tcard-body .btn-pill { margin-top: auto; width: 100%; justify-content: center; }

/* ── FEATURED TOUR CARD (Combination) ───────────────────── */
.tcard-featured {
    margin: 3rem 0;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 80px rgba(10,22,40,0.25);
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 420px;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.tcard-featured:hover { 
    transform: translateY(-8px);
    box-shadow: 0 30px 100px rgba(10,22,40,0.35);
}
@media (max-width: 768px) { .tcard-featured { grid-template-columns: 1fr; } }

.tcard-featured-img-wrap {
    position: relative; overflow: hidden;
    min-height: 320px;
}
.tcard-featured-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.tcard-featured:hover .tcard-featured-img { transform: scale(1.08); }
.tcard-featured-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(255,255,255,0.15));
}
.tcard-featured-label {
    position: absolute; top: 1.5rem; left: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FDB813);
    color: #000;
    font-family: var(--font-body); font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
    box-shadow: 0 8px 25px rgba(255,215,0,0.4);
    z-index: 2;
}
.tcard-badge--lg {
    font-size: 0.8rem; padding: 0.5rem 1.1rem;
    background: rgba(255,255,255,0.95);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(10,22,40,0.1);
}
.tcard-featured-body {
    padding: 2.5rem 3rem;
    display: flex; flex-direction: column; gap: 1.25rem;
}
.tcard-featured-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem; flex-wrap: wrap;
    position: relative; /* Contain duration badges */
}
.tcard-featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500; line-height: 1.15; color: var(--navy);
}
.tcard-featured-title em { font-style: italic; color: var(--aqua-dk); }
.tcard-featured-prices {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
    border-top: 1px solid rgba(10,22,40,0.08);
    padding-top: 1.25rem;
    margin-bottom: 0.5rem;
}
@media (max-width: 500px) { .tcard-featured-prices { grid-template-columns: 1fr; } }
.tcard-featured-price-col {
    padding: 0.25rem 0.5rem 0.25rem 0;
}
.tcard-featured-body .btn-pill { align-self: flex-start; }

/* ============================================================
   EXTRAS CALLOUT
   ============================================================ */
.extras-callout {
    margin-top: 1rem;
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(10,22,40,0.05);
    gap: 2.5rem;
    position: relative;
    z-index: 5;
}
.extras-callout::before {
    content: '';
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--aqua);
    border-radius: 0 0 4px 4px;
}
@media (max-width: 800px) {
    .extras-callout { padding: 2rem; }
}
.extras-callout-left {
    max-width: 600px;
}
.extras-callout-heading {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 400; color: var(--navy);
    line-height: 1.2; margin-bottom: 0.6rem;
}
.extras-callout-heading em { font-style: italic; color: var(--sand); }
.extras-callout-sub {
    font-family: var(--font-body); font-size: 1rem;
    color: var(--text-mid);
}
.extras-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}
.extras-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    background: #fdfdfd;
    border: 1px solid rgba(10,22,40,0.04);
    border-radius: var(--radius-md);
    padding: 1.25rem 2.2rem;
    transition: all 0.3s var(--ease-out);
}
.extras-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(10,22,40,0.06);
    border-color: var(--aqua-lt);
}
.extras-name {
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    color: var(--navy);
}
.extras-price {
    font-family: var(--font-body); font-size: 0.8rem;
    color: var(--aqua-dk); font-weight: 500;
}


/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-pg-section {
    background: var(--white);
    padding: clamp(3rem, 6vw, 6rem) var(--gutter);
}
.gallery-pg-container {
    max-width: min(1260px, 94vw);
    margin: 0 auto;
}
.gallery-pg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1rem;
}
@media (max-width: 900px) {
    .gallery-pg-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}
@media (max-width: 500px) {
    .gallery-pg-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
}

.gitem {
    position: relative; overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: var(--cream-dk);
}
.gitem--featured { grid-column: span 2; grid-row: span 2; }
.gitem--wide     { grid-column: span 2; }
@media (max-width: 500px) {
    .gitem--featured,
    .gitem--wide { grid-column: span 1; grid-row: span 1; }
}

.gitem img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}
.gitem:hover img { transform: scale(1.06); }

.gitem-overlay {
    position: absolute; inset: 0;
    background: rgba(10,22,40,0);
    transition: background 0.35s;
}
.gitem:hover .gitem-overlay { background: rgba(10,22,40,0.22); }

.gitem-zoom {
    position: absolute; bottom: 1rem; right: 1rem;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
    opacity: 0; transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
}
.gitem:hover .gitem-zoom { opacity: 1; transform: translateY(0); }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(5,10,20,0.95);
    backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }

.lightbox-img {
    max-width: min(90vw, 1100px); max-height: 82vh;
    object-fit: contain; border-radius: var(--radius-md);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    display: block;
}
.lightbox-close {
    position: absolute; top: 1.25rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none;
    transition: background 0.25s, transform 0.25s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none;
    transition: background 0.25s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
@media (max-width: 600px) {
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}
.lightbox-caption {
    position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-pg-section {
    background: var(--cream);
    padding: clamp(3.5rem, 7vw, 7rem) var(--gutter);
}
.booking-layout {
    max-width: min(1100px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 960px) {
    .booking-layout { grid-template-columns: 1fr; }
}

/* Form Card */
.booking-form-card {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.07);
    border-radius: var(--radius-lg);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    box-shadow: 0 4px 30px rgba(10,22,40,0.06);
}
.booking-form-header { margin-bottom: 2rem; }
.booking-form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 400; color: var(--navy); margin-bottom: 0.45rem;
}
.booking-form-header p {
    font-size: 0.9rem; color: var(--text-mid); line-height: 1.6;
}

/* Form fields */
.form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
    margin-bottom: 1.25rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    color: var(--text-dark); letter-spacing: 0.02em;
}
.form-group .required { color: var(--aqua-dk); margin-left: 0.1em; }
.form-optional { font-weight: 400; color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body); font-size: 0.9rem;
    color: var(--text-dark); background: var(--cream);
    border: 1.5px solid rgba(10,22,40,0.11);
    border-radius: var(--radius-sm);
    padding: 0.78rem 1rem;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    outline: none; width: 100%; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 3px rgba(0,184,200,0.12);
    background: var(--white);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5870' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-color: var(--cream);
    padding-right: 2.5rem; cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* Custom Datepicker */
.datepicker-wrap { position: relative; }
.datepicker-icon {
    position: absolute; right: 0.9rem; top: 50%; transform: translateY(-50%);
    color: var(--text-muted); pointer-events: none;
}
.datepicker-dropdown {
    display: none; position: absolute; top: calc(100% + 6px); left: 0;
    z-index: 600; min-width: 290px;
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 50px rgba(10,22,40,0.13);
    padding: 1rem;
}
.datepicker-dropdown.is-open { display: block; }
.dp-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 0.75rem;
}
.dp-month-year {
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    color: var(--navy);
}
.dp-nav {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); border: none; background: none;
    transition: background 0.2s, color 0.2s; cursor: pointer;
}
.dp-nav:hover { background: var(--cream-dk); color: var(--navy); }
.dp-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    text-align: center; margin-bottom: 0.4rem;
}
.dp-weekdays span {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--text-muted); padding: 0.25rem 0;
}
.dp-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-day {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; border-radius: 50%; cursor: pointer;
    color: var(--text-dark);
    transition: background 0.15s, color 0.15s;
    border: none; background: none; font-family: var(--font-body);
}
.dp-day:hover:not(.dp-disabled) { background: var(--aqua-glow); color: var(--aqua-dk); }
.dp-day.dp-today { font-weight: 700; color: var(--aqua-dk); }
.dp-day.dp-selected { background: var(--aqua); color: var(--navy); font-weight: 700; }
.dp-day.dp-disabled { color: rgba(10,22,40,0.2); cursor: not-allowed; }
.dp-empty { background: none !important; cursor: default; }

/* Submit Button */
.btn-booking-submit {
    display: block; width: 100%;
    background: var(--aqua); color: var(--white);
    font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 1rem 2rem; border-radius: var(--radius-pill);
    border: none; cursor: pointer;
    transition: all 0.3s var(--ease-out); margin-top: 0.5rem;
}
.btn-booking-submit:hover {
    background: var(--aqua-dk); transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,184,200,0.28);
}
.btn-booking-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

/* Success State */
.booking-success {
    display: none; flex-direction: column; align-items: center;
    text-align: center; padding: 3rem 2rem; gap: 1rem;
}
.booking-success-icon {
    width: 68px; height: 68px; border-radius: 50%;
    background: rgba(0,184,200,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--aqua-dk);
}
.booking-success h3 {
    font-family: var(--font-display); font-size: 1.9rem; font-weight: 400;
    color: var(--white);
}
.booking-success p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.btn-booking-secondary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.7rem 1.75rem; border-radius: var(--radius-pill);
    background: var(--cream-dk); color: var(--navy);
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
}
.btn-booking-secondary:hover { background: var(--cream); transform: translateY(-2px); }

/* What Happens Next */
.booking-next-steps {
    margin-top: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.07);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: 0 2px 16px rgba(10,22,40,0.04);
}
.booking-next-steps h4 {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 500;
    color: var(--navy); margin-bottom: 1.25rem;
}
.next-steps-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.next-steps-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.step-num {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: var(--aqua); color: var(--navy);
    font-family: var(--font-body); font-size: 0.76rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.next-steps-list li span:last-child {
    font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; padding-top: 0.2rem;
}

/* Sidebar */
.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

/* Chat Card */
.booking-chat-card {
    background: var(--navy); border-radius: var(--radius-lg);
    padding: 2rem; display: flex; flex-direction: column; gap: 0.5rem;
}
.booking-chat-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(0,184,200,0.14);
    display: flex; align-items: center; justify-content: center;
    color: var(--aqua); margin-bottom: 0.35rem;
}
.booking-chat-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--aqua);
}
.booking-chat-card h3 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    color: var(--white); line-height: 1.2;
}
.booking-chat-card p {
    font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-top: 0.2rem;
}
.btn-booking-chat {
    display: flex; align-items: center; justify-content: center;
    background: var(--aqua); color: var(--navy);
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.82rem 1.5rem; border-radius: var(--radius-pill);
    border: none; cursor: pointer; margin-top: 0.5rem;
    text-decoration: none; transition: all 0.3s var(--ease-out);
}
.btn-booking-chat:hover { background: var(--aqua-dk); transform: translateY(-2px); }
.booking-wa-subtle {
    display: block; text-align: center;
    font-size: 0.78rem; color: rgba(255,255,255,0.45);
    text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s;
}
.booking-wa-subtle:hover { color: rgba(255,255,255,0.8); }

/* Tour Quick Reference */
.booking-tours-ref {
    background: var(--white);
    border: 1px solid rgba(10,22,40,0.07);
    border-radius: var(--radius-lg); padding: 1.75rem;
    box-shadow: 0 2px 14px rgba(10,22,40,0.04);
}
.booking-tours-ref h4 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
    color: var(--navy); margin-bottom: 1.25rem;
}
.booking-tour-list { display: flex; flex-direction: column; }
.booking-tour-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 0; border-bottom: 1px solid rgba(10,22,40,0.06);
}
.booking-tour-list li:last-child { border-bottom: none; }
.btl-name { font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.btl-detail { font-size: 0.78rem; color: var(--text-muted); }
.booking-all-tours-link {
    display: block; text-align: center; margin-top: 1.25rem;
    font-size: 0.8rem; font-weight: 600; color: var(--aqua-dk);
    text-transform: uppercase; letter-spacing: 0.08em;
    text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s;
}
.booking-all-tours-link:hover { color: var(--navy); }

/* Trust Signals */
.booking-trust {
    background: var(--cream);
    border: 1px solid rgba(10,22,40,0.06);
    border-radius: var(--radius-lg); padding: 1.5rem;
    display: flex; flex-direction: column; gap: 0.9rem;
}
.booking-trust-item {
    display: flex; align-items: flex-start; gap: 0.85rem;
    font-size: 0.85rem; color: var(--text-mid); line-height: 1.5;
}
.booking-trust-item svg { flex-shrink: 0; color: var(--aqua-dk); margin-top: 0.1rem; }

/* ============================================================
   SPLIT BOOKING LAYOUT  (.bsplit-*)
   Full-viewport two-column: photo left · form right
   ============================================================ */

/* Remove navbar box-shadow + border on booking split page (no visible line) */
body.booking-split-page #navbar {
    box-shadow: none !important;
    border-bottom: none !important;
}
/* ── BOOKING PAGE FOOTER (.bfooter) ────────────────────────────
   Fixed behind bsplit. Full-viewport-height background so the
   cream fills everything behind the curves. Content at bottom.
   ─────────────────────────────────────────────────────────── */
.bfooter {
    position: fixed;
    top: 0; bottom: 0; left: 0; right: 0;
    z-index: 0;
    background: var(--cream-dk);
    overflow: hidden;
    /* content anchored to bottom */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.bfooter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/sand-texture.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.bfooter-inner {
    position: relative;
    z-index: 1;
    /* Matches the visible footer area (scroll room = 62vh + 80px) */
    height: calc(62vh + 80px);
    padding: clamp(2rem, 4vh, 3rem) var(--gutter) clamp(1.5rem, 3vh, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Logo — centered at the top of the footer */
.bfooter-logo-wrap {
    display: flex;
    justify-content: center;
    padding-top: clamp(1rem, 3vh, 2rem);
}
.bfooter-logo {
    height: 110px;
    width: auto;
    /* Targets --aqua-dk (#0DABA4) to match the italic "Bimini." text */
    filter: brightness(0) invert(49%) sepia(90%) saturate(1908%) hue-rotate(155deg) brightness(97%) contrast(102%);
}

/* Main grid */
.bfooter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
    border-bottom: 1px solid rgba(10,22,40,0.1);
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    align-items: flex-end;
}

/* Left: statement */
.bfooter-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--aqua-dk);
    margin-bottom: 0.75rem;
}
.bfooter-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--navy);
}
.bfooter-heading em {
    font-style: italic;
    color: var(--aqua-dk);
}

/* Right: where next */
.bfooter-where {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.bfooter-links {
    list-style: none;
    display: flex;
    flex-direction: column;
}
.bfooter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(10,22,40,0.1);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}
.bfooter-link:first-child { border-top: 1px solid rgba(10,22,40,0.1); }
.bfooter-link:hover { color: var(--aqua-dk); }
.bfooter-link-arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(10,22,40,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.bfooter-link:hover .bfooter-link-arrow {
    background: var(--aqua-dk);
    border-color: var(--aqua-dk);
    color: white;
}

/* Bottom bar */
.bfooter-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    gap: 1rem;
    flex-wrap: wrap;
}
.bfooter-bottom a { color: var(--aqua); text-decoration: none; }
.bfooter-bottom a:hover { text-decoration: underline; }

/* Body bg matches footer colour — no white gap behind the curves */
body.booking-split-page {
    padding-top: 0;
    background: var(--cream-dk);
}

.bsplit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Extends 80px below the viewport so the curved bottom
       is hidden on load — scrolling up reveals the curve first,
       then the footer underneath */
    height: calc(100vh + 80px);
    min-height: 700px;
    position: relative;
    z-index: 2;
    clip-path: inset(0 0 0 0 round 0 0 72px 72px);
}

/* ── LEFT: Photo panel ─────────────────────────────────────── */
.bsplit-left {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bsplit-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    z-index: 0;
}

.bsplit-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(10,22,40,0.22) 0%,
        rgba(10,22,40,0.18) 40%,
        rgba(10,22,40,0.55) 72%,
        rgba(10,22,40,0.72) 100%
    );
}

/* Heading over photo — centered in photo area */
.bsplit-hero-text {
    position: absolute; z-index: 2;
    top: 42%; left: 0; right: 0;
    transform: translateY(-50%);
    padding: 0 clamp(2rem, 5vw, 5rem);
    text-align: center;
}

.bsplit-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 2rem;
    display: block;
}

.bsplit-heading {
    font-family: var(--font-script);
    font-size: clamp(4.5rem, 9vw, 8.5rem);
    font-weight: 400;
    line-height: 0.85;
    color: var(--white);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 15px rgba(0,0,0,0.2));
}

/* Dark frosted contact panel at bottom — curved top corners like Amali */
.bsplit-contact-panel {
    position: absolute; bottom: 8rem; left: 2rem; right: 2rem; z-index: 2;
    background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.72) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: clamp(1.5rem, 4vh, 2.5rem) clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bsplit-contact-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    display: block;
}

.bsplit-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
}

.bsplit-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.bsplit-contact-item svg { flex-shrink: 0; color: var(--aqua); opacity: 0.95; }
.bsplit-contact-item:hover { color: var(--aqua-lt); }

/* ── RIGHT: Form panel ─────────────────────────────────────── */
.bsplit-right {
    background: var(--white);
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(6rem, 10vh, 8rem) clamp(1.5rem, 4vw, 3rem);
}

.bsplit-form-wrap {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bsplit-form-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.bsplit-form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── AMALI-STYLE FORM INPUTS on booking page ───────────────── */
.booking-split-page .booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* Remove default bottom margin from rows inside the split form */
.booking-split-page .form-row { margin-bottom: 0; gap: 1rem; }

.booking-split-page .form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.booking-split-page .form-group input,
.booking-split-page .form-group select,
.booking-split-page .form-group textarea {
    background: #f0f2f5;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    width: 100%;
    transition: border-color 0.22s, background 0.22s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.booking-split-page .form-group input::placeholder,
.booking-split-page .form-group textarea::placeholder {
    color: rgba(10,22,40,0.3);
}
.booking-split-page .form-group input:focus,
.booking-split-page .form-group select:focus,
.booking-split-page .form-group textarea:focus {
    border-color: var(--aqua);
    background: var(--white);
}

/* Select arrow */
.booking-split-page .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230a1628' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    padding-right: 2.75rem;
    cursor: pointer;
}

/* Datepicker input on split page */
.booking-split-page .datepicker-wrap input {
    padding-right: 2.75rem;
}

/* Submit — aqua pill with arrow, matching site theme */
.booking-split-page .btn-booking-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--aqua);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem 0.9rem 0.9rem 1.75rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    margin-top: 1rem;
}
.booking-split-page .btn-booking-submit:hover {
    background: var(--aqua-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,184,200,0.3);
}
.booking-split-page .btn-booking-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.btn-booking-arrow {
    width: 36px; height: 36px;
    background: rgba(10,22,40,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.booking-split-page .btn-booking-submit:hover .btn-booking-arrow {
    background: rgba(10,22,40,0.2);
}

/* Form footer — back link + trust badge */
.bsplit-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(10,22,40,0.07);
    gap: 1rem;
    flex-wrap: wrap;
}

.bsplit-back-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.bsplit-back-link:hover { color: var(--aqua-dk); }
.bsplit-back-link svg { flex-shrink: 0; }

.bsplit-form-trust {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.bsplit-form-trust svg { color: var(--aqua-dk); flex-shrink: 0; }

/* ── RESPONSIVE — stack on mobile ──────────────────────────── */
@media (max-width: 860px) {
    .bsplit {
        grid-template-columns: 1fr;
        height: auto;
        clip-path: inset(0 0 0 0 round 0 0 40px 40px);
    }
    .bsplit-left {
        height: 44vh;
        min-height: 300px;
    }
    .bsplit-hero-text {
        top: 45%;
        padding: 0 1.5rem;
    }
    .bsplit-right {
        padding: 2rem 1.25rem 3rem;
        align-items: flex-start;
    }
    .bsplit-form-wrap { max-width: 100%; }
}

@media (max-width: 540px) {
    .bsplit-left { height: 38vh; }
    .bsplit-eyebrow { font-size: 0.65rem; }
    .bsplit-heading { font-size: 2.4rem; }
}

/* ============================================================
   MOBILE RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 480px) {
    .trust-bar-inner { gap: 1.25rem; }
    .trust-divider { display: none; }
    .story-img-stack { height: 300px; }
    .cred-sep { display: none; }
    .footer-right { flex-direction: column; gap: 2rem; }
}
