/* ═══════════════════════════════════════════════
   Blessed Way — Shared Stylesheet
   Version: 1.0 · 2026
═══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  --black:      #1A1A1A;
  --black-deep: #0A0A0A;
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --fog:        #CCD1D6;
  --fog-light:  #E8EAEC;
  --blue:       #1164B3;
  --deep-blue:  #09203A;
  --text-muted: rgba(26,26,26,0.45);
  --text-light: rgba(255,255,255,0.6);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-pill: 100px;
  --radius-card: 12px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 2px 8px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.09);

  --nav-height: 76px;
  --section-pad: clamp(72px, 8vw, 120px);
  --container: 1200px;
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── TYPOGRAPHY HELPERS ─────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label--light { color: rgba(255,255,255,0.4); }

.h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.body-lg {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(26,26,26,0.65);
}

/* ── BUTTONS ────────────────────────────────── */

/* Glass — dark backgrounds */
.btn-glass {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: none; position: relative; overflow: hidden;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.08);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.08);
  border: 0.5px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.93);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 4px 20px rgba(0,0,0,0.18);
  transition: background 0.25s var(--ease-smooth),
              border-color 0.25s var(--ease-smooth),
              transform 0.25s var(--ease-spring),
              box-shadow 0.25s var(--ease-smooth);
}
.btn-glass::before {
  content: '';
  position: absolute;
  top: 0; left: -110%; width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-smooth);
}
.btn-glass:hover::before { left: 160%; }
.btn-glass:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 0 rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.22);
}
.btn-glass:active { transform: translateY(0) scale(0.978); transition-duration: 0.1s; }

.btn-glass--wa {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.28);
}
.btn-glass--wa:hover { background: rgba(37,211,102,0.18); border-color: rgba(37,211,102,0.38); }

/* Solid dark — light backgrounds */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; background: var(--black); color: var(--white); border: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s var(--ease-smooth),
              transform 0.25s var(--ease-spring),
              box-shadow 0.2s var(--ease-smooth);
}
.btn-dark:hover {
  background: #2d2d2d;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 24px rgba(0,0,0,0.2);
}
.btn-dark:active { transform: translateY(0) scale(0.978); }

/* Outline — light backgrounds */
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; background: transparent; color: var(--black);
  border: 1px solid rgba(26,26,26,0.22);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-spring);
}
.btn-outline:hover {
  background: rgba(26,26,26,0.04);
  border-color: rgba(26,26,26,0.5);
  transform: translateY(-1px);
}

/* Blue CTA variant */
.btn-blue {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; background: var(--blue); color: var(--white); border: none;
  transition: background 0.2s ease, transform 0.25s var(--ease-spring), box-shadow 0.2s ease;
}
.btn-blue:hover {
  background: #0e55a0;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(17,100,179,0.35);
}

/* Deep-blue solid (for charter page & service pages with light bg) */
.btn-deep {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; background: var(--deep-blue); color: var(--white); border: none;
  box-shadow: 0 2px 12px rgba(9,32,58,0.25);
  transition: background 0.2s var(--ease-smooth), transform 0.25s var(--ease-spring), box-shadow 0.2s;
}
.btn-deep:hover { background: #0e2d4e; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(9,32,58,0.3); }
.btn-deep:active { transform: translateY(0) scale(0.978); }

/* WA glass on light bg */
.btn-glass-wa {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  background: rgba(37,211,102,0.1); border: 0.5px solid rgba(37,211,102,0.3);
  color: #1a6634; backdrop-filter: blur(20px);
  transition: all 0.2s ease;
}
.btn-glass-wa:hover { background: rgba(37,211,102,0.16); border-color: rgba(37,211,102,0.45); transform: translateY(-1px); }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-group--center { justify-content: center; }

/* ── LAYOUT UTILITIES ───────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--black-deep); color: var(--white); }
.section--off { background: var(--off-white); }
.section--fog { background: #f0f2f4; }
.section--deep { background: var(--deep-blue); color: white; }
.section--alt { background: #F0F4F8; }

.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-header--center { text-align: center; }

.section-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
}
.section-label--light { color: rgba(255,255,255,0.45); }

.divider {
  width: 32px;
  height: 1px;
  background: var(--black);
  margin: 20px 0;
  opacity: 0.2;
}
.divider--center { margin: 20px auto; }
.divider--light { background: rgba(255,255,255,0.2); opacity: 1; }

/* ── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 clamp(20px, 4vw, 64px);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-smooth),
              backdrop-filter 0.4s var(--ease-smooth),
              box-shadow 0.4s var(--ease-smooth),
              height 0.3s ease;
}
.nav--scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  height: 64px;
}
/* Nav light variant — for pages with light background hero */
.nav--light {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(9,32,58,0.07);
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 40px; width: auto; display: block; transition: opacity 0.25s ease; }
.nav-logo:hover img { opacity: 0.82; }

.nav .logo-for-dark  { display: block; }
.nav .logo-for-light { display: none; }
.nav.nav--scrolled .logo-for-dark  { display: none; }
.nav.nav--scrolled .logo-for-light { display: block; }
.nav.nav--light .logo-for-dark  { display: none; }
.nav.nav--light .logo-for-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.nav--scrolled .nav-link,
.nav--light .nav-link { color: rgba(26,26,26,0.55); }
.nav-link:hover { color: white; }
.nav--scrolled .nav-link:hover,
.nav--light .nav-link:hover { color: var(--black); }
.nav-link--active { color: white !important; }
.nav--scrolled .nav-link--active,
.nav--light .nav-link--active { color: var(--black) !important; }

.nav-lang {
  font-family: var(--font-body);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  transition: all 0.2s ease;
}
.nav--scrolled .nav-lang,
.nav--light .nav-lang { border-color: rgba(26,26,26,0.15); color: rgba(26,26,26,0.45); }
.nav-lang:hover { color: white; border-color: rgba(255,255,255,0.4); }
.nav--scrolled .nav-lang:hover,
.nav--light .nav-lang:hover { color: var(--black); border-color: rgba(26,26,26,0.4); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  transition: all 0.2s ease;
}
.nav--scrolled .nav-cta,
.nav--light .nav-cta { background: var(--black); border-color: var(--black); color: white; }
.nav-cta:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.35); }
.nav--scrolled .nav-cta:hover,
.nav--light .nav-cta:hover { background: #333; }

.nav-toggle { display: none; }
.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: white; transition: all 0.3s ease;
}
.nav--scrolled .nav-hamburger span,
.nav--light .nav-hamburger span { background: var(--black); }

.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.nav-toggle:checked ~ .nav-mobile { opacity: 1; pointer-events: auto; }
.nav-mobile .nav-link { font-size: 14px; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }
.nav-mobile .nav-link:hover { color: white; }

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

/* ── HERO — DARK (Homepage style) ──────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.65) saturate(0.85) contrast(0.95);
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.6) 80%,
    rgba(10,10,10,0.9) 100%);
}
.hero-bg-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0A0A0A 0%, #10121A 40%, #0A1929 80%);
  z-index: -1;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.5;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: calc(var(--nav-height) + 40px) clamp(20px, 5vw, 80px) 80px;
  max-width: 900px;
}
.hero-label {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300; line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.82); }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 16.5px);
  font-weight: 300; line-height: 1.78;
  color: rgba(255,255,255,0.48);
  background-color: rgba(0,0,0,0.22);
  padding-left: 2px;
  padding-right: 2PX;
  padding-top: 1px;
  padding-bottom: 1px;
  max-width: 560px; margin-bottom: 48px;
}
.hero-ctas { margin-bottom: 56px; }
.hero-scroll {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  animation: float 3s ease-in-out infinite;
}
.hero-scroll svg { flex-shrink: 0; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ── HERO — LIGHT SPLIT (Charter/Service style) */
.hero-split {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}
.hero-split-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-height) + 60px) clamp(32px, 5vw, 80px) 80px;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--blue);
}
.hero-split-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300; line-height: 1.07;
  letter-spacing: -0.015em;
  color: var(--deep-blue); margin-bottom: 24px;
}
.hero-split-title em { font-style: italic; color: rgba(9,32,58,0.65); }
.hero-split-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300; line-height: 1.8;
  color: rgba(9,32,58,0.5); max-width: 440px; margin-bottom: 40px;
}
.hero-split-right { position: relative; overflow: hidden; }
.hero-split-right::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 80px;
  background: linear-gradient(90deg, white, transparent);
  z-index: 1;
}
.hero-split-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  background: linear-gradient(160deg, #0a1929 0%, #1a3a5c 100%);
}
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-right { height: 50vw; min-height: 320px; }
  .hero-split-right::before { display: none; }
  .hero-split-left { padding: calc(var(--nav-height) + 40px) clamp(20px, 4vw, 48px) 48px; }
}

/* ── HERO — SERVICE (dark, less tall) ────────── */
.hero-service {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black-deep);
}
.hero-service .hero-bg {
  filter: brightness(0.25) saturate(0.6);
}
.hero-service .hero-content {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 64px;
  max-width: 800px;
}
.hero-service .hero-title {
  font-size: clamp(36px, 5vw, 64px);
}

/* ── BREADCRUMB ──────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.65); }
.breadcrumb span { opacity: 0.5; }

/* ── TRUST BAR ──────────────────────────────── */
.trust { background: var(--white); padding: 48px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.trust-items {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 28px; position: relative;
}
.trust-item + .trust-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); height: 20px; width: 1px;
  background: rgba(0,0,0,0.1);
}
.trust-icon { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.trust-text {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(26,26,26,0.6); white-space: nowrap;
}
@media (max-width: 640px) {
  .trust-item { padding: 10px 14px; }
  .trust-text { font-size: 10px; }
}

/* ── SERVICES GRID ──────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.2s ease;
  cursor: default;
}
.service-card:hover { background: #fafafa; }
.service-icon { width: 36px; height: 36px; color: var(--blue); flex-shrink: 0; }
.service-card h3 {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 400; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--black);
}
.service-card p {
  font-size: 13.5px; font-weight: 300; line-height: 1.7;
  color: rgba(26,26,26,0.55); flex: 1;
}
.service-link {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-top: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* Charter card */
.service-card--charter {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0e2d4e 100%);
  color: white; grid-column: 1 / -1;
  flex-direction: row; align-items: center;
  justify-content: space-between; gap: 40px;
}
.service-card--charter:hover { background: linear-gradient(135deg, #0d2444 0%, #122f52 100%); }
.service-card--charter .service-icon { color: rgba(255,255,255,0.65); width: 40px; height: 40px; flex-shrink: 0; }
.service-card--charter h3 { font-size: 22px; color: white; }
.service-card--charter p  { color: rgba(255,255,255,0.5); }
.service-card--charter .service-link { color: rgba(255,255,255,0.55); }
.service-card--charter .service-link:hover { color: white; }
.charter-tag {
  display: inline-block; margin-bottom: 12px;
  font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); border: 0.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.55); padding: 4px 12px; border-radius: 100px;
}
.charter-luna {
  display: flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.charter-luna::before { content: '×'; font-size: 12px; color: rgba(255,255,255,0.25); }
@media (max-width: 768px) {
  .service-card--charter { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── BENEFITS LIST ──────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; overflow: hidden;
}
.benefit-item {
  padding: clamp(24px, 2.5vw, 36px);
  border-right: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  background: var(--white);
}
.benefit-item:nth-child(even) { border-right: none; }
.benefit-item:nth-last-child(-n+2) { border-bottom: none; }
.benefit-icon { width: 28px; height: 28px; color: var(--blue); margin-bottom: 12px; }
.benefit-item h4 {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--black); margin-bottom: 8px; letter-spacing: -0.01em;
}
.benefit-item p {
  font-size: 13px; font-weight: 300; line-height: 1.7;
  color: rgba(26,26,26,0.55);
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { border-right: none !important; }
  .benefit-item:last-child { border-bottom: none; }
}

/* ── PRICE CALCULATOR ───────────────────────── */
.calc-card {
  background: var(--white); border-radius: 20px;
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-card);
  max-width: 680px; margin: 0 auto;
}
.calc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(26,26,26,0.45);
}
.calc-field select, .calc-field input {
  width: 100%; height: 50px; padding: 0 16px;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 400;
  color: var(--black); background: var(--white);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.calc-field select:focus, .calc-field input:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(17,100,179,0.08);
}
.calc-airport {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px; padding: 14px 16px;
  background: var(--off-white); border-radius: 10px; cursor: pointer;
}
.calc-airport input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer;
}
.calc-airport span { font-size: 13px; font-weight: 400; color: rgba(26,26,26,0.7); }
#calcResult {
  display: none; margin-top: 20px; padding: 20px 24px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0e2d4e 100%);
  border-radius: 12px; color: white;
}
#calcResult.visible { display: block; }
.calc-result-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 8px;
}
#calcPrice {
  font-family: var(--font-display); font-size: 48px;
  font-weight: 300; color: white; line-height: 1; margin-bottom: 10px;
}
#calcPrice span { font-size: 20px; opacity: 0.55; margin-left: 4px; }
#calcZoneNote { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.5; }
.calc-note {
  margin-top: 14px; font-size: 12px;
  color: rgba(26,26,26,0.4); line-height: 1.6; text-align: center;
}
@media (max-width: 560px) { .calc-row { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ───────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 28px; left: 60px; right: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1) 15%, rgba(0,0,0,0.1) 85%, transparent);
}
.step {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 0 clamp(16px, 2vw, 32px);
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  color: var(--black); margin-bottom: 24px;
  position: relative; z-index: 1; flex-shrink: 0;
}
.step h3 {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em;
}
.step p { font-size: 13.5px; font-weight: 300; line-height: 1.7; color: rgba(26,26,26,0.55); }
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps::before { display: none; }
  .step { padding: 0; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* Process steps (vertical) */
.process-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 760px; margin: 0 auto;
}
.process-step {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 24px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid rgba(9,32,58,0.06);
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(9,32,58,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  color: var(--deep-blue); flex-shrink: 0; background: var(--white);
}
.process-step-body h3 {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--deep-blue); margin-bottom: 8px; letter-spacing: -0.01em;
}
.process-step-body p {
  font-size: 13.5px; font-weight: 300; line-height: 1.7;
  color: rgba(9,32,58,0.5);
}

/* ── FLEET ──────────────────────────────────── */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fleet-card {
  background: var(--white); border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease-spring);
}
.fleet-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.fleet-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
}
.fleet-body { padding: clamp(24px, 3vw, 36px); }
.fleet-badge {
  display: inline-block; font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); background: rgba(17,100,179,0.08);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}
.fleet-card h3 {
  font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px);
  font-weight: 400; letter-spacing: -0.01em; color: var(--black); margin-bottom: 8px;
}
.fleet-card p {
  font-size: 13.5px; font-weight: 300; line-height: 1.7;
  color: rgba(26,26,26,0.55); margin-bottom: 20px;
}
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fleet-spec {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: rgba(26,26,26,0.6);
  background: var(--off-white); padding: 6px 12px; border-radius: 100px;
}
.fleet-spec svg { width: 13px; height: 13px; color: var(--blue); }
.fleet-amenities {
  border-top: 1px solid rgba(0,0,0,0.06); padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.fleet-amenity {
  font-size: 11.5px; font-weight: 300; color: rgba(26,26,26,0.5);
  display: flex; align-items: center; gap: 5px;
}
.fleet-amenity::before { content: '—'; font-size: 10px; color: var(--blue); opacity: 0.7; }
@media (max-width: 700px) { .fleet-grid { grid-template-columns: 1fr; } }

/* ── WHY BLESSED WAY ────────────────────────── */
.why-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px); align-items: center;
}
.why-image {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4;
}
.why-image img {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a2a3a 100%);
}
.why-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 28px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 300;
  color: rgba(26,26,26,0.5); line-height: 1; flex-shrink: 0; min-width: 32px;
}
.why-item h4 {
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600;
  color: var(--black); margin-bottom: 6px; letter-spacing: -0.01em;
}
.why-item p { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(26,26,26,0.55); }
@media (max-width: 880px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-image { display: none; }
}

/* ── VALUE PROPS GRID (Charter page) ─────────── */
.props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid rgba(9,32,58,0.08);
  border-radius: 16px; overflow: hidden;
}
.prop-item {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid rgba(9,32,58,0.08);
  border-bottom: 1px solid rgba(9,32,58,0.08);
}
.prop-item:nth-child(3), .prop-item:nth-child(6) { border-right: none; }
.prop-item:nth-child(4), .prop-item:nth-child(5), .prop-item:nth-child(6) { border-bottom: none; }
.prop-num {
  font-family: var(--font-display); font-size: 36px; font-weight: 300;
  color: rgba(9,32,58,0.1); line-height: 1; margin-bottom: 16px;
}
.prop-item h3 {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--deep-blue); margin-bottom: 10px; letter-spacing: -0.01em;
}
.prop-item p { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(9,32,58,0.5); }
@media (max-width: 900px) {
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-item:nth-child(2), .prop-item:nth-child(4) { border-right: none; }
  .prop-item:nth-child(5), .prop-item:nth-child(6) { border-bottom: none; }
  .prop-item:nth-child(3) { border-right: 1px solid rgba(9,32,58,0.08); }
}
@media (max-width: 560px) {
  .props-grid { grid-template-columns: 1fr; }
  .prop-item { border-right: none !important; border-bottom: 1px solid rgba(9,32,58,0.08) !important; }
  .prop-item:last-child { border-bottom: none !important; }
}

/* ── STATS BAR ──────────────────────────────── */
.stats-bar { background: var(--deep-blue); padding: 36px 0; }
.stats-items {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 40px; position: relative; text-align: center;
}
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%); height: 32px; width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 300; color: white; line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); white-space: nowrap;
}
@media (max-width: 600px) { .stat-item { padding: 10px 20px; } .stat-num { font-size: 26px; } }

/* ── FLIGHT TYPES ───────────────────────────── */
.flight-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.flight-type-card {
  background: var(--white); border: 1px solid rgba(9,32,58,0.09);
  border-radius: 12px; padding: clamp(24px, 2.5vw, 32px);
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-spring);
}
.flight-type-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.flight-type-tag {
  display: inline-block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); background: rgba(17,100,179,0.08);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}
.flight-type-card h3 {
  font-family: var(--font-display); font-size: 19px; font-weight: 400;
  color: var(--deep-blue); margin-bottom: 8px; letter-spacing: -0.01em;
}
.flight-type-card .profile {
  font-size: 12px; font-weight: 500; color: rgba(9,32,58,0.45);
  margin-bottom: 10px; letter-spacing: 0.02em;
}
.flight-destinations {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(9,32,58,0.06);
}
.flight-destinations span {
  display: inline-block; font-size: 11px; font-weight: 400;
  color: rgba(9,32,58,0.45); background: rgba(9,32,58,0.04);
  padding: 3px 9px; border-radius: 100px; margin: 2px 3px 2px 0;
}
@media (max-width: 900px) { .flight-types { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flight-types { grid-template-columns: 1fr; } }

/* ── SYNERGY CARDS ──────────────────────────── */
.synergy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.synergy-card {
  background: var(--white); border-radius: 12px;
  padding: clamp(24px, 2.5vw, 32px); box-shadow: var(--shadow-card);
  border-left: 3px solid var(--blue);
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease-spring);
}
.synergy-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.synergy-card h4 {
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  color: var(--deep-blue); margin-bottom: 8px; letter-spacing: -0.01em;
}
.synergy-card p { font-size: 12.5px; font-weight: 300; line-height: 1.7; color: rgba(9,32,58,0.5); }
@media (max-width: 900px) { .synergy-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .synergy-cards { grid-template-columns: 1fr; } }

/* ── PARTNER SECTION ────────────────────────── */
.partner-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px); align-items: center;
}
.partner-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.partner-stat {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 20px;
}
.partner-stat-num {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 300; color: white; line-height: 1; margin-bottom: 6px;
}
.partner-stat-label { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.4; }
@media (max-width: 800px) {
  .partner-layout { grid-template-columns: 1fr; }
  .partner-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── QUOTE CARD (light bg form) ─────────────── */
.quote-card {
  background: var(--white); border-radius: 20px;
  padding: clamp(36px, 5vw, 60px); box-shadow: var(--shadow-card);
  max-width: 640px; margin: 0 auto;
  border: 1px solid rgba(9,32,58,0.08);
}
.quote-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.quote-form-row.full { grid-template-columns: 1fr; }
.quote-field { display: flex; flex-direction: column; gap: 6px; }
.quote-field label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(9,32,58,0.4);
}
.quote-field input, .quote-field select, .quote-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid rgba(9,32,58,0.1); border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; color: var(--deep-blue);
  background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.quote-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.quote-field input::placeholder, .quote-field textarea::placeholder { color: rgba(9,32,58,0.25); }
.quote-field input:focus, .quote-field select:focus, .quote-field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(17,100,179,0.08);
}
.quote-field textarea { resize: none; height: 80px; line-height: 1.6; }
@media (max-width: 560px) { .quote-form-row { grid-template-columns: 1fr; } }

/* ── AREAS COVERED ──────────────────────────── */
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: clamp(20px, 2.5vw, 28px);
  transition: box-shadow 0.2s ease, transform 0.2s var(--ease-spring);
}
.area-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.area-zone {
  display: inline-block; font-size: 9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); background: rgba(17,100,179,0.08);
  padding: 3px 9px; border-radius: 100px; margin-bottom: 12px;
}
.area-card h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em;
}
.area-card ul li {
  font-size: 13px; font-weight: 300; color: rgba(26,26,26,0.6);
  line-height: 2; display: flex; align-items: center; gap: 6px;
}
.area-card ul li::before {
  content: '—'; font-size: 10px; color: var(--blue); opacity: 0.7;
}
@media (max-width: 900px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .areas-grid { grid-template-columns: 1fr; } }

/* ── FAQ ────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-item summary {
  list-style: none; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; padding: 22px 0;
  cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--black); letter-spacing: -0.01em; user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  color: rgba(26,26,26,0.35);
  transition: transform 0.3s ease, color 0.2s ease;
}
.faq-item[open] summary { color: var(--blue); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer {
  padding: 0 0 22px; font-size: 14px; font-weight: 300;
  line-height: 1.8; color: rgba(26,26,26,0.6); max-width: 640px;
}

/* ── FINAL CTA / CONTACT FORM ───────────────── */
.cta-section {
  background: linear-gradient(160deg, #080808 0%, #0a1929 60%, #060e1a 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: 50%;
  transform: translateX(-50%); width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(17,100,179,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.cta-inner .h2 { color: white; margin-bottom: 18px; }
.cta-sub {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.45); max-width: 500px; margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
  width: 100%; max-width: 560px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: clamp(28px, 4vw, 44px);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-family: var(--font-body); font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: rgba(17,100,179,0.5);
  background: rgba(17,100,179,0.06);
}
.form-field textarea { resize: none; height: 80px; line-height: 1.6; }
.form-consent {
  display: flex; align-items: flex-start; gap: 10px; margin: 14px 0 20px;
}
.form-consent input { margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.form-consent span { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.6; }
.form-consent a { color: rgba(255,255,255,0.55); text-decoration: underline; text-underline-offset: 2px; }
.form-success { display: none; text-align: center; padding: 20px; }
.form-success.visible { display: block; }
.form-success p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.7; }
.cta-or {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin: 4px 0;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── FLOATING WHATSAPP ──────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float svg { color: white; }
.wa-float-label {
  position: absolute; right: 68px;
  background: rgba(10,10,10,0.9); backdrop-filter: blur(10px);
  color: white; font-size: 12px; font-weight: 500;
  white-space: nowrap; padding: 6px 14px; border-radius: 100px;
  opacity: 0; transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none;
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }

/* ── FOOTER ─────────────────────────────────── */
.footer { background: #0a0a0a; color: rgba(255,255,255,0.5); padding: clamp(56px, 6vw, 80px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-brand {}
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer-logo img { height: 44px; width: auto; display: block; transition: opacity 0.2s ease; }
.footer-logo:hover img { opacity: 0.75; }
.footer-tagline { font-size: 12px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.3); max-width: 240px; margin-bottom: 20px; }
.footer-contact a { display: block; font-size: 12.5px; font-weight: 300; color: rgba(255,255,255,0.45); transition: color 0.2s ease; line-height: 2; }
.footer-contact a:hover { color: rgba(255,255,255,0.8); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 16px;
}
.footer-col ul li a { display: block; font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 2.2; transition: color 0.2s ease; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.25); transition: color 0.2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-lang {
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); padding: 5px 12px;
  border: 0.5px solid rgba(255,255,255,0.12); border-radius: 100px;
  transition: all 0.2s ease;
}
.footer-lang:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Date + Time combined field (HH:mm) ──────────────────── */
.form-datetime {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 6px;
  width: 100%;
}

.form-datetime__date {
  flex: 1 1 0% !important; /* flex-basis 0% overrides width:100% from parent */
  min-width: 0 !important;
  width: auto !important;
}

.form-datetime__time {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 3px;
  flex-shrink: 0;
}

.form-datetime__hh,
.form-datetime__mm {
  width: 52px !important;
  padding-left: 3px !important;
  padding-right: 3px !important;
  text-align: center;
  text-align-last: center;
  -webkit-appearance: none;
  appearance: none;
  background-image: none !important;
  cursor: pointer;
  flex-shrink: 0;
}

.form-datetime__sep {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  opacity: 0.35;
  flex-shrink: 0;
  user-select: none;
  line-height: 1;
}

/* Variante fondo claro (quote-card / charter pages) */
.quote-card .form-datetime__sep,
.quote-field .form-datetime__sep {
  opacity: 0.3;
  color: var(--deep-blue);
}

/* ── Contact info cards ───────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  text-align: center;
  padding: clamp(20px, 3vw, 28px) 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.2s ease, transform 0.2s var(--ease-spring);
}

.contact-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.contact-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
  margin-bottom: 10px;
}

.contact-card__value {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 400;
  color: var(--black);
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact-card__value:hover {
  color: var(--blue);
}

@media (max-width: 560px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ── LEGAL PAGES ─────────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + 56px) 0 56px;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-header__eyebrow {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.page-header__eyebrow::before {
  content: ''; width: 20px; height: 1px; background: var(--blue);
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.015em; color: var(--deep-blue);
  margin-bottom: 16px;
}
.page-header__meta {
  font-size: 12px; font-weight: 300;
  color: rgba(26,26,26,0.4); letter-spacing: 0.02em;
}
.legal-body {
  padding: clamp(56px, 7vw, 96px) 0;
}
.legal-content {
  max-width: 780px;
}
.legal-content > p {
  font-size: 15px; font-weight: 300;
  line-height: 1.85; color: rgba(26,26,26,0.6);
  margin-bottom: 20px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400; color: var(--deep-blue);
  margin: 52px 0 16px; letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(9,32,58,0.08);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--black); margin: 28px 0 10px;
}
.legal-content p {
  font-size: 14px; font-weight: 300;
  line-height: 1.85; color: rgba(26,26,26,0.6);
  margin-bottom: 16px;
}
.legal-content ul {
  list-style: none; margin-bottom: 20px;
}
.legal-content ul li {
  font-size: 14px; font-weight: 300;
  line-height: 1.85; color: rgba(26,26,26,0.6);
  padding-left: 22px; position: relative; margin-bottom: 6px;
}
.legal-content ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--blue); font-size: 12px;
}
.legal-intro {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(26,26,26,0.65);
  border-left: 2px solid var(--blue);
  padding: 16px 20px; margin-bottom: 36px;
  background: rgba(17,100,179,0.03);
  border-radius: 0 8px 8px 0;
}
.legal-contact-box {
  background: var(--off-white);
  border: 1px solid rgba(9,32,58,0.08);
  border-radius: 12px; padding: clamp(20px,3vw,28px);
  margin-top: 16px;
}
.legal-contact-box p {
  margin-bottom: 6px !important;
}
.legal-content a {
  color: var(--blue); text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.legal-content a:hover { color: #0e55a0; }
.legal-cta {
  background: linear-gradient(160deg, #080808 0%, #0a1929 60%, #060e1a 100%);
  padding: clamp(56px,7vw,88px) 0;
  text-align: center;
}
.legal-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px,3.5vw,42px);
  font-weight: 300; line-height: 1.15;
  color: white; margin-bottom: 16px;
}
.legal-cta__title em { font-style: italic; opacity: 0.72; }
.legal-cta__sub {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.4); margin-bottom: 32px;
}

/* ── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-top: 0.5px solid rgba(255,255,255,0.09);
  padding: 20px clamp(20px, 4vw, 64px);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.cookie-banner--visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 5px;
}
.cookie-banner__desc {
  font-size: 12.5px; font-weight: 300;
  line-height: 1.6; color: rgba(255,255,255,0.38);
}
.cookie-banner__desc a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.cookie-banner__desc a:hover { color: rgba(255,255,255,0.85); }
.cookie-banner__actions {
  display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 11px 22px; border-radius: var(--radius-pill);
  cursor: pointer; border: none;
  transition: all 0.2s ease;
}
.cookie-banner__btn--essential {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.45);
}
.cookie-banner__btn--essential:hover {
  border-color: rgba(255,255,255,0.38);
  color: rgba(255,255,255,0.8);
}
.cookie-banner__btn--accept {
  background: white; color: var(--black);
}
.cookie-banner__btn--accept:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* Cookie Settings button in footer */
.footer-cookie-btn {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.25);
  background: none; border: none;
  cursor: pointer; padding: 0;
  transition: color 0.2s ease;
}
.footer-cookie-btn:hover { color: rgba(255,255,255,0.6); }
