/* ═══════════════════════════════════════════════════════════════
   Origins Coconutwood Indonesia — Company Profile Stylesheet
   Design: Earthy Natural | Immersive & Modern
═══════════════════════════════════════════════════════════════ */

/* ── Google Fonts already loaded via HTML ── */

/* ─────────────── CSS VARIABLES ─────────────── */
:root {
  /* Brand Colors */
  --primary:       #4A2006;
  --primary-dark:  #2C1204;
  --primary-light: #7A4520;
  --secondary:     #C29035;
  --secondary-light:#E8B85A;
  --accent:        #2D6B30;
  --accent-light:  #4A9C4E;

  /* Backgrounds */
  --bg-cream:      #FAF3E5;
  --bg-warm:       #F5E8CC;
  --bg-dark:       #1A0A02;
  --bg-charcoal:   #2A1508;

  /* Text */
  --text-dark:     #1A0E00;
  --text-muted:    #7A5C3A;
  --text-light:    #FAF0E0;

  /* UI */
  --border:        rgba(196,144,53,0.25);
  --shadow-sm:     0 4px 16px rgba(74,32,6,.1);
  --shadow-md:     0 8px 32px rgba(74,32,6,.15);
  --shadow-lg:     0 20px 60px rgba(74,32,6,.2);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;

  /* Typography */
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Outfit', system-ui, sans-serif;

  /* Layout */
  --container:     1200px;
  --section-py:    100px;
  --nav-h:         80px;

  /* Transitions */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:      0.2s;
  --dur-med:       0.4s;
  --dur-slow:      0.7s;
}

/* ─────────────── RESET & BASE ─────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  /* Prevent iOS auto-zoom on focus (needs ≥16px) */
  font-size: max(1rem, 16px);
}

/* ─────────────── UTILITIES ─────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-py) 0; }

.text-center { text-align: center; }

.text-gold {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(90deg, var(--secondary-light), var(--secondary), #f5c842, var(--secondary-light));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.section-header { margin-bottom: 60px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--secondary-light); }
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1.5px;
  background: currentColor;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title.light { color: var(--text-light); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}
.section-desc.light { color: rgba(250,240,224,.7); }

/* ─────────────── BACKGROUNDS ─────────────── */
.bg-cream    { background: var(--bg-cream); }
.bg-warm     { background: var(--bg-warm); }

.bg-deep-wood {
  background:
    radial-gradient(ellipse at 10% 90%, rgba(196,144,53,.12) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 10%, rgba(45,107,48,.12) 0%, transparent 40%),
    linear-gradient(160deg, #1A0A02 0%, #2A1508 40%, #1F1008 70%, #150802 100%);
  position: relative;
}

/* ─────────────── SECTION WAVE DIVIDERS ─────────────── */
.section-wave-top,
.section-wave-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}
.section-wave-top { top: 0; }
.section-wave-bottom { bottom: 0; }
.section-wave-top svg,
.section-wave-bottom svg { width: 100%; height: 80px; }

.services,
.whyus { position: relative; }
.services { padding-top: calc(var(--section-py) + 40px); padding-bottom: calc(var(--section-py) + 40px); }
.whyus    { padding-top: calc(var(--section-py) + 40px); padding-bottom: calc(var(--section-py) + 40px); }

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,144,53,.45);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196,144,53,.6);
  filter: brightness(1.08);
}

.btn-glass {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-glass:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-brown-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-brown-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(196,144,53,.4);
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,144,53,.6);
}

/* Mobile-only CTA inside drawer — hidden on desktop */
.nav-mobile-cta { display: none; }

/* ─────────────── PAGE LOADER ─────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--secondary-light);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-logo i { font-size: 2.4rem; }

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.97); }
}

.loader-track {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto 14px;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  border-radius: 10px;
  animation: loaderProgress 1.8s var(--ease-out) forwards;
}
@keyframes loaderProgress {
  0%   { width: 0; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

.loader-text {
  color: rgba(255,255,255,.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ─────────────── NAVBAR ─────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  /* overflow visible so mobile dropdown can extend below the bar */
  overflow: visible;
  transition: background var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}

.navbar.scrolled {
  background: rgba(26, 10, 2, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.brand-icon-wrap.sm {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--secondary-light);
}
.brand-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,.6);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--dur-med) var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-end {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: background var(--dur-fast) var(--ease);
  flex-shrink: 0;
  cursor: pointer;
}
.hamburger:hover {
  background: rgba(255,255,255,.16);
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
  transform-origin: center;
}
.hamburger.active { background: rgba(196,144,53,.2); border-color: rgba(196,144,53,.3); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────── HERO ─────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

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

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(196,144,53,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 15%, rgba(45,107,48,.22) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(120,60,20,.25) 0%, transparent 70%),
    linear-gradient(160deg,
      #0A0401 0%,
      #1E0B04 20%,
      #2D1508 40%,
      #1A2308 60%,
      #0D1A05 80%,
      #0A0401 100%
    );
  animation: heroShift 20s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0%   { filter: brightness(1) hue-rotate(0deg); }
  50%  { filter: brightness(1.1) hue-rotate(5deg); }
  100% { filter: brightness(0.95) hue-rotate(-5deg); }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,144,53,.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat1 12s ease-in-out infinite;
  max-width: 60vw; max-height: 60vw;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,107,48,.12) 0%, transparent 70%);
  bottom: 100px; left: -100px;
  animation: orbFloat2 16s ease-in-out infinite;
  max-width: 50vw; max-height: 50vw;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(122,69,32,.2) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orbFloat3 9s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-60px, 80px) scale(1.1); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(80px, -60px) scale(1.15); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -40px) scale(1.05); }
  66%       { transform: translate(-30px, 30px) scale(0.95); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 160px;
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.hero-typed-wrap {
  display: inline-block;
  min-height: 1.2em;
}

.typed-cursor {
  color: var(--secondary);
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
  from, to { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-subtitle strong { color: var(--secondary-light); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-statsbar {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
  /* ensure it doesn't push below viewport on old browsers */
  flex-shrink: 0;
}

.statsbar-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 28px 0;
  gap: 16px;
}

.sbar-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sbar-icon {
  font-size: 1.6rem;
  color: var(--secondary);
}

.sbar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sbar-val {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sbar-suffix {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 700;
}

.sbar-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.05em;
}

.sbar-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.15);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 180px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--secondary);
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─────────────── ABOUT ─────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  /* contain children overflow that go outside on mobile */
  min-width: 0;
}

.av-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.av-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.av-main:hover img { transform: scale(1.04); }

.av-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(26,10,2,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(196,144,53,.3);
}
.av-badge i { color: var(--secondary); }

.av-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-cream);
}
.av-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.av-exp-chip {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(196,144,53,.5);
}
.exp-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.exp-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
}

.about-content { padding: 20px 0; }

.about-content .section-eyebrow { display: inline-flex; margin-bottom: 12px; }

.about-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.av-value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.avv-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.avv-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}
.avv-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─────────────── SERVICES ─────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.svc-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(196,144,53,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196,144,53,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.svc-card.featured {
  background: linear-gradient(160deg, rgba(196,144,53,.15) 0%, rgba(255,255,255,.06) 100%);
  border-color: rgba(196,144,53,.35);
}

.svc-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.svc-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform var(--dur-med) var(--ease);
}
.svc-card:hover .svc-icon-ring { transform: rotate(10deg) scale(1.1); }

.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.835rem;
  color: rgba(255,255,255,.65);
}
.svc-list i { color: var(--secondary); font-size: 0.75rem; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-light);
  transition: gap var(--dur-fast) var(--ease);
}
.svc-link:hover { gap: 10px; }

/* ─────────────── ARMADA ─────────────── */
.armada-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.arm-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}
.arm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.arm-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.arm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.arm-card:hover .arm-img-wrap img { transform: scale(1.06); }

.arm-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,2,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.arm-card:hover .arm-hover-overlay { opacity: 1; }

.arm-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.arm-tag.gold {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.arm-unit-count {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.arm-body {
  padding: 28px 32px 32px;
}
.arm-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.arm-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.arm-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: var(--text-muted);
  background: var(--bg-warm);
  padding: 8px 14px;
  border-radius: 8px;
}
.spec i { color: var(--secondary); width: 14px; text-align: center; }

/* Feature chips */
.arm-features-wrap {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-charcoal) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  text-align: center;
}
.af-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.af-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.af-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(196,144,53,.2);
  border-radius: 50px;
  color: rgba(255,255,255,.8);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
}
.af-chip i { color: var(--secondary); }
.af-chip:hover {
  background: rgba(196,144,53,.15);
  border-color: var(--secondary);
  color: #fff;
}

/* ─────────────── PACKAGES ─────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pkg-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: all var(--dur-med) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}
.pkg-card.featured {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--bg-charcoal) 100%);
  border-color: var(--secondary);
  box-shadow: 0 10px 50px rgba(196,144,53,.3);
  transform: scale(1.04);
}
.pkg-card.featured:hover {
  transform: scale(1.04) translateY(-10px);
}

.pkg-popular-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pkg-head {
  padding: 44px 32px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pkg-card.featured .pkg-head { border-bottom-color: rgba(196,144,53,.2); }

.pkg-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.pkg-head h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.pkg-card.featured .pkg-head h3 { color: #fff; }

.pkg-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.pfrom {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pkg-card.featured .pfrom { color: rgba(255,255,255,.5); }
.pval {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.punit {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pkg-card.featured .punit { color: rgba(255,255,255,.4); }

.pkg-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,.55); }

.pkg-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-feats {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  flex: 1;
}
.pkg-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.pkg-card.featured .pkg-feats li { color: rgba(255,255,255,.8); }
.pkg-feats li.on i { color: var(--accent-light); }
.pkg-feats li.off { opacity: 0.45; }
.pkg-feats li.off i { color: var(--text-muted); }

.btn-pkg {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--bg-warm);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  transition: all var(--dur-med) var(--ease);
}
.btn-pkg:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.btn-pkg.featured {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(196,144,53,.5);
}
.btn-pkg.featured:hover {
  filter: brightness(1.1);
  box-shadow: 0 10px 30px rgba(196,144,53,.6);
}

.pkg-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(196,144,53,.08);
  border: 1px dashed var(--border);
  padding: 14px 24px;
  border-radius: 10px;
}
.pkg-note i { color: var(--secondary); margin-right: 6px; }

/* ─────────────── GALLERY ─────────────── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gal-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-warm);
}
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  min-height: 200px;
}
.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,10,2,.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.gal-item:hover .gal-overlay { opacity: 1; }

.gal-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gal-overlay span {
  color: rgba(255,255,255,.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-med) var(--ease);
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,5,2,.95);
  cursor: pointer;
}

.lb-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lb-close {
  position: absolute;
  top: -44px;
  right: 0;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 6px 10px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  transition: background var(--dur-fast) var(--ease);
}
.lb-close:hover { background: rgba(255,255,255,.2); }

#lbImg {
  max-width: 80vw;
  max-height: 75vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}

.lb-caption {
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  text-align: center;
}

/* ─────────────── WHY US ─────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--dur-med) var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(196,144,53,.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196,144,53,.2), rgba(196,144,53,.05));
  border: 1px solid rgba(196,144,53,.25);
  color: var(--secondary-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform var(--dur-med) var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.15) rotate(5deg); }

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ─────────────── TESTIMONIALS ─────────────── */
.testi-swiper {
  padding: 20px 10px 60px !important;
  overflow: hidden;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px 36px 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  position: relative;
  transition: all var(--dur-med) var(--ease);
  height: 100%;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.testi-quote {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--secondary);
  opacity: 0.25;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testi-stars i { color: var(--secondary); font-size: 0.9rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--secondary-light);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-info strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testi-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Swiper customization */
.testi-pagination .swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}
.testi-pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 24px;
  border-radius: 4px;
}

.testi-prev,
.testi-next {
  color: var(--secondary) !important;
  background: rgba(196,144,53,.12) !important;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: all var(--dur-fast) var(--ease);
}
.testi-prev:hover,
.testi-next:hover {
  background: var(--secondary) !important;
  color: #fff !important;
}
.testi-prev::after,
.testi-next::after { font-size: 0.8rem !important; font-weight: 700 !important; }

/* ─────────────── BOOKING ─────────────── */
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.bk-info .section-eyebrow { display: inline-flex; margin-bottom: 12px; }
.bk-info .section-title { color: var(--text-dark); }

.bk-lead {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.bk-lead strong { color: var(--primary); }

.bk-contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bk-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  transition: all var(--dur-fast) var(--ease);
}
.bk-contact-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.bk-ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.bk-ci-icon.wa     { background: linear-gradient(135deg, #25D366, #128C7E); }
.bk-ci-icon.email  { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }
.bk-ci-icon.loc    { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

.bk-ci-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bk-ci-text span { font-size: 0.75rem; color: var(--text-muted); }
.bk-ci-text strong { font-size: 0.9rem; color: var(--text-dark); }

/* Form */
.bk-form-wrap {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}
.req { color: var(--secondary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  background: var(--bg-cream);
  transition: all var(--dur-fast) var(--ease);
  outline: none;
  min-height: 48px; /* touch target */
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196,144,53,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(74,32,6,.35); }

.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  transition: all var(--dur-med) var(--ease);
  box-shadow: 0 6px 24px rgba(37,211,102,.35);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.5);
  filter: brightness(1.05);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─────────────── CONTACT ─────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.ct-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
}

.ct-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.ct-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.ct-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}
.ct-icon.wa    { background: linear-gradient(135deg, #25D366, #128C7E); }
.ct-icon.email { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }
.ct-icon.loc   { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.ct-icon.time  { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }

.ct-detail h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ct-detail a {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
  transition: color var(--dur-fast) var(--ease);
}
.ct-detail a:hover { color: var(--secondary); }
.ct-detail span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.ct-social h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.ct-social-links {
  display: flex;
  gap: 12px;
}
.csl-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-warm);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--dur-med) var(--ease);
  border: 1.5px solid var(--border);
}
.csl-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}
.csl-btn.wa:hover { background: #25D366; border-color: #25D366; }

/* Map Placeholder */
.map-placeholder {
  height: 400px;
  background:
    radial-gradient(ellipse at center, rgba(196,144,53,.08) 0%, transparent 70%),
    linear-gradient(160deg, var(--primary-dark) 0%, var(--bg-charcoal) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(196,144,53,.2);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196,144,53,.06) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.map-inner > i {
  font-size: 3.5rem;
  color: var(--secondary);
  margin-bottom: 16px;
  display: block;
  animation: mapPin 2s ease-in-out infinite;
}
@keyframes mapPin {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.map-inner h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}
.map-inner p {
  color: rgba(255,255,255,.55);
  font-size: 0.875rem;
  margin-bottom: 24px;
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #0A0401 100%);
}

.footer-body { padding: 80px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.ft-brand .ft-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ft-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.ft-social {
  display: flex;
  gap: 10px;
}
.ft-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid rgba(255,255,255,.08);
}
.ft-social a:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.ft-links h4,
.ft-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary-light);
  margin-bottom: 20px;
}

.ft-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-links ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--dur-fast) var(--ease);
}
.ft-links ul a:hover { color: var(--secondary-light); }

.ft-contact {
  display: flex;
  flex-direction: column;
}

.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.ft-ci i {
  color: var(--secondary);
  margin-top: 3px;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}
.ft-ci a {
  color: rgba(255,255,255,.5);
  transition: color var(--dur-fast) var(--ease);
}
.ft-ci a:hover { color: var(--secondary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom .fa-heart { color: var(--secondary); }

/* ─────────────── WHATSAPP FLOAT ─────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all var(--dur-med) var(--ease);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,.65);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--dur-med) var(--ease);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.25);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─────────────── SCROLL TO TOP ─────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--dur-med) var(--ease);
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top-btn:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

/* ─────────────── RESPONSIVE ─────────────── */

/* global overflow guard */
html { overflow-x: hidden; }

/* ── Tablet (≤1100px) ── */
@media (max-width: 1100px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .armada-grid     { grid-template-columns: 1fr 1fr; }
  .about-grid      { gap: 50px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .booking-wrapper { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 32px; }
  .why-grid        { grid-template-columns: repeat(3, 1fr); }
}

/* ── Tablet Portrait / Large Mobile (≤900px) ── */
@media (max-width: 900px) {
  :root { --section-py: 70px; }

  /* Navbar: always show a base bg on mobile so hamburger is readable */
  .navbar {
    background: rgba(20, 8, 2, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .navbar.scrolled {
    background: rgba(20, 8, 2, 0.98);
  }

  /* Hamburger */
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .nav-mobile-cta { display: block; }

  /* Nav dropdown drawer:
     KEY FIX — use position:absolute (not fixed) so it is positioned
     relative to .navbar (which is itself fixed to the viewport).
     backdrop-filter on a parent only breaks position:fixed children,
     NOT position:absolute children. */
  .nav-links {
    position: absolute;          /* relative to .navbar */
    top: 100%;                   /* directly below the navbar bar */
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(16, 6, 1, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 10px 16px 24px;
    gap: 2px;
    /* Animate with opacity + translateY (no clipping issues) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease),
                visibility var(--dur-med) var(--ease),
                transform var(--dur-med) var(--ease);
    border-top: 1px solid rgba(196,144,53,.15);
    border-bottom: 1px solid rgba(255,255,255,.06);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.975rem;
    min-height: 48px;
    color: rgba(255,255,255,.8);
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link:hover, .nav-link.active {
    background: rgba(196,144,53,.1);
    color: var(--secondary-light);
  }
  /* Hide the underline indicator inside the drawer */
  .nav-link::after { display: none; }

  /* Mobile CTA inside menu */
  .nav-mobile-cta {
    display: block;
    margin: 12px 18px 6px;
    padding: 14px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
  }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hero-body  { padding-bottom: 110px; }
  .hero-eyebrow { font-size: 0.7rem; gap: 7px; }

  /* About */
  .about-grid       { grid-template-columns: 1fr; gap: 56px; }
  .about-visual     { overflow: visible; }
  .av-main img      { height: 380px; }
  .av-secondary     { right: -16px; bottom: -24px; width: 160px; }
  .av-secondary img { height: 120px; }

  /* Services grid + armada */
  .services-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0; }
  .armada-grid   { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto 60px; }

  /* Packages */
  .pkg-grid           { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 20px; }
  .pkg-card.featured  { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-10px); }

  /* Why us */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Gallery */
  .gallery-masonry    { grid-template-columns: repeat(2, 1fr); }
  .gal-item.tall      { grid-row: span 1; }
  .gal-item.wide      { grid-column: span 1; }

  /* Form rows stacked */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Stats bar */
  .statsbar-grid { gap: 8px; }
  .sbar-divider  { height: 36px; }
  .sbar-val      { font-size: 1.4rem; }

  /* Booking contacts */
  .bk-contacts { gap: 14px; }

  /* Misc */
  .hero-scroll-cue { display: none; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
  :root { --section-py: 56px; --nav-h: 68px; }

  /* Typography scale */
  .section-title { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }
  .hero-title    { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Container */
  .container { padding: 0 16px; }

  /* ── Navbar ── */
  .nav-brand .brand-tagline { display: none; }
  .brand-icon-wrap { width: 36px; height: 36px; font-size: 0.95rem; }
  .brand-name { font-size: 1rem; }

  /* ── Hero ── */
  .hero-body {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 80px;
    text-align: center;
    align-items: center;
  }
  .hero-content  { max-width: 100%; }
  .hero-eyebrow  { justify-content: center; font-size: 0.68rem; }
  .hero-subtitle { text-align: center; max-width: 100%; }
  .hero-typed-wrap { display: block; }
  .hero-actions  { flex-direction: column; gap: 12px; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 20px; }

  /* ── Stats bar: 2×2 grid ── */
  .statsbar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    padding: 22px 8px;
  }
  .sbar-divider { display: none; }
  .sbar-item    { flex-direction: column; text-align: center; gap: 5px; }
  .sbar-icon    { font-size: 1.25rem; }
  .sbar-val     { font-size: 1.4rem; }
  .sbar-label   { font-size: 0.68rem; }
  .sbar-text    { align-items: center; }

  /* ── About ── */
  .about-grid    { gap: 48px; }
  .av-main img   { height: 260px; }
  .av-secondary  { display: none; }
  .av-exp-chip   { width: 72px; height: 72px; top: -12px; left: -12px; }
  .exp-num       { font-size: 1.15rem; }
  .exp-label     { font-size: 0.48rem; }
  .about-values  { gap: 14px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; }
  .svc-card      { padding: 28px 22px; }

  /* ── Armada ── */
  .arm-body        { padding: 20px 22px 26px; }
  .arm-specs-grid  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .spec            { font-size: 0.78rem; padding: 7px 10px; }
  .arm-features-wrap { padding: 28px 18px; }
  .af-chips        { gap: 8px; }
  .af-chip         { font-size: 0.78rem; padding: 8px 14px; }
  .af-title        { font-size: 1.1rem; }

  /* ── Packages ── */
  .pkg-head { padding: 38px 22px 22px; }
  .pkg-body { padding: 22px 22px 28px; }
  .pval     { font-size: 1.7rem; }

  /* ── Gallery ── */
  .gallery-masonry { grid-template-columns: 1fr; gap: 12px; }
  .gal-item.wide, .gal-item.tall { grid-column: span 1; grid-row: span 1; }
  .gal-item img    { min-height: 220px; }

  /* ── Why Us ── */
  .why-grid  { grid-template-columns: 1fr; gap: 14px; }
  .why-card  { padding: 28px 20px; }

  /* ── Testimonials ── */
  .testi-card   { padding: 28px 22px 26px; }
  .testi-prev,
  .testi-next   { display: none !important; }
  .testi-swiper { padding-bottom: 48px !important; }

  /* ── Booking ── */
  .booking-wrapper  { gap: 36px; }
  .bk-form-wrap     { padding: 26px 18px; }
  .bk-contact-item  { padding: 13px 14px; }
  .bk-ci-icon       { width: 38px; height: 38px; font-size: 1rem; }
  .bk-ci-text strong{ font-size: 0.85rem; }
  .btn-submit        { font-size: 0.95rem; padding: 15px; }

  /* ── Contact ── */
  .ct-card          { padding: 26px 20px; }
  .ct-icon          { width: 44px; height: 44px; font-size: 1.1rem; }
  .map-placeholder  { height: 260px; }
  .ct-social-links  { flex-wrap: wrap; gap: 10px; }
  .csl-btn          { width: 46px; height: 46px; }

  /* ── Footer ── */
  .footer-body     { padding: 52px 0 32px; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .ft-brand p      { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  /* ── Section header ── */
  .section-header         { margin-bottom: 38px; }
  .section-eyebrow::before,
  .section-eyebrow::after { width: 20px; }

  /* ── Section wave shorter on mobile ── */
  .section-wave-top svg,
  .section-wave-bottom svg { height: 48px; }
  .services { padding-top: calc(var(--section-py) + 28px); padding-bottom: calc(var(--section-py) + 28px); }
  .whyus    { padding-top: calc(var(--section-py) + 28px); padding-bottom: calc(var(--section-py) + 28px); }
}

/* ── Very Small (≤400px) ── */
@media (max-width: 400px) {
  .hero-title  { font-size: clamp(1.75rem, 10vw, 2.2rem); }
  .hero-eyebrow { display: none; }
  .hero-actions .btn { font-size: 0.875rem; padding: 13px 16px; }

  .statsbar-grid { gap: 10px 0; padding: 18px 4px; }
  .sbar-val      { font-size: 1.2rem; }
  .sbar-label    { font-size: 0.62rem; }

  /* Prevent iOS font-size zoom on focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  .bk-form-wrap     { padding: 20px 14px; }
  .testi-card       { padding: 22px 16px 20px; }
  .pkg-head         { padding: 34px 16px 18px; }
  .pkg-body         { padding: 18px 16px 24px; }
  .arm-body         { padding: 16px 16px 20px; }
  .ct-card          { padding: 20px 14px; }
  .footer-grid      { gap: 22px; }
  .svc-card         { padding: 24px 18px; }
  .nav-link         { font-size: 0.95rem; }
  .section-title    { font-size: clamp(1.5rem, 8vw, 2rem); }
}
