
/* ==============================================================
   SITE-WIDE BASE CSS (shared across all pages)
   Extracted for multi-page use — index.html inline block is
   authoritative; these rules enable other pages to render.
   ============================================================== */

 /* ===== CSS VARIABLES ===== */
 :root {
 --bg-deep:   #0d1b3e;
 --bg-medium:  #1a2d52;
 --bg-light:   #eef2f8;
 --ocean-deep: #0d1b3e;
 --ocean-mid: #1a3a8f;
 --ocean-light: #2952c8;
 --ocean-bright: #3a6fd8;
 --aqua: #5b9bd5;
 --sand: #eef2f8;
 --sand-dark: #d8e2f0;
 --coral: #e05c44;
 --white: #ffffff;
 --text-dark: #0d1b3e;
 --text-mid: #3a5080;
 --text-light: #7a90b8;
 --font-display: 'Playfair Display', Georgia, serif;
 --font-body: 'DM Sans', system-ui, sans-serif;
 --shadow-soft: 0 4px 24px rgba(13,27,62,0.12);
 --shadow-card: 0 2px 16px rgba(13,27,62,0.09);
 --radius: 12px;
 --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
 }

 /* ===== WORLD CUP TOP STRIP ===== */
 #wc-top-strip {
 position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
 background: linear-gradient(90deg, #0a2540 0%, #0e4d6e 30%, #0a2540 60%, #0e3a5c 80%, #0a2540 100%);
 border-bottom: 1px solid rgba(201,168,76,0.35);
 padding: 0 5%; height: 32px;
 display: flex; align-items: center; justify-content: space-between;
 overflow: hidden;
 }
 #wc-top-strip::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.06) 50%, transparent 100%);
 animation: stripShimmer 4s ease-in-out infinite;
 }
 @keyframes stripShimmer {
 0%, 100% { opacity: 0.5; }
 50% { opacity: 1; }
 }
 .strip-left {
 display: flex; align-items: center; gap: 10px;
 font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
 text-transform: uppercase; color: #c9a84c; z-index: 1;
 white-space: nowrap;
 }
 .strip-left .ball { animation: spinBall 4s linear infinite; display: inline-block; }
 @keyframes spinBall { to { transform: rotate(360deg); } }
 .strip-center {
 font-size: 0.72rem; color: rgba(255,255,255,0.75); z-index: 1;
 text-align: center; flex: 1; padding: 0 20px;
 white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
 }
 .strip-center strong { color: #f0d080; }
 .strip-cta {
 display: inline-flex; align-items: center; gap: 6px;
 background: linear-gradient(135deg, #c9a84c, #f0d080);
 color: #0a2540; font-size: 0.68rem; font-weight: 800;
 letter-spacing: 0.08em; text-transform: uppercase;
 padding: 5px 14px; border-radius: 100px;
 white-space: nowrap; z-index: 1;
 transition: opacity 0.2s, transform 0.2s;
 text-decoration: none;
 }
 .strip-cta:hover { opacity: 0.9; transform: scale(1.03); }
 .strip-close {
 margin-left: 10px; background: none; border: none; cursor: pointer;
 color: rgba(255,255,255,0.4); font-size: 1rem; z-index: 1; padding: 2px 6px;
 transition: color 0.2s;
 }
 .strip-close:hover { color: rgba(255,255,255,0.8); }

 /* When strip is visible, push header down */
 body.strip-on header { top: 32px; }
 body.strip-on .mobile-menu { top: 104px; }

 /* ===== RESET ===== */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html { scroll-behavior: auto; overflow-x: hidden; }
 body { overflow-x: hidden; }
 html { scroll-padding-top: 72px; }
 html.strip-on { scroll-padding-top: 104px; }
 body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; }
 img { max-width: 100%; display: block; }
 a { text-decoration: none; color: inherit; }
 ul { list-style: none; }

 /* ===== HEADER / NAV ===== */
 header {
 position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
 padding: 0 5%;
 background: rgba(26,58,143,0.96);
 backdrop-filter: blur(12px);
 border-bottom: 1px solid rgba(255,255,255,0.12);
 transition: var(--transition);
 }
 header.scrolled {
 background: rgba(20,48,120,0.99);
 backdrop-filter: blur(12px);
 box-shadow: 0 2px 20px rgba(0,0,0,0.25);
 }
 nav {
 display: flex; align-items: center; justify-content: space-between;
 height: 72px;
 }
 .nav-logo {
 display: flex; align-items: center; gap: 10px;
 font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
 color: var(--white); letter-spacing: -0.02em;
 }
 .nav-logo span { color: var(--aqua); }
 .logo-icon {
 width: 40px; height: 40px; border-radius: 50%;
 background: linear-gradient(135deg, var(--ocean-bright), var(--aqua));
 display: flex; align-items: center; justify-content: center;
 font-size: 1.2rem;
 }
 .nav-links {
 display: flex; align-items: center; gap: 2px;
 }
 .nav-links a {
 color: rgba(255,255,255,0.88);
 font-size: 0.875rem; font-weight: 500;
 padding: 8px 14px; border-radius: 8px;
 transition: var(--transition);
 position: relative;
 }
 .nav-links a:hover, .nav-links a.active {
 color: var(--white); background: rgba(255,255,255,0.12);
 }
 .nav-cta {
 background: var(--coral); color: var(--white) !important;
 padding: 10px 20px !important; border-radius: 8px !important;
 font-weight: 600 !important; margin-left: 8px;
 }
 .nav-cta:hover { background: #c94e3a !important; }

 /* Dropdown */
 .nav-item { position: relative; }
 .nav-item .dropdown {
 display: none; position: absolute; top: 100%; left: 0;
 background: var(--ocean-deep);
 border-radius: 12px; padding: 8px;
 min-width: 200px;
 box-shadow: 0 8px 32px rgba(0,0,0,0.3);
 border: 1px solid rgba(255,255,255,0.08);
 }
 .nav-item:hover .dropdown { display: block; }
 .nav-item .dropdown a {
 display: block; padding: 10px 16px !important;
 border-radius: 8px !important;
 font-size: 0.85rem !important;
 }
 .nav-item > a::after {
 content: ' ▾'; font-size: 0.7em; opacity: 0.7;
 }

 /* Hamburger */
 .hamburger {
 display: none; flex-direction: column; gap: 5px;
 cursor: pointer; padding: 4px;
 background: none; border: none; outline: none;
 }
 .hamburger span {
 width: 26px; height: 2px; background: var(--white);
 border-radius: 2px; transition: var(--transition);
 display: block;
 }
 .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
 .hamburger.open span:nth-child(2) { opacity: 0; }
 .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

 .mobile-menu {
 display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
 background: var(--ocean-deep);
 padding: 24px 5%; overflow-y: auto; z-index: 999;
 }
 .mobile-menu.open { display: block; }
 .mobile-menu a {
 display: block; color: rgba(255,255,255,0.85);
 padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
 font-size: 1.1rem; font-weight: 500;
 }
 .mobile-menu a:hover { color: var(--aqua); }
 .mobile-menu .mobile-sub { padding-left: 16px; }
 .mobile-menu .mobile-sub a { font-size: 0.95rem; color: rgba(255,255,255,0.65); }

 /* ===== SECTION BASE ===== */
 section { padding: 90px 5%; }
 .section-tag {
 display: inline-block;
 color: var(--ocean-bright); font-size: 0.78rem;
 font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
 margin-bottom: 12px;
 }
 .section-title {
 font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
 font-weight: 700; color: var(--text-dark); line-height: 1.15;
 margin-bottom: 16px; letter-spacing: -0.02em;
 }
 .section-title.white { color: var(--white); }
 .section-desc {
 font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; max-width: 600px;
 }
 .section-desc.white { color: rgba(255,255,255,0.75); }
 .section-header { margin-bottom: 56px; }
 .section-header.center { text-align: center; }
 .section-header.center .section-desc { margin: 0 auto; }
 .container { max-width: 1200px; margin: 0 auto; }

 /* ===== FOOTER ===== */
 footer {
 background: var(--ocean-deep); color: rgba(255,255,255,0.65);
 padding: 56px 5% 32px;
 }
 .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
 .footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.2rem; }
 .footer-brand p { font-size: 0.85rem; line-height: 1.65; }
 .footer-col h5 {
 color: var(--white); font-weight: 700; font-size: 0.85rem;
 letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
 }
 .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
 .footer-col ul li a { font-size: 0.85rem; transition: color 0.2s; }
 .footer-col ul li a:hover { color: var(--aqua); }
 .footer-bottom {
 padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
 display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
 font-size: 0.8rem;
 }
 .footer-bottom a { color: var(--aqua); }

/* Social links (footer) */
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.social-link:hover { background: rgba(93,214,240,0.2); color: var(--aqua); border-color: rgba(93,214,240,0.4); }


 /* ===== BACK TO TOP ===== */
 #back-to-top {
 position: fixed; bottom: 28px; right: 28px;
 width: 48px; height: 48px; border-radius: 12px;
 background: var(--ocean-bright); color: var(--white);
 border: none; cursor: pointer; font-size: 1.3rem;
 box-shadow: 0 4px 16px rgba(26,127,168,0.4);
 transition: var(--transition); opacity: 0; pointer-events: none; z-index: 999;
 display: flex; align-items: center; justify-content: center;
 }
 #back-to-top.visible { opacity: 1; pointer-events: auto; }
 #back-to-top:hover { background: var(--ocean-mid); transform: translateY(-3px); }

 @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
 @media (max-width: 768px)  { .footer-grid { grid-template-columns: 1fr; } .footer-col { margin-top: 20px; } }

/* ==========================================================
   styles.css — Karang Divers
   Visual modernisation + mobile UX layer
   Design: editorial-first, typography-led, CSS-only animations
   ========================================================== */

/* ----------------------------------------------------------
   1. DESIGN TOKENS — override / extend existing vars
   ---------------------------------------------------------- */
:root {
  /* Spacing scale: 4 / 8 / 16 / 24 / 32 / 48 / 64 / 96 */
  --sp-xs:   4px;
  --sp-s:    8px;
  --sp-m:   16px;
  --sp-l:   24px;
  --sp-xl:  32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 96px;

  /* Refined radii */
  --r-s:  8px;
  --r-m: 12px;
  --r-l: 16px;
  --r-xl: 24px;

  /* Shadow system */
  --sh-xs:  0 1px 4px rgba(13,27,62,0.07);
  --sh-s:   0 2px 12px rgba(13,27,62,0.09);
  --sh-m:   0 4px 24px rgba(13,27,62,0.12);
  --sh-l:   0 8px 40px rgba(13,27,62,0.15);
  --sh-xl:  0 16px 64px rgba(13,27,62,0.18);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-base: 0.28s;
  --t-slow: 0.45s;

  /* Coral accent — kept as single strong accent color */
  --coral: #e05c44;
  --coral-hover: #c84f39;
}

/* ----------------------------------------------------------
   2. BASE — smooth scroll, focus, box-sizing
   ---------------------------------------------------------- */
html {
  scroll-behavior: auto;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

:focus-visible {
  outline: 2.5px solid var(--aqua, #5b9bd5);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------------------------
   3. TYPOGRAPHY — editorial scale, confident headings
   ---------------------------------------------------------- */

/* Section eyebrow tag */
.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-m);
  display: inline-block;
}

/* Section heading — large, confident */
.section-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* Body lead copy */
.section-desc {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  max-width: 58ch;
  opacity: 0.85;
}

/* Section headers — consistent generous spacing */
.section-header {
  margin-bottom: var(--sp-3xl);
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------
   4. SECTION SPACING — generous whitespace
   ---------------------------------------------------------- */
section {
  padding: var(--sp-4xl) 5%;
}

/* Inner container max-width guard */
.container {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

/* ----------------------------------------------------------
   5. SCROLL REVEAL — CSS side (JS adds .visible)
   ---------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings using CSS custom property set by JS */
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }
.reveal[data-delay="6"] { transition-delay: 0.48s; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----------------------------------------------------------
   6. HERO — editorial type overlay, stronger hierarchy
   ---------------------------------------------------------- */

/* Hero title — stronger weight and contrast */
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.45);
}
.hero-title em {
  font-style: italic;
  color: var(--aqua, #5b9bd5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.88;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
  max-width: 52ch;
}

/* Overlay gradient: denser at bottom for text legibility */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(13,27,62,0.28) 0%,
    rgba(13,27,62,0.18) 40%,
    rgba(13,27,62,0.7)  100%
  );
}

/* ----------------------------------------------------------
   7. BUTTONS — micro-interactions (CSS only)
   ---------------------------------------------------------- */
.btn-primary,
.btn-ghost {
  border-radius: var(--r-m) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    background-color var(--t-base) var(--ease-out) !important;
  position: relative;
  overflow: hidden;
}

/* Ripple-like inner shimmer */
.btn-primary::after,
.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
  border-radius: inherit;
}
.btn-primary:hover::after,
.btn-ghost:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px rgba(224,92,68,0.45) !important;
}
.btn-primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px rgba(224,92,68,0.25) !important;
}

.btn-ghost:hover {
  transform: translateY(-2px) scale(1.01);
}
.btn-ghost:active {
  transform: translateY(0) scale(0.99);
}

/* Nav CTA */
.nav-cta {
  border-radius: var(--r-s) !important;
  font-weight: 600 !important;
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-base) !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
}

/* ----------------------------------------------------------
   8. ACTIVITY CARDS — lift + image scale on hover
   ---------------------------------------------------------- */
.activity-card {
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-s);
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  will-change: transform;
}
.activity-card img {
  transition: transform var(--t-slow) var(--ease-out);
  will-change: transform;
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-l);
}
.activity-card:hover img {
  transform: scale(1.06);
}
.activity-card:active {
  transform: translateY(-2px);
  box-shadow: var(--sh-m);
}

/* Card overlay fade up on hover */
.activity-card-body {
  transition: transform var(--t-base) var(--ease-out);
}
.activity-card:hover .activity-card-body {
  transform: translateY(-4px);
}

/* ----------------------------------------------------------
   9. SITE CARDS — image scale + text reveal
   ---------------------------------------------------------- */
.site-card {
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-s);
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  will-change: transform;
}
.site-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-l);
}
.site-card-img {
  transition: transform var(--t-slow) var(--ease-out);
  will-change: transform;
}
.site-card:hover .site-card-img {
  transform: scale(1.06);
}

/* ----------------------------------------------------------
   10. LOCATION / HOTEL CARDS — editorial lift
   ---------------------------------------------------------- */
.location-card {
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-s);
  border: 1px solid rgba(13,27,62,0.06);
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  will-change: transform;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: rgba(13,27,62,0.02);
}

/* Hotel card images */
.location-card img {
  transition: transform var(--t-slow) var(--ease-out);
}
.location-card:hover img {
  transform: scale(1.04);
}

/* ----------------------------------------------------------
   11. TEAM CARDS — subtle hover
   ---------------------------------------------------------- */
.team-card {
  border-radius: var(--r-m);
  box-shadow: var(--sh-xs);
  transition:
    transform var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
}
.team-card img {
  transition: transform var(--t-slow) var(--ease-out);
}
.team-card:hover img {
  transform: scale(1.04);
}

/* ----------------------------------------------------------
   12. REVIEW / GALLERY CARDS
   ---------------------------------------------------------- */
.review-card {
  border-radius: var(--r-m);
  box-shadow: var(--sh-s);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-m);
}

.gallery-item {
  border-radius: var(--r-s);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--sh-m);
  z-index: 1;
  position: relative;
}
.gallery-item img {
  transition: transform var(--t-slow) var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ----------------------------------------------------------
   13. ABOUT SECTION — image hover polish
   ---------------------------------------------------------- */
.about-img-main,
.about-img-secondary {
  transition: transform var(--t-slow) var(--ease-out),
              box-shadow var(--t-slow) var(--ease-out);
}
.about-images:hover .about-img-main {
  transform: scale(1.02);
  box-shadow: var(--sh-xl);
}

/* Feature items */
.about-feature {
  transition: transform var(--t-base) var(--ease-out);
}
.about-feature:hover {
  transform: translateX(4px);
}

/* ----------------------------------------------------------
   14. FORM — refined inputs, submit button
   ---------------------------------------------------------- */
input,
select,
textarea {
  border-radius: var(--r-s);
  border: 1.5px solid var(--sand-dark, #d8e2f0);
  font-size: 1rem;
  transition:
    border-color var(--t-base) var(--ease-in-out),
    box-shadow var(--t-base) var(--ease-in-out);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua, #5b9bd5);
  box-shadow: 0 0 0 3px rgba(91,155,213,0.18);
  outline: none;
}

.form-submit {
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    background-color var(--t-base) !important;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,92,68,0.4);
}
.form-submit:active {
  transform: translateY(0);
}

/* ----------------------------------------------------------
   15. PRICE TABLES — layered card style
   ---------------------------------------------------------- */
.price-table-wrap {
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--sand-dark, #d8e2f0);
}

/* ----------------------------------------------------------
   16. BACK TO TOP — enhanced micro-interaction
   ---------------------------------------------------------- */
#back-to-top {
  border-radius: var(--r-m) !important;
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    opacity var(--t-base) !important;
}
#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,127,168,0.5) !important;
}

/* ----------------------------------------------------------
   17. CSS HAMBURGER — checkbox hack
   ---------------------------------------------------------- */
.menu-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.menu-toggle-input:checked ~ header .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle-input:checked ~ header .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle-input:checked ~ header .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.menu-toggle-input:checked ~ .mobile-menu {
  display: block !important;
}
label.hamburger {
  cursor: pointer;
}

/* ----------------------------------------------------------
   18. MOBILE BOTTOM BAR
   ---------------------------------------------------------- */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 980;
    gap: 10px;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--ocean-deep, #0d1b3e);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .mob-bar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 1;
    min-height: 48px;
    border-radius: var(--r-m, 12px);
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--t-fast) var(--ease-out),
                opacity var(--t-fast);
    -webkit-tap-highlight-color: transparent;
  }
  .mob-bar-btn:active {
    opacity: 0.82;
    transform: scale(0.96);
  }

  .mob-bar-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 2px 12px rgba(37,211,102,0.35);
  }
  .mob-bar-contact {
    background: var(--coral, #e05c44);
    color: #fff;
    box-shadow: 0 2px 12px rgba(224,92,68,0.35);
  }
}

/* ----------------------------------------------------------
   19. PRICES — details accordion
   ---------------------------------------------------------- */
.prices-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-m);
}

/* All screen sizes: collapsible accordion */
.price-accordion-item {
  border: 1px solid var(--sand-dark, #d8e2f0);
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--white, #fff);
  box-shadow: var(--sh-s);
  transition: box-shadow var(--t-base) var(--ease-out);
}
.price-accordion-item:hover { box-shadow: var(--sh-m); }

.price-accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-l) var(--sp-xl);
  background: var(--sand, #eef2f8);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ocean-deep, #0d1b3e);
  list-style: none;
  cursor: pointer;
  min-height: 52px;
  border-bottom: 1px solid var(--sand-dark, #d8e2f0);
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t-fast);
}
.price-accordion-title:hover { background: #e4eaf4; }
.price-accordion-title::marker,
.price-accordion-title::-webkit-details-marker { display: none; }
.price-accordion-title::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.5;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
  display: inline-block;
}
.price-accordion-item[open] > .price-accordion-title::after {
  transform: rotate(45deg);
}

.price-accordion-body {
  padding: var(--sp-xl) var(--sp-xl) var(--sp-l);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-accordion-body table { min-width: 280px; }

@media (max-width: 768px) {
  .prices-accordion { gap: var(--sp-s); }
  .price-accordion-item {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
  }
  .price-accordion-title {
    background: rgba(255,255,255,0.07);
    border-bottom-color: rgba(255,255,255,0.08);
    color: var(--white, #fff);
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.95rem;
  }
  .price-accordion-title:hover { background: rgba(255,255,255,0.1); }
  .price-accordion-body { padding: var(--sp-m); }
  .price-accordion-body table { font-size: 0.8rem; }
  .price-accordion-body > div[style*="grid-template-columns:1fr 1fr"],
  .price-accordion-body > div[style*="grid-template-columns: 1fr 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: var(--sp-m);
  }
}

/* ----------------------------------------------------------
   20. DIVE SITES — outer toggle + inner group grid
   ---------------------------------------------------------- */

/* Outer collapsed toggle */
.divesites-toggle { margin-top: var(--sp-l); }
.divesites-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-l) var(--sp-xl);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-l);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white, #fff);
  list-style: none;
  cursor: pointer;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t-fast);
}
.divesites-summary:hover { background: rgba(255,255,255,0.13); }
.divesites-summary::marker,
.divesites-summary::-webkit-details-marker { display: none; }
.divesites-summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.55;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out);
  display: inline-block;
}
.divesites-toggle[open] > .divesites-summary::after { transform: rotate(45deg); }

/* Grid only appears when the outer toggle is open.
   KEY FIX: author display rules on .divesites-grid used to override the UA
   details:not([open]) > :not(summary) { display: none } rule, making the
   grid always visible. Scoping to [open] restores correct toggle behaviour. */
.divesites-grid { padding-top: var(--sp-l); }

/* ---- Desktop (≥769px): 3-col card grid, inner accordions flattened ---- */
@media (min-width: 769px) {
  .divesites-toggle[open] > .divesites-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  /* Inner accordion: show as plain block — no display:contents on <details>
     (display:contents on <details> is unreliable across browsers) */
  .divesites-grid .site-accordion {
    display: block !important;
    border: none !important;
    background: none !important;
    overflow: visible !important;
  }
  /* Hide the Menjangan/Pemuteran group headers on desktop */
  .divesites-grid .site-group-title { display: none !important; }
  /* Force cards grid visible even though parent <details> may be "closed" */
  .divesites-grid .site-group-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ---- Tablet (481–768px): outer toggle opens, inner accordions collapse ---- */
@media (min-width: 481px) and (max-width: 768px) {
  .divesites-toggle[open] > .divesites-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-m);
  }
  .site-accordion {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-m);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
  }
  .site-accordion > .site-group-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-l);
    cursor: pointer;
    min-height: 52px;
    background: rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white, #fff);
    list-style: none;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--t-fast);
  }
  .site-accordion > .site-group-title:hover { background: rgba(255,255,255,0.1); }
  .site-group-title::marker,
  .site-group-title::-webkit-details-marker { display: none; }
  .site-accordion > .site-group-title::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.5;
    flex-shrink: 0;
    display: inline-block;
    transition: transform 0.22s var(--ease-out);
  }
  .site-accordion[open] > .site-group-title::after { transform: rotate(45deg); }
  .site-accordion > .site-group-cards {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-s);
    padding: var(--sp-s);
  }
}

/* ---- Mobile (≤480px): 1-col, smaller card heights ---- */
@media (max-width: 480px) {
  .divesites-toggle[open] > .divesites-grid {
    display: flex;
    flex-direction: column;
    gap: var(--sp-m);
  }
  .site-accordion {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-m);
    overflow: hidden;
    background: rgba(255,255,255,0.03);
  }
  .site-accordion > .site-group-title {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-l);
    cursor: pointer;
    min-height: 52px;
    background: rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white, #fff);
    list-style: none;
    -webkit-tap-highlight-color: transparent;
  }
  .site-group-title::marker,
  .site-group-title::-webkit-details-marker { display: none; }
  .site-accordion > .site-group-title::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.5;
    flex-shrink: 0;
    display: inline-block;
    transition: transform 0.22s var(--ease-out);
  }
  .site-accordion[open] > .site-group-title::after { transform: rotate(45deg); }
  .site-accordion > .site-group-cards {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: var(--sp-s);
    padding: var(--sp-s);
  }
  .site-card { height: 220px; }
  .site-card-img { height: 100%; }
}

/* ----------------------------------------------------------
   21. FAQ — details/summary, smooth transitions
   ---------------------------------------------------------- */
#faq-list { display: flex; flex-direction: column; gap: var(--sp-m); }

details.faq-group {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-l);
  overflow: hidden;
  transition: border-color var(--t-base);
}
details.faq-group[open] {
  border-color: rgba(255,255,255,0.15);
}

details.faq-group > summary.faq-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-l) var(--sp-l);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white, #fff);
  list-style: none;
  min-height: 52px;
  transition: background var(--t-fast);
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.01em;
}
details.faq-group > summary.faq-group-header:hover {
  background: rgba(255,255,255,0.09);
}
details.faq-group > summary.faq-group-header::marker,
details.faq-group > summary.faq-group-header::-webkit-details-marker { display: none; }

details.faq-group > summary.faq-group-header .faq-group-icon {
  transition: transform 0.25s var(--ease-out);
  display: inline-block;
  opacity: 0.6;
}
details.faq-group[open] > summary.faq-group-header .faq-group-icon {
  transform: rotate(180deg);
}

details.faq-group > .faq-group-body {
  padding: var(--sp-s) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Individual Q&A */
details.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
details.faq-item:last-child {
  border-bottom: none;
}

details.faq-item > summary.faq-q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-m);
  padding: var(--sp-l) var(--sp-l);
  background: none;
  border: none;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  min-height: 48px;
  transition: color var(--t-fast);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  -webkit-tap-highlight-color: transparent;
}
details.faq-item > summary.faq-q:hover { color: var(--white, #fff); }
details.faq-item > summary.faq-q::marker,
details.faq-item > summary.faq-q::-webkit-details-marker { display: none; }

details.faq-item > summary.faq-q .faq-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.55;
  transition: transform 0.22s var(--ease-out), opacity 0.22s;
}
details.faq-item[open] > summary.faq-q .faq-icon {
  transform: rotate(45deg);
  opacity: 0.9;
}

details.faq-item > .faq-a {
  padding: 0 var(--sp-l);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease-out),
              padding 0.28s var(--ease-out);
}
details.faq-item[open] > .faq-a {
  max-height: 600px;
  padding: 0 var(--sp-l) var(--sp-l);
}
details.faq-item > .faq-a p {
  font-size: 0.9rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.65);
}
details.faq-item > .faq-a p strong {
  color: rgba(255,255,255,0.9);
}
details.faq-item > .faq-a a {
  color: var(--aqua, #5b9bd5);
  text-decoration: underline;
  text-decoration-color: rgba(91,155,213,0.4);
  text-underline-offset: 2px;
}

/* ----------------------------------------------------------
   22. MOBILE RESPONSIVE — 768px and below
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  section { padding: 56px 5%; }

  .section-title { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .section-header { margin-bottom: var(--sp-2xl); }

  /* Tap targets ≥44px */
  .nav-links a,
  .mobile-menu a,
  .btn-primary,
  .btn-ghost,
  .mob-bar-btn,
  details.faq-item > summary.faq-q,
  details.faq-group > summary.faq-group-header,
  .price-accordion-title,
  .site-accordion > .site-group-title { min-height: 44px; }

  /* Hero title */
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }

  /* WC banner wrap */
  .wc-banner-inner { flex-direction: column; gap: var(--sp-l); }
  .wc-countdown-mini { flex-wrap: wrap; justify-content: center; }
  .wc-cd-unit { min-width: 50px; padding: var(--sp-s) var(--sp-s); }
  .wc-cd-num { font-size: 1.3rem; }

  /* Float badge above bottom bar */
  #wc-float-badge {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: var(--sp-m);
  }

  /* Overflow guard */
  .price-accordion-body,
  .site-group-cards { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* FAQ */
  details.faq-group > summary.faq-group-header { padding: var(--sp-m) var(--sp-m); }
  details.faq-item > summary.faq-q { padding: var(--sp-m) var(--sp-m); font-size: 0.875rem; }
  details.faq-item > .faq-a { padding: 0 var(--sp-m); }
  details.faq-item[open] > .faq-a { padding: 0 var(--sp-m) var(--sp-m); }

  /* WC strip offset */
  body.strip-on .mobile-menu { top: calc(72px + 32px); }

  /* Disable hover card animations — touch devices don't need them */
  .activity-card:hover,
  .site-card:hover,
  .location-card:hover,
  .team-card:hover,
  .gallery-item:hover {
    transform: none;
    box-shadow: var(--sh-s);
  }
  .activity-card:hover img,
  .site-card:hover .site-card-img,
  .location-card:hover img,
  .team-card:hover img,
  .gallery-item:hover img { transform: none; }
}

/* ----------------------------------------------------------
   23. MOBILE 375px — tightest breakpoint
   ---------------------------------------------------------- */
@media (max-width: 375px) {
  section { padding: 44px 4%; }

  .section-title { font-size: 1.65rem; }
  .mob-bar-btn { font-size: 0.82rem; gap: 5px; }

  .site-accordion > .site-group-cards { grid-template-columns: 1fr; }
  .price-accordion-body table { font-size: 0.76rem; }

  details.faq-item > summary.faq-q { font-size: 0.82rem; padding: 14px; }
  details.faq-item[open] > .faq-a { padding: 0 14px 14px; }
  details.faq-group > summary.faq-group-header { padding: 14px; font-size: 0.86rem; }

  .wc-cd-unit { min-width: 42px; padding: 6px 8px; }
  .hero-title { font-size: clamp(1.85rem, 8.5vw, 2.5rem); }
}

/* ----------------------------------------------------------
   24. STRIP OFFSET — when WC strip is on
   ---------------------------------------------------------- */
@media (min-width: 769px) {
  body.strip-on .mobile-menu { top: 104px; }
}

/* ----------------------------------------------------------
   25. EARLY STRIP CLASS — set on <html> before first paint
   ---------------------------------------------------------- */
html.strip-on header { top: 32px; }
@media (max-width: 768px) {
  html.strip-on .mobile-menu { top: calc(72px + 32px); }
}
@media (min-width: 769px) {
  html.strip-on .mobile-menu { top: 104px; }
}

/* ----------------------------------------------------------
   26. COLLAPSED SECTION TOGGLES — Gallery, Locations, Conservation
   ---------------------------------------------------------- */

/* Shared toggle summary style */
.toggle-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-l) var(--sp-xl);
  border-radius: var(--r-l);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t-fast);
  margin-top: var(--sp-l);
}
.toggle-summary::marker,
.toggle-summary::-webkit-details-marker { display: none; }
.toggle-summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.5;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.22s var(--ease-out);
}
details[open] > .toggle-summary::after { transform: rotate(45deg); }

/* Gallery toggle (light background section) */
.gallery-toggle > .toggle-summary {
  background: var(--sand, #eef2f8);
  color: var(--ocean-deep, #0d1b3e);
  border: 1px solid var(--sand-dark, #d8e2f0);
}
.gallery-toggle > .toggle-summary:hover { background: #e4eaf4; }

/* Locations toggle (white background section) */
.locations-toggle > .toggle-summary {
  background: var(--sand, #eef2f8);
  color: var(--ocean-deep, #0d1b3e);
  border: 1px solid var(--sand-dark, #d8e2f0);
}
.locations-toggle > .toggle-summary:hover { background: #e4eaf4; }

/* Conservation toggle (dark background section) */
.conservation-toggle > .toggle-summary {
  background: rgba(255,255,255,0.07);
  color: var(--white, #fff);
  border: 1px solid rgba(255,255,255,0.14);
}
.conservation-toggle > .toggle-summary:hover { background: rgba(255,255,255,0.12); }
.conservation-toggle > img {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin-top: 1.5rem;
}

/* ----------------------------------------------------------
   27. TRUST STRIP — rating badge below hero
   ---------------------------------------------------------- */
.trust-strip {
  background: var(--ocean-deep, #0d1b3e);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 10px 5%;
  text-align: center;
}
.trust-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white, #fff);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.88;
  transition: opacity var(--t-fast);
}
.trust-strip-link:hover { opacity: 1; }
.trust-stars {
  color: #f5c518;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.trust-caret {
  opacity: 0.45;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .trust-strip { padding: 8px 4%; }
  .trust-strip-link { font-size: 0.76rem; gap: 6px; flex-wrap: wrap; justify-content: center; }
  .trust-caret { display: none; }
}

/* ----------------------------------------------------------
   28. GOOGLE TRANSLATE WIDGET — custom styled
   ---------------------------------------------------------- */
.gt-nav-wrapper {
  display: none; /* hidden on mobile — shown via @media below */
  align-items: center;
}
@media (min-width: 769px) {
  .gt-nav-wrapper { display: flex; margin-right: var(--sp-m); }
}
.gt-mobile-wrapper {
  padding: var(--sp-m) var(--sp-l);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--sp-s);
}

/* Override ugly Google Translate default styles */
.goog-te-gadget-simple {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  padding: 4px 10px !important;
  font-family: var(--font-body, 'DM Sans', sans-serif) !important;
  font-size: 0.78rem !important;
  color: var(--white, #fff) !important;
}
.goog-te-gadget-simple a {
  color: var(--white, #fff) !important;
  text-decoration: none !important;
}
.goog-te-gadget-simple .goog-te-menu-value span:first-child { display: none; }
.goog-te-gadget-simple img { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; } /* prevent Google Translate from pushing page down */
.skiptranslate { display: none !important; }

/* ----------------------------------------------------------
   29. WHY-US STRIP — 4 trust badges below hero
   ---------------------------------------------------------- */
.why-us-strip {
  background: var(--ocean-deep, #0d1b3e);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 5%;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.why-us-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.why-us-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--aqua, #5b9bd5);
  opacity: 0.9;
}
@media (max-width: 768px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-us-strip { padding: 16px 5%; }
  .why-us-badge { font-size: 0.74rem; }
}
@media (max-width: 375px) {
  .why-us-badge { font-size: 0.7rem; gap: 7px; }
  .why-us-icon { width: 18px; height: 18px; }
}

/* ----------------------------------------------------------
   30. CMAS CALLOUT BLOCK — hero-level feature below trust strip
   ---------------------------------------------------------- */
.cmas-callout {
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 52px 5% 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cmas-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cmas-callout-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.cmas-callout-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 18px;
}
.cmas-callout-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.55rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white, #fff);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cmas-callout-title em {
  color: #e8d070;
  font-style: normal;
}
.cmas-callout-dateline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e8d070;
  margin: 0 0 20px;
  text-align: center;
}
.cmas-callout-sub {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: left;
}

/* Key facts strip */
.cmas-facts-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 32px;
  background: rgba(201,168,76,0.08);
}
.cmas-fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  gap: 4px;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.cmas-fact:last-child { border-right: none; }
.cmas-stat {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: #e8d070;
  line-height: 1.1;
  white-space: nowrap;
}
.cmas-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* Countdown timer */
.cmas-countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 0 32px;
}
.cmas-cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.cmas-cd-num {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #e8d070;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cmas-cd-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.cmas-cd-live {
  font-size: 0.9rem;
  color: #e8d070;
  font-style: italic;
}

/* Buttons */
.cmas-callout-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cmas-callout-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #c9a84c, #e8d070);
  color: #0a2540;
  font-weight: 700;
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cmas-callout-btn:hover {
  background: linear-gradient(135deg, #d4b85c, #f0dc80);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.cmas-wa-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 14px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.cmas-wa-btn:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cmas-callout { padding: 36px 5% 40px; }
  .cmas-callout-title { font-size: clamp(1.35rem, 5vw, 1.8rem); }
  .cmas-facts-strip { grid-template-columns: repeat(2, 1fr); }
  .cmas-fact { padding: 14px 8px; }
  .cmas-stat { font-size: 1.2rem; }
  .cmas-countdown { gap: 14px; }
  .cmas-cd-num { font-size: 1.7rem; }
  .cmas-cd-unit { min-width: 42px; }
  .cmas-callout-btn,
  .cmas-wa-btn { width: 100%; max-width: 340px; justify-content: center; }
}

/* ----------------------------------------------------------
   30b. FAQ OUTER TOGGLE — single collapsed wrapper for full FAQ
   ---------------------------------------------------------- */
.faq-outer-toggle {
  border: none;
  background: none;
  display: block;
}
.faq-outer-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-l, 16px);
  color: var(--white, #fff);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t-fast, 0.18s);
  margin-bottom: 0;
}
.faq-outer-summary::-webkit-details-marker { display: none; }
.faq-outer-summary::marker { display: none; }
.faq-outer-summary:hover { background: rgba(255,255,255,0.12); }
.faq-outer-icon {
  font-size: 1rem;
  opacity: 0.6;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s var(--ease-out, cubic-bezier(0.4,0,0.2,1));
}
.faq-outer-toggle[open] > .faq-outer-summary .faq-outer-icon {
  transform: rotate(-180deg);
}
.faq-outer-toggle[open] > .faq-outer-summary {
  border-radius: var(--r-l, 16px) var(--r-l, 16px) 0 0;
  border-bottom-color: transparent;
  background: rgba(255,255,255,0.1);
}
/* The content area that appears below the summary bar */
.faq-outer-toggle[open] > :not(.faq-outer-summary) {
  display: block;
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
  border-radius: 0 0 var(--r-l, 16px) var(--r-l, 16px);
  padding: var(--sp-m, 20px) 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .faq-outer-summary { font-size: 1rem; padding: 15px 20px; }
}
@media (max-width: 375px) {
  .faq-outer-summary { font-size: 0.92rem; padding: 13px 16px; }
}

/* ----------------------------------------------------------
   31. FAQ ACCORDION — override legacy inline-CSS display:none
   The old inline <style> block has .faq-group-body { display:none }
   (specificity 0-1-0, JS-era rule). Our details[open] selector
   (specificity 0-3-1) beats it, restoring visibility when open.
   ---------------------------------------------------------- */
details.faq-group[open] > .faq-group-body {
  display: block;
}

/* ----------------------------------------------------------
   32. REVIEWS TOGGLE — collapsed <details> wrapper
   ---------------------------------------------------------- */
.reviews-toggle {
  border: none;
  background: none;
}
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: var(--white, #fff);
  border: 2px solid var(--primary, #0077b6);
  border-radius: 40px;
  color: var(--primary, #0077b6);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: var(--sp-l, 32px);
}
.reviews-summary::-webkit-details-marker { display: none; }
.reviews-summary::after {
  content: '▾';
  font-size: 1rem;
  transition: transform 0.25s;
  display: inline-block;
}
.reviews-toggle[open] > .reviews-summary::after {
  transform: rotate(-180deg);
}
.reviews-toggle[open] > .reviews-summary {
  background: var(--primary, #0077b6);
  color: var(--white, #fff);
}
@media (max-width: 768px) {
  .reviews-summary { font-size: 0.9rem; padding: 12px 20px; }
}

/* ----------------------------------------------------------
   33. CONSERVATION DETAIL — expanded content inside toggle
   ---------------------------------------------------------- */
.conservation-detail {
  padding: var(--sp-l, 32px) 0 var(--sp-m, 24px);
}
.conservation-sub {
  font-family: var(--font-head, 'Playfair Display', serif);
  font-size: 1.2rem;
  color: var(--aqua, #48cae4);
  margin: var(--sp-l, 32px) 0 var(--sp-s, 12px);
}
.conservation-sub:first-child {
  margin-top: 0;
}
.conservation-detail p {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 72ch;
}

/* ----------------------------------------------------------
   CONSERVATION GRID — image LEFT, text RIGHT, matching About section pattern. Added 2026-05.
   ---------------------------------------------------------- */
.conservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto var(--sp-l, 32px);
}
.conservation-img {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.conservation-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.conservation-img img:last-child {
  aspect-ratio: 4 / 3;
}
.conservation-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.conservation-text p.section-desc {
  margin: 0;
}
@media (max-width: 880px) {
  .conservation-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .conservation-img {
    gap: 16px;
  }
  .conservation-img img {
    aspect-ratio: 16 / 9;
  }
  .conservation-img img:last-child {
    aspect-ratio: 4 / 3;
  }
}

/* ----------------------------------------------------------
   CONSERVATION DETAIL IMAGES (reserved for future research-assistant photos) — added 2026-05
   ---------------------------------------------------------- */
.conservation-detail-img {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin: 16px 0 24px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ----------------------------------------------------------
   34. WHATSAPP CTA BLOCK — contact section
   ---------------------------------------------------------- */
.whatsapp-cta-block {
  margin-bottom: var(--sp-l, 32px);
}
.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  justify-content: center;
}
.whatsapp-cta-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}
.whatsapp-cta-sub {
  margin: 8px 0 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.whatsapp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  color: #25d366;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.whatsapp-pill:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.6);
  color: #1ebe5a;
}
@media (max-width: 768px) {
  .whatsapp-cta-btn { font-size: 0.95rem; padding: 14px 20px; }
  .whatsapp-pills { gap: 6px; }
  .whatsapp-pill { font-size: 0.78rem; padding: 7px 13px; }
}

/* ----------------------------------------------------------
   35. DIVE SITE FILTER CHIPS
   ---------------------------------------------------------- */
.dive-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: var(--sp-l, 28px) 0 var(--sp-m, 20px);
}
.divefilter-chip {
  padding: 7px 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.divefilter-chip:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.divefilter-chip.active {
  background: var(--primary, #0077b6);
  border-color: var(--primary, #0077b6);
  color: #fff;
  font-weight: 600;
}
@media (max-width: 480px) {
  .dive-filter-bar { gap: 6px; }
  .divefilter-chip { font-size: 0.76rem; padding: 6px 13px; }
}

/* ----------------------------------------------------------
   36. INSTAGRAM FEED SECTION
   ---------------------------------------------------------- */
.instagram-section {
  background: var(--bg-medium);
  padding: var(--sp-2xl, 72px) 0;
}
/* Simplified toggle — standard outline pill, matches site language */
.ig-summary-plain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: var(--white, #fff);
  border: 2px solid var(--primary, #0077b6);
  border-radius: 40px;
  color: var(--primary, #0077b6);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: var(--sp-l, 32px);
}
.ig-summary-plain::-webkit-details-marker { display: none; }
.ig-summary-plain::after {
  content: '▾';
  font-size: 1rem;
  transition: transform 0.25s;
  display: inline-block;
}
.instagram-toggle[open] > .ig-summary-plain::after { transform: rotate(-180deg); }
.instagram-toggle[open] > .ig-summary-plain {
  background: var(--primary, #0077b6);
  color: var(--white, #fff);
}
.ig-content { animation: fade-in 0.25s ease; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: var(--sp-l, 32px);
}
@media (max-width: 768px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ig-summary-plain { font-size: 0.9rem; padding: 12px 20px; }
}
.ig-tile {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.28s cubic-bezier(0.4,0,0.2,1);
}
.ig-tile:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(10,37,64,0.28);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ig-tile:hover img { transform: scale(1.05); }

/* Placeholder tile — dark navy with centred icon + label.
   Staff: swap out ig-placeholder background-image each month with a
   recent screenshot. See TODO comments in HTML. */
.ig-placeholder {
  width: 100%;
  height: 100%;
  /* TODO: replace with background-image:url(Images/ig-post-N.jpg); background-size:cover */
  background: var(--ocean-deep, #0a2540);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.22s;
}
.ig-tile:hover .ig-placeholder {
  background: color-mix(in srgb, var(--ocean-deep, #0a2540) 85%, var(--primary, #0077b6));
}
.ig-tile-label {
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.22s;
}
.ig-tile:hover .ig-tile-label { color: rgba(255,255,255,0.85); }

.ig-follow-cta {
  text-align: center;
  padding-top: var(--sp-s, 12px);
}
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--primary, #0077b6);
  color: #fff;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.97rem;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(0,119,182,0.25);
}
.ig-follow-btn:hover {
  background: #005f92;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .ig-follow-btn { width: 100%; max-width: 340px; justify-content: center; font-size: 0.88rem; }
}

/* ----------------------------------------------------------
   37. GETTING TO PEMUTERAN SECTION
   ---------------------------------------------------------- */
.getting-here-section {
  background: var(--bg-medium);
  padding: var(--sp-2xl, 72px) 0;
}
.getting-here-section .section-title,
.getting-here-section .section-tag { color: var(--white); }
.getting-here-section .section-desc { color: rgba(255,255,255,0.75); }
.transport-toggle {
  border: none;
  background: none;
}
.transport-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: var(--white, #fff);
  border: 2px solid var(--primary, #0077b6);
  border-radius: 40px;
  color: var(--primary, #0077b6);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: var(--sp-l, 32px);
}
.transport-summary::-webkit-details-marker { display: none; }
.transport-summary::after {
  content: '▾';
  font-size: 1rem;
  transition: transform 0.25s;
  display: inline-block;
}
.transport-toggle[open] > .transport-summary::after { transform: rotate(-180deg); }
.transport-toggle[open] > .transport-summary {
  background: var(--primary, #0077b6);
  color: #fff;
}
.transport-content {
  animation: fade-in 0.25s ease;
}
.transport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: var(--sp-l, 32px);
}
@media (max-width: 768px) {
  .transport-grid { grid-template-columns: 1fr; gap: 20px; }
  .transport-summary { font-size: 0.9rem; padding: 12px 20px; }
}
.transport-card {
  background: var(--surface, #f8fafc);
  border-radius: var(--r-m, 12px);
  padding: var(--sp-l, 28px);
  border-left: 3px solid var(--primary, #0077b6);
}
.transport-heading {
  font-family: var(--font-head, 'Playfair Display', serif);
  font-size: 1.05rem;
  color: var(--primary, #0077b6);
  margin: 0 0 var(--sp-s, 12px);
}
.transport-card p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text, #1a2e3b);
  margin: 0;
}
.transport-cta {
  text-align: center;
  padding-top: var(--sp-m, 20px);
}
.transport-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.transport-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   38. OUR TEAM — collapsed toggle + responsive card grid
   ---------------------------------------------------------- */
.team-toggle {
  border: none;
  background: none;
}
/* Summary button sits on var(--sand) background */
.team-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 28px;
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--r-l, 16px);
  color: var(--text, #1a2e3b);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t-fast, 0.18s);
}
.team-summary::-webkit-details-marker { display: none; }
.team-summary::marker { display: none; }
.team-summary:hover { background: rgba(0,0,0,0.08); }
.team-summary::after {
  content: '▾';
  font-size: 1rem;
  opacity: 0.55;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.25s var(--ease-out, cubic-bezier(0.4,0,0.2,1));
}
.team-toggle[open] > .team-summary::after { transform: rotate(-180deg); }
.team-toggle[open] > .team-summary {
  border-radius: var(--r-l, 16px) var(--r-l, 16px) 0 0;
  border-bottom-color: transparent;
  background: rgba(0,0,0,0.07);
}

/* Card grid: 3-col desktop → 2-col tablet → 1-col mobile */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  padding: var(--sp-l, 28px);
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.1);
  border-top: none;
  border-radius: 0 0 var(--r-l, 16px) var(--r-l, 16px);
}
@media (max-width: 768px) {
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: var(--sp-m, 20px); }
  .team-summary { font-size: 1rem; padding: 15px 20px; }
}
@media (max-width: 480px) {
  .team-cards-grid { grid-template-columns: 1fr; gap: 12px; padding: var(--sp-s, 14px); }
  .team-summary { font-size: 0.92rem; padding: 13px 16px; }
}

/* ============================================================
   Section 39 — Prices teaser (index.html) + back banner (prices.html)
   ============================================================ */

.prices-back-banner {
  background: var(--ocean-deep);
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prices-back-btn {
  color: var(--aqua);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.prices-back-btn:hover { color: var(--white); }

.prices-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 36px;
}
@media (max-width: 900px) {
  .prices-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .prices-teaser-grid { grid-template-columns: 1fr; }
}

.price-teaser-card {
  background: var(--sand);
  border-radius: 12px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(41,82,200,0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-teaser-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.price-teaser-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-mid);
  margin-bottom: 10px;
}
.price-teaser-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 8px;
  line-height: 1.2;
}
.price-teaser-note {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.prices-teaser-cta {
  text-align: center;
  margin-top: 8px;
}
.prices-full-btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--ocean-mid);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 16px;
}
.prices-full-btn:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
}
.prices-teaser-footnote {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================================
   Section 40 — Filter chip groups (grouped layout, OR logic)
   ============================================================ */

.dive-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 28px;
  align-items: flex-start;
}
.filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.filter-group-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 2px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .dive-filter-bar { gap: 12px; }
  .filter-group { width: 100%; }
}

/* ============================================================
   Section 41 — Social connect block
   ============================================================ */

.social-connect-section {
  background: var(--bg-deep);
  padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.social-connect-section .section-title,
.social-connect-section .section-tag { color: var(--white); }
.social-connect-section .section-desc { color: rgba(255,255,255,0.75); }
.social-btn-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  .social-btn-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .social-btn-row { grid-template-columns: 1fr; }
}

.social-platform-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px 24px;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 2px solid transparent;
}
.social-platform-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}
.spb-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.spb-hint {
  font-size: 0.78rem;
  opacity: 0.75;
  line-height: 1.3;
}

/* Brand colours */
.spb-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.spb-facebook { background: #1877f2; color: #fff; }
.spb-tripadvisor { background: #00af87; color: #fff; }
.spb-google { background: #fff; color: var(--ocean-deep); border-color: rgba(0,0,0,0.10); }
.spb-google .spb-name { color: var(--ocean-deep); }
.spb-google .spb-hint { color: #5f6368; }

/* ============================================================
   Section 42 — More nav dropdown
   ============================================================ */

.nav-more-trigger {
  cursor: default;
}

/* ============================================================
   Section 43 — Instagram reel mirror tile
   New classes (.ig-reel-*) added because no existing class
   matches a single-image-with-overlay pattern. Static, no JS,
   no third-party embed — outbound link only.
   ============================================================ */

.ig-reel-tile {
  position: relative;
  display: block;
  max-width: 300px;
  margin: 8px auto 28px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(0,0,0,0.28);
  transition: transform 0.18s, box-shadow 0.18s;
  background: var(--bg-medium);
}
.ig-reel-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.36);
}
.ig-reel-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ig-reel-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(to top, rgba(7,14,38,0.85) 0%, rgba(7,14,38,0) 100%);
  color: var(--white);
  text-align: left;
}
.ig-reel-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}
.ig-reel-cta {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════ */

/* Blog index page */
.blog-hero {
  padding: 120px 5% 60px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-medium) 100%);
  color: var(--white);
  text-align: center;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--white);
}
.blog-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.blog-section {
  padding: 60px 5%;
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(7,14,38,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(7,14,38,0.14);
}
.blog-card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
}
.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-card-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua);
  background: rgba(64,224,208,0.10);
  padding: 4px 10px;
  border-radius: 100px;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-mid);
  opacity: 0.75;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 14px;
  flex: 1;
}
.blog-card-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ocean-deep);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.blog-card-readmore:hover { color: var(--aqua); }

/* Individual blog post page */
.blog-post-nav {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 5%;
  font-size: 0.9rem;
}
.blog-post-nav a {
  color: var(--ocean-deep);
  text-decoration: none;
  font-weight: 600;
}
.blog-post-nav a:hover { color: var(--aqua); }

.blog-post-featured-img {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 16px auto 32px;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(7,14,38,0.18);
}

.blog-post-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5% 32px;
  text-align: center;
}
.blog-post-header .blog-card-category {
  margin-bottom: 14px;
}
.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ocean-deep);
  margin: 8px 0 14px;
}
.blog-post-meta {
  font-size: 0.88rem;
  color: var(--text-mid);
  opacity: 0.85;
}
.blog-post-meta .dot { margin: 0 8px; opacity: 0.5; }

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 5% 60px;
  font-size: 1.04rem;
  line-height: 1.78;
  color: var(--text-dark);
}
.blog-post-body p {
  margin-bottom: 22px;
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 36px 0 16px;
  line-height: 1.25;
}
.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ocean-deep);
  margin: 26px 0 12px;
}
.blog-post-body a {
  color: var(--ocean-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post-body a:hover { color: var(--aqua); }
.blog-post-body strong { color: var(--ocean-deep); }
.blog-post-body ul, .blog-post-body ol {
  margin: 0 0 22px 22px;
}
.blog-post-body li { margin-bottom: 8px; }

.blog-post-cta {
  max-width: 720px;
  margin: 8px auto 24px;
  padding: 26px 28px;
  background: var(--sand);
  border-radius: 12px;
  text-align: center;
}
.blog-post-cta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}
.blog-post-cta p {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .blog-hero { padding: 100px 4% 44px; }
  .blog-section { padding: 40px 4%; }
  .blog-grid { grid-template-columns: 1fr; gap: 22px; }
  .blog-card-thumb { height: 180px; }
  .blog-post-featured-img { max-height: 280px; border-radius: 8px; }
  .blog-post-body { font-size: 1rem; line-height: 1.72; }
}

/* ═══════════════════════════════════════════════
   PRICES — trust signals (last updated + currency converter)
═══════════════════════════════════════════════ */
.prices-meta-row {
  max-width: 1100px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 0 4px;
}
.prices-last-updated {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-mid);
  opacity: 0.78;
  letter-spacing: 0.01em;
}
.prices-converter-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(64,224,208,0.10);
  color: var(--ocean-deep);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 7px 14px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(64,224,208,0.22);
  transition: background 0.18s, border-color 0.18s;
}
.prices-converter-link:hover {
  background: rgba(64,224,208,0.18);
  border-color: rgba(64,224,208,0.4);
}
.prices-converter-link .pcl-icon {
  font-size: 0.95rem;
  line-height: 1;
}
@media (max-width: 600px) {
  .prices-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== From dive-activities-pemuteran.html (deduped May 2026) ===== */
.da-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
  color: var(--white); padding: 100px 5% 60px; text-align: center;
}
.da-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 18px;
}
.da-hero-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 16px;
}
.da-hero-sub {
  font-size: 1.05rem; line-height: 1.65; opacity: 0.85;
  max-width: 720px; margin: 0 auto;
}
.da-section { padding: 80px 5%; }
@media (max-width: 768px) { .da-section { padding: 52px 4%; } }
.da-activity {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; max-width: 1100px; margin: 0 auto 80px;
}
.da-activity:nth-child(even) > .da-activity-img { order: 2; }
.da-activity-img img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: 16px; box-shadow: var(--shadow-soft);
}
.da-activity-body h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--ocean-deep); margin-bottom: 14px; line-height: 1.2;
}
.da-activity-body p {
  font-size: 0.98rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 14px;
}
.da-price-line {
  display: inline-block; background: var(--sand); color: var(--text-dark);
  padding: 8px 16px; border-radius: 100px; font-size: 0.85rem;
  font-weight: 600; margin: 12px 0 18px;
}
.da-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.da-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white); font-weight: 600;
  padding: 11px 20px; border-radius: 10px; text-decoration: none; font-size: 0.92rem;
}
.da-wa-btn:hover { background: #1eba57; }
@media (max-width: 768px) {
  .da-activity { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .da-activity:nth-child(even) > .da-activity-img { order: 0; }
  .da-activity-img img { height: 240px; }
}

/* ===== From getting-to-pemuteran.html (deduped May 2026) ===== */
.gt-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean-mid));
  color: var(--white); padding: 100px 5% 60px; text-align: center;
}
.gt-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 18px;
}
.gt-hero-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 16px;
}
.gt-hero-sub {
  font-size: 1.05rem; line-height: 1.65; opacity: 0.85;
  max-width: 720px; margin: 0 auto;
}
.gt-section { padding: 80px 5%; }
@media (max-width: 768px) { .gt-section { padding: 52px 4%; } }
.gt-routes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.gt-route-card {
  background: var(--white); border-radius: 16px;
  padding: 28px; box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--aqua);
  display: flex; flex-direction: column;
}
.gt-route-card h2 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--ocean-deep); margin-bottom: 6px;
}
.gt-route-meta {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ocean-bright); margin-bottom: 14px;
}
.gt-route-card p {
  font-size: 0.92rem; line-height: 1.65; color: var(--text-mid); margin-bottom: 12px;
}
.gt-tips-section { background: var(--bg-medium); color: var(--white); padding: 80px 5%; }
.gt-tips-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; max-width: 1100px; margin: 32px auto 0;
}
.gt-tip-card {
  background: rgba(255,255,255,0.06); border-radius: 12px;
  padding: 22px; border: 1px solid rgba(255,255,255,0.1);
}
.gt-tip-card h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--aqua); margin-bottom: 8px;
}
.gt-tip-card p {
  font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.78);
}
.gt-tips-section .section-header h2,
.gt-tips-section .section-header p {
  color: var(--white);
}
.gt-tips-section .section-header p { opacity: 0.8; }

/* Sticky mobile WhatsApp CTA */
.gt-sticky-wa {
  position: fixed; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%);
  background: #25D366; color: var(--white); font-weight: 600;
  padding: 12px 22px; border-radius: 100px; text-decoration: none;
  display: none; align-items: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); z-index: 1000;
  font-size: 0.92rem;
}
@media (max-width: 768px) {
  .gt-sticky-wa { display: inline-flex; }
}

/* ===== From pemuteran.html (deduped May 2026) ===== */
.pm-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep);
  overflow: hidden;
}
@media (max-width: 768px) { .pm-hero { min-height: 70vh; } }
.pm-hero-bg {
  position: absolute; inset: 0;
  background-image: url('Images/hero-background.jpg');
  background-size: cover; background-position: center 40%;
  transform: scale(1.03);
}
.pm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(7,14,38,0.90) 0%,
    rgba(7,14,38,0.55) 40%,
    rgba(7,14,38,0.30) 100%);
}
.pm-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 24px; max-width: 880px;
}
.pm-hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--aqua);
  margin-bottom: 20px; display: block;
}
.pm-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 20px; color: var(--white);
}
.pm-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65; color: rgba(255,255,255,0.85);
  max-width: 680px; margin: 0 auto 36px;
}
.pm-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.pm-section { padding: 80px 5%; }
@media (max-width: 768px) { .pm-section { padding: 52px 4%; } }
.pm-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 700;
  color: var(--ocean-deep);
  margin-bottom: 20px;
  line-height: 1.18;
}
.pm-section.dark { background: var(--bg-deep); color: var(--white); }
.pm-section.dark h2 { color: var(--white); }
.pm-section.sand { background: var(--sand); }

.pm-prose { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 1.75; color: var(--text-mid); }
.pm-prose p { margin-bottom: 18px; }
.pm-section.dark .pm-prose { color: rgba(255,255,255,0.82); }

/* Wide inline section images */
.pm-wide-img {
  display: block; width: 100%; max-width: 1100px; margin: 28px auto 32px;
  height: auto; max-height: 420px; object-fit: cover;
  border-radius: 12px; box-shadow: 0 8px 28px rgba(7,14,38,0.18);
}
.pm-wide-img-wrap { max-width: 1100px; margin: 28px auto 32px; }
.pm-wide-img-wrap img {
  display: block; width: 100%; height: auto; max-height: 420px; object-fit: cover;
  border-radius: 12px; box-shadow: 0 8px 28px rgba(7,14,38,0.18);
}
@media (max-width: 768px) {
  .pm-wide-img, .pm-wide-img-wrap img { max-height: 260px; }
}

/* Dive site teaser cards */
.pm-dive-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; max-width: 1100px; margin: 36px auto 0;
}
.pm-dive-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(7,14,38,0.08);
  display: flex; flex-direction: column;
}
.pm-dive-card img { width: 100%; height: 200px; object-fit: cover; display: block; filter: brightness(0.94); }
.pm-dive-card-body { padding: 18px 20px 22px; }
.pm-dive-card-depth {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 8px;
}
.pm-dive-card-body h3 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; color: var(--ocean-deep); margin-bottom: 8px;
}
.pm-dive-card-body p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; }

/* Marine life + things-to-do cards */
.pm-card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; max-width: 1100px; margin: 32px auto 0;
}
.pm-info-card {
  background: var(--white); border-radius: 12px; padding: 22px 22px 24px;
  box-shadow: 0 4px 14px rgba(7,14,38,0.07);
}
.pm-section.dark .pm-info-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.pm-info-card h3 {
  font-family: var(--font-display); font-size: 1.08rem;
  font-weight: 700; color: var(--ocean-deep); margin-bottom: 8px;
}
.pm-section.dark .pm-info-card h3 { color: var(--aqua); }
.pm-info-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.pm-section.dark .pm-info-card p { color: rgba(255,255,255,0.78); }

.pm-cta-row { text-align: center; margin-top: 36px; }
.pm-section-intro { text-align: center; max-width: 720px; margin: 0 auto 18px; color: var(--text-mid); font-size: 1rem; line-height: 1.7; }
.pm-section.dark .pm-section-intro { color: rgba(255,255,255,0.78); }

/* FAQ */
.pm-faq { max-width: 760px; margin: 32px auto 0; }
.pm-faq details {
  background: var(--white); border-radius: 10px;
  margin-bottom: 12px; padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(7,14,38,0.06);
}
.pm-faq summary {
  font-weight: 600; color: var(--ocean-deep); cursor: pointer;
  font-size: 1rem; line-height: 1.4;
}
.pm-faq details[open] summary { margin-bottom: 10px; }
.pm-faq details p { font-size: 0.94rem; color: var(--text-mid); line-height: 1.65; }

/* Sticky mobile WhatsApp CTA — matches getting-to-pemuteran pattern */
.pm-sticky-wa {
  position: fixed; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); left: 50%; transform: translateX(-50%);
  background: #25D366; color: var(--white); font-weight: 600;
  padding: 12px 22px; border-radius: 100px; text-decoration: none;
  display: none; align-items: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); z-index: 1000;
  font-size: 0.92rem;
}
@media (max-width: 768px) {
  .pm-sticky-wa { display: inline-flex; }
}

/* ===== From menjangan-island-diving.html (deduped May 2026) ===== */
.mj-hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-deep);
  overflow: hidden;
}
@media (max-width: 768px) { .mj-hero { min-height: 70vh; } }
.mj-hero-bg {
  position: absolute; inset: 0;
  background-image: url('Images/_W2A7586_Seafan_Divers_1200.jpg');
  background-size: cover; background-position: center 40%;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.mj-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(7,14,38,0.90) 0%,
    rgba(7,14,38,0.55) 40%,
    rgba(7,14,38,0.35) 100%);
}
.mj-hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 24px; max-width: 860px;
}
.mj-hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--aqua);
  margin-bottom: 20px; display: block;
}
.mj-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 20px; color: var(--white);
}
.mj-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65; color: rgba(255,255,255,0.82);
  max-width: 620px; margin: 0 auto 36px;
}
.mj-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  font-size: 0.95rem; font-weight: 700;
  padding: 14px 24px; border-radius: 100px;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-wa-green:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ── Quick facts strip ── */
.quick-facts {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
}
.quick-facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 5%;
}
@media (max-width: 768px) { .quick-facts-grid { grid-template-columns: 1fr 1fr; } }
.qf-card {
  text-align: center; padding: 20px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.qf-stat {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--aqua); line-height: 1; margin-bottom: 6px;
}
.qf-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  font-weight: 500; letter-spacing: 0.02em;
}

/* ── About Menjangan ── */
.mj-about { background: var(--bg-medium); }
.mj-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 900px) { .mj-about-grid { grid-template-columns: 1fr; gap: 36px; } }
.mj-about-img {
  border-radius: 20px; overflow: hidden; height: 500px;
  position: sticky; top: 100px;
}
@media (max-width: 900px) { .mj-about-img { height: 280px; position: static; } }
.mj-about-img img { width: 100%; height: 100%; object-fit: cover; }
.mj-about-text .section-title { color: var(--white); }
.mj-about-text .section-tag  { color: var(--aqua); }
.mj-about-text p {
  color: rgba(255,255,255,0.78); line-height: 1.8;
  font-size: 1rem; margin-bottom: 20px;
}

/* ── Dive sites section ── */
.mj-sites { background: var(--bg-deep); }
.mj-sites .section-title,
.mj-sites .section-tag { color: var(--white); }
.mj-sites .section-desc { color: rgba(255,255,255,0.75); }

/* Menjangan site cards — full-expand, no accordion */
.mj-site-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
@media (max-width: 900px) { .mj-site-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .mj-site-grid { grid-template-columns: 1fr; } }
.mj-card {
  background: linear-gradient(145deg, #0a2a4a 0%, #0e4d6e 40%, #0a3d5c 70%, #061628 100%);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.mj-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.mj-card-img { height: 200px; overflow: hidden; flex-shrink: 0; }
.mj-card-img img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; }
.mj-card:hover .mj-card-img img { transform: scale(1.06); }
.mj-card-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px;
}
.mj-card-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.mj-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
}
.mj-tag-depth  { background: rgba(93,214,240,0.2); color: var(--aqua); }
.mj-tag-level-all  { background: rgba(46,204,113,0.2); color: #4fd685; }
.mj-tag-level-beg  { background: rgba(52,152,219,0.2); color: #6ab4ee; }
.mj-tag-level-int  { background: rgba(241,196,15,0.2); color: #f1c40f; }
.mj-tag-level-adv  { background: rgba(231,76,60,0.2); color: #e74c3c; }
.mj-tag-wall  { background: rgba(155,89,182,0.2); color: #b87fd4; }
.mj-tag-reef  { background: rgba(26,188,156,0.2); color: #48d1b5; }
.mj-tag-macro { background: rgba(230,126,34,0.2); color: #e8943a; }
.mj-tag-wreck { background: rgba(127,140,141,0.25); color: #a5b5b6; }
.mj-card h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--white); line-height: 1.25; margin: 0;
}
.mj-card-sub {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-top: -6px;
}
.mj-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.7);
  line-height: 1.65; margin: 0; flex: 1;
}

/* ── Marine life ── */
.mj-marine { background: var(--bg-medium); }
.mj-marine .section-title,
.mj-marine .section-tag { color: var(--white); }
.mj-marine .section-desc { color: rgba(255,255,255,0.75); }
.mj-marine-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}
@media (max-width: 900px) { .mj-marine-grid { grid-template-columns: 1fr 1fr; } }
.mj-marine-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: background 0.2s;
}
.mj-marine-card:hover { background: rgba(255,255,255,0.11); }
.mj-marine-icon { font-size: 2.2rem; margin-bottom: 14px; }
.mj-marine-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--white); margin-bottom: 8px;
}
.mj-marine-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin: 0;
}

/* ── Practical info ── */
.mj-practical { background: var(--bg-light); }
.mj-practical-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
@media (max-width: 700px) { .mj-practical-grid { grid-template-columns: 1fr; } }
.mj-info-card {
  background: var(--white); border-radius: 14px; padding: 26px;
  border: 1px solid rgba(10,37,64,0.08);
  box-shadow: var(--shadow-card);
}
.mj-info-icon { font-size: 1.5rem; margin-bottom: 12px; }
.mj-info-card h3 {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--text-dark); margin-bottom: 8px;
}
.mj-info-card p {
  font-size: 0.875rem; color: var(--text-mid);
  line-height: 1.65; margin: 0;
}

/* ── Book section ── */
.mj-book { background: var(--bg-deep); }
.mj-book-inner {
  text-align: center; max-width: 640px; margin: 0 auto;
}
.mj-book .section-title { color: var(--white); }
.mj-book .section-desc  { color: rgba(255,255,255,0.75); }
.mj-book-btns {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin: 32px 0 20px;
}
.mj-prices-link {
  font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.mj-prices-link a { color: var(--aqua); font-weight: 600; text-decoration: none; }
.mj-prices-link a:hover { text-decoration: underline; }

/* ── Related cards ── */
.mj-related { background: var(--bg-medium); }
.mj-related .section-title,
.mj-related .section-tag { color: var(--white); }
.mj-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px;
}
@media (max-width: 768px) { .mj-related-grid { grid-template-columns: 1fr; } }
.mj-related-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 30px 24px;
  text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.mj-related-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.mj-related-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--aqua);
}
.mj-related-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--white); line-height: 1.25; margin: 0;
}
.mj-related-card p {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  line-height: 1.6; margin: 0; flex: 1;
}
.mj-related-arrow {
  font-size: 0.85rem; color: var(--aqua); font-weight: 600;
  margin-top: 6px;
}

/* ── Filter bar on this page ── */
.mj-filter-bar {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.mj-filter-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.mj-filter-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-right: 2px;
}
.mj-chip {
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s, color 0.2s;
}
.mj-chip.active,
.mj-chip:hover {
  background: var(--aqua); color: var(--ocean-deep); border-color: transparent;
}

/* ── Page-level section padding ── */
.mj-section { padding: 80px 5%; }
@media (max-width: 768px) { .mj-section { padding: 52px 4%; } }

/* ===== From prices.html (deduped May 2026) ===== */
#prices { background: var(--white); }
.td-note { font-size: 0.78rem; color: var(--text-light); display: block; margin-top: 2px; }
.price-note {
  margin-top: 20px; padding: 16px 20px;
  background: rgba(34,168,212,0.08); border-left: 3px solid var(--ocean-bright);
  border-radius: 0 8px 8px 0; font-size: 0.85rem; color: var(--text-mid);
}
.price-note strong { color: var(--ocean-mid); }

/* ===== From Index.html (deduped May 2026) ===== */
#home {
 position: relative; min-height: 100vh;
 display: flex; align-items: center; justify-content: center;
 overflow: hidden;
 background: #ffffff;
 }
.hero-bg {
 position: absolute; inset: 0;
 background-image: url('Images/hero-background.jpg');
 background-size: cover; background-position: center 60%;
 opacity: 1;
 }
.hero-content {
 position: relative; z-index: 2;
 text-align: center; padding: 0 5%;
 max-width: 860px;
 }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
#about { background: var(--white); }
.about-grid {
 display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
 }
.about-text .section-desc { margin-bottom: 12px; }
#activities { background: var(--ocean-deep); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.activity-card-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(to top, rgba(8,20,48,0.88) 0%, rgba(8,20,48,0.2) 55%, transparent 100%);
 }
.activity-card-link { font-size: 0.78rem; font-weight: 600; color: var(--aqua); letter-spacing: 0.04em; }
#divesites {
 background: var(--ocean-deep);
 }
#divesites .container { position: relative; z-index: 1; }
.site-card-body {
 position: relative; z-index: 2; padding: 20px 22px 22px;
 background: linear-gradient(to top, rgba(8,22,50,0.95) 0%, rgba(8,22,50,0.65) 60%, transparent 100%);
 transition: background 0.3s;
 }
.site-card-expand {
 overflow: hidden; max-height: 0;
 transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
 opacity: 0;
 }
.site-tile-body { display: flex; flex-direction: column; flex: 1; }
.site-depth { display: inline-block; background: rgba(93,214,240,0.2); color: var(--aqua); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; margin-bottom: 8px; }
.site-tile-body h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0; color: var(--white); line-height: 1.2; }
.site-tile-body p { font-size: 0.8rem; color: rgba(255,255,255,0.78); line-height: 1.55; margin-top: 10px; }
.site-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.site-meta span { font-size: 0.7rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 3px; }
#snorkeling {
 background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-light) 100%);
 color: var(--white);
 }
.snorkeling-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.snorkeling-img { border-radius: 20px; overflow: hidden; height: 440px; }
.snorkeling-img img { width: 100%; height: 100%; object-fit: cover; }
#gallery { background: var(--sand); }
.gallery-grid {
 display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 220px); gap: 12px;
 }
.gallery-overlay {
 position: absolute; inset: 0; background: rgba(10,37,64,0.45);
 display: flex; align-items: center; justify-content: center;
 opacity: 0; transition: var(--transition);
 color: var(--white); font-size: 1.6rem;
 }
.lb-overlay {
 display: none; position: fixed; inset: 0; z-index: 9999;
 background: rgba(0,0,0,0.93);
 align-items: center; justify-content: center;
 }
.lb-overlay.active { display: flex; }
.lb-img {
 max-width: 88vw; max-height: 86vh;
 object-fit: contain; border-radius: 6px; display: block;
 user-select: none; pointer-events: none;
 }
.lb-close {
 position: fixed; top: 20px; right: 28px;
 color: #fff; font-size: 2.2rem; line-height: 1;
 background: none; border: none; cursor: pointer; opacity: 0.75; padding: 4px 10px;
 transition: opacity 0.2s;
 }
.lb-close:hover { opacity: 1; }
.lb-nav {
 position: fixed; top: 50%; transform: translateY(-50%);
 color: #fff; font-size: 2.6rem; line-height: 1;
 background: rgba(0,0,0,0.38); border: none; cursor: pointer;
 padding: 12px 18px; border-radius: 8px; opacity: 0.7;
 transition: opacity 0.2s, background 0.2s;
 }
.lb-nav:hover { opacity: 1; background: rgba(0,0,0,0.6); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
 position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
 color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.1em; pointer-events: none;
 }
#team { background: var(--white); }
#locations { background: var(--white); }
#contact {
 background: var(--ocean-deep);
 background-image: url('https://images.unsplash.com/photo-1682687220742-aba13b6e50ba?w=1400&auto=format&fit=crop&q=80');
 background-size: cover; background-position: center;
 position: relative;
 }
#contact::before {
 content: ''; position: absolute; inset: 0;
 background: rgba(10,37,64,0.93);
 }
#contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info { color: var(--white); }
.contact-info h2 { font-family: var(--font-display); font-size: 2.4rem; margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
 display: flex; align-items: flex-start; gap: 14px; color: rgba(255,255,255,0.85);
 }
.contact-item h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--aqua); margin-bottom: 3px; }
.contact-item a { color: inherit; }
.contact-item a:hover { color: var(--aqua); }
.contact-form-wrap {
 background: var(--white); border-radius: 20px; padding: 36px;
 box-shadow: 0 24px 60px rgba(0,0,0,0.3);
 max-width: 560px;
 }
.contact-form-wrap h3 {
 font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px;
 }
.contact-form-wrap p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
 width: 100%; padding: 12px 16px;
 border: 1.5px solid var(--sand-dark); border-radius: 10px;
 font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark);
 background: var(--white); transition: border-color 0.2s;
 outline: none;
 }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
 border-color: var(--ocean-bright);
 }
.form-group textarea { resize: vertical; min-height: 100px; }
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-content { padding: 0 8px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .about-grid, .snorkeling-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .snorkeling-img { height: 280px; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; gap: 10px; }
  .snorkeling-img { height: 220px; }
  .gallery-grid { gap: 8px; }
}
#about         { background: var(--bg-medium); }
#snorkeling    { background: var(--bg-deep);   color: var(--white); }
#conservation  { background: var(--bg-medium); color: var(--white); }
#locations     { background: var(--bg-light);  }
#gallery       { background: var(--bg-medium); }
#team          { background: var(--bg-light);  }
#reviews       { background: var(--bg-light);  }
#faq           { background: var(--bg-deep);   }
#about .section-title,
 #about .section-tag  { color: var(--white); }
#about .section-desc { color: rgba(255,255,255,0.75); }
#about .about-feature { border-bottom-color: rgba(255,255,255,0.1); }
#about .about-feature:last-child { border-bottom: none; }
#about .about-feature h4 { color: var(--white); }
#about .about-feature p  { color: rgba(255,255,255,0.65); }
#gallery .section-title,
 #gallery .section-tag  { color: var(--white); }
#gallery .section-desc { color: rgba(255,255,255,0.75); }
#conservation .section-title,
 #conservation .section-tag  { color: var(--white); }
#conservation .section-desc { color: rgba(255,255,255,0.75); }
#locations .section-title { color: var(--text-dark); }
#locations .section-desc  { color: var(--text-mid); }
#reviews .section-title { color: var(--text-dark); }
#reviews .section-desc  { color: var(--text-mid); }
#team .section-title { color: var(--text-dark); }
#team .section-desc  { color: var(--text-mid); }
#faq .section-title.white { color: var(--white); }

/* ===== Dive Site detail pages (added May 2026) ===== */
.ds-breadcrumb {
  background: var(--bg-deep);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ds-breadcrumb-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.ds-breadcrumb-link:hover { color: var(--aqua); }

/* Hero */
.ds-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: var(--bg-deep);
  overflow: hidden;
  padding: 0 0 60px;
}
@media (max-width: 768px) { .ds-hero { min-height: 56vh; padding-bottom: 40px; } }
.ds-hero-img-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.ds-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.ds-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(7,14,38,0.92) 0%,
    rgba(7,14,38,0.55) 45%,
    rgba(7,14,38,0.20) 100%);
}
.ds-hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  width: 100%;
}
.ds-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 14px;
}
.ds-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 880px;
}

/* Meta pill row */
.ds-meta-row {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.ds-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
}
.ds-pill-depth { background: rgba(91,155,213,0.22); color: var(--aqua); border-color: rgba(91,155,213,0.4); }
.ds-pill-level { background: rgba(46,204,113,0.18); color: #4fd685; border-color: rgba(46,204,113,0.4); }
.ds-pill-type  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }

/* Section + content */
.ds-section { padding: 64px 5%; background: var(--white); }
@media (max-width: 768px) { .ds-section { padding: 44px 4%; } }
.ds-content {
  max-width: 780px;
  margin: 0 auto;
}
.ds-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: var(--text-dark, var(--ocean-deep));
  margin: 32px 0 14px;
  line-height: 1.25;
}
.ds-content h2:first-child { margin-top: 0; }
.ds-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.ds-content .ds-lead {
  font-size: 1.05rem;
  color: var(--text-dark, var(--ocean-deep));
}

/* Marine list */
.ds-marine-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
@media (max-width: 600px) { .ds-marine-list { grid-template-columns: 1fr; } }
.ds-marine-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.ds-marine-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--aqua);
  border-radius: 50%;
}

/* Profile stat grid */
.ds-profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 24px;
  padding: 22px;
  background: var(--sand, #eef2f8);
  border-radius: 14px;
  border-left: 3px solid var(--aqua);
}
@media (max-width: 700px) { .ds-profile { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .ds-profile { grid-template-columns: 1fr; } }
.ds-profile-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ds-profile-stat strong {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-bright, var(--aqua));
}
.ds-profile-stat span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark, var(--ocean-deep));
}

/* CTA row */
.ds-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(13,27,62,0.08);
}

/* Related sites */
.ds-related {
  background: var(--bg-deep);
  color: var(--white);
  padding: 64px 5%;
}
@media (max-width: 768px) { .ds-related { padding: 44px 4%; } }
.ds-related-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
}
.ds-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .ds-related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ds-related-grid { grid-template-columns: 1fr; } }
.ds-related-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 22px 22px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.ds-related-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  border-color: rgba(91,155,213,0.4);
}
.ds-related-card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}
.ds-related-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}
.ds-related-card p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.ds-related-arrow {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aqua);
  margin-top: 4px;
}

/* Sticky mobile WhatsApp CTA — matches site pattern */
.ds-sticky-wa {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 1000;
  font-size: 0.92rem;
}
@media (max-width: 768px) {
  .ds-sticky-wa { display: inline-flex; }
}

/* ===== Dive site card "Read more" link (added May 2026) ===== */
.site-card-readmore {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--aqua);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  min-height: 32px;
}
.site-card-readmore:hover,
.site-card-readmore:focus {
  color: var(--coral);
  text-decoration: underline;
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .site-card-readmore {
    padding: 10px 4px;
    font-size: 0.88rem;
    min-height: 40px;
  }
}

/* ===== Partners page (added May 2026) ===== */
.pn-hero {
  background: linear-gradient(135deg, var(--ocean-deep) 0%, #0a4a52 100%);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
}
.pn-hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
  font-weight: 600;
}
.pn-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 12px;
}
.pn-hero-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 700px;
  margin: 0 auto;
}
.pn-intro {
  padding: 48px 0 24px;
  background: var(--bg-light, #f8f9fa);
}
.pn-intro p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark, #222);
  text-align: center;
}
.pn-map-section {
  padding: 32px 0;
  background: var(--bg-light, #f8f9fa);
}
.pn-map-placeholder {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, #d8e6e8 0%, #b8d0d4 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(13, 27, 62, 0.18);
}
.pn-map-placeholder-inner {
  text-align: center;
  color: rgba(13, 27, 62, 0.55);
}
.pn-map-placeholder-icon {
  display: block;
  font-size: 3rem;
  margin-bottom: 12px;
}
.pn-map-placeholder-text {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.pn-region-section {
  padding: 56px 0;
}
.pn-region-section:nth-of-type(odd) {
  background: var(--bg-light, #f8f9fa);
}
.pn-region-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text-dark, #0d1b3e);
  position: relative;
  padding-bottom: 12px;
}
.pn-region-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--aqua);
  margin: 12px auto 0;
  border-radius: 2px;
}
.pn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.pn-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.pn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.pn-card-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #eee;
}
.pn-card-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.pn-card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pn-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark, #0d1b3e);
  margin-bottom: 6px;
}
.pn-card-location {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--aqua);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.pn-card-text {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-dark, #333);
  margin-bottom: 18px;
  flex: 1;
}
.pn-card-website {
  display: inline-block;
  align-self: flex-start;
  background: var(--aqua);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pn-card-website:hover,
.pn-card-website:focus {
  background: var(--coral, #e07a5f);
  transform: translateX(2px);
}
.pn-cta-section {
  padding: 64px 0;
  background: var(--ocean-deep, #0d1b3e);
  color: #fff;
  text-align: center;
}
.pn-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.pn-cta-text {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 24px;
}
.pn-cta-button {
  display: inline-block;
  background: var(--aqua);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.pn-cta-button:hover,
.pn-cta-button:focus {
  background: var(--coral, #e07a5f);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pn-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pn-card-photo {
    height: 160px;
  }
  .pn-map-placeholder {
    height: 360px;
  }
  .pn-region-section {
    padding: 40px 0;
  }
  .pn-hero {
    padding: 72px 0 40px;
  }
}

/* ===== Partners map (added May 2026) ===== */
.pn-map {
  width: 100%;
  height: 460px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.12);
  overflow: hidden;
  background: #e9eef3;
  position: relative;
  z-index: 1;
}
.pn-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(13, 27, 62, 0.7);
  text-align: center;
}
.pn-map-caption {
  margin: 14px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(13, 27, 62, 0.6);
  text-align: center;
}
/* Karang Divers home marker — teal accent ring */
.pn-marker-home {
  background: transparent;
  border: 0;
}
.pn-marker-home-dot {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #40e0d0;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(64, 224, 208, 0.45), 0 2px 8px rgba(13, 27, 62, 0.35);
}
/* Popup styling — match site fonts */
.pn-map .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.18);
}
.pn-map .leaflet-popup-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #0d1b3e;
  margin: 12px 14px;
}
.pn-map .leaflet-popup-content strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #0d1b3e;
}
.pn-map .leaflet-popup-content a {
  color: #0d1b3e;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(64, 224, 208, 0.6);
  transition: color 0.2s, border-color 0.2s;
}
.pn-map .leaflet-popup-content a:hover {
  color: #40e0d0;
  border-bottom-color: #40e0d0;
}
@media (max-width: 768px) {
  .pn-map { height: 320px; border-radius: 10px; }
  .pn-map-caption { font-size: 0.8rem; }
  .pn-map .leaflet-popup-content { font-size: 0.85rem; margin: 10px 12px; }
  .pn-map .leaflet-popup-content strong { font-size: 0.95rem; }
}


/* ============================================================
   Scroll-margin fix for anchor jumps (added May 2026)
   Independent of CMAS state — keep permanently. Ensures section
   headings clear the 72px fixed nav when users click anchor links
   or when scrollIntoView() lands on a target. 88px = 72px nav + 16px
   breathing room. Mobile uses the same value (nav height is 72px on
   mobile too — no override needed).
   ============================================================ */
#home,
#about,
#activities,
#snorkeling,
#divesites,
#dive-sites,
#prices,
#reviews,
#faq,
#contact,
#gallery,
#locations,
#conservation,
#cmas,
#pro-courses,
#pemuteran-diving,
#book-menjangan,
#team,
#getting-here,
#partners-map,
#indonesia,
#philippines,
#palau,
#red-sea {
  scroll-margin-top: 88px;
}
/* ===== End scroll-margin fix ===== */


/* ============================================================
   Activity card image height parity fix (added May 2026)
   ============================================================
   Problem: .da-activity uses CSS Grid with align-items:center
   and .da-activity-img img has a locked height:360px. When one
   card's text block grows taller than the image (e.g. Pro Courses
   has 4 paragraphs), the image stays at 360px and floats centered
   in its grid cell — visible empty space above and below — so the
   image reads as "small" relative to the text alongside it.

   Fix: stretch grid cells so each row's image cell is as tall as
   the text cell, then let the image grow to fill that cell while
   keeping a 360px floor for cards whose text is shorter than 360px.

   Scope: .da-activity classes are used ONLY on
   dive-activities-pemuteran.html — confirmed by grep across all
   HTML. No cross-page side effects. Mobile (<=768px) collapses the
   grid to a single column, so this fix is desktop-only and the
   mobile media query below restores the original behavior.
   ============================================================ */
.da-activity { align-items: stretch; }

.da-activity-img {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 16px;
}

.da-activity-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@media (max-width: 768px) {
  .da-activity-img {
    border-radius: 12px;
  }
  .da-activity-img img {
    height: 240px;
    aspect-ratio: auto;
  }
}
/* ===== End activity card image height parity fix ===== */
