/* ==========================================
   AGENCE-VTC.COM — Design System
   Palette: blanc, bleu nuit, bleu électrique, rouge CTA
   Typo: Sora (display) + Inter (corps)
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --white: #ffffff;
  --black: #0d0d0d;
  --blue-night: #0a1628;
  --blue-dark: #0f1f3d;
  --blue-electric: #1a4fff;
  --blue-light: #4a7fff;
  --blue-pale: #eef2ff;
  --red-cta: #e63030;
  --red-hover: #c42020;
  --grey-light: #f4f6fb;
  --grey-mid: #e8ecf4;
  --grey-text: #6b7280;
  --text: #1a1a2e;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 6px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 16px 48px rgba(10,22,40,0.16);
  --shadow-blue: 0 8px 32px rgba(26,79,255,0.25);
}

/* ===== RESET ===== */
*, *::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(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blue-night);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--blue-electric); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover { background: var(--blue-pale); color: var(--blue-electric); }
.nav-menu > li > a .chevron { font-size: 0.7rem; transition: transform 0.2s; }
.nav-menu > li:hover > a .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px; /* pont invisible — garde le :hover actif pendant la traversée */
  background: transparent;
  z-index: 200;
}
.nav-dropdown-inner {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
}
.nav-menu > li:hover .nav-dropdown { display: block; }
.nav-dropdown.dropdown-wide {
  min-width: 680px;
  display: none;
  left: 50%;
  transform: translateX(-50%);
}
.nav-dropdown.dropdown-wide .nav-dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  min-width: 680px;
}
.nav-menu > li:hover .nav-dropdown.dropdown-wide { display: block; }

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--blue-pale); color: var(--blue-electric); }
.nav-dropdown a .dd-icon { font-size: 1rem; width: 20px; text-align: center; }

.nav-cta {
  margin-left: auto;
  flex-shrink: 0;
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-cta);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(230,48,48,0.35);
  white-space: nowrap;
}
.btn-reserve:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(230,48,48,0.45);
}
.btn-reserve:active { transform: translateY(0); }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: var(--blue-night);
  position: relative;
  overflow: hidden;
  padding: 80px 24px 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(26,79,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,79,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,79,255,0.2);
  border: 1px solid rgba(26,79,255,0.4);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-eyebrow::before { content: '●'; font-size: 0.5rem; color: var(--blue-electric); }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-electric);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Booking engine */
.booking-engine {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 32px;
}

.booking-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--grey-light);
  min-width: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.booking-field:hover { background: var(--blue-pale); }
.booking-field .bf-icon { font-size: 1.1rem; flex-shrink: 0; }
.booking-field-content { min-width: 0; }
.booking-field-label { font-size: 0.7rem; font-weight: 600; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.05em; display: block; }
.booking-field-value { font-size: 0.9rem; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.booking-divider { color: var(--grey-mid); font-size: 1.2rem; flex-shrink: 0; }

.booking-engine .btn-reserve {
  flex-shrink: 0;
  font-size: 1rem;
  padding: 14px 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.trust-item .trust-icon { color: var(--blue-electric); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey-mid);
  padding: 28px 24px;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--blue-electric);
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--grey-text);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== SECTIONS GÉNÉRIQUES ===== */
.section {
  padding: 72px 24px;
}
.section-dark {
  background: var(--blue-night);
  color: var(--white);
}
.section-grey { background: var(--grey-light); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-electric);
  margin-bottom: 10px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1rem;
  color: var(--grey-text);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

.container { max-width: 1280px; margin: 0 auto; }

/* ===== RÉGIONS GRID ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.region-card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-pale), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}
.region-card:hover {
  border-color: var(--blue-electric);
  box-shadow: var(--shadow-blue);
  transform: translateY(-3px);
}
.region-card:hover::before { opacity: 1; }

.region-card-inner { position: relative; z-index: 1; }
.region-icon { font-size: 1.8rem; margin-bottom: 10px; }
.region-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.region-cities {
  font-size: 0.78rem;
  color: var(--grey-text);
  line-height: 1.5;
}
.region-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1rem;
  color: var(--blue-electric);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}
.region-card:hover .region-arrow { opacity: 1; transform: translateX(0); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: background 0.2s, border-color 0.2s;
}
.service-card:hover {
  background: rgba(26,79,255,0.15);
  border-color: rgba(26,79,255,0.4);
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.service-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.service-tag {
  background: rgba(26,79,255,0.2);
  border: 1px solid rgba(26,79,255,0.35);
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-electric), var(--blue-light));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 56px;
  height: 56px;
  background: var(--blue-electric);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-blue);
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.step-desc { font-size: 0.82rem; color: var(--grey-text); line-height: 1.5; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-electric) 0%, #0a35cc 100%);
  padding: 72px 24px;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-reserve-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--blue-electric);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.btn-reserve-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue-night);
  color: rgba(255,255,255,0.8);
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand-name span { color: var(--blue-electric); }
.footer-brand-desc { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--grey-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--grey-mid); }

.modal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-sub { font-size: 0.88rem; color: var(--grey-text); margin-bottom: 28px; }

.form-grid { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--grey-text); text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-electric);
  box-shadow: 0 0 0 3px rgba(26,79,255,0.1);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--red-cta);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(230,48,48,0.35);
}
.form-submit:hover { background: var(--red-hover); transform: translateY(-1px); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--blue-electric);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 99;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }

/* ===== RÉGION PAGE ===== */
.region-hero {
  background: var(--blue-night);
  padding: 56px 24px 64px;
  position: relative;
  overflow: hidden;
}
.region-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 90% 50%, rgba(26,79,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.region-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.region-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.region-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.region-breadcrumb a:hover { color: var(--white); }
.region-breadcrumb span { color: rgba(255,255,255,0.25); }

.region-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.region-hero h1 em { font-style: normal; color: var(--blue-electric); }

.region-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.region-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Cities pills */
.cities-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.city-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, border-color 0.2s;
}
.city-pill:hover { background: rgba(26,79,255,0.3); border-color: var(--blue-electric); color: var(--white); }

/* Zone nav */
.zone-tabs {
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  position: sticky;
  top: 68px;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}
.zone-tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.zone-tabs-inner::-webkit-scrollbar { display: none; }
.zone-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-text);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.zone-tab:hover { color: var(--blue-electric); }
.zone-tab.active { color: var(--blue-electric); border-bottom-color: var(--blue-electric); }

/* Services section region */
.region-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.rservice-card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.rservice-card:hover { border-color: var(--blue-electric); box-shadow: 0 4px 20px rgba(26,79,255,0.1); }
.rservice-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rservice-icon { font-size: 1.6rem; }
.rservice-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.rservice-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.rservice-tag {
  background: var(--blue-pale);
  color: var(--blue-electric);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.rservice-desc { font-size: 0.85rem; color: var(--grey-text); line-height: 1.6; }

/* Cities detail */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.city-card {
  background: var(--white);
  border: 1.5px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.city-card:hover { border-color: var(--blue-electric); box-shadow: var(--shadow-md); }
.city-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.city-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.city-price { font-family: var(--font-display); font-weight: 800; color: var(--blue-electric); font-size: 0.9rem; }
.city-desc { font-size: 0.83rem; color: var(--grey-text); line-height: 1.6; margin-bottom: 12px; }
.city-keywords { display: flex; flex-wrap: wrap; gap: 5px; }
.city-kw {
  background: var(--grey-light);
  color: var(--grey-text);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1.5px solid var(--grey-mid); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--blue-pale); }
.faq-question .faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--blue-electric); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.88rem;
  color: var(--grey-text);
  line-height: 1.7;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 20px 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-mid);
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav-menu.open > li > a { border-radius: var(--radius-sm); }
  .nav-dropdown, .nav-dropdown.dropdown-wide { display: none !important; }
  .booking-engine { flex-direction: column; }
  .booking-field { width: 100%; }
  .booking-divider { display: none; }
  .booking-engine .btn-reserve { width: 100%; justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .region-services { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
