/* ============================================================
   Quadrante Crescente — Modern Algarve Transfers
   Design system • Blue dominant • Fluid responsive
   ============================================================ */

:root {
  /* Brand palette */
  --c-navy:       #0B2545;
  --c-navy-2:     #13315C;
  --c-blue:       #1E5F9F;
  --c-blue-2:     #2E86C1;
  --c-cyan:       #56CCF2;
  --c-gold:       #E8B339;
  --c-gold-soft:  #F5D77E;
  --c-bg:         #F4F7FB;
  --c-white:      #FFFFFF;
  --c-text:       #1B2438;
  --c-text-mute:  #5C6B83;
  --c-line:       #DDE5EF;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(11,37,69,0.06);
  --shadow-md: 0 10px 30px rgba(11,37,69,0.10);
  --shadow-lg: 0 24px 60px rgba(11,37,69,0.18);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --container: 1240px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; transition: all .25s ease; }
ul  { list-style: none; }

.container {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-navy);
}

/* ---------- Animated particle canvas ---------- */
#bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .35;
  pointer-events: none;
}

/* ===========================
   TOP BAR
   =========================== */
.topbar {
  background: var(--c-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left a:hover { color: var(--c-gold); }
.topbar-left i { margin-right: 0.35rem; color: var(--c-gold); }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.topbar-badge {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-soft));
  color: var(--c-navy);
  padding: 0.15rem 0.7rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.75rem;
}

.lang-switcher { display: flex; gap: 0.25rem; }
.lang-switcher a {
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  border: 1px solid transparent;
}
.lang-switcher a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lang-switcher a.active {
  background: var(--c-gold);
  color: var(--c-navy);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-inner {
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--c-navy);
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand strong { color: var(--c-blue); }
.brand-light { color: #fff; }
.brand-light strong { color: var(--c-gold); }

.nav-menu {
  display: flex; gap: 2rem; align-items: center;
}
.nav-menu a {
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  font-size: 0.95rem;
}
.nav-menu a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--c-blue);
  transition: width .3s ease;
}
.nav-menu a:not(.btn-nav):hover::after { width: 100%; }
.nav-menu a:not(.btn-nav):hover { color: var(--c-blue); }

.btn-nav {
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
  color: #fff !important;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(30,95,159,.35);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(30,95,159,.45); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--c-navy);
  border-radius: 4px;
  transition: all .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 4rem 0 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,37,69,0.85) 0%, rgba(30,95,159,0.55) 60%, rgba(11,37,69,0.35) 100%),
    url('../images/hero-coast.jpg') center/cover no-repeat;
  z-index: -2;
  animation: heroZoom 30s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(232,179,57,0.25) 0%, transparent 50%);
  z-index: -1;
}
@keyframes heroZoom {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-20px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s .15s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: #fff;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,179,57,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(232,179,57,0.3); }
  50%     { box-shadow: 0 0 0 10px rgba(232,179,57,0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 900;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p.lead {
  font-size: 1.1rem;
  max-width: 540px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 0;
  transition: all .3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c-gold), #d59a2a);
  color: var(--c-navy);
  box-shadow: 0 10px 28px rgba(232,179,57,.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(232,179,57,.55); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--c-gold);
  font-weight: 700;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   BOOKING CARD (floating in hero)
   =========================== */
.booking-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(40px) scale(.96);
  animation: fadeUp .9s .4s forwards;
  position: relative;
}
.booking-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.booking-card h3::before {
  content: '\f0d1';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--c-blue);
  background: rgba(30,95,159,0.1);
  width: 38px; height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trip-type {
  display: flex;
  gap: 0;
  background: var(--c-bg);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}
.trip-type label {
  cursor: pointer;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-mute);
  transition: all .2s;
}
.trip-type input { display: none; }
.trip-type input:checked + label {
  background: var(--c-blue);
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.form-field { position: relative; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--c-text-mute);
  display: block;
  margin-bottom: 0.4rem;
}
.form-field input, .form-field select {
  width: 100%;
  padding: 0.75rem 0.9rem 0.75rem 2.5rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color .25s, box-shadow .25s;
}
.form-field input:focus, .form-field select:focus {
  outline: 0;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(30,95,159,.12);
}
.form-field .ico {
  position: absolute;
  left: 0.9rem; top: 2.2rem;
  color: var(--c-blue);
  font-size: 0.9rem;
}
.btn-block { width: 100%; justify-content: center; margin-top: 0.5rem; }
.btn-primary-blue {
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
  color: #fff;
  box-shadow: 0 10px 28px rgba(30,95,159,.4);
}
.btn-primary-blue:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(30,95,159,.5); }

.quote-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(30,95,159,0.06), rgba(86,204,242,0.08));
  border-radius: var(--r-md);
  border: 1px solid rgba(30,95,159,0.15);
  display: none;
}
.quote-result.show { display: block; animation: slideDown .5s ease; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.quote-rows { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; text-align: center; margin: 0.5rem 0 0.75rem; }
.quote-rows .lbl { font-size: 0.7rem; text-transform: uppercase; color: var(--c-text-mute); letter-spacing: 0.5px; }
.quote-rows .val { font-family: 'Playfair Display', serif; color: var(--c-navy); font-size: 1.4rem; font-weight: 700; }
.quote-note { font-size: 0.78rem; color: var(--c-text-mute); margin-top: 0.5rem; }
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  margin-top: 0.6rem;
}
.wa-link:hover { background: #1ebd5c; transform: translateY(-2px); }

/* ===========================
   SECTION DEFAULTS
   =========================== */
.section {
  padding: 6rem 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow {
  background: rgba(30,95,159,0.08);
  color: var(--c-blue);
  border-color: transparent;
}
.section-head .eyebrow::before { background: var(--c-blue); box-shadow: 0 0 0 4px rgba(30,95,159,.2); }
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 1rem 0 0.75rem;
}
.section-head p { color: var(--c-text-mute); font-size: 1.05rem; }

/* ===========================
   SERVICES
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all .4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,95,159,.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-cyan));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 24px rgba(30,95,159,.3);
  transition: transform .4s;
}
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.05); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.service-card p  { color: var(--c-text-mute); font-size: 0.95rem; }

/* ===========================
   DESTINATIONS / MAP
   =========================== */
.section-map { background: linear-gradient(180deg, #fff 0%, var(--c-bg) 100%); }
.map-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: stretch;
}
#map {
  height: 560px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.map-side {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.map-side .from-pill {
  background: rgba(30,95,159,.08);
  color: var(--c-blue);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-bottom: 1.25rem;
}
.dest-list {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1rem;
  max-height: 350px;
}
.dest-list::-webkit-scrollbar { width: 6px; }
.dest-list::-webkit-scrollbar-thumb { background: var(--c-line); border-radius: 4px; }
.dest-item {
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .25s;
  border: 1px solid transparent;
  margin-bottom: 0.4rem;
}
.dest-item:hover { background: rgba(30,95,159,.06); }
.dest-item.active {
  background: linear-gradient(135deg, var(--c-blue), var(--c-navy));
  color: #fff;
  border-color: var(--c-blue);
  transform: translateX(4px);
}
.dest-item.active .dest-price { background: var(--c-gold); color: var(--c-navy); }
.dest-name { font-weight: 600; font-size: 0.95rem; }
.dest-meta { font-size: 0.78rem; opacity: 0.7; margin-top: 0.15rem; }
.dest-price {
  background: rgba(30,95,159,.1);
  color: var(--c-blue);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
}

.dest-detail {
  border-top: 1px solid var(--c-line);
  padding-top: 1.25rem;
  margin-top: auto;
}
.dest-detail .title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}
.dest-detail .row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--c-line);
}
.dest-detail .row:last-of-type { border-bottom: 0; }
.dest-detail .row strong { color: var(--c-navy); }
.empty-detail {
  color: var(--c-text-mute);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem 0;
}

/* Custom Leaflet marker */
.leaflet-pin {
  width: 28px; height: 28px;
  background: var(--c-blue);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 14px rgba(11,37,69,.4);
  transition: all .3s;
}
.leaflet-pin.airport {
  background: linear-gradient(135deg, var(--c-gold), #d59a2a);
  width: 34px; height: 34px;
}
.leaflet-pin:hover, .leaflet-pin.active {
  background: var(--c-navy);
  transform: rotate(-45deg) scale(1.15);
}

/* ===========================
   FLEET
   =========================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}
.fleet-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s ease;
  position: relative;
}
.fleet-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.fleet-img {
  height: 200px;
  background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fleet-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232,179,57,0.2) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s;
}
.fleet-card:hover .fleet-img img { transform: scale(1.06); }
.fleet-body { padding: 1.75rem; }
.fleet-body h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.fleet-body p { color: var(--c-text-mute); font-size: 0.9rem; margin-bottom: 1rem; }
.fleet-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.fleet-tag {
  background: rgba(30,95,159,.08);
  color: var(--c-blue);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* ===========================
   WHY US
   =========================== */
.section-why {
  background:
    linear-gradient(135deg, rgba(11,37,69,0.95), rgba(30,95,159,0.85)),
    url('../images/vilamoura.jpg') center/cover fixed;
  color: #fff;
  position: relative;
}
.section-why .section-head h2 { color: #fff; }
.section-why .section-head p { color: rgba(255,255,255,.8); }
.section-why .section-head .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.section-why .section-head .eyebrow::before { background: var(--c-gold); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 1.75rem;
  border-radius: var(--r-lg);
  transition: all .35s;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: var(--c-gold);
}
.why-card .ico {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--c-gold), #d59a2a);
  color: var(--c-navy);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.why-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 0.5rem; }
.why-card p  { color: rgba(255,255,255,.8); font-size: 0.92rem; }

/* ===========================
   TESTIMONIALS — carousel
   =========================== */
.testi-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.testi-track {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.testi-card {
  min-width: 100%;
  padding: 0 0.5rem;
}
.testi-inner {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}
.testi-inner::before {
  content: '“';
  position: absolute;
  top: -15px; left: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--c-blue);
  opacity: .15;
}
.stars { color: var(--c-gold); margin-bottom: 1rem; font-size: 1.1rem; }
.testi-text { font-size: 1.1rem; font-style: italic; color: var(--c-text); margin-bottom: 1.5rem; }
.testi-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--c-navy); font-weight: 700; }
.testi-role { font-size: 0.85rem; color: var(--c-text-mute); }
.testi-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.testi-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-line);
  border: 0;
  cursor: pointer;
  transition: all .25s;
}
.testi-dot.active { background: var(--c-blue); width: 28px; border-radius: 5px; }

/* ===========================
   CONTACT
   =========================== */
.section-contact { background: linear-gradient(180deg, var(--c-bg), #fff); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info {
  background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,179,57,.3), transparent);
  top: -80px; right: -80px;
  border-radius: 50%;
}
.contact-info h3 { color: #fff; font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.contact-info ul li {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}
.contact-info ul li i {
  background: var(--c-gold);
  color: var(--c-navy);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .socials { margin-top: 1.5rem; display: flex; gap: 0.6rem; }
.contact-info .socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-info .socials a:hover { background: var(--c-gold); color: var(--c-navy); transform: translateY(-3px); }

.contact-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form .form-grid { gap: 1rem; }
.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem 0.85rem 2.5rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form .form-field textarea { padding-left: 0.9rem; min-height: 130px; }
.contact-form .form-field input:focus, .contact-form .form-field textarea:focus {
  outline: 0;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 4px rgba(30,95,159,.12);
}
.form-status {
  padding: 0.75rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  display: none;
}
.form-status.success { display: block; background: #DFF6E4; color: #1A6B33; }
.form-status.error   { display: block; background: #FBE2E2; color: #8A1F1F; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px; height: 2px;
  background: var(--c-gold);
}
.footer-brand p { margin: 1rem 0 1.25rem; font-size: 0.9rem; }
.footer-col ul li { padding: 0.3rem 0; font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--c-gold); padding-left: 4px; }
.contact-list i { color: var(--c-gold); margin-right: 0.5rem; width: 16px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.socials a + a { margin-left: 0.4rem; }
.socials a:hover { background: var(--c-gold); color: var(--c-navy); transform: translateY(-3px); }

.newsletter { display: flex; gap: 0.5rem; }
.newsletter input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: inherit;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter button {
  padding: 0.7rem 1rem;
  background: var(--c-gold);
  border: 0;
  border-radius: var(--r-sm);
  color: var(--c-navy);
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.newsletter button:hover { background: var(--c-gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom a:hover { color: var(--c-gold); }

/* ===========================
   FLOATING BUTTONS
   =========================== */
.whatsapp-float, .scroll-top {
  position: fixed;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  font-size: 1.5rem;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}
.whatsapp-float {
  bottom: 24px; right: 24px;
  background: #25D366;
  color: #fff;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.whatsapp-float:hover { background: #1ebd5c; transform: scale(1.1); }

.scroll-top {
  bottom: 92px; right: 24px;
  background: var(--c-navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  font-size: 1rem;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--c-blue); }

/* ===========================
   ANIMATIONS — reveal on scroll
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-layout { grid-template-columns: 1fr; }
  #map { height: 420px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .topbar-left { font-size: 0.75rem; gap: 0.75rem; }
  .topbar-left a:nth-child(2) { display: none; }

  .nav-menu {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-130%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-md);
    height: calc(100vh - var(--nav-h));
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-line);
    width: 100%;
  }
  .nav-menu .btn-nav {
    margin-top: 1rem;
    border-bottom: 0;
    text-align: center;
    width: 100%;
  }
  .burger { display: flex; }

  .hero { padding: 2.5rem 0 4rem; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-stat .num { font-size: 1.6rem; }

  .booking-card { padding: 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }

  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  #map { height: 360px; }

  .contact-info, .contact-form { padding: 1.75rem; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding-bottom: 2rem; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .socials { justify-content: center; }
  .newsletter { max-width: 320px; margin: 0 auto; }
  .footer-bottom .container { justify-content: center; text-align: center; }

  .whatsapp-float, .scroll-top { width: 48px; height: 48px; right: 16px; }
  .whatsapp-float { bottom: 16px; }
  .scroll-top { bottom: 72px; }
}

@media (max-width: 480px) {
  .topbar-left { gap: 0.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .quote-rows { grid-template-columns: 1fr; gap: 0.4rem; }
  .quote-rows > div { display: flex; justify-content: space-between; }
}

/* ────────────────────────────────────────────────────────────
   Geocoding autocomplete
──────────────────────────────────────────────────────────── */
.geo-dropdown {
  scrollbar-width: thin;
  scrollbar-color: #bee3f8 #f0f6ff;
}
.geo-dropdown::-webkit-scrollbar { width: 5px; }
.geo-dropdown::-webkit-scrollbar-track { background: #f0f6ff; }
.geo-dropdown::-webkit-scrollbar-thumb { background: #bee3f8; border-radius: 3px; }
.geo-item:last-child { border-bottom: none !important; }

/* Route preview badge */
#routePreview { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ────────────────────────────────────────────────────────────
   Developed by footer bar
──────────────────────────────────────────────────────────── */
.footer-devby {
  background: #050e1a;
  padding: 10px 0;
  text-align: center;
}
.footer-devby p {
  margin: 0;
  font-size: 12px;
  color: #4a5568;
}
.footer-devby a {
  color: #56CCF2;
  text-decoration: none;
  font-weight: 600;
}
.footer-devby a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────────────────────
   Newsletter form feedback
──────────────────────────────────────────────────────────── */
#newsletterMsg {
  animation: fadeIn .2s ease;
  font-weight: 500;
}
