/* ================================================================
   styles.css — External styles extracted from index.html
   ================================================================ */


/* ── Music Player pause icon (hidden by default, shown via JS) ── */

#pause-icon {
    display: none;
}


/* ── Wave bars: individual heights ── */

.wave-bar:nth-child(1) {
    height: 20px;
}

.wave-bar:nth-child(2) {
    height: 16px;
}

.wave-bar:nth-child(3) {
    height: 24px;
}

.wave-bar:nth-child(4) {
    height: 14px;
}

.wave-bar:nth-child(5) {
    height: 20px;
}


/* ── Header: fixed positioning (complements Tailwind classes) ── */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}


/* ── Header inner: fixed height ── */

.header-inner {
    height: 72px;
}


/* ── Hero section: padding-top for fixed header ── */

#hero {
    padding-top: 72px;
}


/* ── Hero slides: background images ── */

.hero-slide {
    background-image: url('gallery/hero1.webp');
}





/* ── Hero content wrapper z-index ── */

.hero-content {
    z-index: 10;
}





/* ── Marquee bar background ── */

.marquee-bar {
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(20, 15, 0, 0.9));
}


/* ── Tour card: gradient border ── */

.tour-gradient-border {
    background: linear-gradient(135deg, #f2c94c, #0b6b5b, #f2c94c);
}

.tour-gradient-inner {
    background: #f8f7f5;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}


/* ── Popular badge ── */

.popular-badge {
    background: linear-gradient(90deg, #f2c94c, #fbbf24);
}


/* ── Tour card image area ── */

.card-img-fixed {
    height: 260px;
    flex-shrink: 0;
}


/* ── Tour card image overlay ── */

.card-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
}


/* ── Tour card bottom border ── */

.tour-card-body {
    border: 1px solid rgba(242, 201, 76, 0.25);
    border-top: none;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}


/* ── Second tour card: transition delay ── */

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}


/* ── About section: image max height ── */

.about-img {
    max-height: 420px;
}


/* ── About floating badge: animation delay ── */

.float-delay-3 {
    animation-delay: -3s;
}


/* ── Extra pill: image container height ── */

.extra-img-wrap {
    height: 160px;
}


/* ── Extra pill image overlay ── */

.extra-img-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}


/* ── Review avatar gradients ── */

.avatar-gold {
    background: linear-gradient(135deg, #f2c94c, #d97706);
}

.avatar-green {
    background: linear-gradient(135deg, #0b6b5b, #085e4e);
}

.avatar-yellow {
    background: linear-gradient(135deg, #f2c94c, #fbbf24);
}


/* ── Review card: transition delays ── */

.review-delay-1 {
    transition-delay: .15s;
}

.review-delay-2 {
    transition-delay: .3s;
}


/* ── Contact divider lines ── */

.divider-left {
    background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.2));
}

.divider-right {
    background: linear-gradient(90deg, rgba(242, 201, 76, 0.2), transparent);
}


/* ── Footer wave wrapper ── */

.footer-wave-wrap {
    display: block;
    line-height: 0;
    overflow: hidden;
    margin-top: -1px;
}

.footer-wave-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}


/* ── Footer wave body ── */

.footer-wave-body {
    background: linear-gradient(135deg, #085e4e 0%, #0b6b5b 100%);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    overflow: hidden;
}


/* ── Gold shimmer top accent ── */

.footer-gold-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e0be92 30%, #f2c94c 50%, #e0be92 70%, transparent 100%);
    opacity: 0.6;
}


/* ── Footer content container ── */

.footer-wave-body .max-w-7xl {
    width: 100%;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


/* ── Footer nav links ── */

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s ease, text-shadow 0.25s ease;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f2c94c, #30d5c8);
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.footer-nav-link:hover {
    color: #f2c94c;
    text-shadow: 0 0 12px rgba(242, 201, 76, 0.3);
}

.footer-nav-link:hover::after {
    width: 100%;
}

@media (max-width: 640px) {
    .footer-nav-link {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
}


/* ══════════════════════════════════════════════
   HEADER LOGO WRAP — gold+teal glow on white glass
   ══════════════════════════════════════════════ */

.header-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px;
    border-radius: 16px;
    /* Soft gold ring that echoes the sandy LILI letters */
    background: linear-gradient(135deg, rgba(224, 190, 146, 0.18) 0%, rgba(48, 213, 200, 0.12) 100%);
    border: 1.5px solid rgba(224, 190, 146, 0.35);
    box-shadow: 0 0 14px rgba(224, 190, 146, 0.20), 0 0 28px rgba(48, 213, 200, 0.10), inset 0 0 8px rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.3s ease;
}

.header-logo-wrap:hover,
a:hover .header-logo-wrap {
    border-color: rgba(224, 190, 146, 0.65);
    box-shadow: 0 0 22px rgba(224, 190, 146, 0.40), 0 0 45px rgba(48, 213, 200, 0.18), inset 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.04);
}


/* keep logo itself readable on white header */

.header-logo-wrap img {
    mix-blend-mode: multiply;
}


/* ══════════════════════════════════════════════
   FOOTER LOGO WRAP — white pill shows logo naturally on dark teal
   ══════════════════════════════════════════════ */

.footer-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 18px;
    /* White pill so the logo's gold & teal colors read correctly */
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(224, 190, 146, 0.55);
    box-shadow: 0 0 18px rgba(224, 190, 146, 0.30), 0 0 36px rgba(48, 213, 200, 0.15), 0 4px 20px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.3s ease;
}

.footer-logo-wrap:hover,
a:hover .footer-logo-wrap {
    border-color: rgba(224, 190, 146, 0.90);
    box-shadow: 0 0 32px rgba(224, 190, 146, 0.55), 0 0 60px rgba(48, 213, 200, 0.22), 0 6px 28px rgba(0, 0, 0, 0.22);
    transform: scale(1.05);
}


/* Logo shows with natural colors — no filter needed */

.footer-logo-wrap img {
    display: block;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
}

.footer-logo-wrap:hover img,
a:hover .footer-logo-wrap img {
    transform: scale(1.03);
}


/* ── Footer logo (legacy — keep for backward compat) ── */

.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.footer-logo:hover {
    opacity: 1;
}


/* ══════════════════════════════════════════════
   PRICE "VRAAG ONS" BADGE — hover reveals phone + WhatsApp CTA
   ══════════════════════════════════════════════ */

.price-ask-badge {
    position: absolute;
    cursor: pointer;
}

.price-ask-badge .price-phone-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: linear-gradient(135deg, #0b6b5b, #085e4e);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.25s;
    border: 1px solid rgba(224, 190, 146, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), 0 0 12px rgba(48, 213, 200, 0.15);
    z-index: 50;
    text-align: center;
}

.price-ask-badge .price-phone-tooltip small {
    display: block;
    color: #30d5c8;
    font-size: 10px;
    margin-top: 2px;
    font-style: normal;
}


/* Arrow above tooltip */

.price-ask-badge .price-phone-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #0b6b5b;
}

.price-ask-badge:hover .price-phone-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}


/* Pulse glow on the badge itself to draw attention */

.price-ask-badge {
    animation: price-badge-pulse 2.8s ease-in-out infinite;
}

@keyframes price-badge-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(224, 190, 146, 0);
    }
    50% {
        box-shadow: 0 0 14px rgba(224, 190, 146, 0.45);
    }
}


/* ── Footer WhatsApp button ── */

.footer-wa-btn {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}


/* ── Footer divider ── */

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 190, 146, 0.35), rgba(48, 213, 200, 0.25), rgba(224, 190, 146, 0.35), transparent);
    opacity: 0.8;
}


/* ── Footer copyright ── */

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-copy strong {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.footer-copy:hover {
    color: rgba(255, 255, 255, 0.75);
}


/* ── Footer responsive layout ── */

@media (max-width: 1024px) {
    .max-w-7xl.mx-auto.px-6.py-12 {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .footer-wave-body {
        padding: 16px 0 !important;
    }
    .footer-wave-body .max-w-7xl {
        padding-left: 12px;
        padding-right: 12px;
    }
    .footer-copy {
        text-align: center;
        font-size: 0.8125rem;
    }
}

@media (max-width: 640px) {
    .footer-copy {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}





/* ── Footer social media buttons enhanced ── */

.footer-wave-body .group svg {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-wave-body .group:hover svg {
    filter: drop-shadow(0 0 8px currentColor);
    transform: scale(1.08);
}


/* ================================================================
   TEXT COLOUR FIXES — Ensure readable contrast on all backgrounds
   Main palette: turquoise #30d5c8, sandy/gold #e0be92, white #fff
   ================================================================ */


/* ── Tour card body: cream bg (#f8f7f5) needs DARK text ─────────── */

.tour-card-body h3,
.tour-card-body p,
.tour-card-body span:not(.gold-shimmer) {
    color: #1a2e28 !important;
    /* deep teal-black — readable on cream */
}

.tour-card-body .glass {
    background: rgba(11, 107, 91, 0.08);
    border-color: rgba(11, 107, 91, 0.2);
    color: #0b6b5b !important;
}


/* Feature pill text inside tour card */

.tour-card-body .glass span,
.tour-card-body span.px-2 {
    color: #0b5e4c !important;
}


/* Tour card h3 hover: gold → teal for contrast on cream */

.tour-card:hover .tour-card-body h3 {
    color: #0b6b5b !important;
}


/* ── Glass panels on dark bg: keep white text ────────────────────── */

.glass-gold p,
.glass-gold span:not(.gold-shimmer),
.glass-gold div:not(.gold-shimmer) {
    color: rgba(255, 255, 255, 0.9);
}


/* ── Section headings — dark forest teal ──────────────────── */

section h2,
section h3,
section h4 {
    color: #0c2820 !important;
}


/* ── Body paragraph text — dark teal-slate ───────────────────────────── */

section p {
    color: #1f3530 !important;
}


/* ── Tour card body overrides section rule (light bg) ────────────── */

.tour-card-body p,
.tour-card-body h3,
.tour-card-body h4 {
    color: #1a2e28 !important;
}


/* ── Feature pill tags on white glass panels ─────────────────────── */

.extra-pill h4 {
    color: #0b6b5b !important;
    font-weight: 700;
}

.extra-pill p {
    color: #1a2e28 !important;
}


/* ── Review cards: glass on light bg ─────────────────────────────── */

.review-card blockquote {
    color: #1a2e28 !important;
}

.review-card p {
    color: #1a2e28 !important;
}


/* ── All Glass panels (white bg) ─────────────────────────────────── */

.glass,
.glass h2,
.glass h3,
.glass h4,
.glass h5 {
    color: #0b6b5b !important;
    /* Brand dark turquoise */
}

.glass p,
.glass div:not(.card-slideshow),
.glass li {
    color: #1a2e28 !important;
    /* Dark teal */
}

.glass span:not(.gold-shimmer) {
    color: #1a2e28 !important;
}


/* ── Footer wave body — white text on deep teal #085e4e ─────────── */

.footer-wave-body,
.footer-wave-body p,
.footer-wave-body a,
.footer-wave-body nav a,
.footer-wave-body span,
.footer-wave-body strong {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-wave-body strong {
    color: rgba(255, 255, 255, 0.92) !important;
}


/* ── Gallery heading (text-gradient was undefined) ───────────────── */

.text-gradient {
    background: linear-gradient(135deg, #e0be92, #30d5c8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* ── Form labels ─────────────────────────────────────────────────── */

label.form-label,
form label {
    color: #1a2e28 !important;
}


/* ── Contact OR divider text ─────────────────────────────────────── */

#contact .text-white\/30,
#contact .text-white\/55 {
    color: rgba(255, 255, 255, 0.65) !important;
}


/* ── Scroll indicator ────────────────────────────────────────────── */

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.70) !important;
}


/* ── Stats card in hero (glass-gold dark bg) ─────────────────────── */

.glass-gold .text-white\/70,
.glass-gold p {
    color: rgba(255, 255, 255, 0.88) !important;
}


/* ── Marquee bar items ───────────────────────────────────────────── */

.marquee-bar span {
    opacity: 1 !important;
}


/* ── Tour duration badge (white glass on dark image) ─────────── */

.card-img .glass span,
.card-img .glass a {
    color: #0b6b5b !important;
    font-weight: 600;
}


/* ================================================================
   HEADER NAV on dark teal glass → gold/white text
   ================================================================ */

header nav a,
header nav button.nav-link {
    color: #0b6b5b !important;
    font-weight: 600 !important;
}

header nav a:hover,
header nav button.nav-link:hover {
    color: #085e4e !important;
    background: rgba(11, 107, 91, 0.08) !important;
}

header nav a svg,
header nav button.nav-link svg {
    color: rgba(11, 107, 91, 0.75) !important;
}

header nav a:hover svg,
header nav button.nav-link:hover svg {
    color: #085e4e !important;
}





/* ================================================================
   HERO SECTIONS — white overlay means text must be DARK
   index.html: .hero-overlay at rgba(255,255,255,0.55-0.75)
   trip pages: inline style rgba(255,255,255,0.75)
   ================================================================ */


/* Hero heading */

#hero h1 {
    color: #ffffff !important;
}


/* Hero lead paragraph */

.hero-lead {
    color: rgba(255, 255, 255, 0.88) !important;
}

.hero-lead p.font-bold.text-white {
    color: #fff !important;
}


/* "Bekijk reizen" ghost button on hero */

#hero .glass.text-base {
    color: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

#hero .glass.text-base:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}


/* Scroll indicator on hero */

#hero .scroll-indicator span {
    color: rgba(255, 255, 255, 0.60) !important;
}


/* Trust badges on hero (glass pill) */

#hero .glass.text-sm {
    color: rgba(255, 255, 255, 0.90) !important;
}


/* Hero "Scroll" text */

.scroll-indicator .text-xs {
    color: rgba(255, 255, 255, 0.60) !important;
}


/* Trip-page hero headings (text-white on white overlay) */

section[style*="padding-top:72px"] h1 span.text-white,
section[style*="padding-top:72px"] h1 .block.text-white,
section[style*="padding-top: 72px"] h1 span {
    color: #0c2820 !important;
}


/* Trip hero lead p */

section[style*="padding-top:72px"] p {
    color: rgba(12, 40, 32, 0.80) !important;
}


/* ================================================================
   HERO OVERLAY — reduce opacity so dark text pops on the photo
   ================================================================ */

.hero-overlay {
    background: linear-gradient(135deg, rgba(10, 8, 5, 0.45) 0%, rgba(10, 8, 5, 0.25) 40%, rgba(10, 8, 5, 0.35) 60%, rgba(10, 8, 5, 0.65) 100%) !important;
}

.hero-bottom-fade {
    background: linear-gradient(to top, rgba(10, 8, 5, 0.95), transparent) !important;
}


/* ================================================================
   FORM INPUTS — ensure visible on light background
   ================================================================ */

.form-input {
    background: rgba(255, 255, 255, 0.80) !important;
    border-color: rgba(11, 107, 91, 0.2) !important;
    color: #1c1917 !important;
}

.form-input::placeholder {
    color: rgba(28, 25, 23, 0.4) !important;
}

.form-input:focus {
    background: #ffffff !important;
    border-color: #30d5c8 !important;
    color: #1c1917 !important;
}


/* ================================================================
   DETAIL PAGES — glass content panels on dark background
   ================================================================ */


/* Activity details section (white glass) */

#details .glass h3 {
    color: #0b6b5b !important;
    /* dark turquoise heading */
}

#details .glass p,
#details .glass li {
    color: #1a2e28 !important;
}


/* Sidebar price card */

.glass-gold .text-sm,
.glass-gold li {
    color: rgba(255, 255, 255, 0.85) !important;
}

.glass-gold h2,
.glass-gold .text-5xl {
    color: #ffffff !important;
}


/* Checklist items */

#details li {
    color: rgba(255, 255, 255, 0.85) !important;
}


/* ================================================================
   BLOG / OVER-LILI pages — general text fixes
   ================================================================ */

main p,
main li,
main span:not(.gold-shimmer):not([class*="text-gold"]):not([class*="text-green"]):not([class*="text-yellow"]) {
    color: rgba(255, 255, 255, 0.82);
}

main h2,
main h3,
main h4 {
    color: rgba(255, 255, 255, 0.97);
}


/* ── Stat/info boxes ──────────────────────────────────────────── */

.stat-box p,
.stat-box span {
    color: rgba(255, 255, 255, 0.85) !important;
}


/* ── Prevent override on gold-shimmer ────────────────────────── */

.gold-shimmer,
.gold-shimmer * {
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}


/* ── Turquoise accent labels (section badges) ─────────────────── */

.font-cinzel.text-gold-400 {
    color: #e0be92 !important;
    -webkit-text-fill-color: #e0be92 !important;
}


/* ================================================================
   LIGHT THEME OVERRIDES — For light turquoise bg (#e8f8f6)
   ================================================================ */


/* ── Body & page bg ── */

body {
    background: #e8f8f6 !important;
}


/* ── Animated canvas: keep it subtle on light bg ── */

#bg-canvas {
    opacity: 0.18;
}


/* ── Header glass: elegant dark-teal glass with gold accent ── */

#site-header {
    background: transparent;
}

#header-wrap {
    background: rgba(232, 248, 246, 0.9) !important;
    backdrop-filter: blur(22px) !important;
    -webkit-backdrop-filter: blur(22px) !important;
    border-bottom: 1px solid rgba(11, 107, 91, 0.15) !important;
    box-shadow: 0 4px 30px rgba(11, 107, 91, 0.08), 0 1px 0 rgba(11, 107, 91, 0.04);
}

/* ── Glass dark (dropdown menu background) ── */

.glass-dark {
    background: rgba(232, 248, 246, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(11, 107, 91, 0.15) !important;
    box-shadow: 0 20px 60px rgba(11, 107, 91, 0.15) !important;
}

/* Dropdown links inside glass-dark - text color overrides */
header nav .glass-dark a,
header nav .glass-dark a span,
header nav .glass-dark a .text-white,
header nav .glass-dark a .text-white\/70,
header nav .glass-dark a .text-white\/90,
header nav .glass-dark a .font-medium,
header nav .glass-dark a .font-light {
    color: #0b6b5b !important;
}

header nav .glass-dark a:hover,
header nav .glass-dark a:hover span,
header nav .glass-dark a:hover .text-white {
    color: #085e4e !important;
    background: rgba(11, 107, 91, 0.08) !important;
}

header nav .glass-dark a:hover .text-white,
header nav .glass-dark a:hover .text-white\/70,
header nav .glass-dark a:hover .text-white\/90,
header nav .glass-dark a:hover .font-medium,
header nav .glass-dark a:hover .font-light {
    color: #085e4e !important;
}

header nav .glass-dark a .text-white\/70,
header nav .glass-dark a .text-white\/60,
header nav .glass-dark a .font-light {
    color: rgba(11, 107, 91, 0.7) !important;
}

/* Dropdown label "Onze reizen" - force brand dark teal */
header nav .glass-dark div.font-cinzel {
    color: #085e4e !important;
    opacity: 1 !important;
}


/* ── Logo on light header: keep it natural ── */

.header-logo-wrap img {
    filter: drop-shadow(0 2px 4px rgba(11, 107, 91, 0.15)) !important;
    transition: filter 0.3s ease;
}

.header-logo-wrap img:hover {
    filter: drop-shadow(0 3px 6px rgba(11, 107, 91, 0.25)) !important;
}


/* Tailwind utility class color overrides for light mode */

.text-white {
    color: #1c1917 !important;
}

.text-white\/90 {
    color: rgba(28, 25, 23, 0.9) !important;
}

.text-white\/80 {
    color: rgba(28, 25, 23, 0.8) !important;
}

.text-white\/75 {
    color: rgba(28, 25, 23, 0.75) !important;
}

.text-white\/70 {
    color: rgba(28, 25, 23, 0.7) !important;
}

.text-white\/65 {
    color: rgba(28, 25, 23, 0.65) !important;
}

.text-white\/60 {
    color: rgba(28, 25, 23, 0.6) !important;
}

.text-white\/55 {
    color: rgba(28, 25, 23, 0.55) !important;
}

.text-white\/50 {
    color: rgba(28, 25, 23, 0.5) !important;
}

.text-white\/40 {
    color: rgba(28, 25, 23, 0.4) !important;
}

.text-white\/35 {
    color: rgba(28, 25, 23, 0.35) !important;
}

.text-white\/30 {
    color: rgba(28, 25, 23, 0.3) !important;
}


/* Ensure links in main and pages are readable dark */

main a:not(.btn-gold):not(.btn-green) {
    color: #0b6b5b !important;
}

main a:not(.btn-gold):not(.btn-green):hover {
    color: #30d5c8 !important;
}


/* Ensure the marquee bar items stand out */

.marquee-bar {
    background: linear-gradient(90deg, rgba(11, 107, 91, 0.10), rgba(8, 94, 78, 0.12)) !important;
    border-color: rgba(11, 107, 91, 0.2) !important;
}

.marquee-bar span {
    color: #0c2820 !important;
}


/* Hero bottom fade to light turquoise body */

.hero-bottom-fade {
    background: linear-gradient(to top, #e8f8f6, transparent) !important;
}


/* ================================================================
   FOOTER — Restore white text inside deep-teal wave footer.
   The global .text-white overrides above flip everything to dark;
   these rules undo that specifically inside .footer-wave-body.
   ================================================================ */

.footer-wave-body .text-white,
.footer-wave-body .text-white\/90,
.footer-wave-body .text-white\/80,
.footer-wave-body .text-white\/75,
.footer-wave-body .text-white\/70,
.footer-wave-body .text-white\/65,
.footer-wave-body .text-white\/60,
.footer-wave-body .text-white\/55,
.footer-wave-body .text-white\/50,
.footer-wave-body .text-white\/40,
.footer-wave-body .text-white\/35,
.footer-wave-body .text-white\/30 {
    color: rgba(255, 255, 255, 0.75) !important;
}


/* Phone tooltip in footer */

.footer-wave-body .phone-tooltip {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 94, 78, 0.95);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.75rem;
    border: 1px solid rgba(224, 190, 146, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.footer-wave-body #romero-link {
    position: relative;
    cursor: default;
}

.footer-wave-body #romero-link:hover .phone-tooltip {
    display: block;
}


/* ==========================================
   EXTRACTED INLINE STYLES
   ========================================== */


/* ─── Reset & Base ───────────────────────── */

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

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1c1917;
    overflow-x: hidden;
    background: #e8f8f6;
}

 ::-webkit-scrollbar {
    width: 5px
}

 ::-webkit-scrollbar-track {
    background: #d0eeeb
}

 ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0b6b5b, #30d5c8);
    border-radius: 8px
}


/* ─── Black & Gold Dancing Background ───── */

#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}


/* ─── Grain texture ───────────────────── */

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}


/* ─── Everything sits above canvas ────── */

#scroll-progress,
header,
main,
footer,
#music-player,
#lightbox {
    position: relative;
    z-index: 10
}

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #e0be92, #30d5c8, #e0be92);
    z-index: 9999;
    width: 0%;
    transition: width .06s linear
}


/* ─── Glass ──────────────────────────── */

.glass {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(224, 190, 146, 0.25);
}

.glass-gold {
    background: rgba(224, 190, 146, 0.12);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(224, 190, 146, 0.4);
}


/* ─── Shimmer text ───────────────────── */

.gold-shimmer {
    background: linear-gradient(90deg, #e0be92 0%, #f5ebdb 25%, #e0be92 50%, #c2b280 75%, #e0be92 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2.5s linear infinite;
}


/* ─── Logo icon hover glow ───────────── */

@keyframes fade-in-dot {
    0% {
        opacity: 0;
        transform: scale(0)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}


/* ─── Nav link hover ─────────────────── */

.nav-link {
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0b6b5b, #2ea090);
    transition: width .3s ease;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(11, 107, 91, 0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 16px);
}

/* Extra hover glow on nav links in light header */
header nav a.nav-link:hover {
    text-shadow: 0 0 20px rgba(11, 107, 91, 0.25);
}


/* ─── Hero slideshow — Ken Burns ─────── */

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transform: scale(1);
}


/* ─── Tour cards ─────────────────────── */

.tour-card {
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .4s ease;
    position: relative
}

.tour-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(224, 190, 146, 0.8), rgba(48, 213, 200, 0.5));
    opacity: 0;
    transition: opacity .4s ease;
    z-index: -1;
}

.tour-card:hover::before {
    opacity: 1
}

.tour-card:hover {
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), 0 0 60px rgba(224, 190, 146, 0.2)
}

.tour-card .card-img img,
.tour-card .card-img .card-slideshow {
    transition: transform .7s ease
}

.tour-card:hover .card-img img,
.tour-card:hover .card-img .card-slideshow {
    transform: scale(1.1)
}


/* ─── Card Slideshow ─────────────────── */

.card-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .7s ease;
}

.card-slideshow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: cardFade 12s infinite;
}

.card-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.card-slideshow img:nth-child(2) {
    animation-delay: 4s;
}

.card-slideshow img:nth-child(3) {
    animation-delay: 8s;
}

@keyframes cardFade {
    0%,
    25% {
        opacity: 1;
    }
    33%,
    92% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* ─── Gallery Carousel ───────────────────── */

#galleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    padding-bottom: 16px;
}

@media (min-width: 480px) {
    #galleryGrid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 14px;
    }
}

@media (min-width: 768px) {
    #galleryGrid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px;
        padding-bottom: 20px;
    }
}

#galleryGrid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

@media (max-width: 480px) {
    .gallery-item {
        border-radius: 10px;
        aspect-ratio: 3/2;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease, filter .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.75)
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}


/* ─── Lightbox ───────────────────────── */

#lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
}

#lightbox.open {
    opacity: 1;
    visibility: visible
}

#lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 80px rgba(224, 190, 146, 0.2)
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity .2s, transform .2s
}

#lightbox-close:hover {
    opacity: 1;
    transform: rotate(90deg)
}

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(224, 190, 146, 0.1);
    border: 1px solid rgba(224, 190, 146, 0.3);
    color: #e0be92;
    font-size: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

#lightbox-prev {
    left: 16px
}

#lightbox-next {
    right: 16px
}

#lightbox-prev:hover,
#lightbox-next:hover {
    background: rgba(224, 190, 146, 0.25);
    transform: translateY(-50%) scale(1.1)
}


/* ─── Music Player ───────────────────── */

#music-player {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(224, 190, 146, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 0 30px rgba(224, 190, 146, 0.08);
    transition: all .4s ease;
}

#music-player:hover {
    border-color: rgba(48, 213, 200, 0.6);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08), 0 0 40px rgba(48, 213, 200, 0.15)
}

#music-player .music-icon {
    font-size: 18px;
    animation: spin 4s linear infinite
}

#music-player.paused .music-icon {
    animation: none
}

#play-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0be92, #c2b280);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform .2s ease, box-shadow .2s ease;
}

#play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(224, 190, 146, 0.5)
}

.wave-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 24px
}

.wave-bar {
    width: 3px;
    background: #30d5c8;
    border-radius: 3px;
    transform-origin: bottom;
}

.wave-bar:nth-child(1) {
    animation: wave-bar 1.2s ease-in-out infinite;
    animation-delay: 0s
}

.wave-bar:nth-child(2) {
    animation: wave-bar 1.2s ease-in-out infinite;
    animation-delay: 0.15s
}

.wave-bar:nth-child(3) {
    animation: wave-bar 1.2s ease-in-out infinite;
    animation-delay: 0.3s
}

.wave-bar:nth-child(4) {
    animation: wave-bar 1.2s ease-in-out infinite;
    animation-delay: 0.45s
}

.wave-bar:nth-child(5) {
    animation: wave-bar 1.2s ease-in-out infinite;
    animation-delay: 0.6s
}

#music-player.paused .wave-bar {
    animation: none;
    transform: scaleY(0.3)
}

#mute-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    transition: color .2s;
    padding: 4px;
    flex-shrink: 0;
}

#mute-btn:hover {
    color: #30d5c8
}


/* ─── Reveal ─────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0)
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0)
}


/* ─── Button Glow ─────────────────────── */

.btn-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #000 !important;
    font-weight: 700;
    transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #fde68a, #fbbf24) !important;
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.5);
    transform: translateY(-3px)
}

.btn-green {
    background: linear-gradient(135deg, #0b6b5b, #085e4e);
    color: #fff !important;
    font-weight: 600;
    border: 1px solid rgba(11, 107, 91, 0.5);
    transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.btn-green:hover {
    background: linear-gradient(135deg, #0f8a75, #0b6b5b);
    box-shadow: 0 0 30px rgba(11, 107, 91, 0.4);
    transform: translateY(-2px)
}


/* ─── Extra pills ─────────────────────── */

.extra-pill {
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.extra-pill:hover {
    transform: translateY(-6px) scale(1.06);
    border-color: rgba(224, 190, 146, 0.6);
    box-shadow: 0 12px 30px rgba(224, 190, 146, 0.15)
}


/* ─── Review cards ────────────────────── */

.review-card {
    transition: transform .3s ease, box-shadow .3s ease
}

.review-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 0 30px rgba(224, 190, 146, 0.1)
}


/* ─── Form inputs ─────────────────────── */




/* ─── Mobile nav ──────────────────────── */

#mobileNav {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease;
    background: linear-gradient(180deg, #e8f8f6 0%, #d0eeeb 100%) !important;
    border-top: 1px solid rgba(11, 107, 91, 0.15) !important;
    box-shadow: 0 20px 40px rgba(11, 107, 91, 0.1) !important;
}

#mobileNav.open {
    max-height: 600px;
    opacity: 1;
}

#mobileNav a {
    color: #0b6b5b !important;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all .25s ease;
}

#mobileNav a:hover {
    color: #085e4e !important;
    background: rgba(11, 107, 91, 0.08) !important;
    border-color: rgba(11, 107, 91, 0.15) !important;
    transform: translateX(4px);
}

#mobileNav a span,
#mobileNav a div,
#mobileNav a p {
    color: #0b6b5b !important;
}

#mobileNav a:hover span,
#mobileNav a:hover div,
#mobileNav a:hover p {
    color: #085e4e !important;
}

#mobileNav a span.text-white\/60,
#mobileNav a span.font-light {
    color: rgba(11, 107, 91, 0.7) !important;
}

#mobileNav a:hover span.text-white\/60,
#mobileNav a:hover span.font-light {
    color: rgba(8, 94, 78, 0.8) !important;
}

#mobileNav div.text-gold-400\/50,
#mobileNav div.font-cinzel {
    color: #085e4e !important;
    opacity: 0.8 !important;
}

#mobileNav a:not([class*="bg-gradient"]) {
    /* default link style - not WhatsApp CTA */;
}

#mobileNav a svg {
    flex-shrink: 0;
}


/* ─── Romero phone tooltip ────────────── */

#romero-link {
    position: relative;
    cursor: default;
    color: rgba(255, 255, 255, 0.65);
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

#romero-link:hover {
    color: #f2c94c;
}

#romero-link .phone-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e0be92, #c2b280);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

#romero-link .phone-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #c2b280;
}

#romero-link:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-6px)
}

#romero-link:hover {
    color: #30d5c8
}


/* ─── Section dividers ─────────────────── */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 190, 146, 0.3), transparent)
}


/* ─── Stats ───────────────────────────── */

.stat-box {
    transition: all .4s ease
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 190, 146, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06), 0 0 20px rgba(224, 190, 146, 0.1)
}


/* ─── Cursor glow (desktop) ────────────── */

#cursor-orb {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(48, 213, 200, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: left .1s ease, top .1s ease;
}


/* ─── Hero scroll indicator ────────────── */

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

.scroll-indicator {
    animation: scroll-bounce 2s ease-in-out infinite
}


/* Mobile hamburger button */

#hamburger {
    background: rgba(11, 107, 91, 0.1);
    border: 1px solid rgba(11, 107, 91, 0.25);
    transition: all .3s ease;
}

#hamburger:hover {
    background: rgba(11, 107, 91, 0.2);
    border-color: rgba(11, 107, 91, 0.4);
}

/* Hamburger lines */

.hline {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #0b6b5b;
    border-radius: 3px;
    transition: all .3s ease;
    transform-origin: center
}

@media(prefers-reduced-motion:reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms!important;
        transition-duration: .01ms!important
    }
}


/* ═══════════════════════════════════════════════════
   MOBILE TOUCH OPTIMIZATIONS
═══════════════════════════════════════════════════ */

#music-player,
.whatsapp-btn {
    min-height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-gold {
    min-height: 48px;
}


/* ═══════════════════════════════════════════════════
   SPACING SYSTEM — Balanced, consistent spacing
   ═══════════════════════════════════════════════════ */

/* ── Section vertical rhythm ── */
section[id]:not(#hero) {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

@media (min-width: 768px) {
    section[id]:not(#hero) {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }
}

/* ── Section dividers ── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 190, 146, 0.25), transparent);
    margin-bottom: 1.5rem !important;
}

/* ── Card grids: proper gaps ── */
section[id] .grid:not(.grid-cols-1):not(.flex) {
    gap: 1.5rem !important;
}

@media (min-width: 768px) {
    section[id] .grid:not(.grid-cols-1):not(.flex) {
        gap: 1.75rem !important;
    }
}

/* ── Card inner padding ── */
.tour-card-body,
.review-card,
.extra-pill,
.about .glass,
section[id] .glass.rounded-2xl {
    padding: 1.25rem !important;
}

@media (min-width: 768px) {
    .tour-card-body,
    .review-card,
    .extra-pill {
        padding: 1.5rem !important;
    }
}

/* ── Tour card body specific spacing ── */
.tour-card-body {
    margin-top: 0.75rem;
}

.tour-card-body h3 {
    margin-bottom: 0.5rem !important;
}

.tour-card-body .flex-wrap {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.tour-card-body a[class*="btn"] {
    margin-top: 0.25rem;
}

/* ── Content blocks: text spacing ── */
section[id] .space-y-1,
section[id] .space-y-2 {
    grid-gap: 0 !important;
}

section[id] .space-y-1 > * + *,
section[id] .space-y-2 > * + * {
    margin-top: 0.75rem !important;
}

@media (min-width: 768px) {
    section[id] .space-y-1 > * + *,
    section[id] .space-y-2 > * + * {
        margin-top: 1rem !important;
    }
}

/* ── Section titles ── */
section[id] .font-display.font-black,
section[id] h2 {
    margin-bottom: 1rem !important;
}

/* ── Section description text ── */
section[id] .text-white\/75,
section[id] .text-white\/90 {
    margin-bottom: 0.75rem;
}

/* ── Hero spacing improvements ── */
.hero-content {
    padding-top: 3rem !important;
    padding-bottom: 2.5rem !important;
}

#hero .hero-lead > * + * {
    margin-top: 0.75rem !important;
}

#hero .hero-ctas {
    padding-top: 1rem !important;
    gap: 0.75rem !important;
}

#hero .hero-badge {
    margin-bottom: 0.75rem !important;
}

/* ── Gallery item padding ── */
.gallery-item {
    border-radius: 14px !important;
}

/* ── About feature cards spacing ── */
#about .grid-cols-1.sm\:grid-cols-2 {
    gap: 1rem !important;
}

#about .grid-cols-1.sm\:grid-cols-2 > .glass {
    padding: 1.25rem !important;
}

/* ── Extra pills spacing ── */
.extra-pill .p-1 {
    padding: 1rem !important;
}

.extra-pill h4 {
    margin-bottom: 0.25rem !important;
}

.extra-pill p {
    margin-top: 0.5rem !important;
}

/* ── Review cards spacing ── */
.review-card {
    padding: 1.5rem !important;
}

.review-card blockquote {
    margin-bottom: 1rem !important;
}

/* ── Contact section ── */
#contact .text-center.mb-12 {
    margin-bottom: 2rem !important;
}

#contact .reveal.mb-7 {
    margin-bottom: 1.5rem !important;
}

/* ── Footer spacing ── */
.footer-wave-body .max-w-7xl {
    padding-top: 3rem !important;
    padding-bottom: 2rem !important;
}

.footer-wave-body .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 {
    gap: 2rem !important;
}

@media (min-width: 1024px) {
    .footer-wave-body .grid-cols-1.sm\:grid-cols-2.lg\:grid-cols-4 {
        gap: 2.5rem !important;
    }
}

.footer-wave-body .space-y-1 > * + * {
    margin-top: 0.75rem !important;
}

.footer-wave-body .footer-divider {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

/* ── Marquee bar spacing ── */
.marquee-bar {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* ── Live widget spacing ── */
#live-widget .flex.flex-col.md\:flex-row {
    padding: 1rem !important;
}

@media (min-width: 768px) {
    #live-widget .flex.flex-col.md\:flex-row {
        padding: 1.25rem 1.5rem !important;
    }
}


/* ═══════════════════════════════════════════════════
   FOOTER MOBILE OPTIMIZATIONS
═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
    /* Footer social icons spacing on mobile */
    .footer-wave-body .flex.items-center.justify-center.gap-5 {
        gap: 12px !important;
    }
    /* Footer nav stack on small screens */
    .footer-wave-body nav.flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px !important;
    }
    /* Footer logo smaller on mobile */
    .footer-logo-wrap {
        padding: 4px 8px;
    }
    .footer-logo-wrap img {
        height: 32px !important;
    }
}

@media (max-width: 480px) {
    /* Social icons touch targets */
    .footer-wave-body .group {
        width: 44px !important;
        height: 44px !important;
    }
    /* Footer heading text */
    .footer-wave-body p {
        font-size: 0.875rem;
    }
    /* Better footer padding on very small screens */
    .footer-wave-body .max-w-7xl {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}


/* ══════════════════════════════════════════════════════════════
   REVIEWS INFINITE SLIDER
══════════════════════════════════════════════════════════════ */

/* Keyframe: slow continuous scroll to the left */
@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Outer wrapper: hide overflow, add relative for fade overlays */
.reviews-slider-outer {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 24px 0 32px;
    /* clip fade zones */
    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%
    );
}

/* Fade overlay – left */
.reviews-slider-fade-left {
    position: absolute;
    top: 0; left: 0;
    width: 120px; height: 100%;
    background: linear-gradient(to right, var(--color-bg, #0c1218) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Fade overlay – right */
.reviews-slider-fade-right {
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 100%;
    background: linear-gradient(to left, var(--color-bg, #0c1218) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* The scrolling track */
.reviews-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: max-content;
    animation: reviewsScroll 70s linear infinite;
    will-change: transform;
}

/* Pause on hover for comfortable reading */
.reviews-slider-outer:hover .reviews-slider-track {
    animation-play-state: paused;
}

/* Individual slide card */
.review-card-slide {
    flex: 0 0 320px;
    width: 320px;
    padding: 28px 24px;
    border-radius: 24px !important;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(242, 201, 76, 0.35) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    cursor: default;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.review-card-slide::before {
    content: '"';
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 140px;
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(242, 201, 76, 0.08);
    line-height: 1;
    transition: color 0.4s ease, transform 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.review-card-slide > * {
    position: relative;
    z-index: 1;
}

.review-card-slide:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1)) !important;
    border-color: rgba(242, 201, 76, 0.6) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 25px rgba(242, 201, 76, 0.15) !important;
}

.review-card-slide:hover::before {
    color: rgba(242, 201, 76, 0.18);
    transform: translateY(-4px);
}

.review-card-slide blockquote {
    color: rgba(255, 255, 255, 0.95) !important;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 80px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.review-card-slide.glass p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.review-card-slide.glass .text-yellow-400 {
    color: #fbbf24 !important;
}

/* Avatar inside slide */
.slide-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #111;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Responsive: narrower cards on mobile */
@media (max-width: 640px) {
    .review-card-slide {
        flex: 0 0 280px;
        width: 280px;
        padding: 18px;
    }
    .reviews-slider-fade-left,
    .reviews-slider-fade-right {
        width: 60px;
    }
}