/* =========================================================================
   La Vie En Boat — Public Landing Page
   Self-contained stylesheet (independent of the admin Vuexy template).
   Theme: Premium & airy · ocean blue + white · modern, responsive.
   ========================================================================= */

:root {
  --ocean-900: #06243f;
  --ocean-800: #0a3458;
  --ocean-700: #0e4a78;
  --ocean-600: #15639d;
  --ocean-500: #1f82c8;
  --ocean-400: #43a3e6;
  --ocean-300: #84c6f2;
  --ocean-200: #b9defa;
  --ocean-100: #e6f3fd;
  --ocean-50:  #f5fbff;

  /* Hero accent — uses the site-wide ocean blue for consistency */
  --teal: #1f82c8;
  --teal-bright: #43a3e6;
  --teal-deep: #0e4a78;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --sand: #faf7f1;
  --ink: #0c1f30;
  --ink-soft: #2c4257;
  --muted: #66809a;
  --line: #e9eff5;
  --line-soft: #f1f5f9;
  --white: #ffffff;

  --gradient-hero: linear-gradient(135deg, rgba(6, 26, 46, 0.88) 0%, rgba(10, 48, 80, 0.65) 50%, rgba(6, 26, 46, 0.35) 100%);
  --gradient-cta: linear-gradient(135deg, #2a92d8 0%, #0e4a78 100%);
  --gradient-text: linear-gradient(120deg, #1f82c8, #43a3e6);

  --shadow-xs: 0 1px 2px rgba(12, 31, 48, 0.05);
  --shadow-sm: 0 6px 20px rgba(14, 74, 120, 0.07);
  --shadow-md: 0 18px 44px rgba(14, 74, 120, 0.12);
  --shadow-lg: 0 32px 80px rgba(6, 36, 63, 0.20);
  --shadow-glow: 0 18px 50px rgba(31, 130, 200, 0.35);

  --radius-xl: 28px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --max: 1240px;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--ocean-200); color: var(--ocean-900); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.bg-soft { background: linear-gradient(180deg, var(--ocean-50), #ffffff); }
.bg-deep { background: var(--ocean-900); color: #fff; }

/* ---- Typography helpers ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean-500);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--ocean-400), transparent);
  border-radius: 2px;
}
.section-head { max-width: 680px; margin: 0 auto 72px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { background: var(--ocean-300); }
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; font-weight: 800; letter-spacing: -0.025em; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); color: var(--ocean-900); }
.section-head p { color: var(--muted); font-size: 1.12rem; margin: 0; }
.text-gradient { background: var(--gradient-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 54px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
/* Keep label/icon above the shine sweep */
.btn > * { position: relative; z-index: 1; }
.btn i { transition: transform .35s var(--ease); position: relative; z-index: 1; }
.btn:active { transform: translateY(0) scale(.985); }

/* Accessible keyboard focus ring (mouse clicks stay clean) */
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(31, 130, 200, 0.35); }

/* Shine sweep that glides across on hover */
.btn-primary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 55%; height: 100%;
  z-index: 0;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left .6s var(--ease);
}
.btn-primary:hover::before { left: 160%; }
.btn-outline::before { background: linear-gradient(100deg, transparent, rgba(31,130,200,0.12), transparent); }
.btn-outline:hover::before { left: 160%; }

.btn-primary {
  background: linear-gradient(90deg, #2a92d8 0%, #0e4a78 100%);
  background-clip: padding-box; -webkit-background-clip: padding-box;
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(31, 130, 200, 0.45); }
.btn-primary:hover i.fa-arrow-right { transform: translateX(4px); }

.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; transform: translateY(-3px); }
.btn-ghost:focus-visible { box-shadow: 0 0 0 4px rgba(255,255,255,0.4); }

.btn-outline { background: #fff; color: var(--ocean-700); border-color: var(--line); box-shadow: var(--shadow-xs); }
.btn-outline:hover { border-color: var(--ocean-300); color: var(--ocean-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-outline:hover i.fa-arrow-right { transform: translateX(4px); }

.btn-sm { min-height: 44px; padding: 0 24px; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* =========================================================================
   NAVBAR
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s;
  padding: 22px 0;
  padding-top: max(22px, env(safe-area-inset-top));
  border-bottom: 1px solid transparent;
}
/* Subtle glass chip on the logo that softens smoothly on scroll (no hard pop).
   It keeps a faint backdrop at all times and just eases its opacity/scale. */
.nav-logo {
  display: inline-flex; padding: 6px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(6,36,63,0.10);
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
}
.nav.scrolled .nav-logo { background: rgba(255,255,255,0); box-shadow: 0 0 0 rgba(6,36,63,0); padding: 4px 0; }
.nav-mobile-cta { display: none; }
.nav.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 48px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .nav-logo img { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.92);
  transition: color .25s;
  position: relative;
}
/* Center-expanding underline indicator (replaces the grey pill) */
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--ocean-400), var(--ocean-500));
  transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: calc(100% - 36px); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--ocean-600); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: #fff; font-size: 0.96rem;
}
.nav.scrolled .nav-phone { color: var(--ocean-700); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; border-radius: 13px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; position: relative; transition: transform .3s var(--ease), background .3s; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: #fff;
  transition: transform .3s var(--ease), top .3s var(--ease), background .3s; border-radius: 2px;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.scrolled .nav-toggle span,
.nav.scrolled .nav-toggle span::before,
.nav.scrolled .nav-toggle span::after { background: var(--ink); }
/* Morph the three lines into an X when the menu is open */
.nav-toggle.is-open span { background: transparent !important; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }
.nav.scrolled .nav-toggle.is-open span::before,
.nav.scrolled .nav-toggle.is-open span::after { background: var(--ink); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 116%; object-fit: cover; }
.hero-bg .hero-video { width: 100%; height: 116%; object-fit: cover; display: block; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 90% at 15% 100%, rgba(6,36,63,0.85), transparent 60%);
}
/* Soft blend into the section below so the hero never ends on a hard edge */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06) 60%, var(--white));
  pointer-events: none;
}
/* Subtle light-ray / noise texture for depth (pure CSS, no asset) */
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
  background:
    radial-gradient(140% 120% at 80% -10%, rgba(132,198,242,0.18), transparent 45%),
    radial-gradient(100% 80% at 0% 0%, rgba(255,255,255,0.06), transparent 50%);
  mix-blend-mode: screen;
}
.hero-inner { position: relative; z-index: 2; padding: 140px 0 100px; max-width: 760px; margin: 0 auto; text-align: center; }
/* Center the inline flex groups inside the centered hero block */
.hero-inner .hero-actions,
.hero-inner .hero-features { justify-content: center; }
.hero-inner p { margin-left: auto; margin-right: auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 9px 18px; border-radius: var(--radius-pill);
  font-size: 0.86rem; font-weight: 600; margin-bottom: 28px; backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(0, 0, 0, 0.15), 0 0 10px rgba(255, 255, 255, 0.05);
}
.badge-pulse {
  width: 8px; height: 8px; background: var(--teal-bright); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(67, 163, 230, 0.7);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(67, 163, 230, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(67, 163, 230, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(67, 163, 230, 0); }
}
/* Headline uses the same site font as the rest of the page */
.hero h1 {
  font-family: var(--font); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.3rem); line-height: 1.08;
  margin-bottom: 24px; letter-spacing: -0.025em;
  text-shadow: 0 4px 24px rgba(6, 26, 46, 0.5);
}
.hero h1 .accent {
  display: inline-block; color: var(--teal-bright);
  -webkit-text-fill-color: var(--teal-bright);
  filter: drop-shadow(0 2px 12px rgba(31, 130, 200, 0.35));
}
.hero p { font-size: 1.18rem; color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 0 36px; font-weight: 400; font-family: var(--font); text-shadow: 0 2px 10px rgba(6, 26, 46, 0.4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
/* Hero-scoped accent on the primary CTA (matches the mock) */
.hero-actions .btn-primary {
  background: linear-gradient(90deg, var(--teal-bright) 0%, var(--teal-deep) 100%);
  background-clip: padding-box; -webkit-background-clip: padding-box;
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(31, 130, 200, 0.40);
}
.hero-actions .btn-primary:hover { box-shadow: 0 22px 52px rgba(31, 130, 200, 0.52); }
.hero-actions .btn-primary:focus-visible { box-shadow: 0 0 0 4px rgba(67, 163, 230, 0.4); }
/* "How it works" with a circular play icon */
.hero-actions .btn-ghost { gap: 11px; }
.play-ic {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.62rem; padding-left: 2px;
}

/* ---- Inline value-prop strip inside the hero ---- */
/* Minimal, flat style: a subtle dark gradient bar with outlined icons and thin
   vertical dividers — no frosted card, no filled icon tiles. */
.hero-features {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding: 4px 0; margin-bottom: 40px; max-width: 920px;
  background: linear-gradient(90deg, rgba(6,26,46,0.55), rgba(6,26,46,0.30) 50%, rgba(6,26,46,0.10));
  border-radius: var(--radius);
}
.hero-feature {
  position: relative; display: flex; gap: 14px; align-items: center;
  padding: 18px 24px;
  transition: transform .35s var(--ease);
}
/* Thin vertical divider between items */
.hero-feature:not(:last-child)::after {
  content: ""; position: absolute; top: 24%; right: 0; height: 52%; width: 1px;
  background: rgba(255,255,255,0.16);
}
.hero-feature:hover { transform: translateY(-2px); }

/* Outlined (ghost) icon — thin teal stroke, no background tile */
.hf-ic {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid rgba(67,163,230,0.55);
  color: var(--teal-bright); font-size: 1.05rem;
  transition: border-color .3s, color .3s, box-shadow .35s var(--ease);
}
.hero-feature:hover .hf-ic {
  border-color: var(--teal-bright); color: #fff;
  box-shadow: 0 0 14px rgba(67,163,230,0.30);
}
.hf-title { display: block; font-weight: 700; font-size: 0.92rem; color: #fff; line-height: 1.25; letter-spacing: -0.01em; }
.hf-sub { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.62); line-height: 1.35; margin-top: 3px; }

/* Single translucent glass bar holding all four stats (matches the mock) */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: 880px; padding: 22px 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.20), inset 0 1px 1px rgba(255,255,255,0.08);
}
.hero-stat { position: relative; padding: 4px 28px; text-align: left; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.14); }
.hero-stat .num {
  font-size: 2.2rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; color: #fff;
}
.hero-stat .num .star { color: var(--teal-bright); }
.hero-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: .22em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .mouse {
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 16px; position: relative;
}
.hero-scroll .mouse::after {
  content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 3px; animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } }

/* hero entrance */
.hero-inner > * { opacity: 0; transform: translateY(26px); animation: heroUp .9s var(--ease) forwards; }
.hero-inner > *:nth-child(1) { animation-delay: .1s; }
.hero-inner > *:nth-child(2) { animation-delay: .22s; }
.hero-inner > *:nth-child(3) { animation-delay: .34s; }
.hero-inner > *:nth-child(4) { animation-delay: .46s; }
.hero-inner > *:nth-child(5) { animation-delay: .58s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* =========================================================================
   FEATURES STRIP
   ========================================================================= */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.feature {
  text-align: left; padding: 38px 30px; border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
/* Gradient border glow that fades in on hover (premium edge) */
.feature::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--ocean-400), rgba(0,242,254,0.55), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.feature:hover { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(14,74,120,0.16); border-color: transparent; }
.feature:hover::before { opacity: 1; }
/* Glassmorphic, softly-glowing icon disc */
.feature-icon {
  width: 64px; height: 64px; margin: 0 0 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 30% 25%, rgba(67,163,230,0.28), rgba(31,130,200,0.12));
  border: 1px solid rgba(67,163,230,0.30); backdrop-filter: blur(6px);
  color: var(--ocean-500); font-size: 1.55rem;
  box-shadow: 0 8px 22px rgba(31,130,200,0.18), inset 0 1px 1px rgba(255,255,255,0.6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s;
}
.feature:hover .feature-icon {
  transform: scale(1.08) translateY(-2px); color: var(--ocean-600);
  box-shadow: 0 12px 30px rgba(31,130,200,0.35), 0 0 22px rgba(0,242,254,0.25), inset 0 1px 1px rgba(255,255,255,0.7);
}
.feature h3 { font-size: 1.16rem; margin-bottom: 9px; color: var(--ocean-900); }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* =========================================================================
   SERVICES GRID
   ========================================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.svc-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.09); }
.svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6,36,63,0.45));
  opacity: 0; transition: opacity .45s; pointer-events: none;
}
.svc-card:hover .svc-media::after { opacity: 1; }
.svc-badges { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; z-index: 2; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 0.74rem; font-weight: 700; letter-spacing: .03em;
  box-shadow: var(--shadow-xs);
}
.badge-type { background: rgba(255,255,255,0.95); color: var(--ocean-700); text-transform: uppercase; backdrop-filter: blur(4px); }
.badge-feat { background: linear-gradient(135deg, #ffc14d, #ff9d2e); color: #4a2c00; }
.svc-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
/* Category as a high-contrast micro-capsule that visually groups cards */
.svc-cat {
  display: inline-flex; align-items: center;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  color: var(--ocean-600); margin-bottom: 12px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(31,130,200,0.08); border: 1px solid rgba(31,130,200,0.18);
}
.svc-card h3 { font-size: 1.32rem; margin-bottom: 10px; color: var(--ocean-900); }
.svc-card h3 a { transition: color .25s; }
.svc-card:hover h3 a { color: var(--ocean-600); }
.svc-desc { color: var(--muted); font-size: 0.97rem; margin: 0 0 18px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.svc-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.svc-meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; color: var(--ink-soft); font-weight: 500; }
.svc-meta i { color: var(--ocean-400); }
.svc-highlights { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.svc-highlights li { font-size: 0.9rem; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.svc-highlights li i { color: var(--ocean-500); flex-shrink: 0; font-size: 0.95rem; }
.svc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
/* Pricing gets a dedicated highlight chip so it pops for conversion */
.svc-price {
  padding: 8px 14px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(31,130,200,0.10), rgba(67,163,230,0.05));
  border: 1px solid rgba(31,130,200,0.14);
}
.svc-price .from { font-size: 0.68rem; color: var(--muted); display: block; text-transform: uppercase; letter-spacing: .08em; }
.svc-price .amt {
  font-size: 1.95rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  background: var(--gradient-cta); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.svc-price .amt small { font-size: 0.76rem; font-weight: 600; color: var(--muted); -webkit-text-fill-color: var(--muted); }
.svc-price .strike { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; display: block; }
/* Arrow nudges right on the card's Book button to prompt action */
.svc-foot .btn-primary:hover i.fa-arrow-right { transform: translateX(4px); }

.services-empty { text-align: center; padding: 70px 0; color: var(--muted); grid-column: 1 / -1; }
.services-cta { text-align: center; margin-top: 56px; }

/* =========================================================================
   ABOUT / SPLIT
   ========================================================================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.split-media { position: relative; }
/* Gradient frame wrapping the photo adds depth and a premium edge */
.split-frame {
  position: relative; border-radius: var(--radius-xl); padding: 8px;
  background: linear-gradient(140deg, rgba(67,163,230,0.35), rgba(255,255,255,0.05) 45%, rgba(31,130,200,0.25));
  box-shadow: var(--shadow-lg);
}
.split-frame img { border-radius: calc(var(--radius-xl) - 8px); aspect-ratio: 4/3.4; object-fit: cover; width: 100%; display: block; }
.split-media .blob {
  position: absolute; inset: auto -40px -40px auto; width: 220px; height: 220px; z-index: -1;
  background: radial-gradient(circle, var(--ocean-200), transparent 70%); filter: blur(10px); opacity: .8;
}
/* Geometric dot pattern peeking out top-left for layered depth */
.split-media .dots {
  position: absolute; top: -28px; left: -28px; width: 130px; height: 130px; z-index: -1;
  background-image: radial-gradient(var(--ocean-300) 1.6px, transparent 1.6px);
  background-size: 16px 16px; opacity: .55;
}
.split-media .float-card {
  position: absolute; bottom: -28px; left: -28px; background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.6);
  padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 16px;
}
.split-media .float-card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-cta); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: var(--shadow-glow); }
.split-media .float-card .num { font-size: 1.5rem; font-weight: 800; color: var(--ocean-900); line-height: 1; }
.split-media .float-card .lbl { font-size: 0.84rem; color: var(--muted); }
.split-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--ocean-900); }
.split-text p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 20px; }
.checklist { list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 16px; }
.checklist li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.checklist li i { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--ocean-100), var(--ocean-50)); color: var(--ocean-600); display: flex; align-items: center; justify-content: center; font-size: 0.92rem; flex-shrink: 0; }

/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px; }
.gallery-grid a { border-radius: var(--radius); overflow: hidden; position: relative; display: block; }
/* Darkening wash that fades in to support the caption */
.gallery-grid a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,26,46,0.78));
  opacity: 0; transition: opacity .45s var(--ease); pointer-events: none;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }
/* Contextual caption card sliding up from the bottom on hover */
.gallery-cap {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px); color: #fff;
  opacity: 0; transform: translateY(14px); transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.gallery-grid a:hover .gallery-cap { opacity: 1; transform: translateY(0); }
.gallery-cap-title { font-weight: 700; font-size: 0.92rem; line-height: 1.25; }
.gallery-cap-go { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; white-space: nowrap; color: var(--ocean-200); }

/* =========================================================================
   CTA BANNER
   ========================================================================= */
.cta-banner {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; color: #fff;
  padding: 96px 56px; text-align: center;
}
.cta-banner-bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,36,63,0.92), rgba(14,74,120,0.8)); }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { font-size: 1.16rem; color: rgba(255,255,255,0.9); max-width: 580px; margin: 0 auto 34px; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; }
.contact-cards { display: grid; gap: 18px; align-content: start; }
.contact-card {
  display: flex; gap: 18px; align-items: center;
  padding: 24px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: var(--ocean-100); }
.contact-card .ic { width: 54px; height: 54px; flex-shrink: 0; border-radius: 16px; background: linear-gradient(135deg, var(--ocean-100), var(--ocean-50)); color: var(--ocean-600); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; }
.contact-card h4 { margin: 0 0 4px; font-size: 1.05rem; color: var(--ocean-900); }
.contact-card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-map iframe, .contact-map img { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; object-fit: cover; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: var(--ocean-900); color: rgba(255,255,255,0.72); padding: 88px 0 0; position: relative; overflow: hidden; }
.footer::before { content: ""; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(31,130,200,0.22), transparent 70%); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; position: relative; }
.footer-logo img { height: 52px; margin-bottom: 20px; }
.footer p { font-size: 0.95rem; line-height: 1.75; }
.footer h5 { color: #fff; font-size: 1.02rem; margin: 0 0 20px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: 0.95rem; transition: color .25s, padding .25s; }
.footer ul a:hover { color: var(--ocean-300); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--gradient-cta); transform: translateY(-4px); }
.footer-contact-line { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; font-size: 0.95rem; }
.footer-contact-line i { color: var(--ocean-300); width: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.88rem; position: relative; }

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.fab-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
  box-shadow: 0 12px 32px rgba(37,211,102,0.5); transition: transform .3s var(--ease);
}
.fab-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPulse 2.2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.fab-wa:hover { transform: scale(1.1); }

/* =========================================================================
   SCROLL ANIMATIONS
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-inner > * { opacity: 1; transform: none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 96px 0; }
}
@media (max-width: 860px) {
  body { font-size: 15px; }

  /* ---- Navbar: just logo + hamburger; everything else in the menu ---- */
  .nav-links, .nav-phone, .nav-cta-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: calc(100% + 10px); left: 18px; right: 18px;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(18px);
    border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  }
  .nav-links.open a { color: var(--ink); padding: 14px 18px; border-radius: 12px; font-size: 1.02rem; }
  .nav-links.open a:hover { background: var(--ocean-50); }
  /* Book Now + phone live at the bottom of the dropdown */
  .nav-mobile-cta { display: block; margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
  .nav-mobile-phone { display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 700; color: var(--ocean-700) !important; margin-bottom: 12px; }
  .nav-mobile-phone i { color: var(--ocean-500); }

  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-media .float-card { left: 16px; bottom: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section { padding: 80px 0; }

  /* ---- Hero (tablet / large phone) ---- */
  /* Center the copy vertically and pin the action buttons to the bottom of the
     hero viewport (same behaviour as phones, applied from here down). */
  .hero { align-items: center; }
  .hero > .container { position: static; }
  .hero-inner { position: static; padding: 130px 0 140px; max-width: 600px; margin: 0 auto; text-align: center; }
  .hero-badge { margin-bottom: 22px; }
  .hero h1 { font-size: clamp(2.3rem, 8vw, 3.4rem); margin-bottom: 18px; }
  .hero p { font-size: 1.1rem; margin-bottom: 32px; }
  .hero-actions {
    gap: 12px; margin-bottom: 0; justify-content: center;
    position: absolute; left: 0; right: 0;
    bottom: calc(24px + env(safe-area-inset-bottom));
    padding: 0 22px; z-index: 3;
  }
  .hero-features { grid-template-columns: repeat(2, 1fr); max-width: 520px; }
  .hero-stat .num { font-size: 1.8rem; }
}
@media (max-width: 560px) {
  .services-grid, .features, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 210px; }
  .gallery-grid .wide, .gallery-grid .tall { grid-column: auto; grid-row: auto; }
  .cta-banner { padding: 56px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }

  /* ---- Hero (phone) ---- */
  /* Fill the full phone viewport. 100svh accounts for the mobile browser chrome
     (address bar) so there's no white gap at the bottom; 100vh is a fallback. */
  .hero { min-height: 100vh; min-height: 100svh; max-height: none; align-items: center; }
  .hero-bg img,
  .hero-bg .hero-video { height: 116%; }
  /* Stronger, directional overlay so any photo keeps text legible */
  .hero-bg::after { background: linear-gradient(120deg, rgba(6,36,63,0.55), rgba(6,36,63,0.25)); }
  .hero-bg::before { background: linear-gradient(180deg, rgba(6,36,63,0.10) 0%, rgba(6,36,63,0.35) 50%, rgba(6,36,63,0.92) 100%); }
  /* Let the hero copy go edge-to-edge: cancel the .container padding so the
     scrim is full-bleed and nothing can overflow the viewport. */
  .hero > .container { padding: 0; max-width: none; }
  /* Local scrim behind the copy block only — photo stays vivid, text always crisp */
  /* position: static so the absolutely-positioned .hero-actions anchors to the
     full .hero section (not to .hero-inner) and can pin to the screen bottom. */
  .hero > .container { position: static; }
  .hero-inner {
    position: static;
    /* Extra bottom padding reserves room for the bottom-pinned .hero-actions */
    padding: 28px 22px 140px; max-width: none;
    background: transparent;
    text-align: center;
  }
  .hero { padding-bottom: 0; }
  .hero-badge { font-size: 0.8rem; padding: 8px 15px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(1.9rem, 8.2vw, 2.7rem); line-height: 1.14; margin-bottom: 14px; overflow-wrap: break-word; word-break: break-word; }
  .hero p { font-size: 1.02rem; line-height: 1.55; margin-bottom: 26px; color: rgba(255,255,255,0.92); max-width: 100%; }

  /* Button hierarchy: primary solid full-width; secondary becomes a quiet text link.
     On phones the actions are pinned to the bottom of the hero viewport while the
     rest of the copy stays vertically centered. */
  .hero-actions {
    flex-direction: column; align-items: stretch; gap: 14px; margin-bottom: 0;
    position: absolute; left: 0; right: 0;
    bottom: calc(22px + env(safe-area-inset-bottom));
    padding: 0 22px; z-index: 3;
  }
  .hero-actions .btn-primary { width: 100%; }
  .hero-actions .btn-ghost {
    width: 100%; background: transparent; border-color: transparent; min-height: auto;
    padding: 4px; font-weight: 600; color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 5px;
  }
  .hero-actions .btn-ghost:hover { background: transparent; transform: none; color: #fff; }

  /* Hero feature strip: compact 2-up on phones */
  .hero-features {
    grid-template-columns: repeat(2, 1fr); gap: 0; padding: 6px; margin-bottom: 26px;
    max-width: none;
  }
  .hero-feature { padding: 12px 12px; gap: 10px; }
  /* Only divide between the two columns (odd items), and add a row separator */
  .hero-feature:not(:last-child)::after { content: none; }
  .hero-feature:nth-child(odd)::after {
    content: ""; top: 22%; height: 56%;
  }
  .hero-feature:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.12); }
  .hf-ic { width: 36px; height: 36px; font-size: 0.92rem; }
  .hf-title { font-size: 0.82rem; }
  .hf-sub { font-size: 0.72rem; }

  /* Stats: a clean 2×2 grid in a subtle panel */
  .hero-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
    padding: 8px 0; max-width: none;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; backdrop-filter: blur(10px); box-shadow: none;
  }
  .hero-stat { padding: 14px 16px; text-align: center; }
  .hero-stat + .hero-stat { border-left: none; }
  .hero-stat:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.14); }
  .hero-stat:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.14); }
  .hero-stat .num { font-size: 1.7rem; }
  .hero-stat .lbl { font-size: 0.74rem; margin-top: 4px; }

  /* The big bottom blend isn't needed once the copy has its own scrim */
  .hero::after { display: none; }
  .hero-scroll { display: none; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 1.92rem; }
  .hero-stat .num { font-size: 1.45rem; }
  .hero-stat .lbl { font-size: 0.7rem; }
}
