/* ============================================================
   BENTOTA TUK TUK TOURS — Redesign CSS
   Aesthetic: Coastal Luxury Editorial
   ============================================================ */

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

/* ── Root Tokens ─────────────────────────────────────────── */
:root {
  --ink:          #070D14;
  --ink-soft:     #0E1C2B;
  --ocean:        #0A4F7A;
  --ocean-mid:    #0C6EA3;
  --ocean-glow:   #1A9DD9;
  --gold:         #D4A853;
  --gold-bright:  #F0C060;
  --gold-pale:    rgba(212,168,83,0.12);
  --cream:        #F7F1E8;
  --cream-soft:   #EDE7DC;
  --white:        #FFFFFF;
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
  --glass-hover:  rgba(255,255,255,0.08);
  --text-muted:   rgba(255,255,255,0.50);
  --text-dim:     rgba(255,255,255,0.28);
  --shadow-gold:  0 8px 40px rgba(212,168,83,0.22);
  --shadow-deep:  0 24px 80px rgba(0,0,0,0.55);
  --shadow-card:  0 4px 32px rgba(0,0,0,0.35);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    36px;
  --radius-full:  9999px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ocean-mid); border-radius: 3px; }

/* ── Noise texture overlay ───────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Fade-up animation ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes wave {
  0%, 100% { transform: scaleY(1);   }
  50%       { transform: scaleY(0.6);}
}
@keyframes float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-8px); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ======================================================= */
/*  HERO                                                    */
/* ======================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 100px;
}

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

/* Deep ocean gradient mesh */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 120%, rgba(10,79,122,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% -10%, rgba(26,157,217,0.20) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 90%  5%,  rgba(7,13,20,0.90)   0%, transparent 55%),
    linear-gradient(170deg, #060f1a 0%, #0a2038 50%, #061520 100%);
}

/* Wave pattern */
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 220px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220'%3E%3Cpath fill='rgba(10,79,122,0.18)' d='M0,120L48,112C96,104,192,88,288,96C384,104,480,136,576,140C672,144,768,120,864,104C960,88,1056,80,1152,88C1248,96,1344,120,1392,132L1440,144L1440,220L0,220Z'/%3E%3Cpath fill='rgba(7,13,20,0.6)' d='M0,160L60,152C120,144,240,128,360,132C480,136,600,160,720,164C840,168,960,152,1080,140C1200,128,1320,120,1380,116L1440,112L1440,220L0,220Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,157,217,0.15) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: float 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.10) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: float 10s ease-in-out infinite 2s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,157,217,0.12) 0%, transparent 70%);
  top: 40%; left: 65%;
  animation: float 7s ease-in-out infinite 1s;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: fadeUp 0.8s var(--ease-out) both;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s var(--ease-out) both;
}
.hero__eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeUp 0.8s 0.15s var(--ease-out) both;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__title-sub {
  display: block;
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

.hero__desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
  margin: 28px auto 44px;
  line-height: 1.75;
  animation: fadeUp 0.8s 0.25s var(--ease-out) both;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.35s var(--ease-out) both;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(212,168,83,0.40);
}

.btn--ghost {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}
.btn--ghost:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}

.btn__arrow {
  transition: transform 0.3s var(--ease-spring);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Hero Stats ──────────────────────────────────────────── */
.hero__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 72px;
  animation: fadeUp 0.8s 0.5s var(--ease-out) both;
  position: relative;
  z-index: 2;
}
.hero__stat {
  text-align: center;
  padding: 0 40px;
  position: relative;
}
.hero__stat + .hero__stat::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--glass-border), transparent);
}
.hero__stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 0.70rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 5px;
  display: block;
}

/* ── Scroll indicator ────────────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s 1.2s both;
}
.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ======================================================= */
/*  MARQUEE STRIP                                           */
/* ======================================================= */
.marquee-strip {
  background: linear-gradient(90deg, var(--ocean) 0%, var(--ocean-mid) 50%, var(--ocean) 100%);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-strip__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  flex-shrink: 0;
}
.marquee-strip__item strong { color: var(--gold-bright); }
.marquee-strip__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}

/* ======================================================= */
/*  SECTION SHARED                                          */
/* ======================================================= */
.section {
  padding: 110px 0;
}
.section--alt {
  background: var(--ink-soft);
}
.section--cream {
  background: var(--cream);
  color: var(--ink);
}

.section__header {
  margin-bottom: 64px;
}
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__label-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.10;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.section--cream .section__title { color: var(--ink); }
.section__title em { font-style: italic; color: var(--gold); }

.section__desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.80;
}
.section--cream .section__desc { color: rgba(14,28,43,0.62); }

/* ======================================================= */
/*  TABS                                                    */
/* ======================================================= */
.tabs-wrap { margin-bottom: 52px; }
.tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 5px;
  backdrop-filter: blur(12px);
}
.tab {
  padding: 10px 28px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.tab:hover { color: var(--white); }
.tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(212,168,83,0.35);
}

/* Notice */
.notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, rgba(212,168,83,0.04) 100%);
  border: 1px solid rgba(212,168,83,0.22);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 48px;
}
.notice__icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ======================================================= */
/*  PACKAGE GRID                                            */
/* ======================================================= */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

/* ── Package Card ────────────────────────────────────────── */
.pkg-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.5s var(--ease-out) both;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.50), 0 0 0 1px rgba(212,168,83,0.18);
  border-color: rgba(212,168,83,0.20);
}

/* Card image frame */
.pkg-card__img {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ocean) 100%);
  overflow: hidden;
  display: block;
  flex-shrink: 0;
}
.pkg-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
}
.pkg-card:hover .pkg-card__img img {
  transform: scale(1.07);
  opacity: 0.88;
}

/* Placeholder (no image) */
.pkg-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #0a2038 0%, #0a4f7a 100%);
  position: relative;
}
.pkg-card__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='40' viewBox='0 0 60 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q15 5 30 20 Q45 35 60 20' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.5'/%3E%3C/svg%3E") repeat;
}
.pkg-card__img-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}
.pkg-card__img-alt {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.30);
  text-align: center;
  padding: 0 28px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

/* Card image overlay gradient */
.pkg-card__img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(7,13,20,0.80) 0%, transparent 100%);
  pointer-events: none;
}

/* Badges on image */
.pkg-card__duration-badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}
.pkg-card__price-badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 2;
  background: rgba(7,13,20,0.80);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  text-align: right;
  line-height: 1.2;
}
.pkg-card__price-badge small {
  display: block;
  font-size: 0.60rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.pkg-card__price-badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-bright);
}

/* Card body */
.pkg-card__body {
  padding: 28px 28px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.50rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.20;
  margin-bottom: 6px;
}
.pkg-card__tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  font-weight: 300;
}

/* Meta pills */
.pkg-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean-glow);
  background: rgba(26,157,217,0.10);
  border: 1px solid rgba(26,157,217,0.18);
  padding: 5px 13px;
  border-radius: var(--radius-full);
}

/* Stops */
.stops-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.stops-list { margin-bottom: 22px; }
.stops-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 6px;
}
.stops-list li:last-child { border-bottom: none; }
.stops-list li:hover { padding-left: 4px; }

.stop-dot-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5px;
  gap: 4px;
}
.stop-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ocean-glow);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 0 0 0 rgba(26,157,217,0.4);
}
.stops-list li:hover .stop-dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,168,83,0.18);
}

.stop-info { flex: 1; }
.stop-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.3;
}
.stop-time {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}

/* Expandable detail */
.stop-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.stop-detail.open { max-height: 300px; }
.stop-detail-inner {
  padding: 10px 0 6px 12px;
  border-left: 2px solid rgba(26,157,217,0.22);
  margin-top: 8px;
}
.detail-row {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
  align-items: flex-start;
  font-size: 0.78rem;
}
.detail-key {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 68px;
}
.detail-val {
  color: rgba(255,255,255,0.52);
  line-height: 1.55;
}

/* Extras */
.extras-block {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  margin-bottom: 22px;
  line-height: 1.65;
}
.extras-block strong { color: var(--ocean-glow); }

/* Drop-off */
.dropoff-block {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}
.dropoff-block strong { color: rgba(255,255,255,0.65); display: block; margin-bottom: 10px; }
.dropoff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dropoff-tag {
  font-size: 0.71rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}
.dropoff-tag--veg {
  background: rgba(212,168,83,0.12);
  border-color: rgba(212,168,83,0.22);
  color: var(--gold);
}

/* Card footer */
.pkg-card__footer {
  padding: 4px 28px 28px;
}
.book-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 15px;
  border-radius: var(--radius-md);
  text-align: center;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,168,83,0.45);
}

/* ======================================================= */
/*  FEATURES SECTION                                        */
/* ======================================================= */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--ocean) 0%, #073358 100%);
  position: relative;
  overflow: hidden;
}
.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.features::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

/* Decorative circles */
.features__deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
.features__deco--1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.features__deco--2 { width: 400px; height: 400px; bottom: -150px; left: -100px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.feature-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 52px; height: 52px;
  background: rgba(212,168,83,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.feature-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card__desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.70;
  font-weight: 300;
}

/* ======================================================= */
/*  PRICING SECTION                                         */
/* ======================================================= */
.pricing {
  padding: 110px 0;
  background: var(--cream);
  color: var(--ink);
}
.pricing .section__label { color: var(--ocean); }
.pricing .section__label-line { background: var(--ocean); }
.pricing .section__title { color: var(--ink); }
.pricing .section__desc { color: rgba(14,28,43,0.58); }

.pricing-inner { max-width: 840px; }

/* Pricing table */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.12);
  margin-top: 40px;
  margin-bottom: 20px;
  background: var(--white);
}
.price-table thead tr { background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%); }
.price-table thead th {
  color: rgba(255,255,255,0.80);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 18px 22px;
  text-align: left;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--cream-soft);
  transition: background 0.2s;
}
.price-table tbody tr:hover { background: rgba(0,79,122,0.04); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table td {
  padding: 17px 22px;
  font-size: 0.88rem;
  color: var(--ink);
  vertical-align: middle;
}
.price-table td strong { color: var(--ocean); font-weight: 700; }
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  white-space: nowrap;
}
.price-tag--blue {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  color: var(--white);
}

.pricing-note {
  font-size: 0.79rem;
  color: rgba(14,28,43,0.50);
  line-height: 1.75;
  padding: 16px 20px;
  background: rgba(0,79,122,0.05);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--ocean-mid);
}

/* ======================================================= */
/*  RESPONSIVE                                              */
/* ======================================================= */

/* ── 1280px — Large desktop ──────────────────────────────── */
@media (max-width: 1280px) {
  .pkg-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
}

/* ── 1024px — Small laptop / large tablet ───────────────── */
@media (max-width: 1024px) {
  .section { padding: 88px 0; }
  .hero { padding: 120px 24px 90px; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 768px — Tablet ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .features { padding: 72px 0; }
  .pricing  { padding: 72px 0; }

  .hero { padding: 100px 20px 80px; min-height: 100dvh; }
  .hero__stats { gap: 0; margin-top: 52px; }
  .hero__stat { padding: 0 22px; }
  .hero__stat-num { font-size: 1.9rem; }

  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .tabs { width: 100%; border-radius: var(--radius-lg); }
  .tab  { flex: 1; text-align: center; padding: 10px 14px; font-size: 0.78rem; }

  .features-grid { grid-template-columns: 1fr 1fr; }

  .section__header { margin-bottom: 44px; }
  .section__title { font-size: clamp(2rem, 6vw, 3rem); }

  /* Price table — horizontal scroll */
  .price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table { min-width: 560px; }
}

/* ── 600px — Large phone ─────────────────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero__stat { padding: 0 14px; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__stat-label { font-size: 0.62rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 26px 22px; }

  .marquee-strip__item { padding: 0 24px; }
  .footer-links { gap: 16px; }

  .pkg-card__body  { padding: 22px 20px 14px; }
  .pkg-card__footer { padding: 4px 20px 22px; }
}

/* ── 400px — Small phone ─────────────────────────────────── */
@media (max-width: 400px) {
  .hero { padding: 90px 16px 70px; }
  .hero__stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .hero__stat + .hero__stat::before { display: none; }
  .tabs { flex-wrap: wrap; border-radius: var(--radius-md); }
  .tab  { flex: none; width: calc(50% - 4px); }

  .notice { flex-direction: column; gap: 8px; }
}

/* ── Extra-large (1440+) ─────────────────────────────────── */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
  .hero { min-height: 95vh; }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}