/* =============================================
   Maa Laxmi Boating - Clean White Theme
   ============================================= */

/* --- Design Tokens --- */
:root {
    --ink:          #111827;
    --ocean:        #1d4ed8;
    --ocean-mid:    #2563eb;
    --teal:         #0891b2;
    --teal-light:   #06b6d4;
    --gold:         #f59e0b;
    --gold-light:   #fbbf24;
    --gradient-brand: linear-gradient(135deg, #1d4ed8 0%, #06b6d4 100%);

    --white:        #ffffff;
    --gray-50:      #f9fafb;
    --gray-100:     #f3f4f6;
    --gray-200:     #e5e7eb;
    --gray-300:     #d1d5db;
    --gray-400:     #9ca3af;
    --gray-500:     #6b7280;
    --gray-600:     #4b5563;
    --gray-800:     #1f2937;

    --green:        #059669;
    --amber:        #d97706;
    --red:          #dc2626;

    --shadow-xs:    0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:       0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md:    0 10px 15px rgba(0,0,0,0.06), 0 4px 6px rgba(0,0,0,0.04);
    --shadow-lg:    0 20px 25px rgba(0,0,0,0.06), 0 10px 10px rgba(0,0,0,0.02);

    --r-sm:  6px;
    --r:     10px;
    --r-lg:  14px;
    --r-xl:  20px;
    --r-full: 9999px;

    --t:      all 0.2s ease;
    --t-slow: all 0.35s ease;

    /* Legacy aliases */
    --deep-water-blue: #1d4ed8;
    --sunset-orange:   #d97706;
    --calm-teal:       #14b8a6;
    --sand-beige:      #f3eee5;
    --pure-white:      #ffffff;
    --dark-slate:      #111827;
    --success-green:   #059669;
    --warning-amber:   #d97706;
    --error-red:       #dc2626;
    --light-gray:      #f9fafb;
    --shadow-lg-old:   0 20px 40px rgba(0,0,0,0.08);
    --radius:          10px;
    --radius-sm:       6px;
    --transition:      all 0.2s ease;
    --sand:            #faf7f2;
    --off-white:       #f9fafb;
    --cream:           #faf7f2;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
}
h1 { font-size: 44px; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 32px; letter-spacing: -0.01em; }
h3 { font-size: 20px; }
h4 { font-size: 17px; }
h5 { font-size: 15px; }
a { color: var(--ocean); text-decoration: none; transition: var(--t); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px;
    border: 1.5px solid transparent; border-radius: var(--r-sm);
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
    cursor: pointer; transition: var(--t);
    text-decoration: none; text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--gray-800); color: var(--white); box-shadow: var(--shadow-md); }
.btn-cta { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-cta:hover { background: #c26a05; color: var(--white); box-shadow: 0 4px 12px rgba(217,119,6,0.25); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-teal:hover { background: #0b7c72; color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-hero-outline {
    background: rgba(255,255,255,0.12); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 14px 32px; font-size: 15px;
    font-family: 'Poppins', sans-serif; font-weight: 600;
    border-radius: var(--r-sm); cursor: pointer; transition: var(--t);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.22); color: var(--white); border-color: rgba(255,255,255,0.6); }

/* Badges */
.badge { display: inline-block; padding: 3px 10px; border-radius: var(--r-full); font-size: 12px; font-weight: 600; }
.badge-success { background: #ecfdf5; color: var(--green); }
.badge-warning { background: #fffbeb; color: var(--amber); }
.badge-danger  { background: #fef2f2; color: var(--red); }
.badge-info    { background: #f0fdfa; color: var(--teal); }

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, #0d1b3e 0%, #111827 100%);
    color: rgba(255,255,255,0.8);
    padding: 9px 0;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-content { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left a { color: rgba(255,255,255,0.75); font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.top-bar-left a:hover { color: var(--white); }
.top-bar-left i { color: var(--gold-light); font-size: 11px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar-right a {
    color: rgba(255,255,255,0.55); font-size: 13px;
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: var(--t); border: 1px solid rgba(255,255,255,0.10);
}
.top-bar-right a:hover { color: var(--white); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.top-bar-badge {
    display: flex; align-items: center; gap: 5px;
    padding: 3px 10px; border-radius: var(--r-full);
    background: rgba(217,119,6,0.2); color: var(--gold-light);
    font-size: 11.5px; font-weight: 600;
}
.top-bar-badge i { font-size: 10px; }

/* NAVIGATION */
.site-header { position: sticky; top: 0; z-index: 1000; }
.main-nav {
    background: rgba(255,255,255,0.97);
    padding: 0;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); border-bottom-color: transparent; }

/* ── Transparent navbar — homepage only ─────────────────────────────────── */
/* Top-bar floats over hero image (scrolls away when user scrolls down) */
.page-homepage .top-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 102;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Main nav sits immediately below the top-bar (~38px) */
.page-homepage .site-header {
    position: absolute;
    top: 38px; left: 0; right: 0;
    z-index: 100;
}
/* After scrolling past hero: snap nav as fixed at viewport top */
.page-homepage .site-header.nav-scrolled {
    position: fixed;
    top: 0;
}
/* Body main starts flush — both bars are out of normal flow */
.page-homepage main {
    margin-top: 0;
}
.page-homepage .main-nav {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.page-homepage .main-nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.page-homepage .main-nav:not(.scrolled) .logo-name  { color: #fff; }
.page-homepage .main-nav:not(.scrolled) .logo-tagline { color: rgba(255,255,255,0.75); }
.page-homepage .main-nav:not(.scrolled) .nav-links li a { color: rgba(255,255,255,0.88); }
.page-homepage .main-nav:not(.scrolled) .nav-links li a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.page-homepage .main-nav:not(.scrolled) .nav-links li a.active { color: #fff; }
.page-homepage .main-nav:not(.scrolled) .nav-links li a::after { background: #fff; }
/* Fix dropdown menu text color on transparent homepage navbar */
.page-homepage .main-nav:not(.scrolled) .dropdown-menu li a { color: var(--gray-500); background: transparent; }
.page-homepage .main-nav:not(.scrolled) .dropdown-menu li a:hover { color: var(--ink); background: var(--gray-50); }
.page-homepage .main-nav:not(.scrolled) .hamburger span { background: #fff; }
.page-homepage .main-nav:not(.scrolled) .nav-book-btn {
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.5);
    color: #fff !important;
    box-shadow: none;
    backdrop-filter: blur(6px);
}
.page-homepage .main-nav:not(.scrolled) .nav-book-btn:hover {
    background: rgba(255,255,255,0.28);
    color: #fff !important;
}
/* Hero fills full viewport (transparent header sits on top) */
.page-homepage .hero { min-height: 100vh; }
/* Push booking widget below floating top-bar + navbar (38px + 68px = 106px) */
.page-homepage .hero-container { padding-top: 120px; }
.nav-content { display: flex; justify-content: space-between; align-items: center; height: 68px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-icon-wrap {
    width: 40px; height: 40px; border-radius: var(--r);
    background: var(--gradient-brand);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px; flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(29,78,216,0.28);
}
.logo-name {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px;
    color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; white-space: nowrap;
}
.logo-tagline { font-size: 11px; color: var(--gray-400); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links li a {
    display: block; padding: 8px 13px;
    font-size: 13.5px; font-weight: 500;
    color: var(--gray-500); border-radius: var(--r-sm);
    transition: var(--t); position: relative;
}
.nav-links li a::after {
    content: ''; position: absolute; bottom: 1px; left: 13px; right: 13px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 1px;
    transform: scaleX(0); transition: transform 0.2s ease;
}
.nav-links li a:hover { color: var(--ocean); background: rgba(29,78,216,0.04); }
.nav-links li a.active { color: var(--ocean); font-weight: 600; }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }
/* My Bookings in hamburger — hidden on desktop */
.nav-mobile-bookings { display: none; }
.nav-cta-item a::after { display: none; }
.nav-book-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 22px;
    background: var(--gradient-brand);
    color: var(--white) !important;
    border-radius: var(--r-full);
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13.5px;
    transition: var(--t);
    box-shadow: 0 2px 12px rgba(29,78,216,0.28);
}
.nav-book-btn:hover { background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%); color: var(--white) !important; box-shadow: 0 4px 18px rgba(29,78,216,0.40); transform: translateY(-1px); }
.nav-book-btn i { font-size: 12px; }
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); min-width: 220px;
    border-radius: var(--r); box-shadow: var(--shadow-lg);
    padding: 6px 0; opacity: 0; visibility: hidden;
    transform: translateY(6px); transition: var(--t);
    z-index: 1001; border: 1px solid var(--gray-200);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-heading {
    padding: 8px 14px 4px; font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400);
}
.dropdown-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 14px; font-size: 13.5px; color: var(--gray-500); transition: var(--t);
}
.dropdown-menu li a i { width: 14px; color: var(--teal); font-size: 11px; }
.dropdown-menu li a:hover { background: var(--gray-50); color: var(--ink); }
.dropdown-menu li a::after { display: none; }
.dropdown-divider { border-top: 1px solid var(--gray-100); margin: 4px 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: var(--t); border-radius: 2px; }
.hamburger:hover { background: var(--gray-100); }

/* HERO */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-fallback {
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 110% 70% at 12% 65%, rgba(8,145,178,0.32) 0%, transparent 52%),
        radial-gradient(ellipse 70% 55% at 88% 18%, rgba(99,102,241,0.22) 0%, transparent 48%),
        radial-gradient(ellipse 90% 60% at 55% 90%, rgba(29,78,216,0.28) 0%, transparent 55%),
        linear-gradient(160deg, #020b20 0%, #081840 22%, #0d2a70 48%, #083654 72%, #040e24 100%);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-container {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center;
    padding: 48px 24px; width: 100%; min-height: 88vh;
}
.hero-text { text-align: center; margin-bottom: 28px; }
.hero-label {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 16px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--r-full);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.95); margin-bottom: 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: 56px; font-weight: 800;
    color: var(--white); line-height: 1.1;
    letter-spacing: -0.025em; margin-bottom: 14px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-sub {
    font-size: 16px; color: rgba(255,255,255,0.78);
    letter-spacing: 0.03em; font-weight: 400;
}
.hero-dots {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 8px;
}
.slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4); border: none; cursor: pointer;
    transition: var(--t);
}
.slider-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ===== BOOKING WIDGET ===== */
.booking-widget { width: 100%; font-family: 'Poppins', system-ui, sans-serif; }

/* Panel show/hide */
.bw-panel { display: none; }
.bw-panel.active { display: block; animation: bwFadeIn 0.28s ease; }
@keyframes bwFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Tab — MMT style: icon above label, bottom border indicator */
.bw-tab {
    border-bottom: 3px solid transparent;
    font-family: 'Poppins', system-ui, sans-serif;
    cursor: pointer;
    background: #fafbfd;
    transition: background 0.18s, border-color 0.2s;
}
.bw-tab.active { border-bottom-color: #2563eb; background: #fff; }
.bw-tab.active .bw-tab-icon { color: #2563eb !important; }
.bw-tab.active .bw-tl { color: #2563eb !important; font-weight: 700 !important; }
.bw-tab:hover:not(.active) { background: #f1f5f9; }
.bw-tab:hover:not(.active) .bw-tab-icon { color: #64748b !important; }
.bw-tab:hover:not(.active) .bw-tl { color: #475569 !important; }

/* Sub-option pills (One Way / Round Trip style) */
.bw-sub-row { background: #fff; }
.bw-sub-opt {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px; border: 1.5px solid #e2e8f0; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 500; color: #64748b;
    background: #fff; cursor: pointer; transition: all 0.17s ease; line-height: 1;
}
.bw-sub-opt:hover { border-color: #93c5fd; color: #1d4ed8; background: #f0f7ff; }
.bw-sub-opt.active-sub { border-color: #2563eb; color: #1d4ed8; background: #eff6ff; font-weight: 600; }
.bw-sub-dot {
    width: 13px; height: 13px; border-radius: 50%;
    border: 2px solid #d1d5db; display: inline-block; position: relative;
    flex-shrink: 0; transition: border-color 0.17s;
}
.bw-sub-dot::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; height: 5px; border-radius: 50%;
    background: transparent; transition: background 0.17s;
}
.bw-sub-opt.active-sub .bw-sub-dot { border-color: #2563eb; }
.bw-sub-opt.active-sub .bw-sub-dot::after { background: #2563eb; }
.bw-sub-badge {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.04em;
    padding: 1px 6px; border-radius: 50px; line-height: 1.6;
}
.bw-location-hint {
    font-size: 11.5px; font-weight: 500; color: #94a3b8;
    font-family: 'Poppins', sans-serif;
}

/* Suggestion chips */
.bw-suggestions { gap: 8px; padding-bottom: 10px; }
.bw-sugg-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: #94a3b8; font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}
.bw-sugg {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12.5px; font-weight: 500; color: #475569;
    background: #f1f5f9; border: 1.5px solid #e2e8f0;
    border-radius: 50px; padding: 4px 13px;
    cursor: pointer; transition: all 0.16s; white-space: nowrap;
    font-family: 'Poppins', sans-serif; text-decoration: none;
}
.bw-sugg:hover { background: #dbeafe; border-color: #93c5fd; color: #1d4ed8; }
.bw-sugg.active { background: #eff6ff; border-color: #2563eb; color: #1d4ed8; font-weight: 600; }

/* Unified field box */
.bw-fwrap { background: #fff; }
.bw-field { transition: background 0.17s ease; background: #fff; }
.bw-field:hover, .bw-field.field-active { background: #f0f7ff !important; }
.bw-field-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.13em; color: #94a3b8;
    font-family: 'Poppins', sans-serif;
}
.bw-field-hint {
    font-size: 11.5px; color: #94a3b8; font-family: 'Poppins', sans-serif;
}

/* Input normalisation */
.bw-input { appearance: none; -webkit-appearance: none; border: none !important; outline: none !important; background: transparent !important; }

/* Counter button hover */
.bw-count-btn:hover { border-color: #2563eb !important; background: #2563eb !important; color: #fff !important; }
.bw-count-btn:active { transform: scale(0.93); }

/* Offer tags row */
.bw-offers-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em;
    color: #475569; font-family: 'Poppins', sans-serif; white-space: nowrap; padding-top: 1px;
}
.bw-offer-tag {
    display: inline-flex; align-items: center; gap: 5px;
    border: 1.5px solid #e8edf5; border-radius: 8px;
    padding: 5px 14px; font-size: 12px; font-weight: 500; color: #475569;
    background: #fff; text-decoration: none; font-family: 'Poppins', sans-serif;
    transition: all 0.18s ease;
}
.bw-offer-tag:hover { border-color: #93c5fd; color: #1d4ed8; background: #f0f7ff; text-decoration: none; }

/* Search button — shimmer on hover, clean lift */
.bw-search-btn::before {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transition: left 0.5s ease;
}
.bw-search-btn:hover::before { left: 110%; }
.bw-search-btn:hover { box-shadow: 0 10px 36px rgba(37,99,235,0.55) !important; transform: translateY(-2px); }
.bw-search-btn:active { transform: translateY(0) !important; }

/* TRUST STRIP */
.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    position: relative; z-index: 3;
    box-shadow: 0 2px 16px rgba(15,23,42,0.04);
}
.trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
    display: flex; align-items: center; gap: 16px;
    padding: 26px 24px;
    border-right: 1px solid var(--gray-100);
    transition: background 0.2s ease;
}
.trust-item:hover { background: #f8fafd; }
.trust-item:last-child { border-right: none; }
.trust-item i {
    width: 44px; height: 44px; border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; transition: transform 0.2s ease;
}
.trust-item:hover i { transform: scale(1.08); }
.trust-item:nth-child(1) i { background: #eff6ff; color: #1d4ed8; }
.trust-item:nth-child(2) i { background: #fffbeb; color: #b45309; }
.trust-item:nth-child(3) i { background: #f0fdfa; color: #0f766e; }
.trust-item:nth-child(4) i { background: #f0fdf4; color: #15803d; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.trust-item span { font-size: 12.5px; color: var(--gray-400); }

/* SECTION BASE */
.section { padding: 88px 0; }
.section-alt { background: #f7f9fc; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 0; }
.section-header h2::after {
    content: ''; display: block; width: 44px; height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #0891b2);
    border-radius: 2px; margin: 12px auto 0;
}
.section-header p {
    color: var(--gray-500); max-width: 520px; margin: 16px auto 0;
    font-size: 16px; line-height: 1.75;
}

/* GRID */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* HOW IT WORKS */
.hiw-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; max-width: 880px; margin: 0 auto;
    position: relative;
}
.hiw-grid::before {
    content: '';
    position: absolute; top: 27px;
    left: calc(33.33% / 2 + 10px); right: calc(33.33% / 2 + 10px);
    height: 1px;
    background: repeating-linear-gradient(90deg,#cbd5e1 0px,#cbd5e1 6px,transparent 6px,transparent 14px);
}
.hiw-step { text-align: center; position: relative; }
.hiw-num {
    width: 54px; height: 54px; border-radius: 50%;
    background: var(--white);
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 14px rgba(15,23,42,0.09);
    color: #1e3a8a;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px;
    margin: 0 auto 22px;
    position: relative; z-index: 1;
    transition: all 0.22s ease;
}
.hiw-step:hover .hiw-num {
    background: #1e3a8a; color: var(--white); border-color: #1e3a8a;
    box-shadow: 0 4px 20px rgba(30,58,138,0.30);
}
.hiw-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.hiw-step p { font-size: 14px; color: var(--gray-500); line-height: 1.75; max-width: 240px; margin: 0 auto; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 38px 30px;
    transition: all 0.28s ease;
    position: relative; overflow: hidden;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #0891b2);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.30s ease;
}
.service-card:hover { border-color: #dce8f6; box-shadow: 0 14px 40px rgba(15,23,42,0.10); transform: translateY(-3px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px; border-radius: var(--r);
    background: #eff6ff;
    display: flex; align-items: center; justify-content: center;
    color: #1e3a8a; font-size: 20px;
    margin-bottom: 24px; transition: all 0.22s ease;
}
.service-card:hover .service-icon { background: #1e3a8a; color: var(--white); }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-500); line-height: 1.75; margin-bottom: 20px; }
.service-features { margin-bottom: 26px; display: flex; flex-direction: column; gap: 9px; }
.service-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--gray-500); }
.service-features i { color: #0891b2; font-size: 10px; flex-shrink: 0; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 600; color: #1e3a8a; transition: var(--t);
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* ── UPGRADED SERVICES SECTION ─────────────────────────────────────── */
.svc-section { background: #f8faff; }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.svc-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(15,23,42,.05);
    transition: transform .28s ease, box-shadow .28s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(15,23,42,.12); }
.svc-card-featured {
    box-shadow: 0 8px 40px rgba(8,145,178,.18);
    border-color: #a5f3fc;
    transform: translateY(-4px);
}
.svc-card-featured:hover { transform: translateY(-10px); }

/* coloured top banner */
.svc-top {
    padding: 28px 28px 20px;
    display: flex; align-items: flex-start; justify-content: space-between;
}
.svc-top-blue  { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.svc-top-teal  { background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%); }
.svc-top-gold  { background: linear-gradient(135deg, #92400e 0%, #d97706 100%); }

.svc-icon-wrap {
    width: 58px; height: 58px; border-radius: 16px;
    background: rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 26px;
    backdrop-filter: blur(4px);
}
.svc-badge {
    font-size: 11px; font-weight: 700; letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(255,255,255,.22);
    color: #fff;
    padding: 4px 10px; border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* body */
.svc-body { padding: 26px 28px 28px; }
.svc-body h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin: 0 0 10px; }
.svc-body p  { font-size: 13.5px; color: var(--gray-500); line-height: 1.75; margin: 0 0 20px; }

/* feature list */
.svc-features { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.svc-features li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #374151; }
.svc-check {
    width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 9px; color: #fff;
}
.svc-check-blue { background: #2563eb; }
.svc-check-teal { background: #0891b2; }
.svc-check-gold { background: #d97706; }

/* stats row */
.svc-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--gray-200); border-radius: 12px;
    overflow: hidden; margin-bottom: 24px;
}
.svc-stat {
    padding: 12px 8px; text-align: center;
    border-right: 1px solid var(--gray-200);
}
.svc-stat:last-child { border-right: none; }
.svc-stat-num { display: block; font-size: 16px; font-weight: 800; color: var(--ink); }
.svc-stat-lbl { display: block; font-size: 10.5px; color: var(--gray-500); margin-top: 2px; }

/* CTA buttons */
.svc-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 10px;
    font-size: 14px; font-weight: 700; transition: all .22s ease;
    text-decoration: none; width: 100%; justify-content: center;
}
.svc-btn i { transition: transform .22s ease; }
.svc-btn:hover i { transform: translateX(4px); }
.svc-btn-blue { background: #eff6ff; color: #1e3a8a; border: 1.5px solid #bfdbfe; }
.svc-btn-blue:hover { background: #1e3a8a; color: #fff; border-color: #1e3a8a; }
.svc-btn-teal { background: #ecfeff; color: #0e7490; border: 1.5px solid #a5f3fc; }
.svc-btn-teal:hover { background: #0e7490; color: #fff; border-color: #0e7490; }
.svc-btn-gold { background: #fffbeb; color: #92400e; border: 1.5px solid #fde68a; }
.svc-btn-gold:hover { background: #d97706; color: #fff; border-color: #d97706; }

/* CARDS */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.28s ease;
    display: flex; flex-direction: column;
}
.card:hover { border-color: transparent; box-shadow: 0 18px 44px rgba(15,23,42,0.12); transform: translateY(-4px); }
.card-image { position: relative; height: 215px; overflow: hidden; background: var(--gray-100); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.card:hover .card-image img { transform: scale(1.05); }
.card-badge {
    position: absolute; top: 12px; left: 12px;
    background: rgba(15,23,42,0.78); color: var(--white); backdrop-filter: blur(4px);
    padding: 4px 12px; border-radius: var(--r-full);
    font-size: 11px; font-weight: 600;
}
.card-body { padding: 20px; flex: 1; }
.card-body h4 { margin-bottom: 8px; font-size: 16px; }
.card-meta { display: flex; gap: 14px; margin-bottom: 10px; font-size: 13px; color: var(--gray-400); }
.card-meta i { color: var(--teal); margin-right: 3px; }
.card-price { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); }
.card-price small { font-size: 13px; font-weight: 400; color: var(--gray-400); }
.card-footer {
    padding: 14px 20px; border-top: 1px solid var(--gray-100);
    display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.card-footer .btn { flex: 1; justify-content: center; }

/* PROPERTY CARDS */
.property-rating { color: var(--amber); font-size: 13px; display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.property-rating span { color: var(--gray-400); margin-left: 4px; font-size: 12px; }
.amenities-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 12px; }
.amenity-tag {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    padding: 3px 10px; border-radius: var(--r-full);
    font-size: 11.5px; color: var(--gray-600);
}

/* PACKAGE CARDS */
.package-route { display: flex; align-items: center; gap: 7px; margin: 8px 0; font-size: 13px; color: var(--gray-500); }
.package-route i { color: var(--teal); }
.destination-tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0; }
.dest-tag {
    background: var(--gray-50); border: 1px solid var(--gray-200);
    color: var(--gray-600); padding: 3px 10px;
    border-radius: var(--r-full); font-size: 11.5px; font-weight: 600;
}

/* ============================
   PICKUP & DROP SERVICE PAGE
   ============================ */

/* Intro Strip */
.pd-intro-strip {
    background: #f0f7ff;
    border-top: 1px solid #dbeafe;
    border-bottom: 1px solid #dbeafe;
    padding: 20px 0;
}
.pd-intro-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.pd-intro-item {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 24px;
    border-right: 1px solid #dbeafe;
}
.pd-intro-item:last-child { border-right: none; }
.pd-intro-item i {
    width: 42px; height: 42px; border-radius: var(--r);
    background: #1d4ed8; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; flex-shrink: 0;
}
.pd-intro-item strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.pd-intro-item span  { font-size: 12px; color: var(--gray-500); }

/* Filter notice */
.pd-filter-notice {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
    margin-bottom: 2rem;
    padding: 12px 18px;
    background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
    font-size: 14px;
}
.pd-filter-notice span { color: #1d4ed8; font-weight: 600; }
.pd-filter-notice a { color: #64748b; font-size: 13px; display: flex; align-items: center; gap: 5px; }
.pd-filter-notice a:hover { color: var(--red); }

/* Routes Grid */
.pd-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Pickup-Drop Card */
.pd-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all 0.28s ease;
}
.pd-card:hover {
    border-color: transparent;
    box-shadow: 0 18px 44px rgba(15,23,42,0.12);
    transform: translateY(-5px);
}

/* Card image */
.pd-card-image { position: relative; height: 200px; overflow: hidden; background: var(--gray-100); flex-shrink: 0; }
.pd-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.pd-card:hover .pd-card-image img { transform: scale(1.06); }
.pd-vehicle-badge {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(15,23,42,0.75); color: #fff;
    backdrop-filter: blur(4px);
    padding: 4px 12px; border-radius: var(--r-full);
    font-size: 11px; font-weight: 600;
    display: flex; align-items: center; gap: 5px;
}

/* Card body */
.pd-card-body { padding: 18px 20px 14px; flex: 1; }
.pd-destination-name {
    font-size: 16px; font-weight: 700; color: var(--ink);
    margin-bottom: 12px;
}

/* Route line */
.pd-route-line {
    display: flex; align-items: center; gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--r);
    padding: 10px 14px;
    margin-bottom: 12px;
}
.pd-route-from, .pd-route-to {
    display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0;
}
.pd-route-arrow {
    color: var(--teal); font-size: 11px; flex-shrink: 0;
}
.pd-route-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.pd-dot-green { background: #059669; }
.pd-dot-red   { background: #dc2626; }
.pd-route-label {
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--gray-400); white-space: nowrap;
}
.pd-route-place {
    font-size: 12.5px; font-weight: 600; color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Extra stops */
.pd-stops {
    display: flex; flex-wrap: wrap; align-items: center; gap: 5px;
    margin-bottom: 10px; font-size: 11.5px; color: var(--gray-500);
}
.pd-stops i { color: var(--teal); font-size: 10px; }
.pd-stop-tag {
    background: #f0fdf9; border: 1px solid #a7f3d0;
    color: #065f46; padding: 2px 9px;
    border-radius: var(--r-full); font-size: 11px; font-weight: 600;
}

/* Info chip */
.pd-info-row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.pd-info-chip {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--gray-50); border: 1px solid var(--gray-200);
    color: var(--gray-600); padding: 3px 11px;
    border-radius: var(--r-full); font-size: 12px; font-weight: 500;
}
.pd-info-chip i { color: var(--ocean); font-size: 10px; }

/* Short description */
.pd-desc {
    font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0;
}

/* Card footer */
.pd-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--gray-100);
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    background: #fafafa;
}
.pd-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1;
}
.pd-price small { font-size: 12px; font-weight: 400; color: var(--gray-400); }

/* Responsive */
@media (max-width: 1024px) {
    .pd-routes-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-intro-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-intro-item:nth-child(2) { border-right: none; }
    .pd-intro-item:nth-child(3) { border-top: 1px solid #dbeafe; }
}
@media (max-width: 640px) {
    .pd-routes-grid { grid-template-columns: 1fr; }
    .pd-intro-grid { grid-template-columns: 1fr; }
    .pd-intro-item { border-right: none !important; border-bottom: 1px solid #dbeafe; }
    .pd-intro-item:last-child { border-bottom: none; }
    .pd-route-line { flex-wrap: wrap; gap: 6px; }
    .pd-route-arrow { display: none; }
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tcard {
    background: var(--white);
    border: 1px solid #eaeff8;
    border-radius: var(--r-lg);
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(15,23,42,0.05);
    transition: all 0.28s ease;
    position: relative; overflow: hidden;
}
.tcard::before {
    content: '\201C';
    position: absolute; top: 12px; right: 22px;
    font-size: 80px; line-height: 1;
    color: #e8edf8; font-family: Georgia, serif;
    pointer-events: none; user-select: none;
}
.tcard:hover { border-color: #cfe0f5; box-shadow: 0 12px 36px rgba(15,23,42,0.10); transform: translateY(-3px); }
.tcard-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.tcard-stars i { color: #f59e0b; font-size: 13px; }
.tcard p {
    font-size: 15px; color: var(--gray-600); line-height: 1.8;
    margin-bottom: 24px; position: relative; z-index: 1;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #0891b2); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
    flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 14px; color: var(--ink); }
.tcard-author span { font-size: 12px; color: var(--gray-400); }

/* GALLERY */
.gallery-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.gallery-tab {
    padding: 8px 20px; border: 1.5px solid var(--gray-200); border-radius: var(--r-full);
    background: transparent; color: var(--gray-500); font-weight: 600; cursor: pointer;
    transition: var(--t); font-size: 13px;
}
.gallery-tab.active, .gallery-tab:hover { background: #1e3a8a; color: var(--white); border-color: #1e3a8a; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item {
    position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
    aspect-ratio: 4/3; background: var(--gray-100);
    box-shadow: 0 2px 8px rgba(15,23,42,0.07);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.60) 0%, rgba(15,23,42,0.15) 60%, transparent 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.28s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 24px; }

/* STATS */
.section-stats {
    background: linear-gradient(135deg, #0b1d45 0%, #1e3a8a 55%, #0d2260 100%);
    padding: 72px 0;
    position: relative; overflow: hidden;
}
.section-stats::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(8,145,178,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; text-align: center; position: relative;
}
.stat-item {
    padding: 20px;
    position: relative;
}
.stat-item::after {
    content: ''; position: absolute; right: 0; top: 25%; bottom: 25%;
    width: 1px; background: rgba(255,255,255,0.12);
}
.stat-item:last-child::after { display: none; }
.stat-num {
    display: inline;
    font-family: 'Poppins', sans-serif;
    font-size: 42px; font-weight: 800;
    color: var(--white); line-height: 1;
}
.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 26px; font-weight: 700;
    color: #fbbf24;
}
.stat-label {
    display: block; margin-top: 8px;
    font-size: 12.5px; color: rgba(255,255,255,0.65); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.07em;
}
.stat-note {
    display: block; margin-top: 4px;
    font-size: 11.5px; color: rgba(255,255,255,0.30); font-weight: 400;
    letter-spacing: 0.02em;
}

/* CTA */
.section-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a8a 55%, #0a1a3d 100%);
    padding: 100px 0;
    position: relative; overflow: hidden;
}
.section-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 90% 50%, rgba(8,145,178,0.16) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 10% 50%, rgba(99,102,241,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.section-cta .cta-inner { text-align: center; max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.cta-eyebrow {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: #fbbf24; background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.25);
    border-radius: 20px; padding: 4px 14px; margin-bottom: 18px;
}
.section-cta h2 { color: var(--white); margin-bottom: 16px; font-size: 40px; letter-spacing: -0.02em; line-height: 1.2; }
.section-cta p { color: rgba(255,255,255,0.58); font-size: 16px; margin-bottom: 36px; line-height: 1.8; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-actions .btn-cta { background: #f59e0b; color: var(--white); border-color: #f59e0b; padding: 14px 36px; font-size: 15px; }
.cta-actions .btn-cta:hover { background: #d97706; box-shadow: 0 8px 28px rgba(245,158,11,0.40); }
.cta-actions .btn-outline { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.28); padding: 14px 36px; font-size: 15px; }
.cta-actions .btn-outline:hover { background: rgba(255,255,255,0.16); color: var(--white); border-color: rgba(255,255,255,0.50); }
.cta-phone { font-size: 14px; color: rgba(255,255,255,0.40); }
.cta-phone i { margin-right: 6px; }
.cta-phone a { color: rgba(255,255,255,0.75); font-weight: 600; transition: color 0.2s; }
.cta-phone a:hover { color: var(--white); }

/* Legacy CTA banner (other pages) */
.cta-banner { background: var(--ink); color: var(--white); text-align: center; padding: 60px 20px; }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { opacity: 0.75; margin-bottom: 24px; font-size: 17px; }
.cta-banner .btn { background: var(--white); color: var(--ink); }
.cta-banner .btn:hover { background: var(--gold); color: var(--white); }

/* FOOTER */
.site-footer {
    background: linear-gradient(180deg, #0d1b3e 0%, #060e22 100%);
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 48px; padding: 68px 0 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
    width: 40px; height: 40px; border-radius: var(--r);
    background: var(--gradient-brand);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 16px; flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(29,78,216,0.35);
}
.footer-logo span { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 800; color: var(--white); }
.footer-col p { color: rgba(255,255,255,0.45); line-height: 1.75; font-size: 13.5px; max-width: 260px; margin-bottom: 20px; }
.footer-col h4 {
    color: var(--white); margin-bottom: 18px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    position: relative; padding-bottom: 10px;
}
.footer-col h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--gradient-brand); border-radius: 2px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.5); font-size: 13.5px; transition: var(--t);
    display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a i { font-size: 9px; color: var(--ocean); transition: var(--t); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a:hover i { color: var(--teal-light); }

/* Social icons */
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55);
    transition: var(--t); font-size: 14px;
    border: 1px solid rgba(255,255,255,0.10);
}
.footer-social a.social-fb:hover  { background: #1877f2; color: var(--white); border-color: #1877f2; }
.footer-social a.social-ig:hover  {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
    color: var(--white); border-color: transparent;
}
.footer-social a.social-yt:hover  { background: #ff0000; color: var(--white); border-color: #ff0000; }

/* Contact list */
.contact-list { display: flex; flex-direction: column; gap: 12px; list-style: none; margin-bottom: 20px; }
.contact-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; color: rgba(255,255,255,0.5); }
.contact-list i { color: var(--ocean); margin-top: 3px; font-size: 13px; flex-shrink: 0; }
.contact-list a { color: rgba(255,255,255,0.5); transition: var(--t); }
.contact-list a:hover { color: var(--white); }

/* Footer Book Now */
.footer-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px;
    background: var(--gradient-brand);
    color: var(--white); border-radius: var(--r-full);
    font-size: 13px; font-weight: 600;
    transition: var(--t);
    box-shadow: 0 2px 12px rgba(29,78,216,0.3);
}
.footer-cta-btn:hover {
    color: var(--white);
    box-shadow: 0 4px 18px rgba(29,78,216,0.5);
    transform: translateY(-1px);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.footer-bottom-inner p { color: rgba(255,255,255,0.28); font-size: 13px; }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 12.5px; transition: var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); font-size: 10px; }

/* PAGE HEADER / BREADCRUMB */
.page-header { background: var(--ink); padding: 56px 20px; text-align: center; color: var(--white); }
.page-header h1 { color: var(--white); font-size: 34px; margin-bottom: 8px; }
.breadcrumb { display: flex; gap: 8px; justify-content: center; font-size: 14px; opacity: 0.6; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }

/* FILTER BAR */
.filter-bar {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
    padding: 18px; background: var(--white); border-radius: var(--r-lg);
    border: 1px solid var(--gray-200);
}
.filter-select, .filter-input {
    padding: 10px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
    font-size: 14px; font-family: inherit; transition: var(--t); background: var(--white);
}
.filter-select:focus, .filter-input:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(13,148,136,0.08); }
.view-toggle { display: flex; gap: 4px; margin-left: auto; }
.view-toggle button {
    padding: 10px 14px; border: 1.5px solid var(--gray-200); background: var(--white);
    cursor: pointer; transition: var(--t); border-radius: var(--r-sm);
}
.view-toggle button.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 13.5px; color: var(--ink); }
.form-control {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--gray-200); border-radius: var(--r-sm);
    font-size: 14px; font-family: inherit;
    transition: var(--t); background: var(--white); color: var(--gray-800);
}
.form-control:focus { border-color: var(--teal); outline: none; box-shadow: 0 0 0 3px rgba(13,148,136,0.08); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-error { color: var(--red); font-size: 12px; margin-top: 4px; }

/* Booking steps */
.booking-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 36px; flex-wrap: wrap; }
.step-item { display: flex; align-items: center; gap: 8px; padding: 12px 18px; font-size: 14px; font-weight: 500; color: var(--gray-400); }
.step-item.active { color: var(--ink); font-weight: 700; }
.step-item.completed { color: var(--green); }
.step-item .step-num {
    width: 30px; height: 30px; border-radius: 50%; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; color: var(--gray-400);
}
.step-item.active .step-num { background: var(--ink); color: var(--white); }
.step-item.completed .step-num { background: var(--green); color: var(--white); }
.step-connector { width: 40px; height: 2px; background: var(--gray-200); margin-top: 6px; }
.step-content { display: none; }
.step-content.active { display: block; }
.booking-card {
    background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
    padding: 32px; max-width: 800px; margin: 0 auto;
}

/* Detail pages */
.detail-hero { position: relative; overflow: hidden; background: var(--gray-100); }
.detail-hero img { width: 100%; height: auto; max-height: 520px; object-fit: contain; display: block; }
.detail-content { padding: 40px 0; }
.detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.detail-info h1 { margin-bottom: 12px; }
.detail-sidebar {
    background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
    padding: 24px; position: sticky; top: 100px;
}
.detail-sidebar .price-box {
    text-align: center; padding: 20px;
    background: var(--gray-50); border-radius: var(--r); margin-bottom: 20px;
}
.detail-sidebar .price-box .price { font-size: 32px; font-weight: 800; color: var(--ink); }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.feature-item i { color: var(--green); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card {
    display: flex; gap: 16px; padding: 20px;
    background: var(--white); border-radius: var(--r-lg);
    border: 1px solid var(--gray-200); margin-bottom: 16px;
}
.contact-info-card .icon {
    width: 48px; height: 48px; border-radius: var(--r);
    background: var(--gray-50);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink); font-size: 18px; flex-shrink: 0;
}
.map-container { border-radius: var(--r-lg); overflow: hidden; height: 300px; margin-top: 16px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 9999; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90vh; border-radius: var(--r-sm); }
.lightbox-close { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 36px; cursor: pointer; background: none; border: none; }

/* Booking confirmation */
.confirmation-card {
    max-width: 560px; margin: 0 auto; text-align: center;
    background: var(--white); border-radius: var(--r-lg);
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
    padding: 48px 32px;
}
.confirmation-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: #ecfdf5;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; color: var(--green); font-size: 32px;
}
.booking-details-table { width: 100%; text-align: left; margin: 24px 0; }
.booking-details-table td { padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.booking-details-table td:first-child { font-weight: 600; width: 40%; color: var(--gray-400); }

/* Flash messages */
.flash-message {
    position: fixed; top: 20px; right: 20px;
    padding: 14px 20px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 500; z-index: 10000;
    animation: slideIn 0.3s ease; max-width: 380px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--shadow-md);
}
.flash-success { background: #ecfdf5; color: var(--green); border-left: 3px solid var(--green); }
.flash-error   { background: #fef2f2; color: var(--red);   border-left: 3px solid var(--red); }
.flash-warning { background: #fffbeb; color: var(--amber); border-left: 3px solid var(--amber); }
.flash-close   { background: none; border: none; font-size: 18px; cursor: pointer; color: inherit; margin-left: auto; }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; z-index: 9000;
    box-shadow: 0 4px 14px rgba(37,211,102,0.4);
    transition: var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }

/* Tables */
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
table th { background: var(--ink); color: var(--white); font-weight: 600; font-family: 'Poppins', sans-serif; }
table tr:hover td { background: var(--gray-50); }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Homepage Gallery */
.homepage-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.homepage-gallery-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    cursor: pointer;
}
.homepage-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.homepage-gallery-item:hover img { transform: scale(1.06); }
.homepage-gallery-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.65));
    padding: 28px 14px 12px;
    opacity: 0;
    transition: opacity .3s ease;
    display: flex; flex-direction: column; gap: 2px;
}
.homepage-gallery-item:hover .homepage-gallery-overlay { opacity: 1; }
.homepage-gallery-overlay span { color: #fff; font-size: 13px; font-weight: 600; }
.homepage-gallery-overlay small { color: #d1d5db; font-size: 11px; }
@media (max-width: 768px) {
    .homepage-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
    .homepage-gallery-grid { grid-template-columns: 1fr; }
}
.about-image { border-radius: var(--r-lg); overflow: hidden; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.stat-card {
    text-align: center; padding: 24px 16px;
    background: var(--gray-50); border-radius: var(--r-lg);
    border: 1px solid var(--gray-200);
}
.stat-card .number { font-size: 34px; font-weight: 800; color: var(--ink); display: block; font-family: 'Poppins', sans-serif; }
.stat-card .label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* Terms / Privacy */
.content-page { padding: 60px 0; }
.content-page .content-body { max-width: 760px; margin: 0 auto; }
.content-page h2 { margin: 32px 0 16px; font-size: 24px; }
.content-page h3 { margin: 24px 0 12px; font-size: 20px; }
.content-page p { margin-bottom: 16px; color: var(--gray-600); }
.content-page ul { margin: 12px 0 16px 24px; }
.content-page ul li { list-style: disc; margin-bottom: 8px; color: var(--gray-600); }

/* Spinner */
.spinner { width: 36px; height: 36px; border: 3px solid var(--gray-200); border-top-color: var(--ink); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 20px auto; }

/* UTILITIES */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 8px; }  .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.p-2 { padding: 16px; } .p-3 { padding: 24px; }

/* KEYFRAMES */
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.4s ease forwards; }

/* AOS-like reveal */
[data-aos] { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: 0.10s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.20s; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .hero-title { font-size: 46px; }
}

@media (max-width: 992px) {
    h1 { font-size: 36px; } h2 { font-size: 26px; }
    .hero-title { font-size: 36px; }
    .bw-tab .bw-tl { font-size: 12px; }
    .bw-tab-icon { font-size: 22px !important; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .svc-grid { grid-template-columns: 1fr; gap: 20px; }
    .svc-card-featured { transform: none; }
    .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item { border-bottom: 1px solid var(--gray-100); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: 1fr; gap: 32px; max-width: 400px; }
    .hiw-grid::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none; }
}

@media (max-width: 768px) {
    body { font-size: 14px; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; right: 0; background: var(--white);
        padding: 8px 0 12px; box-shadow: var(--shadow);
        border-top: 1px solid var(--gray-200);
    }
    .nav-links.active { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links li a { padding: 10px 20px; border-radius: 0; }
    .nav-links li a::after { display: none; }
    /* Force dark text in mobile dropdown regardless of homepage transparent nav */
    .page-homepage .main-nav:not(.scrolled) .nav-links li a,
    .page-homepage .main-nav:not(.scrolled) .nav-links li a:hover,
    .page-homepage .main-nav:not(.scrolled) .nav-links li a.active { color: var(--ink) !important; background: transparent; }
    .page-homepage .main-nav:not(.scrolled) .nav-links li a:hover { background: rgba(29,78,216,0.05) !important; color: var(--ocean) !important; }
    .page-homepage .main-nav:not(.scrolled) .nav-links li a.active { color: var(--ocean) !important; font-weight: 600; }
    .nav-mobile-bookings a { color: var(--primary-blue) !important; font-weight: 600; }
    .page-homepage .main-nav:not(.scrolled) .nav-mobile-bookings a { color: var(--ocean) !important; }
    .nav-cta-item { display: none; }
    /* Show My Bookings inside hamburger menu on mobile */
    .nav-mobile-bookings { display: block; border-top: 1px solid var(--gray-100); margin-top: 4px; }
    .nav-mobile-bookings a { font-weight: 600 !important; color: var(--primary-blue) !important; }
    .nav-book-btn { width: calc(100% - 32px); margin: 0 16px; justify-content: center; }
    .hamburger { display: flex; flex-direction: column; justify-content: center; }
    .hamburger.open span:nth-child(1) { transform: rotate(-45deg) translate(-7px, 5px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(45deg) translate(-7px, -5px); }
    .nav-content { position: relative; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; min-width: auto; border: none; background: var(--gray-50); border-radius: 0; display: none; }
    .dropdown.open .dropdown-menu { display: block; }
    .hero { min-height: 70vh; }
    .page-homepage .hero { min-height: 100vh; }
    .hero-container { padding: 36px 16px 32px; }
    /* top-bar still ~38px + nav 68px on tablet */
    .page-homepage .hero-container { padding-top: 130px; }
    .hero-title { font-size: 28px; }
    .hero-sub { font-size: 14px; }
    /* Booking widget responsive */
    .bw-tab { padding: 14px 18px !important; }
    .bw-tab-icon { font-size: 20px !important; }
    .bw-sub-row { padding: 12px 16px 8px !important; }
    .bw-location-hint { display: none; }
    .bw-fwrap { flex-direction: column !important; border-radius: 10px !important; margin: 0 16px !important; }
    .bw-fwrap .bw-field { width: 100% !important; flex: unset !important; border-right: none !important; border-bottom: 1.5px solid #dce5f0 !important; }
    .bw-fwrap .bw-field:last-child { border-bottom: none !important; }
    .bw-search-btn { padding: 15px 48px !important; width: 90% !important; justify-content: center !important; }
    .bw-offer-tag { font-size: 11px !important; padding: 4px 10px !important; }
    .trust-strip-inner { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
    .trust-item:last-child { border-bottom: none; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 32px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .card-image { height: 180px; }
    .detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .site-footer .footer-grid { grid-template-columns: 1fr 1fr; padding: 40px 0 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 576px) {
    h1 { font-size: 28px; } h2 { font-size: 22px; }
    .hero-title { font-size: 22px; }
    .hero-label { font-size: 10px; }
    .bw-tab .bw-tl { font-size: 12px; }
    .bw-tab .bw-ti { width: 30px !important; height: 30px !important; font-size: 11px !important; }
    .bw-quick { display: none !important; }
    .hero-container { padding: 28px 12px 24px; }
    /* top-bar stacks on small mobile (~62px) + nav 68px = ~130px */
    .page-homepage .hero-container { padding-top: 148px; }
    .logo-name { font-size: 16px; white-space: nowrap; }
    .logo-tagline { font-size: 10px; }
    .logo img, .logo-icon-wrap { width: 44px !important; height: 44px !important; }
    .top-bar { display: none; }
    /* With top-bar hidden, nav sits at very top on homepage */
    .page-homepage .site-header { top: 0; }
    .page-homepage .hero-container { padding-top: 90px; }
    .top-bar-badge { display: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-dots { bottom: 80px; }
    .slider-dot { width: 7px; height: 7px; }
    .slider-dot.active { width: 18px; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 22px; bottom: 18px; right: 18px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-num { font-size: 32px; }
    .section-stats { padding: 52px 0; }
    .section-cta { padding: 72px 0; }
    .section-cta h2 { font-size: 28px; }
}
