/* ═══════════════════════════════════════════
   DISCOVER MALTA — style.css
   Design: Mediterranean luxury, dark deep-sea
   Fonts: Syne (display) + DM Sans (body)
═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ── CSS VARIABLES ── */
:root {
  /* Colors */
  --ocean:       #0a1628;
  --ocean-mid:   #0f2044;
  --ocean-light: #162b56;
  --blue-deep:   #0d3b8e;
  --blue:        #1565e0;
  --blue-light:  #e8f0fe;
  --cyan:        #00c6d7;
  --sun:         #ffb400;
  --sun-dark:    #e09c00;
  --coral:       #ff6b4a;
  --wa-green:    #25d366;
  --wa-dark:     #128c7e;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #a0aec0;
  --border:      #e2e8f0;
  --border-dark: rgba(255,255,255,.1);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 100px);
  --container:   1200px;
  --gap:         32px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-wa:  0 8px 32px rgba(37,211,102,.3);
  --shadow-sun: 0 8px 32px rgba(255,180,0,.3);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: -.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { line-height: 1.72; color: var(--text-mid); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white);
  box-shadow: var(--shadow-wa);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,.45); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(21,101,224,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(21,101,224,.45); }

.btn-sun {
  background: linear-gradient(135deg, var(--sun), var(--sun-dark));
  color: var(--ocean);
  box-shadow: var(--shadow-sun);
}
.btn-sun:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,180,0,.45); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(0,0,0,.2);
  color: var(--text-dark);
}
.btn-outline-light:hover { border-color: var(--blue); color: var(--blue); }

.btn-wa-outline {
  background: transparent;
  border: 2px solid var(--wa-green);
  color: var(--wa-green);
  padding: 10px 22px;
  font-size: .85rem;
}
.btn-wa-outline:hover { background: var(--wa-green); color: var(--white); }

.btn-wa-white {
  background: var(--white);
  color: var(--wa-dark);
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  transition: all .25s;
}
.btn-wa-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* Mini buttons */
.btn-mini-wa, .btn-mini-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.btn-mini-wa {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}
.btn-mini-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,.4); }
.btn-mini-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(21,101,224,.2);
}
.btn-mini-blue:hover { transform: translateY(-1px); }

/* ── SECTION TAGS ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* ── SECTION HEADERS ── */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--off-white); padding: var(--section-pad) 0; }
.section-dark {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: var(--section-pad) 0;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-title { margin: 12px 0 16px; }
.section-desc { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 48px; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,17,32,.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(7,17,32,.98);
  box-shadow: 0 2px 28px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 16px;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { margin-left: auto; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* Mobile menu – fullscreen overlay, outside header for proper stacking */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 17, 32, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 32px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 32px 0;
  padding: 0;
  width: 100%;
}
.mobile-menu ul li {
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.mobile-menu ul a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  padding: 14px 24px;
  display: block;
  text-align: center;
  border-radius: var(--r-md);
  transition: background .2s;
  text-decoration: none;
}
.mobile-menu ul a:hover,
.mobile-menu ul a:focus {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-close:hover { background: rgba(255, 255, 255, 0.15); }

/* Prevent body scroll when menu is open */
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #071120 0%, #0d2550 40%, #0a3366 70%, #082240 100%);
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,198,215,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255,180,0,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(21,101,224,.15) 0%, transparent 60%);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 60px;
  padding-bottom: 160px;
  animation: heroIn .9s ease both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-bottom: 24px;
}
.dot {
  width: 8px; height: 8px;
  background: var(--wa-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.4);} 50%{box-shadow:0 0 0 6px rgba(37,211,102,0);} }

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--cyan); }

.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--white); }
.hero-stat span { font-size: .8rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* Floating cards */
.hero-float {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(80px, 10vh, 140px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.float-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  min-width: 190px;
}
.float-card > div { display: flex; flex-direction: column; gap: 2px; }
.float-card strong { color: var(--white); font-size: .9rem; font-weight: 700; }
.float-card span { color: rgba(255,255,255,.55); font-size: .78rem; }
.float-icon { font-size: 1.4rem; }
.float-anim { animation: floatUp 3s ease-in-out infinite; }
.float-anim-delay { animation: floatUp 3s ease-in-out 1s infinite; }
@keyframes floatUp { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--ocean);
  padding: 14px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 24px;
}
.trust-bar-inner span {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   PAGE SECTIONS
══════════════════════════════════════════════════ */
.page { display: none; padding-top: 70px; }
.page.active { display: block; }

/* Page hero (sub-pages) */
.page-hero {
  background: linear-gradient(145deg, var(--ocean) 0%, var(--ocean-mid) 100%);
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero .section-tag { margin-bottom: 16px; }
.page-hero-title { color: var(--white); margin: 12px 0 16px; }
.page-hero-desc { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── PREVIEW GRID (home) ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.preview-card h3 { font-size: 1.2rem; color: var(--text-dark); }
.preview-card p { font-size: .9rem; flex-grow: 1; }
.preview-card-badge {
  position: absolute; top: -12px; left: 24px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.preview-card-badge.sun { background: var(--sun); color: var(--ocean); }
.preview-card-badge.coral { background: var(--coral); color: var(--white); }
.preview-card-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  font-weight: 600;
}
.preview-card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
  margin-top: 4px;
}

/* ── PARTY FEATURES (home dark section) ── */
.party-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 32px 0 40px;
}
.party-feat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 16px 20px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.party-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.party-prices-preview { display: flex; gap: 12px; flex-wrap: wrap; }
.party-price-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 8px 16px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
}
.party-price-chip strong { color: var(--sun); }

/* ── WHY GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: box-shadow .25s, transform .25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 { margin-bottom: 8px; font-size: 1rem; }
.why-card p { font-size: .88rem; }
.why-card-stats { background: linear-gradient(135deg, var(--ocean), var(--ocean-mid)); border-color: transparent; }
.stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-item strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--white); }
.stat-item span { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ── CTA BANNER ── */
.section-cta-banner {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  padding: 80px 0;
  text-align: center;
}
.section-cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.section-cta-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════
   ACTIVITY DETAIL
══════════════════════════════════════════════════ */
.activity-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
}
.activity-detail:last-of-type { border-bottom: none; margin-bottom: 0; }
.activity-detail.reverse { direction: rtl; }
.activity-detail.reverse > * { direction: ltr; }

.activity-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.activity-detail:hover .activity-img img { transform: scale(1.03); }

.activity-info { display: flex; flex-direction: column; gap: 16px; }
.activity-title { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--text-dark); }
.activity-desc { font-size: .97rem; line-height: 1.75; }

/* Price table */
.price-table {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 20px;
  border: 1px solid var(--border);
}
.price-table h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 12px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: .95rem; }

/* Card perks */
.card-perks { display: flex; flex-wrap: wrap; gap: 8px; }
.perk {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
}

/* ── CATEGORY HEADERS ── */
.cat-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 56px 0 28px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cat-header-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cat-header-icon.calm    { background: rgba(0,198,215,.12); }
.cat-header-icon.thrill  { background: rgba(255,180,0,.12); }
.cat-header-icon.premium { background: rgba(255,107,74,.12); }
.cat-header h3 { color: var(--text-dark); margin-bottom: 4px; }
.cat-header p  { font-size: .85rem; color: var(--text-mid); }

/* ── MINI CARDS ── */
.mini-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-bottom: 16px;
}
.mini-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mini-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.mini-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mini-card:hover .mini-card-img img { transform: scale(1.05); }
.mini-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ocean);
  color: var(--white);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.mini-card-badge.sun { background: var(--sun); color: var(--ocean); }
.mini-card-badge.coral { background: var(--coral); color: var(--white); }

.mini-card-body { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; gap: 10px; }
.mini-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-dark); }
.mini-card-desc { font-size: .85rem; color: var(--text-mid); line-height: 1.6; flex-grow: 1; }
.mini-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.mini-price { font-size: .85rem; color: var(--text-mid); }
.mini-price span { font-family: var(--font-display); font-weight: 800; color: var(--blue); font-size: 1rem; }

/* ── FLOATING WHATSAPP BUTTON ── */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: var(--white);
  border-radius: 100px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.floating-wa:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 44px rgba(37,211,102,.6); }
@media (max-width: 480px) {
  .floating-wa span { display: none; }
  .floating-wa { padding: 16px; border-radius: 50%; }
}


.booking-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: var(--ocean);
  border-radius: var(--r-xl);
  padding: 32px;
  margin: 56px 0;
}
.trust-item { display: flex; align-items: flex-start; gap: 16px; }
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-title { font-weight: 700; color: var(--white); font-size: .92rem; margin-bottom: 4px; }
.trust-desc { color: rgba(255,255,255,.55); font-size: .82rem; line-height: 1.5; }

/* ── BOATS ── */
.boats-occasions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.occasion-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
}

.boats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}
.boat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.boat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.boat-card-img { aspect-ratio: 16/10; overflow: hidden; }
.boat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.boat-card:hover .boat-card-img img { transform: scale(1.05); }
.boat-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.boat-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); }
.boat-card-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.boat-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--sun); }
.boat-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.boat-tag {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 600;
}

/* ── EXCURSION CARDS ── */
.excursion-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.excursion-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.excursion-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.excursion-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.excursion-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.excursion-card:hover .excursion-card-img img { transform: scale(1.05); }
.excursion-card-price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--sun); color: var(--ocean);
  border-radius: 100px; padding: 6px 14px;
  font-size: .78rem; font-weight: 800; font-family: var(--font-display);
}
.excursion-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.excursion-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.excursion-card-desc { font-size: .86rem; color: var(--text-mid); line-height: 1.6; flex-grow: 1; }

/* ══════════════════════════════════════════════════
   PARTIES
══════════════════════════════════════════════════ */

/* Ticker */
.parties-ticker {
  background: var(--ocean);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  font-weight: 600;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Party hero card */
.party-hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.party-hero-card-bg {
  height: 340px;
  overflow: hidden;
}
.party-hero-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.party-hero-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,.2) 0%, rgba(10,22,40,.8) 60%, rgba(10,22,40,.98) 100%);
}
.party-hero-card-body {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(10,22,40,.6);
  backdrop-filter: blur(4px);
}
.party-hero-card-title { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; color: var(--white); }
.party-hero-card-desc { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.7; max-width: 640px; }
.party-price-highlight { display: flex; align-items: baseline; gap: 8px; }
.party-price-highlight .price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--sun); }
.party-price-highlight .per { color: rgba(255,255,255,.5); font-size: .9rem; }
.party-includes { display: flex; flex-wrap: wrap; gap: 8px; }
.party-include-tag {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
}

/* Party grid (3 col) */
.party-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.party-item-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .25s;
}
.party-item-card:hover { transform: translateY(-4px); }
.party-item-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.party-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.party-item-card:hover .party-item-img img { transform: scale(1.05); }
.party-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.7) 0%, transparent 60%);
}
.party-item-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.party-item-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); }
.party-item-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--sun); }
.party-item-desc { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Featured parties */
.featured-parties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.featured-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .25s;
  box-shadow: var(--shadow-lg);
}
.featured-card:hover { transform: translateY(-4px); }
.featured-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .4s;
}
.featured-card:hover .featured-card-bg { transform: scale(1.04); }
.featured-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.95) 0%, rgba(10,22,40,.3) 60%, transparent 100%);
}
.featured-card-price-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--sun); color: var(--ocean);
  border-radius: 100px; padding: 6px 16px;
  font-family: var(--font-display); font-size: .85rem; font-weight: 900;
}
.featured-card-body {
  position: relative; z-index: 2;
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.featured-card-label { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.featured-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.featured-card-desc { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: 8px; }
.featured-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.ftag {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75); border-radius: 100px;
  padding: 4px 12px; font-size: .75rem; font-weight: 600;
}

/* Parties hero dark */
.parties-hero-dark {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #04080f 0%, #071628 40%, #0a1f3d 70%, #060d1a 100%);
  overflow: hidden;
}
.parties-hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(255,180,0,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 70%, rgba(0,198,215,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(255,107,74,.05) 0%, transparent 60%);
}
.parties-hero-overlay {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px; opacity:.3;
}

/* Night style for day-event cards in planning section */
.section-dark-planning { background: #070e1c; padding: var(--section-pad) 0; }
.section-dark-planning .day-tabs {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.section-dark-planning .day-tab { color: rgba(255,255,255,.5); }
.section-dark-planning .day-tab:hover { background: rgba(255,255,255,.08); color: var(--white); }
.section-dark-planning .day-tab.active { background: var(--sun); color: var(--ocean); box-shadow: 0 4px 20px rgba(255,180,0,.35); }
.section-dark-planning .day-event-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.section-dark-planning .day-event-card:hover { background: rgba(255,255,255,.07); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.section-dark-planning .day-event-name { color: var(--white); }
.section-dark-planning .day-event-venue { color: rgba(255,255,255,.4); }
.section-dark-planning .day-event-desc { color: rgba(255,255,255,.55); }
.section-dark-planning .day-event-price { color: var(--sun); }
.section-dark-planning .day-event-note { color: var(--coral); }


.day-filter-wrap { max-width: 900px; margin: 0 auto; }
.day-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 8px;
}
.day-tab {
  padding: 10px 18px;
  border-radius: var(--r-lg);
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-mid);
  transition: all .2s;
}
.day-tab:hover { background: var(--white); color: var(--text-dark); }
.day-tab.active { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px rgba(21,101,224,.3); }

.day-panel { display: none; }
.day-panel.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.day-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.day-event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.day-event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.day-event-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text-dark); }
.day-event-venue { font-size: .78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.day-event-desc { font-size: .86rem; color: var(--text-mid); line-height: 1.6; flex-grow: 1; }
.day-event-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--blue); }
.day-event-note { font-size: .76rem; color: var(--coral); font-weight: 600; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.wa-cta-banner {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  border-radius: var(--r-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 56px;
}
.wa-cta-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.wa-cta-sub { color: rgba(255,255,255,.8); font-size: .95rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 12px; font-size: 1.5rem; }
.contact-info > p { margin-bottom: 24px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  transition: box-shadow .2s, transform .2s;
}
.contact-method:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-method-icon.wa { background: rgba(37,211,102,.12); }
.contact-method-icon.em { background: var(--blue-light); }
.contact-method-title { font-weight: 700; font-size: .9rem; color: var(--text-dark); margin-bottom: 2px; }
.contact-method-val { font-size: .85rem; color: var(--text-mid); }

.contact-hours {
  background: var(--blue-light);
  border-radius: var(--r-md);
  padding: 22px;
}
.contact-hours-title { font-weight: 700; color: var(--blue-deep); margin-bottom: 8px; font-size: .9rem; }
.contact-hours-body { font-size: .86rem; color: var(--text-mid); line-height: 1.8; }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-title { margin-bottom: 24px; font-size: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,224,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; border-radius: var(--r-lg); }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px;
  text-align: center;
}
.success-icon { font-size: 3rem; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--ocean);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand p { color: rgba(255,255,255,.5); font-size: .86rem; line-height: 1.7; max-width: 280px; }
.footer-nav h4, .footer-contact h4 { color: var(--white); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.footer-nav ul a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 4px; }
.footer-contact a, .footer-contact span { color: rgba(255,255,255,.55); font-size: .88rem; display: block; padding: 5px 0; transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

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

  .hero-content { padding-bottom: 80px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }

  .activity-detail { grid-template-columns: 1fr; }
  .activity-detail.reverse { direction: ltr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }

  .day-tabs { gap: 4px; }
  .day-tab { padding: 8px 12px; font-size: .75rem; }

  .party-cta-row { flex-direction: column; align-items: flex-start; }
  .wa-cta-banner { flex-direction: column; text-align: center; align-items: center; }

  .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .boats-grid, .mini-cards-grid, .excursion-cards-grid,
  .featured-parties, .party-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .booking-trust { grid-template-columns: 1fr; }
  .section-cta-banner h2 { font-size: 1.4rem; }
  .trust-bar-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── DARK SECTION overrides ── */
.section-dark .section-tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,.6); }
.section-dark .cat-header { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.section-dark .cat-header h3 { color: var(--white); }
.section-dark .cat-header p { color: rgba(255,255,255,.5); }
.section-dark .mini-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.section-dark .mini-card-title { color: var(--white); }
.section-dark .mini-card-desc { color: rgba(255,255,255,.55); }
.section-dark .mini-price { color: rgba(255,255,255,.5); }
.section-dark .price-table { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); }
.section-dark .price-row { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.7); }

/* section-alt overrides */
.section-alt .cat-header { background: var(--white); }
