/* ═══════════════════════════════════════════════════
   FrenchBoat — main.css — Boat Rental Platform
   Typo : Inter (Google Fonts)
   Palette: Navy / Red / Blue / Cream
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Palette Click&Boat style ── */
  --black: #1b2a4a;
  --white: #ffffff;
  --primary: #1b2a4a;
  --primary-hover: #142240;
  --secondary: #3d7ec7;
  --secondary-hover: #1b2a4a;
  --accent: #e8f0fe;
  --cream: #f5f8fc;
  --navy: #1b2a4a;

  --gray-50: #f8fafb;
  --gray-100: #f0f2f5;
  --gray-200: #e2e5ea;
  --gray-300: #cdd1d9;
  --gray-400: #9ba3b0;
  --gray-500: #6b7280;
  --gray-700: #2d3748;
  --gray-900: #111827;

  /* ── Semantic ── */
  --ink: #1b2a4a;
  --muted: #6b7280;
  --border: #e2e5ea;
  --sand: #f0f2f5;

  /* ── Legacy aliases (compat dashboard/admin) ── */
  --olive: #1b2a4a;
  --olive2: #3d7ec7;
  --gold: #3d7ec7;
  --gold-l: #e8f0fe;
  --gold-d: #2563eb;
  --navy2: #3d7ec7;
  --teal: #3d7ec7;
  --teal-l: #e8f0fe;
  --teal-d: #1b2a4a;
  --dark: #1b2a4a;

  /* ── Status ── */
  --green: #0f766e;
  --green-l: #ecfdf5;
  --red: #dc2626;
  --red-l: #fef2f2;
  --yellow: #d97706;
  --yellow-l: #fff8e1;
  --blue-l: #e8f0fe;

  /* ── Typo ── */
  --f: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --fd: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
  --fb: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;

  /* ── Radius ── */
  --r: 4px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: var(--f);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.leaflet-container img {
  max-width: none !important;
  display: inline !important;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.nav-logo-link {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  width: 180px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-links li { position:relative; }
.nav-links li.has-sub > a { display:flex; align-items:center; gap:5px; position:relative; z-index:52; }
.nav-links li.has-sub > a::after { content:''; display:inline-block; width:0; height:0; border-left:4px solid transparent; border-right:4px solid transparent; border-top:5px solid currentColor; transition:transform .2s; }
.nav-links li.has-sub:hover > a::after { transform:rotate(180deg); }
.nav-sub { display:none; position:absolute; top:calc(100% + 10px); left:-16px; min-width:240px; background:#fff; border-radius:14px; box-shadow:0 12px 40px rgba(0,0,0,.12); padding:8px 0; z-index:50; }
.nav-links li.has-sub::after { content:''; position:absolute; top:100%; left:0; right:0; height:14px; }
.nav-links li.has-sub:hover .nav-sub { display:block; animation:subFadeIn .2s ease; }
.nav-sub a { display:block; padding:11px 22px; font-size:14px; font-weight:500; color:var(--gray-700); transition:all .15s; white-space:nowrap; }
.nav-sub a:hover { background:var(--gray-50); color:var(--navy); }

/* ── Mega Menu ── */
.nav-mega {
  display:none; position:fixed; top:40px; left:calc(100% - 150%); width:calc(100% + 100%);
  background:#fff; border-top:1px solid var(--gray-200);
  box-shadow:0 12px 40px rgba(0,0,0,.1); border-radius:14px;
  padding:0; z-index:50;
}
.nav-links li.has-mega::after { content:''; position:absolute; top:100%; left:-20px; right:-20px; height:20px; }
.nav-links li.has-mega:hover .nav-mega { display:block; animation:megaFadeIn .2s ease; }
@keyframes megaFadeIn { from{opacity:0;transform:translateY(-4px)} to{opacity:1;transform:translateY(0)} }
.mega-inner {
  max-width:1200px; margin:0 auto; padding:28px 40px;
  display:grid; grid-template-columns:repeat(3, 1fr); gap:20px 40px;
}
.mega-col { display:flex; flex-direction:column; gap:2px; padding-bottom:16px; }
.mega-col:nth-child(3n+1), .mega-col:nth-child(3n+2), .mega-col:nth-child(3n+3) { border-bottom:1px solid var(--gray-200); margin-bottom:4px; }
.mega-col:nth-last-child(-n+3) { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.mega-title {
  font-size:12px; font-weight:700; color:var(--navy); text-decoration:none; text-transform:uppercase; letter-spacing:.5px;
  padding:6px 0 8px; margin-bottom:6px;
  transition:color .15s;
}
.mega-title:hover { color:#E63946; }
.mega-link {
  font-size:11px; font-weight:400; color:var(--gray-500); text-decoration:none;
  padding:4px 0; transition:color .15s;
}
.mega-link:hover { color:var(--navy); }
.mega-footer { max-width:1200px; margin:0 auto; padding:14px 40px; border-top:1px solid var(--gray-200); }
.mega-footer a { font-size:13px; font-weight:600; color:var(--navy); text-decoration:none; }
.mega-footer a:hover { color:#E63946; }
@keyframes subFadeIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Burger */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 100;
  padding: 80px 28px 40px;
  flex-direction: column;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mm-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-links a {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 10px;
  transition: background 0.15s;
  text-decoration: none;
}
.mm-links a:hover {
  background: var(--gray-50);
}
.mm-sep {
  height: 1px;
  background: var(--gray-100);
  margin: 16px 0;
}
.mm-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mm-actions a {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s;
}
.mm-actions a:hover {
  background: var(--gray-50);
  color: var(--navy);
}
.mm-parent-open svg { transform:rotate(180deg); }
.mm-sub-open { max-height:300px !important; }
.mm-logout {
  color: var(--red) !important;
}
.mm-cta {
  background: var(--red) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 700 !important;
  border-radius: 10px;
  margin-top: 8px;
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--f);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: #E63946;
  border-color: #E63946;
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-hover);
  border-color: var(--secondary-hover);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--cream);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: #152a45;
  border-color: #152a45;
}
.btn-gold {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-gold:hover {
  background: var(--primary-hover);
}
.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  background: #1a2d4a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 55, 0.65) 0%,
    rgba(15, 30, 55, 0.3) 40%,
    rgba(15, 30, 55, 0.1) 70%,
    transparent 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 72px 60px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.hero-text {
  max-width: 600px;
}
.hero-badge {
  display: inline-block;
  background: rgba(61, 126, 199, 0.9);
  color: #fff;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.hero-title em {
  font-style: italic;
  color: #7cb9f0;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  opacity: 0.85;
  max-width: 480px;
  line-height: 1.7;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Hero search bar */
.hero-search-wrap {
  position: relative;
  z-index: 3;
  padding: 0 72px 40px;
}
.hero-search {
  display: flex;
  align-items: center;
  background: #1a2d4a;
  border-radius: 16px;
  padding: 8px 8px 8px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-width: 1000px;
  margin: 0 auto;
}
.hs-field {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 10px;
  flex: 1;
  min-width: 0;
}
.hs-icon {
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.hs-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.hs-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 20px;
}
select.hs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.hs-select::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2);
  opacity: 0.5;
  cursor: pointer;
}
.hs-select option {
  background: #1a2d4a;
  color: #fff;
  font-size: 14px;
}
.hs-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin: 0 4px;
}
.hs-btn {
  background: #3d7ec7;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hs-btn:hover {
  background: #3d7ec7;
}
.hs-btn span {
  font-size: 18px;
}

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
}
.search-bar .field {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-right: 1px solid #e8e8e8;
  margin-bottom: 0;
}
.search-bar .field:last-of-type {
  border-right: none;
}
.search-bar select,
.search-bar input {
  border: none;
  outline: none;
  font-family: var(--f);
  font-size: 14px;
  width: 100%;
  background: transparent;
}
.search-bar .btn {
  border-radius: 50px;
  padding: 12px 32px;
}

/* ── SECTIONS ── */
.section-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.6;
  max-width: 480px;
}

/* ── BOAT TYPES GRID ── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.type-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: block;
}
.type-card:hover .type-card-img {
  transform: scale(1.08);
}
.type-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.type-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.05) 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.type-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ── DESTINATIONS GRID ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.dest-card {
  position: relative;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.dest-card:hover img {
  transform: scale(1.05);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.dest-card-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
.dest-card-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ── LISTING / BOAT CARD ── */
.lcard {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  background: var(--white);
}
.lcard:hover {
  border-color: var(--gray-200);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.lcard-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray-100);
}
.lcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.lcard:hover .lcard-img img {
  transform: scale(1.04);
}
.lcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.lcard-badge-secondary {
  background: var(--secondary);
}
.lcard-skipper-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(219, 239, 255, 0.92);
  color: #1a6fa5;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}
.boat-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.boat-spec strong {
  color: var(--dark);
}
.lcard-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.15s;
}
.lcard-fav:hover {
  background: var(--gray-100);
  border-color: var(--navy);
}
.lcard-fav.active {
  color: var(--primary);
  border-color: var(--primary);
}
.lcard-body {
  padding: 20px;
}
.lcard-loc {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.lcard-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--navy);
}
.lcard-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ltag {
  font-size: 10px;
  font-weight: 500;
  padding: 3px 9px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}
.lcard-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.lcard-specs span {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.lcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.lcard-price .amt {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.lcard-price .per {
  font-size: 11px;
  color: var(--gray-400);
}
.lcard-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

/* ── BOAT SPECS ── */
.boat-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.boat-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.boat-spec strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── FORMS ── */
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-family: var(--f);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--secondary);
}
.field textarea {
  resize: vertical;
  min-height: 90px;
}
.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* ── BADGES ── */
.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-green {
  background: var(--green-l);
  color: var(--green);
}
.badge-red {
  background: var(--red-l);
  color: var(--red);
}
.badge-yellow {
  background: var(--yellow-l);
  color: var(--yellow);
}
.badge-gray {
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}
.badge-olive {
  background: var(--navy);
  color: var(--white);
}
.badge-blue {
  background: var(--blue-l);
  color: var(--secondary);
}
.badge-primary {
  background: var(--primary);
  color: var(--white);
}
.badge-secondary {
  background: var(--secondary);
  color: var(--white);
}

/* ── MODAL ── */
.modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-wrap.hidden {
  display: none;
}
.modal-box {
  background: var(--white);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.modal-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 72px 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.foot-logo {
  margin-bottom: 16px;
}
.foot-col h4 {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.foot-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.foot-col a:hover {
  color: var(--white);
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}

/* ── ALERTS ── */
.alert {
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid;
  border-radius: var(--r-md);
}
.alert-error {
  background: var(--red-l);
  color: var(--red);
  border-color: #ffcdd2;
}
.alert-success {
  background: var(--green-l);
  color: var(--green);
  border-color: #b2dfcc;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav {
    padding: 0 20px;
    height: 56px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .nav-logo-img {
    width: 140px;
  }
  footer {
    padding: 48px 24px 28px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-inner {
    padding: 120px 32px 50px;
  }
  .hero-search-wrap {
    padding: 0 32px;
  }
  .hero-search {
    flex-wrap: wrap;
    padding: 16px;
    gap: 8px;
  }
  .hs-field {
    flex: 1 1 70px;
    padding: 10px 12px 10px 0;
  }
  .hs-sep {
    display: none;
  }
  .hs-btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }
  .dest-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-inner {
    padding: 100px 20px 40px;
  }
  .hero-search-wrap {
    padding: 0 16px;
  }
  .hero-search {
    flex-direction: column;
    border-radius: 14px;
    padding: 14px;
  }
  .hs-field {
    padding: 10px 0;
    width: 100%;
  }
  .hs-btn {
    border-radius: 10px;
    padding: 16px;
  }
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    letter-spacing: -1px;
  }
  .field-row-2,
  .field-row-3 {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
