/* ============================================================
   PADDLEOUT MOROCCO — Global Stylesheet
   Covers: index, contact, 4/6/7/8-day package pages
   ============================================================ */

/* ── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ocean:       #0B1F2D;
  --ocean-mid:   #122B3F;
  --ocean-light: #1A3A52;
  --sand:        #E8D5B0;
  --foam:        #F5F0E8;
  --coral:       #027788;
  --coral-light: #038fa4;
  --sage:        #4A7C6F;
  --sage-light:  #5E9688;
  --white:       #FFFFFF;
  --muted:       rgba(232,213,176,0.6);
  --nav-h:       72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--ocean);
  color: var(--foam);
  overflow-x: hidden;
  line-height: 1.6;
}


/* ── NAVIGATION ───────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(11,31,45,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,213,176,.1);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: -.5px;
}
.nav-logo span { color: var(--coral); }
.nav-logo-img { height: 44px; width: auto; display: block; }
.footer-logo-img { height: 52px; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sand); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

/* Packages dropdown */
.nav-drop { position: relative; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop-arrow { font-size: 10px; transition: transform .2s; }
.nav-drop.open .nav-drop-arrow { transform: rotate(180deg); }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.12);
  border-radius: 8px; min-width: 240px; padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.nav-drop-menu a {
  display: block; padding: 10px 12px; border-radius: 6px;
  font-size: 12px; text-transform: none; letter-spacing: normal;
  color: var(--sand); white-space: nowrap;
}
.nav-drop-menu a:hover { background: rgba(2,119,136,.12); color: var(--white); }
.nav-drop:hover .nav-drop-menu,
.nav-drop.open .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Nav social icons (reuses .social-links circle styling) */
.nav-links .social-links { gap: 10px; }

.nav-cta {
  background: var(--coral); color: var(--white);
  padding: 10px 24px; border-radius: 4px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--coral-light); transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--white); font-size: 24px; padding: 4px;
}


/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
}
.section-sub {
  font-size: 17px; font-weight: 300; color: var(--muted);
  max-width: 560px; margin-top: 12px; line-height: 1.7;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  background: var(--coral); color: var(--white);
  padding: 16px 36px; border-radius: 4px; text-decoration: none;
  font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(232,102,61,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--coral-light); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(2,119,136,.5);
}
.btn-ghost {
  border: 1.5px solid rgba(232,213,176,.35); color: var(--sand);
  padding: 16px 36px; border-radius: 4px; text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  transition: border-color .2s, color .2s, transform .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--sand); color: var(--white); transform: translateY(-2px); }


/* ── IMAGE PLACEHOLDERS ───────────────────────────────────── */
.img-ph, .img-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--ocean-light);
  border: 2px dashed rgba(232,213,176,.18);
  border-radius: 6px; color: var(--muted); text-align: center;
}
.img-ph .ph-icon,
.img-placeholder .ph-icon  { font-size: 28px; opacity: .5; }
.img-ph .ph-size,
.img-placeholder .ph-size  { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--coral); letter-spacing: .1em; }
.img-ph .ph-lbl,
.img-placeholder .ph-label { font-size: 11px; opacity: .5; max-width: 160px; line-height: 1.4; }


/* ── WAVE DIVIDER ─────────────────────────────────────────── */
.wave-divider { line-height: 0; position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; }
.wave-divider svg { display: block; width: 100%; }


/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--ocean-mid);
  border-top: 1px solid rgba(232,213,176,.06);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 26px; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.footer-contacts { margin-top: 24px; }
.footer-contacts a {
  display: block; font-size: 14px; color: var(--sand);
  text-decoration: none; margin-bottom: 6px; transition: color .2s;
}
.footer-contacts a:hover { color: var(--white); }
.footer-col h4 {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 18px; font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(232,213,176,.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.social-links,
.social-links-foot { display: flex; gap: 12px; }
.social-links a,
.social-links-foot a {
  width: 38px; height: 38px;
  border: 1px solid rgba(232,213,176,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 16px;
  transition: border-color .2s, background .2s;
}
.social-links a:hover,
.social-links-foot a:hover { border-color: var(--coral); background: rgba(2,119,136,.1); }


/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb span { color: var(--sand); margin: 0 8px; }


/* ── FAQ ACCORDION ────────────────────────────────────────── */
.faq-list,
.faq-grid { display: flex; flex-direction: column; gap: 4px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item {
  background: var(--ocean-mid);
  border: 1px solid rgba(232,213,176,.07);
  border-radius: 6px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--white); transition: color .2s; gap: 12px;
}
.faq-q:hover { color: var(--sand); }
.faq-arrow { flex-shrink: 0; transition: transform .3s; font-size: 11px; color: var(--coral); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 20px 18px;
  font-size: 14px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }


/* ============================================================
   HOME PAGE (index.html)
   ============================================================ */

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 120px;
}
.hero-container { position: relative; z-index: 2; }
.hero-content {
  max-width: 720px; text-align: left;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
  background: linear-gradient(160deg, #0B1F2D 0%, #0D2B40 40%, #163D56 100%);
}
.hero-bg::before, .hero-bg::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,111,.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 1;
}
.hero-bg::before { width: 900px; height: 900px; top: -200px; right: -200px; }
.hero-bg::after  { width: 600px; height: 600px; bottom: -100px; left: -150px; animation-delay: -4s; }
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .8; }
  50%      { transform: scale(1.12); opacity: 1; }
}

/* Hero background video */
.hero-video-wrap {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-video {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;     /* 16:9 */
  min-height: 100vh; min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  border: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,31,45,.88) 0%, rgba(11,31,45,.72) 45%, rgba(13,43,64,.35) 100%),
    linear-gradient(0deg, rgba(11,31,45,.85) 0%, transparent 45%);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 26px;
  padding: 8px 16px; border-radius: 40px;
  background: rgba(232,213,176,.08);
  border: 1px solid rgba(232,213,176,.16);
  backdrop-filter: blur(4px);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral-light); flex: none;
  box-shadow: 0 0 0 0 rgba(3,143,164,.6);
  animation: heroPing 2.2s ease-out infinite;
}
@keyframes heroPing {
  0%   { box-shadow: 0 0 0 0 rgba(3,143,164,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(3,143,164,0); }
  100% { box-shadow: 0 0 0 0 rgba(3,143,164,0); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 104px); font-weight: 900; line-height: .98;
  color: var(--white); letter-spacing: -2px;
}
.hero h1 em { font-style: italic; color: var(--sand); }
.hero-sub {
  margin-top: 26px; max-width: 520px;
  font-size: 17px; font-weight: 300; color: var(--muted);
  line-height: 1.7;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-stats {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 24px 48px;
  padding-top: 32px; border-top: 1px solid rgba(232,213,176,.14);
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--white); line-height: 1;
}
.hero-stat span {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; display: block;
}

/* Packages section */
#packages { background: var(--ocean); padding: 100px 0 120px; }
.packages-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; flex-wrap: wrap; gap: 24px;
}
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pkg-card {
  background: var(--ocean-mid);
  border: 1px solid rgba(232,213,176,.08);
  border-radius: 8px; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: pointer; position: relative;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  border-color: rgba(232,102,61,.3);
}
.pkg-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--coral); color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 3px; z-index: 2;
}
.pkg-img {
  width: 100%; height: 220px; object-fit: cover;
  display: block; filter: brightness(.85);
  transition: filter .4s, transform .4s;
}
.pkg-card:hover .pkg-img { filter: brightness(1); transform: scale(1.04); }
.pkg-img-wrap { overflow: hidden; position: relative; }
.pkg-img-wrap .img-ph,
.pkg-img-wrap .img-placeholder { width: 100%; height: 220px; }
.pkg-body { padding: 28px; }
.pkg-duration {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sage-light); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.pkg-duration::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--sage-light);
}
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 12px;
}
.pkg-desc {
  font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px;
}
.pkg-includes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pkg-tag {
  background: rgba(74,124,111,.18); color: var(--sage-light);
  font-size: 11px; font-weight: 500; padding: 5px 10px;
  border-radius: 3px; letter-spacing: .04em;
}
.pkg-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(232,213,176,.08);
}
.pkg-price-old {
  font-size: 13px; color: var(--muted); text-decoration: line-through;
  font-family: 'Space Mono', monospace; display: block; line-height: 1;
}
.pkg-price-now {
  font-family: 'Space Mono', monospace;
  font-size: 28px; font-weight: 700; color: var(--white); line-height: 1;
}
.pkg-price-now small { font-size: 14px; color: var(--muted); font-weight: 400; }
.pkg-btn {
  background: var(--coral); color: var(--white);
  padding: 12px 22px; border-radius: 4px; text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; transition: background .2s, transform .2s; white-space: nowrap;
}
.pkg-btn:hover { background: var(--coral-light); transform: scale(1.03); }

/* Included section */
#included { background: var(--ocean-mid); padding: 100px 0; }
.included-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px; margin-top: 56px;
  border: 2px solid rgba(232,213,176,.06); border-radius: 8px; overflow: hidden;
}
.inc-item { background: var(--ocean); padding: 32px; text-align: center; transition: background .3s; }
.inc-item:hover { background: var(--ocean-light); }
.inc-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.inc-name { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: .02em; margin-bottom: 6px; }
.inc-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* About section */
#about { background: var(--ocean); padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 380px; object-fit: cover; border-radius: 6px; filter: brightness(.9);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 60%; height: 240px; object-fit: cover;
  border-radius: 6px; border: 4px solid var(--ocean);
}
.about-tag {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--coral); color: var(--white);
  font-family: 'Space Mono', monospace; font-size: 12px;
  padding: 10px 16px; border-radius: 4px; white-space: nowrap; z-index: 2; text-align: center;
}
.about-tag strong { display: block; font-size: 22px; }
.about-text .section-title { color: var(--white); }
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-top: 20px; }
.about-text p + p { margin-top: 14px; }
.about-text .btn-primary { margin-top: 36px; }

/* Journey / timeline strip (about-us.html) */
.journey-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 56px; border: 2px solid rgba(232,213,176,.06);
  border-radius: 8px; overflow: hidden;
}
.journey-step { background: var(--ocean-mid); padding: 36px 28px; }
.journey-year {
  font-family: 'Space Mono', monospace; font-size: 12px;
  color: var(--coral); letter-spacing: .15em; margin-bottom: 12px;
}
.journey-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.journey-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Team grid (about-us.html) */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.team-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.08);
  border-radius: 10px; overflow: hidden; text-align: center;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(232,102,61,.3); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.team-img { width: 100%; height: 260px; object-fit: cover; object-position: top center; display: block; }
.team-body { padding: 20px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-role {
  font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 12px;
}
.team-bio { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Testimonials */
#testimonials { background: var(--ocean-mid); padding: 100px 0; overflow: hidden; }
.testi-header { text-align: center; margin-bottom: 56px; }
.testi-header .section-sub { margin: 12px auto 0; }
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex; gap: 24px;
  animation: marquee 30s linear infinite; width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  background: var(--ocean); border: 1px solid rgba(232,213,176,.08);
  border-radius: 8px; padding: 32px 28px; min-width: 320px; max-width: 320px; flex-shrink: 0;
}
.testi-stars { color: var(--coral); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 16px; color: var(--sand); line-height: 1.6; margin-bottom: 20px;
}
.testi-author { font-size: 13px; font-weight: 600; color: var(--white); }
.testi-origin { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* Booking / CTA section */
#booking {
  background: linear-gradient(135deg, var(--ocean-light) 0%, var(--ocean) 100%);
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
#booking::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(74,124,111,.12) 0%, transparent 70%);
}
#booking .section-title { font-size: clamp(38px, 5vw, 64px); }
#booking .section-sub { margin: 16px auto 40px; color: var(--muted); }
.booking-form {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.1);
  border-radius: 10px; padding: 48px; max-width: 680px; margin: 0 auto;
  text-align: left; position: relative; z-index: 1;
}

/* Activities */
#activities { background: var(--ocean); padding: 100px 0; }
.activities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; margin-top: 48px;
}
.act-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.07);
  border-radius: 8px; padding: 28px 20px; text-align: center;
  transition: transform .25s, border-color .25s, background .25s;
}
.act-card:hover { transform: translateY(-4px); border-color: rgba(74,124,111,.4); background: var(--ocean-light); }
.act-emoji { font-size: 36px; display: block; margin-bottom: 12px; }
.act-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.act-price { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--coral); }


/* ============================================================
   SHARED FORM STYLES (index booking + contact page)
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(232,213,176,.12);
  border-radius: 5px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 14px;
  outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color .2s, background .2s;
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); background: rgba(2,119,136,.05); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,213,176,.3); }
.form-group select option { background: var(--ocean-mid); }
.form-submit {
  width: 100%; padding: 17px;
  background: var(--coral); color: var(--white);
  border: none; border-radius: 5px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(232,102,61,.3);
  transition: background .2s, transform .2s, box-shadow .2s; margin-top: 8px;
}
.form-submit:hover {
  background: var(--coral-light); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(2,119,136,.45);
}
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.6; }


/* ============================================================
   PACKAGE DETAIL PAGES (4/6/7/8-days)
   ============================================================ */

/* Package hero */
.pkg-hero {
  position: relative; padding-top: var(--nav-h);
  min-height: 92vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 0; overflow: hidden;
}
.pkg-hero-left { padding: 80px 60px 80px 40px; position: relative; z-index: 2; }
.pkg-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px); font-weight: 900; line-height: .95;
  letter-spacing: -2px; color: var(--white); margin-bottom: 20px;
}
.pkg-hero-title em { font-style: italic; color: var(--sand); display: block; }
.pkg-hero-sub {
  font-size: 16px; font-weight: 300; color: var(--muted);
  max-width: 440px; line-height: 1.75; margin-bottom: 32px;
}
.pkg-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.pkg-badge-pill {
  background: rgba(74,124,111,.18); color: var(--sage-light);
  font-size: 12px; font-weight: 500; padding: 7px 14px;
  border-radius: 20px; display: flex; align-items: center; gap: 6px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.pkg-hero-right {
  position: relative; height: 100%; min-height: 600px;
  background: var(--ocean-mid);
}
.hero-photo-main { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ocean) 0%, transparent 30%); z-index: 1;
}
.hero-stats-bar {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 2px;
  background: rgba(11,31,45,.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(232,213,176,.1); border-radius: 6px; overflow: hidden;
}
.hstat { padding: 16px 24px; text-align: center; border-right: 1px solid rgba(232,213,176,.08); }
.hstat:last-child { border-right: none; }
.hstat strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white); display: block; line-height: 1;
}
.hstat span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* Content + sidebar layout */
.content-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 48px; align-items: start; padding: 80px 0 120px;
}
.content-main { min-width: 0; }
.sidebar { position: static; }

/* Content blocks */
.content-block { margin-bottom: 64px; }
.content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--white);
  letter-spacing: -.5px; margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(232,213,176,.08);
}

/* Highlights grid */
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hl-item {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.07);
  border-radius: 6px; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--sand);
  transition: background .2s, border-color .2s;
}
.hl-item:hover { background: var(--ocean-light); border-color: rgba(74,124,111,.3); }
.hl-icon { font-size: 20px; flex-shrink: 0; }

/* Photo strip */
.photo-strip {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; margin: 24px 0;
}
.photo-strip .ph-main  { grid-row: 1 / 3; }
.photo-strip .img-ph   { width: 100%; }
.photo-strip .ph-main .img-ph { height: 300px; }
.photo-strip .ph-sm .img-ph   { height: 145px; }

/* Daily schedule */
.schedule-list { display: flex; flex-direction: column; gap: 0; }
.sched-item {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 20px; position: relative; padding-bottom: 32px;
}
.sched-item:last-child { padding-bottom: 0; }
.sched-item::before {
  content: ''; position: absolute;
  left: 105px; top: 8px; bottom: 0;
  width: 1px; background: rgba(232,213,176,.1);
}
.sched-item:last-child::before { display: none; }
.sched-time {
  font-family: 'Space Mono', monospace; font-size: 11px; color: var(--coral);
  letter-spacing: .05em; padding-top: 4px; text-align: right; line-height: 1.4;
}
.sched-body { position: relative; padding-left: 20px; }
.sched-body::before {
  content: ''; position: absolute; left: -5px; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--coral); box-shadow: 0 0 0 3px rgba(2,119,136,.2);
}
.sched-body h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.sched-body p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.sched-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sched-tag {
  background: rgba(74,124,111,.15); color: var(--sage-light);
  font-size: 11px; padding: 3px 9px; border-radius: 3px;
}

/* Meals */
.meals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.meal-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.07);
  border-radius: 6px; padding: 24px 20px;
}
.meal-card .meal-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.meal-card h3 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.meal-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.meal-card ul li { font-size: 12px; color: var(--muted); padding-left: 12px; position: relative; }
.meal-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--coral); }

/* Surf levels */
.surf-levels { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 24px; }
.level-chip {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.07);
  border-radius: 6px; padding: 14px 16px;
  font-size: 13px; color: var(--sand);
  display: flex; align-items: center; gap: 10px;
}
.level-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.level-dot.beg { background: var(--sage-light); }
.level-dot.int { background: var(--coral); }
.level-dot.adv { background: #c0392b; }
.gear-list { display: flex; flex-wrap: wrap; gap: 10px; }
.gear-item {
  background: rgba(74,124,111,.15); color: var(--sage-light);
  font-size: 12px; padding: 7px 14px; border-radius: 4px;
  display: flex; align-items: center; gap: 6px;
}

/* Accommodation */
.accom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.accom-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.07);
  border-radius: 6px; padding: 18px 20px;
  transition: border-color .2s, background .2s;
}
.accom-card:hover { border-color: rgba(232,102,61,.25); background: var(--ocean-light); }
.accom-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.accom-desc { font-size: 12px; color: var(--muted); }
.accom-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.amenity { font-size: 13px; color: var(--sand); display: flex; align-items: center; gap: 8px; }
.amenity::before { content: '✓'; color: var(--sage-light); font-weight: 700; }

/* Included / excluded */
.inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-box {
  background: rgba(74,124,111,.12); border: 1px solid rgba(74,124,111,.25);
  border-radius: 6px; padding: 24px;
}
.exc-box {
  background: rgba(232,102,61,.08); border: 1px solid rgba(2,119,136,.2);
  border-radius: 6px; padding: 24px;
}
.inc-box h3 { color: var(--sage-light); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.exc-box h3 { color: var(--coral);       font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.inc-box ul, .exc-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.inc-box ul li { font-size: 13px; color: var(--sand); display: flex; gap: 10px; align-items: flex-start; }
.exc-box ul li { font-size: 13px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.inc-box ul li::before { content: '✅'; flex-shrink: 0; }
.exc-box ul li::before { content: '✗'; color: var(--coral); flex-shrink: 0; font-weight: 700; }

/* Package sidebar */
.sidebar-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.1);
  border-radius: 8px; overflow: hidden;
}
.sidebar-card-header {
  background: var(--ocean-light); padding: 20px 24px;
  border-bottom: 1px solid rgba(232,213,176,.08);
}
.sidebar-badge {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 6px;
}
.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px;
}
.sidebar-sub { font-size: 12px; color: var(--muted); }
.sidebar-body { padding: 24px; }

.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.price-table tr { border-bottom: 1px solid rgba(232,213,176,.06); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 10px 0; font-size: 13px; vertical-align: middle; }
.price-table td:first-child { color: var(--sand); padding-right: 12px; }
.price-table td:last-child {
  text-align: right; font-family: 'Space Mono', monospace;
  font-weight: 700; color: var(--white); white-space: nowrap;
}
.price-table tr.popular td:last-child { color: var(--coral); }
.popular-badge {
  background: var(--coral); color: var(--white);
  font-size: 9px; font-weight: 700; padding: 2px 6px;
  border-radius: 2px; margin-left: 6px; letter-spacing: .05em;
  font-family: 'Space Mono', monospace;
}

.sidebar-form { display: flex; flex-direction: column; gap: 12px; }
.sf-group label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.sf-group input, .sf-group select {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(232,213,176,.12);
  border-radius: 5px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 13px;
  outline: none; -webkit-appearance: none;
  transition: border-color .2s, background .2s;
}
.sf-group input:focus, .sf-group select:focus { border-color: var(--coral); background: rgba(2,119,136,.06); }
.sf-group select option { background: var(--ocean-mid); }
.sb-btn {
  width: 100%; padding: 16px;
  background: var(--coral); color: var(--white);
  border: none; border-radius: 5px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(232,102,61,.3);
  transition: background .2s, transform .2s, box-shadow .2s; margin-top: 4px;
}
.sb-btn:hover { background: var(--coral-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(2,119,136,.45); }
.sb-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

.sidebar-extra {
  margin-top: 16px; background: var(--ocean-mid);
  border: 1px solid rgba(232,213,176,.08); border-radius: 8px; padding: 20px;
}
.sidebar-extra h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px;
}
.sidebar-extra ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-extra ul li { font-size: 13px; color: var(--sand); display: flex; align-items: center; gap: 8px; }
.sidebar-extra ul li::before { content: '✓'; color: var(--sage-light); font-weight: 700; }
.sidebar-contact {
  margin-top: 16px; padding: 16px 20px;
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.08); border-radius: 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.sidebar-contact p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.contact-btns { display: flex; gap: 8px; }
.cbtn {
  flex: 1; padding: 10px; border-radius: 5px; text-decoration: none;
  font-size: 12px; font-weight: 600; text-align: center; letter-spacing: .04em;
  transition: opacity .2s, transform .2s;
}
.cbtn:hover { opacity: .85; transform: translateY(-1px); }
.cbtn-wa   { background: #25D366; color: #fff; }
.cbtn-mail { background: var(--ocean-light); color: var(--sand); border: 1px solid rgba(232,213,176,.15); }

/* Other packages strip */
.other-pkgs { background: var(--ocean-mid); padding: 80px 0; border-top: 1px solid rgba(232,213,176,.06); }
.other-pkgs-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.other-pkgs-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -.5px;
}
.view-all {
  font-size: 13px; font-weight: 500; color: var(--coral);
  text-decoration: none; letter-spacing: .06em; text-transform: uppercase; transition: color .2s;
}
.view-all:hover { color: var(--coral-light); }
.mini-pkgs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.mini-card {
  position: relative;
  background: var(--ocean);
  border: 1px solid rgba(232,213,176,.10);
  border-radius: 14px;
  overflow: hidden; text-decoration: none; display: block;
  transition: transform .4s cubic-bezier(.2,.7,.3,1), border-color .4s, box-shadow .4s;
}
.mini-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2,119,136,.55);
  box-shadow: 0 24px 50px rgba(0,0,0,.5);
}
.mini-img {
  width: 100%; height: 175px;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.mini-card:hover .mini-img { transform: scale(1.08); }
/* soft scrim so the badge reads on any photo */
.mini-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 90px;
  background: linear-gradient(to bottom, rgba(11,31,45,.55), rgba(11,31,45,0));
  z-index: 1; pointer-events: none;
}
.mini-days {
  position: absolute; top: 14px; left: 14px; z-index: 2; margin: 0;
  font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--foam); background: var(--coral);
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.mini-body { padding: 20px; }
.mini-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.25; transition: color .3s;
}
.mini-card:hover .mini-name { color: var(--coral-light); }
.mini-price {
  font-family: 'Space Mono', monospace; font-size: 17px; font-weight: 700;
  color: var(--coral); margin: 0;
}
.mini-price::before {
  content: "from ";
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.mini-price small { color: var(--muted); font-weight: 400; }
.mini-body::after {
  content: "View package →";
  display: block; margin-top: 16px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; color: var(--sage-light);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .35s ease, transform .35s ease, color .35s ease;
}
.mini-card:hover .mini-body::after { opacity: 1; transform: translateX(0); color: var(--coral-light); }
.mini-price small { font-size: 10px; color: var(--muted); font-weight: 400; }


/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, var(--ocean) 0%, #0D2B40 50%, #163D56 100%);
  position: relative; overflow: hidden; padding-bottom: 0;
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,111,.12) 0%, transparent 70%);
}
.page-hero::before { width: 700px; height: 700px; top: -200px; right: -100px; }
.page-hero::after  { width: 400px; height: 400px; bottom: -100px; left: -80px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch; min-height: 480px; position: relative; z-index: 2;
}
.hero-text {
  padding: 80px 60px 80px 0;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 72px); font-weight: 900; line-height: .95;
  letter-spacing: -2px; color: var(--white); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--sand); display: block; }
.hero-desc {
  font-size: 16px; font-weight: 300; color: var(--muted);
  max-width: 420px; line-height: 1.75; margin-bottom: 36px;
}
.hero-quick-links { display: flex; gap: 12px; flex-wrap: wrap; }
.quick-link {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(232,213,176,.12);
  border-radius: 6px; padding: 12px 16px; text-decoration: none; color: var(--sand);
  font-size: 13px; font-weight: 500; transition: background .2s, border-color .2s, transform .2s;
}
.quick-link:hover { background: rgba(2,119,136,.1); border-color: rgba(232,102,61,.35); color: var(--white); transform: translateY(-2px); }
.quick-link-icon { font-size: 18px; }
.hero-img-side {
  position: relative; background: var(--ocean-mid);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; text-align: center;
  border-left: 1px solid rgba(232,213,176,.06);
}
.hero-img-side .ph-icon { font-size: 40px; opacity: .35; }
.hero-img-side .ph-size { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--coral); letter-spacing: .1em; }
.hero-img-side .ph-lbl  { font-size: 11px; color: var(--muted); max-width: 180px; line-height: 1.4; }

.contact-layout {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; padding: 80px 0 100px; align-items: start;
}

/* Contact form card */
.form-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.08);
  border-radius: 10px; overflow: hidden;
}
.form-card-header { padding: 32px 36px 24px; border-bottom: 1px solid rgba(232,213,176,.06); }
.form-card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: var(--white); letter-spacing: -.5px; margin-bottom: 6px;
}
.form-card-header p { font-size: 14px; color: var(--muted); }
.form-body { padding: 32px 36px; }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 24px); }
.info-card {
  background: var(--ocean-mid); border: 1px solid rgba(232,213,176,.08);
  border-radius: 10px; overflow: hidden;
}
.info-card-header { padding: 20px 24px 16px; border-bottom: 1px solid rgba(232,213,176,.06); }
.info-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -.3px;
}
.info-card-body { padding: 20px 24px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(232,213,176,.06);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; background: rgba(232,102,61,.12); border: 1px solid rgba(2,119,136,.2);
}
.ci-label { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.ci-value { font-size: 14px; font-weight: 500; color: var(--white); text-decoration: none; transition: color .2s; display: block; line-height: 1.4; }
a.ci-value:hover { color: var(--coral); }
.ci-note { font-size: 11px; color: var(--muted); margin-top: 2px; }

.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  flex: 1; min-width: 100px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 14px; border-radius: 6px; text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  transition: opacity .2s, transform .2s;
}
.social-btn:hover { opacity: .85; transform: translateY(-2px); }
.social-btn.wa   { background: #25D366; color: #fff; }
.social-btn.ig   { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-btn.maps { background: var(--ocean-light); color: var(--sand); border: 1px solid rgba(232,213,176,.15); }

.hours-list { display: flex; flex-direction: column; gap: 10px; }
.hour-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.hour-day { color: var(--sand); }
.hour-time { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--white); }
.hour-badge { background: rgba(74,124,111,.2); color: var(--sage-light); font-size: 10px; padding: 3px 8px; border-radius: 3px; letter-spacing: .05em; }

.map-placeholder {
  width: 100%; height: 220px; border-radius: 8px; margin-top: 16px;
  background: var(--ocean-light); border: 2px dashed rgba(232,213,176,.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.map-placeholder:hover { border-color: rgba(232,102,61,.35); background: rgba(26,58,82,.8); }
.map-placeholder .mph-icon  { font-size: 32px; opacity: .5; }
.map-placeholder .mph-size  { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--coral); letter-spacing: .1em; }
.map-placeholder .mph-lbl   { font-size: 11px; color: var(--muted); max-width: 200px; line-height: 1.4; }
.map-placeholder .mph-action { font-size: 12px; font-weight: 600; color: var(--coral); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

.faq-strip { background: var(--ocean-mid); padding: 80px 0; border-top: 1px solid rgba(232,213,176,.06); }
.faq-strip-header { text-align: center; margin-bottom: 48px; }
.faq-strip-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  color: var(--white); letter-spacing: -.5px; margin-bottom: 10px;
}
.faq-strip-header p { font-size: 15px; color: var(--muted); }

.pkgs-cta { background: var(--ocean); padding: 80px 0; text-align: center; border-top: 1px solid rgba(232,213,176,.06); }
.pkgs-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px,3.5vw,44px); font-weight: 700; color: var(--white); letter-spacing: -.5px; margin-bottom: 12px; }
.pkgs-cta p { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success .success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.7; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .pkg-hero { grid-template-columns: 1fr; min-height: auto; }
  .pkg-hero-right { min-height: 380px; }
  .mini-pkgs { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-side { min-height: 220px; }
  .faq-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--ocean-mid); padding: 24px 20px; gap: 20px; z-index: 99;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .hamburger { display: block; }
  .nav-drop-toggle { width: 100%; justify-content: space-between; }
  .nav-drop-menu {
    position: static; transform: none; min-width: 0;
    opacity: 1; visibility: visible; pointer-events: none;
    max-height: 0; overflow: hidden; padding: 0; margin-top: 0;
    border: none; box-shadow: none; background: transparent;
    transition: max-height .3s ease;
  }
  .nav-drop.open .nav-drop-menu { max-height: 320px; pointer-events: auto; padding-top: 6px; transform: none; }
  .nav-links .social-links { padding-top: 4px; }
  .hero { padding: calc(var(--nav-h) + 40px) 0 100px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-stats { gap: 20px 32px; margin-top: 40px; padding-top: 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-stack { height: 360px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 32px 24px; }
  .packages-header { flex-direction: column; align-items: flex-start; }
  .pkg-hero-left { padding: 40px 20px; }
  .highlights-grid, .surf-levels, .accom-grid, .inc-exc-grid { grid-template-columns: 1fr; }
  .meals-grid { grid-template-columns: 1fr; }
  .sched-item { grid-template-columns: 80px 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip .ph-main { grid-row: auto; grid-column: 1 / -1; }
  .hero-text { padding: 48px 0 40px; }
  .form-card-header, .form-body { padding-left: 24px; padding-right: 24px; }
  .journey-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .packages-grid { grid-template-columns: 1fr; }
  .mini-pkgs { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── ROOM SLIDER ──────────────────────────────────────────── */
.room-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  background: var(--ocean-light);
}
.rs-track {
  display: flex;
  transition: transform .5s ease;
  will-change: transform;
}
.rs-slide {
  min-width: 100%;
  width: 100%;
  height: clamp(220px, 42vw, 380px);
  object-fit: cover;
  display: block;
}
.rs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(10, 30, 45, .55);
  color: #fff;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.rs-btn:hover { background: rgba(10, 30, 45, .85); }
.rs-prev { left: 12px; }
.rs-next { right: 12px; }
.rs-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.rs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.rs-dot.active { background: #fff; transform: scale(1.3); }

@media (max-width: 640px) {
  .rs-btn { width: 34px; height: 34px; font-size: 18px; }
}

/* ── HOUSE GALLERY ────────────────────────────────────────── */
.gallery-label {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-bottom: 20px; letter-spacing: -.3px;
}
.house-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.house-gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.house-gallery img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.house-gallery figure:hover img { transform: scale(1.07); }
.house-gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,45,.35), rgba(11,31,45,0) 45%);
  opacity: 0; transition: opacity .4s;
}
.house-gallery figure:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .house-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .house-gallery { grid-template-columns: 1fr; }
  .house-gallery img { height: 240px; }
}
