/* Ambulance Maroc — thème inspiré ambulance.casa */

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

:root {
  /* Palette ambulance.casa */
  --primary: #eb1414;
  --primary-dark: #c61111;
  --primary-light: #ff3b3b;
  --navy: #293041;
  --navy-dark: #1f2531;
  --navy-light: #f5f5f4;
  --accent: #ffc107;
  --accent-dark: #e6ad00;
  --background: #ffffff;
  --foreground: #293041;
  --muted: #6b7280;
  --card: #ffffff;
  --border: #e5e7eb;
  --secondary: #f7f6f4;
  --emergency: #eb1414;
  --emergency-dark: #c61111;
  --success: #16a34a;
  --radius: 0.75rem;
  --shadow: 0 4px 25px -5px rgba(41, 48, 65, 0.1);
  --shadow-emergency: 0 8px 30px -4px rgba(235, 20, 20, 0.25);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-city: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
}

/* Header / Navbar */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  background: white;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .nav {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-tag {
  font-size: 0.658rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: block;
  width: 100%;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    overflow: visible;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-actions {
    display: flex;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 500;
  width: 80%;
  max-width: 360px;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  max-height: 100dvh;
  background: #fff;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.mobile-menu.open {
  display: flex;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .emergency-float {
  display: none;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: #fff;
}

.mobile-menu-logo .logo-tag {
  display: none;
}

.menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: #f1f5f9;
  border-radius: 0.5rem;
  cursor: pointer;
  color: var(--foreground);
  transition: background 0.15s;
}

.menu-close:hover {
  background: #e2e8f0;
}

.mobile-menu-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0.5rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-footer {
  flex-shrink: 0;
  padding: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: #fff;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--foreground);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: background 0.15s, color 0.15s;
}

.mobile-sub-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: rgba(235, 20, 20, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.mobile-sub-icon svg {
  width: 1rem;
  height: 1rem;
}

.mobile-sub-link:hover,
.mobile-sub-link:focus-visible {
  background: rgba(235, 20, 20, 0.08);
  color: #111827;
}

#mobile-services-panel .mobile-sub-link,
#mobile-zones-panel .mobile-sub-link {
  color: #111827;
}

#mobile-services-panel .mobile-sub-link:hover,
#mobile-services-panel .mobile-sub-link:focus-visible,
#mobile-zones-panel .mobile-sub-link:hover,
#mobile-zones-panel .mobile-sub-link:focus-visible {
  background: var(--emergency);
  color: #fff !important;
}

#mobile-services-panel .mobile-sub-link:hover .mobile-sub-icon,
#mobile-services-panel .mobile-sub-link:focus-visible .mobile-sub-icon,
#mobile-zones-panel .mobile-sub-link:hover .mobile-sub-icon,
#mobile-zones-panel .mobile-sub-link:focus-visible .mobile-sub-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Accordéon Services — mobile */
.mobile-nav-accordion {
  border-bottom: 1px solid var(--border);
}

.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.mobile-accordion-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.mobile-accordion-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.375rem;
  height: 1.375rem;
  padding: 0 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(235, 20, 20, 0.1);
  border-radius: 9999px;
}

.mobile-accordion-chevron {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.mobile-nav-accordion.open .mobile-accordion-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.mobile-nav-accordion.open .mobile-accordion-trigger {
  color: var(--primary);
}

.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  padding: 0;
}

.mobile-nav-accordion.open .mobile-accordion-panel {
  max-height: min(78dvh, 820px);
  opacity: 1;
  padding-bottom: 0.75rem;
}

.mobile-nav-accordion.open .mobile-sub-links {
  max-height: min(52dvh, 560px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-right: 0.125rem;
  margin-right: -0.125rem;
}

.mobile-accordion-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.mobile-accordion-all {
  display: inline-block;
  margin-top: 0.625rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(235, 20, 20, 0.06);
  border-radius: 0.5rem;
}

.mobile-accordion-all:hover {
  background: rgba(235, 20, 20, 0.12);
}

.mobile-menu-footer .btn {
  width: 100%;
  margin-top: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--background);
}

.btn-emergency {
  background: var(--emergency);
  color: #fff;
  box-shadow: var(--shadow-emergency);
  animation: pulse-emergency 2s infinite;
}

.btn-emergency:hover {
  background: var(--emergency-dark);
}

@keyframes pulse-emergency {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(235, 20, 20, 0.45);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(235, 20, 20, 0);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--background);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(235, 20, 20, 0.08);
  color: var(--primary);
  border: 1px solid rgba(235, 20, 20, 0.15);
}

.badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.badge-emergency {
  background: var(--emergency);
  color: #fff;
}

/* Hero — style ambulance.casa (fond navy, accents rouge/or) */
.hero {
  position: relative;
  margin-top: -4rem;
  padding: calc(5rem + 4rem) 0 4rem;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #3a4152 100%);
}

@media (min-width: 640px) {
  .hero {
    margin-top: -5rem;
    padding: calc(7rem + 5rem) 0 5rem;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.hero-trust li {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-trust li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(235, 20, 20, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255, 193, 7, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    max-width: 48rem;
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(to right, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-inline: auto;
}

.hero-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-phone-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  backdrop-filter: blur(8px);
  max-width: 20rem;
}

.hero-phone-highlight svg {
  color: var(--accent);
  flex-shrink: 0;
}

.hero-phone-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.hero-phone-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.hero-phone-number:hover {
  color: var(--accent);
}

@media (min-width: 1024px) {
  .hero-phone-highlight {
    margin-inline: 0;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Glass card */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .glass {
    padding: 2rem;
  }
}

.glass h2 {
  font-size: 1.125rem;
  font-weight: 600;
}

.glass p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41, 48, 65, 0.15);
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .form-input {
  padding-left: 2.5rem;
}

.input-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  pointer-events: none;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.city-tag {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 9999px;
  transition: background 0.2s;
}

.city-tag:hover {
  background: rgba(235, 20, 20, 0.12);
  color: var(--primary);
}

/* Décalage sous header fixe */
#main {
  padding-top: 4rem;
}

@media (min-width: 768px) {
  #main {
    padding-top: 5rem;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted);
}

.section-muted {
  background: var(--navy-light);
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: var(--shadow);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(235, 20, 20, 0.08);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(235, 20, 20, 0.12);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  flex: 1;
}

.card-price {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.card-link {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonial-quote {
  width: 2rem;
  height: 2rem;
  color: rgba(41, 48, 65, 0.2);
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: var(--emergency);
  color: var(--emergency);
}

.testimonial-author {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--foreground);
}

.faq-question svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}

.cta-banner p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Page header */
.page-header {
  padding: 7rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
}

.page-header p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Contact layout */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.alert-emergency {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(235, 20, 20, 0.3);
  background: rgba(235, 20, 20, 0.05);
  margin-bottom: 1.5rem;
}

.alert-emergency svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--emergency);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.alert-emergency strong {
  color: var(--emergency);
}

.estimate-box {
  display: none;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(41, 48, 65, 0.2);
  background: rgba(224, 242, 254, 0.3);
  margin-bottom: 1rem;
}

.estimate-box.visible {
  display: block;
}

.estimate-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.estimate-label {
  font-size: 0.875rem;
  color: var(--muted);
}

.estimate-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}

.form-success.visible {
  display: block;
}

/* Blog */
.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
}

.article-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.article-content p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.back-link:hover {
  text-decoration: underline;
}

/* Footer — navy sombre */
.footer {
  border-top: none;
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul a,
.footer-contact li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer ul a:hover {
  color: var(--accent);
}

.footer-desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer .logo-name {
  color: #fff;
}

.footer .logo-tag {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Floating emergency button */
.emergency-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  height: 3.5rem;
  background: var(--emergency);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(235, 20, 20, 0.35);
  animation: pulse-emergency 2s infinite;
  transition: transform 0.2s;
}

.emergency-float:hover {
  transform: scale(1.05);
  color: #fff;
}

.emergency-float svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 640px) {
  .emergency-float {
    bottom: 2rem;
    right: 2rem;
  }
}

/* Feature list */
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.feature-list li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.form-grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 7rem 0 3rem;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(41, 48, 65, 0.06), var(--background), rgba(255, 193, 7, 0.06));
}

.page-hero-bg::before {
  content: "";
  position: absolute;
  top: -8rem;
  right: -4rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(235, 20, 20, 0.08);
  filter: blur(60px);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .badge {
  margin-bottom: 1rem;
}

/* Enhanced service cards */
.service-card-lg {
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.2s, box-shadow 0.2s;
  scroll-margin-top: 6rem;
}

.service-card-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(41, 48, 65, 0.12);
}

.service-card-lg.accent-urgence {
  border-top: 4px solid var(--emergency);
}

.service-card-lg.accent-medicalise {
  border-top: 4px solid var(--primary);
}

.service-card-lg.accent-bariatrique {
  border-top: 4px solid #7c3aed;
}

.service-card-lg.accent-assistance {
  border-top: 4px solid var(--primary-light);
}

.service-card-lg h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 1rem;
}

.service-card-lg .card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
}

.service-card-lg .card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Blog cards */
.blog-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(41, 48, 65, 0.12);
}

.blog-card-image {
  height: 10rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-card-image svg {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.4);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-body h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 0.75rem;
  line-height: 1.4;
}

.blog-card-body h2 a:hover {
  color: var(--primary);
}

/* Info sidebar cards */
.info-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  margin-bottom: 1rem;
}

.info-card-emergency {
  background: linear-gradient(135deg, rgba(235, 20, 20, 0.08), rgba(235, 20, 20, 0.02));
  border-color: rgba(235, 20, 20, 0.25);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.info-card-phone {
  display: block;
  margin-top: 0.75rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--emergency);
}

.info-card-phone:hover {
  text-decoration: underline;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.info-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Multi-step form wizard */
.form-wizard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-wizard-header {
  padding: 1.5rem 1.5rem 0;
  background: linear-gradient(to bottom, rgba(224, 242, 254, 0.4), transparent);
}

.form-wizard-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.form-wizard-header p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.step-indicator {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.step-dot {
  flex: 1;
  text-align: center;
}

.step-dot-num {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  background: var(--border);
  color: var(--muted);
  transition: all 0.3s;
}

.step-dot.active .step-dot-num,
.step-dot.done .step-dot-num {
  background: var(--primary);
  color: #fff;
}

.step-dot.done .step-dot-num {
  background: #059669;
}

.step-dot-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.375rem;
}

@media (max-width: 480px) {
  .step-dot-label {
    display: none;
  }
}

.form-wizard-body {
  padding: 1.5rem;
}

.form-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.form-input-lg {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Visual choice cards */
.choice-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .choice-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  transition: all 0.2s;
}

.choice-card input:checked+.choice-card-inner {
  border-color: var(--primary);
  background: rgba(224, 242, 254, 0.5);
  box-shadow: 0 0 0 3px rgba(41, 48, 65, 0.1);
}

.choice-card:hover .choice-card-inner {
  border-color: var(--primary-light);
}

.choice-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: 0.625rem;
}

.choice-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.choice-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
}

.choice-card-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

/* City chips */
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-option {
  position: relative;
  cursor: pointer;
}

.chip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip-option span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--border);
  border-radius: 9999px;
  background: var(--card);
  transition: all 0.2s;
}

.chip-option input:checked+span {
  border-color: var(--primary);
  background: var(--secondary);
  color: var(--primary);
}

.chip-option:hover span {
  border-color: var(--primary-light);
}

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.form-nav .btn {
  min-width: 7rem;
}

/* Summary recap */
.summary-box {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--muted);
}

.summary-value {
  font-weight: 600;
  text-align: right;
}

.form-success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  border-radius: 50%;
  color: #059669;
}

.form-success-icon svg {
  width: 2rem;
  height: 2rem;
}

/* Article page */
.article-hero {
  padding: 7rem 0 2rem;
}

.article-card {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .article-card {
    padding: 2.5rem;
  }
}

.article-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.service-card-lg p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── Photos & imagery ── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(41, 48, 65, 0.2);
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-badge svg {
  width: 2rem;
  height: 2rem;
  color: var(--emergency);
  flex-shrink: 0;
}

.hero-image-badge strong {
  display: block;
  font-size: 0.875rem;
  color: var(--foreground);
}

.hero-image-badge span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Photo gallery strip */
.photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.photo-item:hover img {
  transform: scale(1.05);
}

.photo-item-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Trust stats bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.trust-item svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin: 0 auto 0.75rem;
}

.trust-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* City zone cards */
.city-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(41, 48, 65, 0.12);
}

.city-card-image {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

.city-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.city-card:hover .city-card-image img {
  transform: scale(1.06);
}

.city-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.city-card-badge.badge-primary-city {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  border: none;
  backdrop-filter: blur(4px);
}

.city-card-stats {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.city-stat-pill {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
}

.city-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.city-card-body h2,
.city-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.city-card-body p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.5rem;
  flex: 1;
}

.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.neighborhood-tag {
  font-size: 0.6875rem;
  padding: 0.2rem 0.5rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 500;
}

.city-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.city-card-link:hover {
  text-decoration: underline;
}

/* City card compact (secondary cities) */
.city-card-sm {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.city-card-sm:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.city-card-sm-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: var(--secondary);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-card-sm-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.city-card-sm h3 {
  font-size: 1rem;
  font-weight: 600;
}

.city-card-sm p {
  font-size: 0.8125rem;
  color: var(--muted);
}

/* City detail page */
.city-hero {
  position: relative;
  padding-top: 5rem;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.city-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41, 48, 65, 0.92) 0%, rgba(41, 48, 65, 0.4) 60%, transparent 100%);
}

.city-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  color: #fff;
  width: 100%;
}

.city-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
}

.city-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.city-hero-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}

.city-hero-stat strong {
  display: block;
  font-size: 1.125rem;
}

.city-detail-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .city-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.info-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-block h2 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-block ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.375rem 0;
  color: var(--muted);
}

.info-block ul li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.sidebar-sticky {
  position: sticky;
  top: 6rem;
}

.service-card-lg .card-image {
  border-radius: 0.75rem;
  overflow: hidden;
  height: 10rem;
  margin-bottom: 1rem;
}

.service-card-lg .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simplified callback form */
.callback-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.callback-form h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.callback-form>p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.form-row-icon {
  position: relative;
}

.form-row-icon svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  color: var(--muted);
  pointer-events: none;
}

.form-row-icon .form-input-lg {
  padding-left: 2.75rem;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-title-row h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.section-title-row a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.section-title-row a:hover {
  text-decoration: underline;
}

/* ── Zones d'Intervention page ── */
.zones-hero {
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.zones-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zones-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 48, 65, 0.92), rgba(41, 48, 65, 0.75));
}

.zones-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zones-hero-content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
}

.zones-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

.zones-hero-subtitle {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.zones-hero .hero-actions {
  justify-content: center;
  margin-top: 2rem;
}

/* Search bar */
.zone-search-wrap {
  position: relative;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.zone-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted);
  pointer-events: none;
}

.zone-search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 3rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.zone-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(41, 48, 65, 0.12);
}

.zone-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: none;
  background: var(--muted);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
}

/* Map */
.map-container {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .map-container {
    grid-template-columns: 1fr 220px;
    align-items: start;
  }
}

.morocco-map {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 22rem;
  box-shadow: var(--shadow);
}

.map-silhouette {
  width: 100%;
  height: auto;
  display: block;
  padding: 1rem;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.map-pin-dot {
  position: absolute;
  inset: 0.375rem;
  background: var(--emergency);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.map-pin-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--emergency);
  opacity: 0.5;
  animation: map-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.map-pin.active .map-pin-dot {
  background: var(--primary);
  transform: scale(1.2);
}

@keyframes map-ping {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.map-popup {
  position: absolute;
  transform: translate(-50%, calc(-100% - 1rem));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
  min-width: 10rem;
  text-align: center;
}

.map-popup strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.map-popup span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.map-popup a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.map-legend {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.map-legend-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.map-legend-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--muted);
  flex-shrink: 0;
}

.map-legend-dot-primary {
  background: var(--emergency);
}

.map-legend-hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Region catalog */
.zone-region {
  margin-bottom: 3rem;
}

.zone-region-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.zone-region-header h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
}

.zone-region-header p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.zone-cities-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .zone-cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .zone-cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.zone-city-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}

.zone-city-card:hover {
  box-shadow: var(--shadow);
}

.zone-city-card-primary {
  border-top: 3px solid var(--primary);
}

.zone-city-card-top {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.zone-city-thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.zone-city-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zone-city-card-head {
  flex: 1;
  min-width: 0;
}

.zone-city-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.zone-city-title-row h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.badge-available {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  white-space: nowrap;
}

.badge-available-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #059669;
  animation: badge-blink 1.5s ease-in-out infinite;
}

@keyframes badge-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.zone-city-response {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.375rem;
}

/* Zone accordion */
.zone-accordion {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

.zone-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.zone-accordion-btn svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.zone-accordion-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.zone-accordion-panel {
  display: none;
  padding-bottom: 0.5rem;
}

.zone-accordion-panel.open {
  display: block;
}

.quarter-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.quarter-badge {
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  background: #f1f5f9;
  color: var(--foreground);
  border-radius: 9999px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.quarter-badge-highlight {
  background: var(--secondary);
  border-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.zone-city-link {
  display: inline-flex;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.zone-city-link:hover {
  text-decoration: underline;
}

.zones-no-results {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background: var(--card);
  border-radius: 1rem;
  border: 1px dashed var(--border);
  margin-bottom: 2rem;
}

/* Reassurance banner */
.reassurance-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(41, 48, 65, 0.06), rgba(255, 193, 7, 0.06));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .reassurance-banner {
    flex-direction: row;
    text-align: left;
    padding: 2rem;
  }

  .reassurance-banner .btn {
    flex-shrink: 0;
  }
}

.reassurance-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.reassurance-banner h2 {
  font-size: 1.25rem;
  font-weight: 700;
}

.reassurance-banner p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.reassurance-banner a {
  color: var(--emergency);
  font-weight: 700;
}

.reassurance-banner a:hover {
  text-decoration: underline;
}

/* Nav long label */
@media (max-width: 900px) and (min-width: 768px) {
  .nav-links a {
    font-size: 0.75rem;
  }
}

/* ── CTA Buttons (WhatsApp, Call) ── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.btn-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 14px rgba(235, 20, 20, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 20, 20, 0.45);
  color: #fff;
}

.btn-call svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.4rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-block {
  width: 100%;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cta-group .btn {
  flex: 1 1 auto;
  min-width: 10rem;
}

@media (max-width: 640px) {
  .cta-group .btn {
    width: 100%;
    flex: 1 1 100%;
  }
}

/* ── Mapbox ── */
.map-container-mapbox {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .map-container-mapbox {
    grid-template-columns: 1fr 220px;
    align-items: start;
  }
}

.mapbox-map {
  width: 100%;
  height: 420px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mapbox-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f1f5f9;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.mapbox-marker {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mapbox-marker-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--emergency);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.mapbox-marker-ping {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(235, 20, 20, 0.4);
  border-radius: 50%;
  animation: map-pin-ping 1.5s ease-out infinite;
}

@keyframes map-pin-ping {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.mapbox-popup strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.mapbox-popup span {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.mapbox-popup a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

/* ── City page (ambulance-*.html) — style ambulance-privee.ma ── */

/* Typographie pages ville & quartier — ambulance-privee.ma */
#city-page,
#quarter-page {
  font-family: var(--font-city);
  font-size: 1rem;
  line-height: 1.625;
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

#city-page h1,
#city-page h2,
#city-page h3,
#city-page h4,
#quarter-page h1,
#quarter-page h2,
#quarter-page h3,
#quarter-page h4 {
  font-family: var(--font-city);
  letter-spacing: -0.025em;
}

#city-page .lead-text,
#quarter-page .lead-text {
  font-size: 1.125rem;
  line-height: 1.75;
}

#city-page .faq-question,
#quarter-page .faq-question {
  font-size: 1rem;
  font-weight: 600;
}

#city-page .faq-answer,
#quarter-page .faq-answer {
  font-size: 0.9375rem;
  line-height: 1.7;
}

#city-page .testimonial-card p,
#quarter-page .testimonial-card p {
  font-size: 1rem;
  line-height: 1.625;
}

#city-page .testimonial-card footer,
#quarter-page .testimonial-card footer {
  font-size: 0.875rem;
}

#city-page .check-list li,
#quarter-page .check-list li {
  font-size: 1rem;
  line-height: 1.625;
}

#city-page .other-city-card,
#quarter-page .other-city-card {
  font-size: 0.875rem;
}

#city-page .quarter-back-city,
#quarter-page .quarter-back-city {
  font-size: 1rem;
}

.city-hero-light {
  position: relative;
  padding: 6.5rem 0 3rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #3a4152 100%);
  color: #fff;
  overflow: hidden;
}

.city-hero-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(235, 20, 20, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(255, 193, 7, 0.08), transparent 55%);
  pointer-events: none;
}

.city-hero-light .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .city-hero-light {
    padding: 7rem 0 3.5rem;
  }
}

.city-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .city-hero-split {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    text-align: left;
  }

  .city-hero-col-text {
    text-align: left;
  }

  .city-trust-list-light {
    align-items: flex-start;
  }

  .city-hero-actions {
    justify-content: flex-start;
  }
}

.city-hero-centered,
.city-hero-centered .city-hero-col-text {
  text-align: center;
}

.city-breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.city-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.city-breadcrumb a:hover {
  color: #fff;
}

.city-breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.city-hero-col-text h1 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.city-hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.city-trust-list-light {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.city-trust-item-light {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.city-section-light {
  background: #fff;
}

.city-section-blue {
  background: #f0f6fc;
}

.city-section-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-dark, #1e293b);
  margin-bottom: 1.25rem;
}

.city-section-icon {
  width: 1.375rem;
  height: 1.375rem;
  color: #2563eb;
  flex-shrink: 0;
}

.city-quarter-grid-v2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .city-quarter-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .city-quarter-grid-v2 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-quarter-card-v2 {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(41, 48, 65, 0.06);
}

.city-quarter-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: #eff6ff;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.city-quarter-card-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.city-quarter-card-v2 h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.city-quarter-card-v2 h3 a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.city-quarter-card-v2 h3 a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.city-quarter-card-v2--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.city-quarter-card-v2--link:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.city-quarter-card-v2--link h3 span {
  color: #2563eb;
}

.city-quarter-card-v2--link:hover h3 span {
  color: #1d4ed8;
  text-decoration: underline;
}

.quarter-intro-wrap {
  max-width: 48rem;
}

.quarter-highlights {
  margin-top: 1.25rem;
}

.quarter-back-city {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
}

.quarter-back-city a {
  color: var(--primary);
  font-weight: 600;
}

.quarter-back-city a:hover {
  text-decoration: underline;
}

.city-quarter-card-v2 p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.625;
  margin: 0;
}

.city-offer-grid-v2 {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .city-offer-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.city-offer-card-v2 {
  background: #fff;
  border: 1px solid #dbeafe;
  border-radius: 0.875rem;
  padding: 1.375rem;
}

.city-offer-card-v2--urgence {
  background: #fef2f2;
  border-color: #fecaca;
}

.city-offer-card-v2--events {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.city-offer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.city-offer-card-v2--urgence .city-offer-icon {
  background: #fee2e2;
  color: #dc2626;
}

.city-offer-card-v2--transfer .city-offer-icon,
.city-offer-card-v2--distance .city-offer-icon {
  background: #eff6ff;
  color: #2563eb;
}

.city-offer-card-v2--events .city-offer-icon {
  background: #dcfce7;
  color: #16a34a;
}

.city-offer-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.city-offer-card-v2 h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.city-offer-card-v2--urgence h3 {
  color: #b91c1c;
}

.city-offer-card-v2 p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.btn-outline-primary {
  background: #fff;
  color: #2563eb;
  border: 1.5px solid #2563eb;
}

.btn-outline-primary:hover {
  background: #eff6ff;
}

.city-inline-cta--blue {
  background: #e8f2fc;
  border: 1px solid #bfdbfe;
  border-radius: 0.875rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin: 1.5rem 0;
}

.city-inline-cta--blue p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-dark, #1e293b);
  margin-bottom: 1rem;
}

.city-inline-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.city-zones-layout {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .city-zones-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.city-zones-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.city-zones-card,
.city-zones-map-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.25rem 1.375rem;
}

.city-zones-card h3,
.city-zones-map-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-zones-sub {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.875rem;
}

.city-zone-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.city-zone-pill {
  display: block;
  padding: 0.5rem 0.75rem;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}

.city-zone-plain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem 1rem;
}

.city-zone-plain {
  font-size: 0.875rem;
  color: var(--foreground);
  padding: 0.25rem 0;
}

.city-map-embed {
  width: 100%;
  height: 16rem;
  border: 0;
  border-radius: 0.625rem;
  margin-top: 0.75rem;
}

@media (min-width: 992px) {
  .city-map-embed {
    height: 20rem;
  }
}

.city-team-grid-v2,
.city-hospital-grid-v2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {

  .city-team-grid-v2,
  .city-hospital-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.city-team-card-v2,
.city-hospital-card-v2 {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.25rem 1.375rem;
}

.city-team-card-v2 h3,
.city-hospital-card-v2 h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.city-team-card-v2 p,
.city-hospital-card-v2 p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.625;
  margin: 0;
}

/* Legacy dark hero (fallback) */
.city-page-hero {
  position: relative;
  margin-top: -4rem;
  padding: calc(5rem + 4rem) 0 3rem;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #3a4152 100%);
}

@media (min-width: 640px) {
  .city-page-hero {
    margin-top: -5rem;
    padding: calc(6rem + 5rem) 0 3.5rem;
  }
}

.city-page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(235, 20, 20, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(255, 193, 7, 0.06), transparent 50%);
  pointer-events: none;
}

.city-page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0;
}

@media (max-width: 1023px) {
  .city-page-hero-inner {
    padding: 0 1.5rem;
  }
}

.city-back-link {
  display: inline-block;
  font-size: 0.875rem;
  opacity: 0.85;
  margin-bottom: 0.75rem;
  color: #fff;
}

.city-back-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.badge-light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.city-page-hero-inner h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  max-width: 48rem;
  margin-top: 0.75rem;
}

.city-hero-meta {
  margin-top: 0.75rem;
  opacity: 0.9;
  font-size: 0.9375rem;
}

.city-hero-cta {
  margin-top: 1.5rem;
}

.city-stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 1.25rem 0;
}

.city-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .city-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-stat-box {
  text-align: center;
  padding: 0.5rem;
}

.city-stat-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  margin-bottom: 0.25rem;
}

.city-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
}

.city-content-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .city-content-grid {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

/* Pages ville — structure ambulance-privee.ma */
.city-disclaimer-bar {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  text-align: center;
}

.city-disclaimer-bar a {
  color: var(--primary);
  font-weight: 600;
}

.city-trust-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}

.city-trust-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.city-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .city-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.city-stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
}

.city-stat-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.city-stat-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.25rem;
}

.city-quarter-grid,
.city-offer-grid,
.city-team-grid,
.city-hospital-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {

  .city-quarter-grid,
  .city-offer-grid,
  .city-team-grid,
  .city-hospital-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-quarter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.city-quarter-card,
.city-offer-card,
.city-team-card,
.city-hospital-card {
  padding: 1.25rem 1.375rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.city-quarter-card:hover,
.city-offer-card:hover,
.city-team-card:hover,
.city-hospital-card:hover {
  border-color: rgba(235, 20, 20, 0.2);
  box-shadow: var(--shadow);
}

.city-quarter-card h3,
.city-offer-card h3,
.city-team-card h3,
.city-hospital-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.city-quarter-card p,
.city-offer-card p,
.city-team-card p,
.city-hospital-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.city-offer-card .btn {
  margin-top: 1rem;
}

.city-hospital-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.375rem !important;
}

.city-zones-block {
  margin-bottom: 2rem;
}

.city-zones-block h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.quarter-badge-muted {
  background: var(--background);
  color: var(--muted);
}

.city-inline-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
}

.city-inline-cta h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.city-faq-wrap {
  max-width: 48rem;
}

.city-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.25rem auto 0;
  padding: 0.625rem 1.5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: rgba(235, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(235, 20, 20, 0.25);
}

.city-cta-phone:hover {
  background: rgba(235, 20, 20, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(235, 20, 20, 0.35);
  color: #fff !important;
}

.city-legal-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1.25rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.check-list li {
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.check-list li::before,
.check-icon {
  color: #059669;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-left: 0;
}

.trust-list li::before {
  content: none;
}

.city-photo-grid {
  margin: 1.5rem 0;
}

.city-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.sidebar-emergency {
  background: linear-gradient(135deg, rgba(235, 20, 20, 0.08), rgba(235, 20, 20, 0.04));
  border-color: rgba(235, 20, 20, 0.25);
}

.sidebar-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sidebar-phone {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--emergency);
  margin-bottom: 0.75rem;
}

.sidebar-info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
}

.city-cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 45%, #323a4d 100%);
  color: #fff;
  border-radius: 1.25rem;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(31, 37, 49, 0.22);
}

.city-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(235, 20, 20, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 193, 7, 0.07) 0%, transparent 52%);
  pointer-events: none;
}

.city-cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.city-cta-banner>* {
  position: relative;
  z-index: 1;
}

.city-cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}

.city-cta-banner p {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.city-cta-banner-btns {
  justify-content: center;
  align-items: center;
  margin-top: 1.75rem;
}

.city-cta-banner-btns .btn-call,
.city-cta-banner-btns .btn-whatsapp,
.city-cta-banner-btns .btn-primary {
  margin: 0;
  min-height: 3.125rem;
  padding: 0.875rem 1.75rem;
  line-height: 1.25;
  box-sizing: border-box;
}

.other-cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .other-cities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.other-city-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  color: inherit;
}

.other-city-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.other-city-card span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Zone city cards — improved */
.zone-city-card {
  display: flex;
  flex-direction: column;
}

.zone-city-link {
  margin-top: auto;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.zone-city-card-top {
  margin-bottom: 0.75rem;
}

/* ── Nav mega menu Services ── */
.nav-has-mega {
  position: static;
}

@media (min-width: 768px) {
  .nav-has-mega {
    position: relative;
    z-index: 110;
  }

  /* Pont invisible trigger → dropdown (évite la fermeture au survol) */
  .nav-has-mega::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(36rem, calc(100vw - 2rem));
    height: 18px;
    z-index: 111;
  }

  .nav-has-mega:hover,
  .nav-has-mega:focus-within {
    z-index: 120;
  }
}

.nav-mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  z-index: 112;
}

.nav-chevron {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}

.nav-has-mega:hover .nav-chevron,
.nav-has-mega:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 36rem;
  max-width: calc(100vw - 2rem);
  padding: 1rem 1.25rem;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(41, 48, 65, 0.35);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.5rem;
  pointer-events: none;
  z-index: 115;
}

.nav-has-mega:hover .nav-mega-menu,
.nav-has-mega:focus-within .nav-mega-menu {
  display: grid;
  pointer-events: auto;
}

/* Mega-menus Services & Zones — fond clair, texte noir */
.nav-mega-services,
.nav-mega-cities {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(41, 48, 65, 0.16);
  padding: 1rem 1.25rem;
  padding-bottom: 0.75rem;
}

.nav-mega-services {
  min-width: min(36rem, calc(100vw - 2rem));
  grid-template-columns: 1fr 1fr;
}

.nav-has-mega:hover .nav-mega-menu.nav-mega-services,
.nav-has-mega:focus-within .nav-mega-menu.nav-mega-services {
  display: grid;
}

.nav-mega-services .nav-mega-link,
.nav-mega-cities .nav-mega-link {
  color: #111827 !important;
}

.nav-mega-services .nav-mega-icon,
.nav-mega-cities .nav-mega-icon {
  background: rgba(235, 20, 20, 0.1);
  color: var(--primary);
}

.nav-mega-services .nav-mega-footer,
.nav-mega-cities .nav-mega-footer {
  border-top-color: var(--border);
}

.nav-mega-services .nav-mega-all,
.nav-mega-cities .nav-mega-all {
  color: var(--primary) !important;
}

.nav-mega-services .nav-mega-all:hover,
.nav-mega-cities .nav-mega-all:hover {
  color: var(--emergency) !important;
}

.nav-mega-service-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  color: #f1f5f9 !important;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.nav-mega-service-link:hover,
.nav-mega-service-link:focus-visible,
.nav-mega-service-link.active {
  background: rgba(235, 20, 20, 0.25);
  color: #fff !important;
  transform: translateX(2px);
}

/* Layout commun sous-menus */
.nav-links .nav-mega-menu .nav-mega-link,
.nav-mega-menu .nav-mega-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

/* Services & Zones — texte noir, hover blanc sur fond rouge */
.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link,
.nav-mega-menu.nav-mega-services .nav-mega-link,
.nav-mega-menu.nav-mega-cities .nav-mega-link {
  color: #111827 !important;
}

.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link:hover,
.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link:focus-visible,
.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link.active,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link:hover,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link:focus-visible,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link.active,
.nav-mega-menu.nav-mega-services .nav-mega-link:hover,
.nav-mega-menu.nav-mega-services .nav-mega-link:focus-visible,
.nav-mega-menu.nav-mega-services .nav-mega-link.active,
.nav-mega-menu.nav-mega-cities .nav-mega-link:hover,
.nav-mega-menu.nav-mega-cities .nav-mega-link:focus-visible,
.nav-mega-menu.nav-mega-cities .nav-mega-link.active {
  background: var(--emergency) !important;
  color: #fff !important;
  transform: none;
}

.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link:hover .nav-mega-icon,
.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link:focus-visible .nav-mega-icon,
.nav-links .nav-mega-menu.nav-mega-services .nav-mega-link.active .nav-mega-icon,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link:hover .nav-mega-icon,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link:focus-visible .nav-mega-icon,
.nav-links .nav-mega-menu.nav-mega-cities .nav-mega-link.active .nav-mega-icon,
.nav-mega-menu.nav-mega-services .nav-mega-link:hover .nav-mega-icon,
.nav-mega-menu.nav-mega-services .nav-mega-link:focus-visible .nav-mega-icon,
.nav-mega-menu.nav-mega-services .nav-mega-link.active .nav-mega-icon,
.nav-mega-menu.nav-mega-cities .nav-mega-link:hover .nav-mega-icon,
.nav-mega-menu.nav-mega-cities .nav-mega-link:focus-visible .nav-mega-icon,
.nav-mega-menu.nav-mega-cities .nav-mega-link.active .nav-mega-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.nav-mega-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  background: rgba(235, 20, 20, 0.2);
  color: var(--primary-light);
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.nav-mega-icon svg {
  width: 1rem;
  height: 1rem;
}

.nav-mega-link:hover .nav-mega-icon,
.nav-mega-link:focus-visible .nav-mega-icon,
.nav-mega-link.active .nav-mega-icon {
  background: var(--emergency);
  color: #fff;
}

.nav-mega-menu.nav-mega-services .nav-mega-link:hover .nav-mega-icon,
.nav-mega-menu.nav-mega-services .nav-mega-link:focus-visible .nav-mega-icon,
.nav-mega-menu.nav-mega-services .nav-mega-link.active .nav-mega-icon,
.nav-mega-menu.nav-mega-cities .nav-mega-link:hover .nav-mega-icon,
.nav-mega-menu.nav-mega-cities .nav-mega-link:focus-visible .nav-mega-icon,
.nav-mega-menu.nav-mega-cities .nav-mega-link.active .nav-mega-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.nav-has-mega:hover>.nav-mega-trigger,
.nav-has-mega:focus-within>.nav-mega-trigger {
  color: var(--primary);
}

.mobile-sub-links {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.75rem;
  gap: 0.25rem;
}

/* Service page — structure ambulance.casa */
.service-page-hero .lead-text {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.25rem;
}

.service-hero-highlights {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .service-hero-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.875rem;
  backdrop-filter: blur(4px);
}

.service-hero-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  background: rgba(255, 193, 7, 0.2);
  color: var(--accent);
  flex-shrink: 0;
}

.service-hero-highlight-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.service-hero-highlight-icon-alt {
  background: rgba(235, 20, 20, 0.2);
  color: #fff;
}

.service-hero-highlight-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.service-hero-highlight-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.125rem;
  line-height: 1.4;
}

.service-sidebar-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem;
  margin-bottom: 1rem;
  background: rgba(235, 20, 20, 0.06);
  border-radius: 0.75rem;
}

.service-sidebar-highlight .service-hero-highlight-icon {
  background: rgba(235, 20, 20, 0.12);
  color: var(--primary);
}

.service-sidebar-highlight .service-hero-highlight-title {
  color: var(--foreground);
  font-size: 0.875rem;
}

.service-sidebar-highlight .service-hero-highlight-desc {
  color: var(--muted);
  font-size: 0.8125rem;
}

.service-hero-cta {
  margin-top: 0.5rem;
}

.service-article h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.service-article h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
}

.service-casa-grid {
  display: grid;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .service-casa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-casa-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-casa-card:hover {
  border-color: rgba(235, 20, 20, 0.25);
  box-shadow: var(--shadow);
}

.service-casa-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(235, 20, 20, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.service-casa-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.service-casa-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.service-stats {
  margin: 2rem 0;
}

.service-stats .stat-value {
  color: var(--primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.service-stats .stat-label {
  color: var(--muted);
  font-size: 0.8125rem;
}

.service-why-grid {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

.service-phone-banner {
  margin: 1.25rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  text-align: center;
}

.service-phone-banner h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.95;
}

.service-phone-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0.25rem 0 0.5rem;
}

.service-phone-number:hover {
  color: var(--accent);
}

.service-phone-banner p {
  font-size: 0.875rem;
  opacity: 0.85;
  margin: 0;
}

.service-testimonials {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .service-testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  margin: 0;
}

.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.testimonial-card footer {
  font-size: 0.8125rem;
  color: var(--muted);
}

.testimonial-card footer strong {
  color: var(--foreground);
}

.testimonial-date {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

@media (min-width: 1024px) {
  .service-sidebar {
    position: sticky;
    top: 6rem;
  }
}

.service-faq-wrap {
  max-width: 48rem;
}

.service-faq-wrap>h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 800;
}

.service-faq-list {
  margin-top: 1.25rem;
}

.other-services-grid .other-city-card span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

.service-content-grid {
  display: grid;
  gap: 2rem;
}

.service-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-intro-block {
  margin-bottom: 2rem;
}

.service-features-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .service-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.service-feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.service-feature-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(5, 150, 105, 0.12);
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.service-photo-grid {
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 1fr 300px;
  }
}

.service-hub-card {
  overflow: hidden;
  padding: 0;
}

.service-hub-card .badge {
  margin: 1rem 1.25rem 0;
}

.service-hub-card h3 {
  padding: 0 1.25rem;
  margin-top: 0.5rem;
}

.service-hub-card p {
  padding: 0 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-hub-card .card-link {
  display: block;
  padding: 1rem 1.25rem 1.25rem;
  margin-top: 0.5rem;
}

.service-hub-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 899px) {
  .nav-has-mega .nav-mega-menu {
    display: none !important;
    pointer-events: none !important;
  }
}

.cards-grid-6 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .cards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mega-menu Villes — 4 colonnes */
.nav-mega-cities {
  grid-template-columns: repeat(4, 1fr);
  min-width: min(52rem, calc(100vw - 2rem));
  gap: 0.25rem 1.25rem;
}

.nav-has-mega:hover .nav-mega-menu.nav-mega-cities,
.nav-has-mega:focus-within .nav-mega-menu.nav-mega-cities {
  display: grid;
}

.nav-mega-col-cities {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.nav-mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  text-align: center;
}

.nav-mega-all {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-light) !important;
}

.nav-mega-all:hover {
  color: #fff !important;
}

@media (min-width: 768px) {
  .nav-has-mega-cities::after {
    width: min(52rem, calc(100vw - 2rem));
  }
}

.mobile-sub-links-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.125rem 0.75rem;
}

.mobile-sub-link-plain {
  padding-left: 0.25rem;
}

.mobile-sub-link-plain .mobile-sub-icon {
  display: none;
}

.mobile-nav-accordion.open .mobile-sub-links-cities {
  max-height: min(55dvh, 640px);
}

.quarter-badge-link:hover {
  background: rgba(235, 20, 20, 0.12);
  color: var(--primary);
}

.city-services-list {
  margin: 1rem 0 1.5rem;
}

/* Services style expressambulance.ma — pages ville */
.city-services-express {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .city-services-express {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.city-services-express-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(41, 48, 65, 0.06);
}

.city-services-express-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.625rem;
  background: rgba(235, 20, 20, 0.08);
  color: var(--primary);
}

.city-services-express-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.city-services-express-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-dark, #1e293b);
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.city-services-express-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.625;
  margin: 0;
}

.city-regulation-box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(41, 48, 65, 0.06);
}

.city-regulation-box h3 {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.city-regulation-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
  margin: 0;
}

/* Footer style expressambulance.ma */
.footer-express {
  background: #0a0a0a;
  border-top: 1px solid #1f2937;
}

.footer-express-inner {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid-express {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid-express {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid-express {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-logo-express .logo-name {
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.375rem;
  margin-bottom: 1rem;
}

.footer-col-subtitle {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  border-bottom-width: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links-xs {
  columns: 2;
  column-gap: 2.5rem;
}

.footer-links-xs li {
  white-space: nowrap;
}

.footer-links-xs a {
  font-size: 0.75rem;
}

.footer-link-arrow {
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.15s;
}

.footer-links a:hover .footer-link-arrow {
  opacity: 1;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: #1f2937;
  border-radius: 9999px;
  transition: background 0.15s, color 0.15s;
}

.footer-social-link:hover {
  background: var(--primary);
  color: #fff;
}

.footer-contact-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.footer-contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.footer-contact-phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.footer-contact-phone:hover {
  color: var(--primary-light);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-express .footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1f2937;
}

.footer-express .footer-legal a {
  color: rgba(255, 255, 255, 0.45);
  margin-left: 1rem;
}

.footer-express .footer-legal a:hover {
  color: #fff;
}

/* ── Page Services (ambulance-privee.ma/services) ── */

.services-hero-light {
  padding: 6.5rem 0 3rem;
  background: #f4f7fb;
  text-align: center;
}

@media (min-width: 640px) {
  .services-hero-light {
    padding: 7rem 0 3.5rem;
  }
}

.services-hero-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(235, 20, 20, 0.08);
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.services-hero-light h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy-dark, #1e293b);
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.services-hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.services-section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.services-section-title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-dark, #1e293b);
  margin-bottom: 0.75rem;
}

.services-section-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.services-section-lead.text-center {
  margin-left: auto;
  margin-right: auto;
}

.services-section-title.text-center {
  text-align: center;
}

.services-mission-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-mission-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(41, 48, 65, 0.06);
}

.services-mission-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(235, 20, 20, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.services-mission-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.services-mission-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted);
}

.services-how-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .services-how-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.services-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services-steps li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}

.services-steps strong {
  font-size: 1rem;
  color: var(--foreground);
}

.services-steps span {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

.services-why-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.services-why-box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-why-box .check-list {
  margin-bottom: 1.25rem;
}

.services-catalog-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .services-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-catalog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(41, 48, 65, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.services-catalog-card:hover {
  border-color: rgba(235, 20, 20, 0.25);
  box-shadow: var(--shadow);
}

.services-catalog-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(235, 20, 20, 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.services-catalog-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.services-catalog-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.services-catalog-card>p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0.875rem;
}

.services-catalog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.services-catalog-list li {
  font-size: 0.8125rem;
  color: var(--foreground);
  padding: 0.25rem 0 0.25rem 1.125rem;
  position: relative;
  line-height: 1.45;
}

.services-catalog-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.services-catalog-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.services-catalog-link:hover {
  color: var(--emergency-dark);
}

.services-cities-grid {
  display: grid;
  gap: 0.875rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .services-cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-cities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.services-city-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.125rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.services-city-card:hover {
  border-color: rgba(235, 20, 20, 0.3);
  background: rgba(235, 20, 20, 0.04);
}

.services-city-card strong {
  font-size: 0.9375rem;
  color: var(--foreground);
}

.services-city-card span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

.services-cta-banner {
  text-align: center;
}

.services-faq-contact {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--muted);
  text-align: center;
}

.services-faq-contact a {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ Article Format */
.faq-article-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.faq-article-item {
  padding-left: 1rem;
  border-left: 4px solid var(--primary, #0056b3);
}

.faq-article-headline {
  font-size: 1.25rem;
  color: var(--heading, #1a202c);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-article-text {
  font-size: 1rem;
  color: var(--text, #4a5568);
  line-height: 1.6;
}


/* ==========================================================================
   PLACES GRID STYLES
   ========================================================================== */

.city-places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 639px) {
  .city-places-grid {
    grid-template-columns: 1fr;
  }
}

.place-card {
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-light, #3b82f6);
}

.place-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bg-light, #f8fafc);
}

.place-icon {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-lightest, #eff6ff);
  border-radius: 50%;
  flex-shrink: 0;
}

.place-card h3 {
  font-size: 1.125rem;
  color: var(--heading, #1a202c);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.place-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.place-card li {
  font-size: 0.95rem;
  color: var(--text, #4a5568);
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.place-card li::before {
  content: '•';
  color: var(--primary, #0056b3);
  font-weight: bold;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
}


/* Mobile menu backdrop */
body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  z-index: 490;
}

/* ═══════════════════════════════════════════════ */
/* Hero Reservation Form — White & Gold Premium   */
/* ═══════════════════════════════════════════════ */
.hero-reservation-wrapper {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 40px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
  text-align: left;
  color: #1a1a2e;
}

.hero-reservation-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b8962d 0%, #d4af37 30%, #f5e6a3 50%, #d4af37 70%, #b8962d 100%);
}

.hero-reservation-wrapper::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Form Header */
.res-form-header {
  margin-bottom: 1.5rem;
}

.res-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  color: #8b6914;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.res-form-title {
  color: #1a1a2e;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.res-form-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* Step Indicator */
.res-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.75rem;
  padding: 0.7rem 1rem;
  background: #f8f6f0;
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.res-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: color 0.3s;
  white-space: nowrap;
}

.res-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eee;
  border: 1.5px solid #ddd;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  transition: all 0.3s;
}

.res-step.active {
  color: #8b6914;
}

.res-step.active span {
  background: linear-gradient(135deg, #d4af37, #b8962d);
  color: #fff;
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.res-step.done span {
  background: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

.res-step.done {
  color: #8b6914;
}

.res-step-line {
  flex: 1;
  height: 2px;
  background: #e5e5e5;
  margin: 0 0.75rem;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.res-step-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #d4af37, #f5e6a3);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.res-step-line.filled::after {
  width: 100%;
}

/* Urgency Cards */
.res-urgency-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.res-urgency-card {
  cursor: pointer;
  margin: 0;
}

.res-urgency-card input[type="radio"] {
  display: none;
}

.res-urgency-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.875rem 0.5rem;
  border: 1.5px solid #e5e5e5;
  border-radius: 0.75rem;
  background: #fafafa;
  text-align: center;
  transition: all 0.25s;
}

.res-urgency-inner svg {
  color: #999;
  transition: color 0.25s;
}

.res-urgency-inner strong {
  font-size: 0.8125rem;
  color: #444;
  transition: color 0.25s;
}

.res-urgency-inner small {
  font-size: 0.6875rem;
  color: #999;
}

.res-urgency-card:hover .res-urgency-inner {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.04);
}

.res-urgency-card input:checked+.res-urgency-inner {
  border-color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.1);
}

.res-urgency-card input:checked+.res-urgency-inner svg {
  color: #b8962d;
}

.res-urgency-card input:checked+.res-urgency-inner strong {
  color: #8b6914;
}

/* Form Groups */
.reservation-form-group {
  margin-bottom: 1rem;
}

.reservation-form-row {
  display: flex;
  gap: 0.75rem;
}

.reservation-form-row .reservation-form-group {
  flex: 1;
}

.hero-reservation-form label {
  display: block;
  color: #555;
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.res-optional {
  color: #aaa;
  font-weight: 400;
}

.hero-reservation-form input,
.hero-reservation-form textarea,
.hero-reservation-form select {
  width: 100%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #1a1a2e;
  padding: 0.7rem 0.875rem;
  border-radius: 0.625rem;
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.hero-reservation-form input:focus,
.hero-reservation-form textarea:focus,
.hero-reservation-form select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1), 0 0 12px rgba(212, 175, 55, 0.06);
}

.hero-reservation-form input::placeholder,
.hero-reservation-form textarea::placeholder {
  color: #aaa;
}

.hero-reservation-form select option {
  background: #fff;
  color: #1a1a2e;
}

.hero-reservation-form textarea {
  resize: vertical;
  min-height: 70px;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, #d4af37 0%, #b8962d 50%, #d4af37 100%);
  background-size: 200% 100%;
  color: #fff;
  font-weight: 700;
  width: 100%;
  border: none;
  padding: 0.875rem;
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background-position 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
  background-position: 100% 0;
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-back {
  background: transparent;
  border: 1.5px solid #ddd;
  color: #666;
  padding: 0.875rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 600;
  transition: border-color 0.3s, color 0.3s;
}

.btn-back:hover {
  border-color: #d4af37;
  color: #8b6914;
}

.res-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.res-form-actions .btn-gold {
  flex: 1;
}

/* Success Message */
.reservation-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
  animation: resSuccessIn 0.6s ease-out forwards;
}

.reservation-success.active {
  display: block;
}

.reservation-success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
  color: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.25);
  animation: resPulse 2s ease-in-out infinite;
}

.reservation-success h3 {
  color: #8b6914;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.reservation-success p {
  color: #555;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.reservation-success p strong {
  color: #8b6914;
}

.res-success-info {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: #f8f6f0;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 0.75rem;
  color: #666;
  font-size: 0.8125rem;
}

.res-success-info a {
  color: #b8962d;
  font-weight: 700;
  text-decoration: none;
}

.res-success-info a:hover {
  text-decoration: underline;
}

@keyframes resSuccessIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes resPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.2);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
}

/* Adjust hero grid for form */
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    max-width: 72rem;
    text-align: left;
    gap: 3rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .stats {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-reservation-wrapper {
    padding: 1.25rem 1rem;
    border-radius: 1rem;
  }

  .res-form-title {
    font-size: 1.25rem;
  }

  .reservation-form-row {
    flex-direction: column;
    gap: 0;
  }

  .res-urgency-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .res-urgency-inner {
    padding: 0.625rem 0.25rem;
  }

  .res-urgency-inner strong {
    font-size: 0.75rem;
  }

  .res-urgency-inner small {
    font-size: 0.625rem;
  }

  .res-form-actions {
    flex-direction: column-reverse;
  }
}

/* Responsive Display Logic for Hero Form & Buttons */
@media (max-width: 1023px) {
  .hero-grid .hero-reservation-wrapper,
  .city-hero-split .hero-reservation-wrapper,
  .service-hero-grid .hero-reservation-wrapper {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hero-grid .hero-actions,
  .city-hero-split .city-hero-actions,
  .service-hero-grid .services-hero-actions,
  .emergency-float {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════ */
/* Reservation Modal                              */
/* ═══════════════════════════════════════════════ */
.reservation-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: modalOverlayIn 0.25s ease-out;
}

.reservation-modal-overlay.active {
  display: flex;
}

.reservation-modal {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation: modalSlideIn 0.35s ease-out;
  color: #1a1a2e;
}

.reservation-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b8962d 0%, #d4af37 30%, #f5e6a3 50%, #d4af37 70%, #b8962d 100%);
  border-radius: 1.25rem 1.25rem 0 0;
}

.reservation-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f5f5f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.reservation-modal-close:hover {
  background: #eee;
  color: #333;
}

@keyframes modalOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .reservation-modal {
    padding: 1.25rem 1rem;
    max-height: 95vh;
    border-radius: 1rem;
  }
}

/* Hero actions button styling */
.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
  flex-direction: column;
}

.btn-xl.open-reservation-modal {
  font-size: 1.0625rem;
  padding: 1rem 2rem;
}

@media (min-width: 1024px) {
  .hero-actions {
    justify-content: flex-start;
  }
}

/* Modal field reveal animation */
@keyframes modalFieldIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Emergency float button as reservation trigger */
button.emergency-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #eb1414 0%, #c41010 100%);
  color: #fff;
  border: none;
  padding: 0.875rem 1.25rem;
  border-radius: 3rem;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(235, 20, 20, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

button.emergency-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(235, 20, 20, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

button.emergency-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  button.emergency-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Service page hero grid with form */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.service-hero-text-col {
  text-align: center;
}

@media (min-width: 1024px) {
  .service-hero-text-col {
    text-align: left;
  }

  .service-hero-text-col .service-hero-cta {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════ */
/* Service Cities Section (SEO)                    */
/* ═══════════════════════════════════════════════ */
.svc-cities-section {
  padding: 4rem 0;
}

.svc-cities-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 2rem;
}

/* Major city cards */
.svc-cities-major {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.svc-city-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 0.875rem;
  text-decoration: none;
  text-align: left;
  font-family: inherit;
  color: var(--foreground);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-city-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.svc-city-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3ff;
  border-radius: 0.625rem;
  color: #2563eb;
}

.svc-city-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.svc-city-card strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--navy-dark, #1e293b);
}

.svc-city-card p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* Other cities pills */
.svc-cities-other-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8125rem;
}

.svc-cities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.svc-city-pill {
  display: inline-block;
  padding: 0.4375rem 0.875rem;
  background: #f0f4f8;
  color: var(--navy-dark, #1e293b);
  border: 1px solid #e2e8f0;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.svc-city-pill:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

/* CTA at bottom */
.svc-cities-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #f8f6f0, #fdf9ee);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.875rem;
}

.svc-cities-cta p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--foreground);
  flex: 1;
  min-width: 200px;
}

@media (max-width: 600px) {
  .svc-cities-major {
    grid-template-columns: 1fr;
  }

  .svc-cities-cta {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════ */
/* Other Cities Grid V2                            */
/* ═══════════════════════════════════════════════ */
.other-cities-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.other-city-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 0.875rem;
  text-decoration: none;
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.other-city-card-v2:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.other-city-card-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3ff;
  border-radius: 0.625rem;
  color: #2563eb;
}

.other-city-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.other-city-card-v2 strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--navy-dark, #1e293b);
}

.other-city-card-v2 p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 600px) {
  .other-cities-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* Zones layout full-width (no map) */
.city-zones-layout-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.city-zones-layout-full .city-zones-left {
  display: contents;
}

@media (max-width: 768px) {
  .city-zones-layout-full {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════ */
/* City Practical Section — How to Reserve         */
/* ═══════════════════════════════════════════════ */

/* Steps grid */
/* Steps grid */
.city-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
  counter-reset: step-counter;
}

.city-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.25rem 1.75rem;
  background: #fff;
  border: 1px solid #edf0f5;
  border-radius: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.city-step-number {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #c9a12e);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.city-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--navy-dark, #1e293b);
}

.city-step-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Info cards grid */
.city-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.city-info-card {
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid #edf0f5;
  border-left: 4px solid #2563eb;
  border-radius: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.25s, transform 0.25s;
}

.city-info-card:nth-child(2) {
  border-left-color: #22c55e;
}

.city-info-card:nth-child(3) {
  border-left-color: #d4af37;
}

.city-info-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.city-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3ff;
  border-radius: 0.625rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.city-info-card:nth-child(2) .city-info-icon {
  background: #ecfdf5;
  color: #16a34a;
}

.city-info-card:nth-child(3) .city-info-icon {
  background: #fef9ee;
  color: #b8962d;
}

.city-info-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.city-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-dark, #1e293b);
  margin-bottom: 0.875rem;
}

.city-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-info-card li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #475569;
}

.city-info-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 0.875rem;
}

.city-info-card:nth-child(1) li::before {
  color: #2563eb;
}

.city-info-card:nth-child(2) li::before {
  color: #22c55e;
}

.city-info-card:nth-child(3) li::before {
  color: #d4af37;
}

.city-info-card:nth-child(4) li::before {
  color: #eb1414;
}

.city-info-card:nth-child(4) {
  border-left-color: #eb1414;
}

.city-info-card:nth-child(4) .city-info-icon {
  background: #fef2f2;
  color: #eb1414;
}

/* CTA */
.city-practical-cta {
  text-align: center;
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .city-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .city-step-card {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem;
    gap: 1.25rem;
  }

  .city-step-number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .city-info-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* Hero — How to reserve */
.city-hero-how {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.25rem 0 0;
  text-align: left;
}

.hero-how-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0;
  position: relative;
}

.hero-how-num {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d4af37;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  border-radius: 50%;
  line-height: 1;
}

.hero-how-item strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-right: 0.25rem;
}

.hero-how-item>div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem;
  text-align: left;
}

.hero-how-item span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* Hero emergency numbers */
.hero-emergency-nums {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-emergency-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.625rem;
}

.hero-emergency-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-emergency-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.hero-emergency-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-em-icon {
  font-size: 0.8125rem;
  line-height: 1;
}

.hero-em-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.hero-em-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

/* ─── Home Service Image Grid (Premium) ─── */
.home-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.home-svc-card {
  position: relative;
  border-radius: 1.125rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  aspect-ratio: 3/4;
  transition: transform 0.4s cubic-bezier(.25, .46, .45, .94), box-shadow 0.4s ease;
}

.home-svc-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 164, 55, 0.2);
}

.home-svc-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.25, .46, .45, .94), filter 0.4s ease;
}

.home-svc-card:hover .home-svc-img img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

.home-svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.05) 70%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.home-svc-card:hover .home-svc-img::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.1) 75%, transparent 100%);
}

.home-svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.home-svc-body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.home-svc-body h3::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--primary, #d4a437);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.home-svc-card:hover .home-svc-body h3::before {
  width: 3rem;
}

.home-svc-body h3::after {
  content: '→';
  color: var(--primary, #d4a437);
  font-size: 1.125rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.home-svc-card:hover .home-svc-body h3::after {
  opacity: 1;
  transform: translateX(0);
}

.home-svc-body p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 0;
}

.home-svc-card::before {
  content: '';
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary, #d4a437);
  z-index: 3;
  box-shadow: 0 0 8px rgba(212, 164, 55, 0.5);
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.home-svc-card:hover::before {
  opacity: 1;
  transform: scale(1.4);
  box-shadow: 0 0 14px rgba(212, 164, 55, 0.7);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border: 2px solid var(--primary, #d4a437);
  color: var(--primary, #d4a437);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--primary, #d4a437);
  color: #000;
  box-shadow: 0 8px 25px rgba(212, 164, 55, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .home-svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .home-svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .home-svc-body {
    padding: 1rem;
  }

  .home-svc-body h3 {
    font-size: 0.9375rem;
  }
}

@media (max-width: 420px) {
  .home-svc-grid {
    gap: 0.625rem;
  }

  .home-svc-card {
    aspect-ratio: 2/3;
    border-radius: 0.875rem;
  }

  .home-svc-body {
    padding: 0.75rem;
  }

  .home-svc-body h3 {
    font-size: 0.8125rem;
    padding-bottom: 0.35rem;
  }

  .home-svc-body p {
    font-size: 0.6875rem;
  }

  .home-svc-card::before {
    width: 6px;
    height: 6px;
    top: 0.625rem;
    left: 0.625rem;
  }
}


/* ─── Open FAQ Grid ─── */
.faq-grid-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.faq-open-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--primary, #d4a437);
  border-radius: 0.875rem;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-open-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
  border-left-color: var(--primary, #d4a437);
}

.faq-open-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.625rem;
  line-height: 1.3;
}

.faq-open-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}

.faq-open-item p strong {
  color: rgba(255, 255, 255, 0.85);
}

.faq-open-item p a {
  color: var(--primary, #d4a437);
  text-decoration: none;
  font-weight: 500;
}

.faq-open-item p a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-grid-open {
    grid-template-columns: 1fr;
  }

  .faq-open-item {
    padding: 1.125rem;
  }

  .faq-open-item h3 {
    font-size: 0.9375rem;
  }

  .faq-open-item p {
    font-size: 0.8125rem;
  }
}

/* ─── FAQ Article Cards ─── */
.faq-articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.faq-article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.faq-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 164, 55, 0.25);
}

.faq-article-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.faq-article h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-article p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

.faq-article p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.faq-article p a {
  color: var(--primary, #d4a437);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.faq-article p a:hover {
  color: #f0c95c;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-articles {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-article {
    padding: 1.25rem;
  }

  .faq-article-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .faq-article h3 {
    font-size: 0.9375rem;
  }

  .faq-article p {
    font-size: 0.8125rem;
  }
}

/* ─── FAQ Simple Article ─── */
.faq-simple h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.faq-simple h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #d4a437;
  margin: 1.75rem 0 0.4rem;
  line-height: 1.35;
  padding-left: 0.875rem;
  border-left: 3px solid #d4a437;
}

.faq-simple h3:first-of-type {
  margin-top: 0;
}

.faq-simple p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
  padding-left: 0.875rem;
}

.faq-simple p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.faq-simple p a {
  color: #d4a437;
  text-decoration: none;
}

.faq-simple p a:hover {
  text-decoration: underline;
}

/* ─── Footer Emergency Numbers ─── */
.footer-emergency-grid-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.footer-emergency-pill {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #eb1414;
  border-radius: 0;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1.2;
}

.footer-emergency-pill:hover {
  background: rgba(235, 20, 20, 0.08);
  border-color: rgba(235, 20, 20, 0.25);
  border-left-color: #eb1414;
  color: #fff;
  transform: translateX(2px);
}

.footer-emergency-pill strong {
  font-weight: 800;
  color: #fff;
  font-size: 1.0625rem;
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ─── Services How-To Section ─── */
.services-howto-section {
  padding: 4rem 0;
  background: #f5f5f7;
}

.services-howto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}

.services-howto-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #eb1414 20%, #eb1414 80%, transparent);
  opacity: 0.2;
  z-index: 0;
}

.services-howto-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-howto-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  border: 2px solid #eb1414;
}

.services-howto-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: #eb1414;
}

.services-howto-icon svg {
  width: 100%;
  height: 100%;
}

.services-howto-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.5rem;
}

.services-howto-step p {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .services-howto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-howto-grid::before {
    display: none;
  }
}

/* ─── Fleet Stats Section ─── */
.fleet-section {
  background: #0a0a0a;
  padding: 4rem 0;
}

.fleet-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.fleet-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  transition: border-color .3s, background .3s;
}

.fleet-stat:hover {
  border-color: #eb1414;
  background: rgba(235, 20, 20, .05);
}

.fleet-stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #eb1414;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.fleet-stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .fleet-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Zones City Grid ─── */
.zones-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.zones-city-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  text-decoration: none;
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.zones-city-card:hover {
  border-color: #eb1414;
  box-shadow: 0 4px 12px rgba(235, 20, 20, .1);
  transform: translateY(-2px);
}

.zones-city-card svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #eb1414;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .zones-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Custom Header Buttons Alignment */
.nav-actions .btn, .mobile-menu-footer .btn {
  padding: 0.6rem 1.5rem !important;
  font-size: 0.875rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-actions .btn-emergency, .mobile-menu-footer .btn-emergency {
  border: 2px solid transparent !important;
}
