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

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
  /* Palette "Coucher de soleil" */
  --color-peach: #FFB88C;
  --color-rose: #F78CA0;
  --color-sky: #89CFF0;
  --color-navy: #214073;
  --color-navy-dark: #15294a;
  --color-navy-light: #2c5496;
  --color-bg: #F8F9FA;
  --color-surface: #FFFFFF;
  --color-text-main: #214073;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: rgba(33, 64, 115, 0.08);

  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-handwriting: 'Dancing Script', cursive;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 25px rgba(247, 140, 160, 0.35);

  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==========================================================================
   Typography & Helpers
   ========================================================================== */
.font-handwriting {
  font-family: var(--font-handwriting);
}

.text-gradient {
  background: linear-gradient(90deg, var(--color-peach), var(--color-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-sky {
  background: linear-gradient(90deg, var(--color-sky), var(--color-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 880px;
}

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

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-rose), var(--color-peach));
  color: #FFFFFF !important;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(247, 140, 160, 0.45);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  border-color: var(--color-navy);
  color: var(--color-navy) !important;
}

.btn-outline-navy:hover {
  background: var(--color-navy);
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-white {
  background: #FFFFFF;
  color: var(--color-navy);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.badge-peach {
  background: rgba(255, 184, 140, 0.2);
  color: var(--color-rose);
}

.badge-sky {
  background: rgba(137, 207, 240, 0.2);
  color: var(--color-navy);
}

/* ==========================================================================
   Card Premium
   ========================================================================== */
.card-premium {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(33, 64, 115, 0.12);
}

/* Background ambient glow shapes */
.glow-shape {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow-peach { background: var(--color-peach); opacity: 0.25; }
.glow-rose { background: var(--color-rose); opacity: 0.25; }
.glow-sky { background: var(--color-sky); opacity: 0.25; }

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
  background: #FFFFFF;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(33, 64, 115, 0.08);
  height: 80px;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(33, 64, 115, 0.12);
  height: 72px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-handwriting);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}

.brand-logo span {
  transition: var(--transition);
}

.brand-logo:hover span.brand-accent {
  filter: hue-rotate(15deg);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy);
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--color-rose);
  font-weight: 700;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: var(--transition);
}

.header-phone:hover {
  color: var(--color-rose);
}

.phone-icon-bubble {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 184, 140, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose);
  transition: var(--transition);
}

.header-phone:hover .phone-icon-bubble {
  background: rgba(247, 140, 160, 0.25);
}

/* Burger Button */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 5px;
  z-index: 102;
}

.burger-line {
  width: 24px;
  height: 2.5px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition);
}

.burger-btn.open .burger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.burger-btn.open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-btn.open .burger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 100px 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-navy);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-rose);
  background: rgba(247, 140, 160, 0.08);
}

.mobile-actions {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(33, 64, 115, 0.05);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--color-navy);
}

@media (min-width: 992px) {
  .main-nav, .header-actions { display: flex; }
  .burger-btn { display: none; }
  .mobile-menu { display: none; }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--color-navy);
  color: #FFFFFF;
  padding: 160px 0 90px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../img/banniere.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 64, 115, 0.8) 0%, rgba(21, 41, 74, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title .handwriting {
  font-family: var(--font-handwriting);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 800;
  display: block;
  margin-top: 0.25rem;
}

.hero-desc {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.25rem;
  font-weight: 300;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   Page Headers (CPAM, Services, Conductrice, Contact, Legal)
   ========================================================================== */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: #FFFFFF;
  padding: 150px 0 70px;
  text-align: center;
  overflow: hidden;
}

.page-header-title {
  font-family: var(--font-handwriting);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-header-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}

/* ==========================================================================
   Section: Zone d'intervention
   ========================================================================== */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-rose);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-handwriting);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
}

.section-desc {
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
}

/* Zone Card */
.zone-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
}

@media (min-width: 992px) {
  .zone-grid {
    grid-template-columns: 1fr 1fr;
    padding: 3.5rem;
  }
}

.zone-info {
  position: relative;
  z-index: 2;
}

.zone-icon-box {
  display: inline-flex;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 184, 140, 0.2);
  color: var(--color-rose);
  margin-bottom: 1.5rem;
}

.zone-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.zone-text strong {
  color: var(--color-navy);
}

.zone-map-container {
  width: 100%;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Section: Spécialités
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255, 184, 140, 0.15);
  color: var(--color-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  transform: translateY(-4px);
  background: rgba(247, 140, 160, 0.2);
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.service-card-text {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-rose);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.service-card-link:hover {
  color: var(--color-peach);
  transform: translateX(3px);
}

/* ==========================================================================
   Section: Avis Google
   ========================================================================== */
.reviews-section {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.reviews-header-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.reviews-rating-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #FBBF24;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

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

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

.review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(33, 64, 115, 0.1);
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: #E2E8F0;
}

.review-author-name {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  color: #FBBF24;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.6;
  flex-grow: 1;
}

/* ==========================================================================
   Page: CPAM / Transport Médical
   ========================================================================== */
.cpam-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .cpam-content-grid {
    grid-template-columns: 8fr 4fr;
  }
}

.cpam-box {
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.cpam-box:last-child {
  margin-bottom: 0;
}

.cpam-box-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cpam-box-icon {
  padding: 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 184, 140, 0.2);
  color: var(--color-rose);
  display: flex;
}

.cpam-box-icon.sky {
  background: rgba(137, 207, 240, 0.2);
  color: var(--color-navy);
}

.cpam-box-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-navy);
}

.cpam-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.cpam-text:last-child {
  margin-bottom: 0;
}

.sidebar-sticky {
  position: sticky;
  top: 110px;
}

.docs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.docs-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-navy);
  font-weight: 500;
}

.docs-check {
  color: var(--color-rose);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ==========================================================================
   Page: Services
   ========================================================================== */
.service-showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .service-showcase-row {
    grid-template-columns: 1fr 1fr;
  }
}

.service-showcase-row:last-child {
  margin-bottom: 0;
}

.service-img-wrapper {
  position: relative;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-img-wrapper:hover img {
  transform: scale(1.04);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 64, 115, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.service-info-card {
  padding: 2.75rem;
}

/* ==========================================================================
   Page: La Conductrice & Véhicule
   ========================================================================== */
.driver-card-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
}

@media (min-width: 992px) {
  .driver-card-layout {
    grid-template-columns: 5fr 7fr;
    padding: 3.5rem;
  }
}

.driver-photo-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.driver-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-photo-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.vehicle-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.driver-text-content {
  position: relative;
  z-index: 2;
}

.driver-text-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.driver-text-content p:last-of-type {
  margin-bottom: 2rem;
}

.driver-text-content strong {
  color: var(--color-navy);
  font-weight: 700;
}

/* ==========================================================================
   Page: Contact / Réservation
   ========================================================================== */
.contact-form-wrap {
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 3.5rem;
  }
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-navy);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--color-rose);
  box-shadow: 0 0 0 3px rgba(247, 140, 160, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-trajet-box {
  background: rgba(255, 184, 140, 0.08);
  border: 1px solid rgba(255, 184, 140, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-trajet-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 184, 140, 0.3);
}

.form-char-count {
  font-size: 0.78rem;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 0.25rem;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .form-footer {
    flex-direction: row;
  }
}

.form-privacy-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Toasts Notification
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 320px;
  max-width: 90vw;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideInToast 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: all 0.3s ease;
}

.toast.success {
  border-left: 4px solid #10B981;
  color: #065F46;
}

.toast.error {
  border-left: 4px solid #EF4444;
  color: #991B1B;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ==========================================================================
   Legal Pages (Mentions & Confidentialité)
   ========================================================================== */
.legal-content {
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .legal-content {
    padding: 3.5rem;
  }
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-navy);
  color: #FFFFFF;
  padding: 4.5rem 0 2rem;
  border-top: 8px solid var(--color-peach);
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

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

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

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-peach);
  margin-bottom: 1.25rem;
}

.footer-brand-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-peach);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(247, 140, 160, 0.15);
  color: var(--color-rose);
  display: flex;
  margin-top: 0.2rem;
}

.footer-contact-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.footer-contact-val {
  font-size: 0.9rem;
  color: #FFFFFF;
  font-weight: 500;
  transition: var(--transition);
}

.footer-contact-val:hover {
  color: var(--color-peach);
}

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

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--color-peach);
}

/* ==========================================================================
   Leaflet Custom Styling
   ========================================================================== */
.leaflet-control-attribution {
  font-size: 10px !important;
  background: rgba(255, 255, 255, 0.8) !important;
}

/* Pulse animation for map sector */
@keyframes pulseMap {
  0% { transform: scale(0.98); opacity: 0.7; }
  50% { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(0.98); opacity: 0.7; }
}
