:root {
  --blue-start: #0870c8;
  --blue-end: #004ca2;
  --blue-dark: #004b9f;
  --blue-title: #004d9d;
  --soft-bg: #f3f7ff;
  --sand: #f6ead7;
  --whatsapp: #24d366;
  --text: #30343d;
  --muted: #5c6270;
  --card-border: #e5edf7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--soft-bg);
}

.page {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 645px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 150px;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 15% 45%, rgba(0, 174, 210, 0.34), transparent 23%),
    radial-gradient(circle at 48% 0%, rgba(16, 166, 219, 0.28), transparent 26%),
    linear-gradient(120deg, var(--blue-start) 0%, #0067bf 42%, var(--blue-end) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin-top: 6px;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.28;
}

.hero__glow--left {
  width: 440px;
  height: 440px;
  left: 12%;
  top: 20%;
  background: #10afd3;
}

.hero__glow--right {
  width: 520px;
  height: 390px;
  right: 14%;
  top: 2%;
  background: #1984da;
}

.bus {
  width: 88px;
  height: 70px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  font-size: 54px;
  line-height: 1;
  filter: drop-shadow(0 4px 1px rgba(0, 0, 0, 0.14));
}

.hero__welcome {
  margin: 0 0 18px;
  font-family: "Pacifico", cursive;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 27px;
  font-size: clamp(33px, 4.95vw, 62px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.hero__subtitle {
  margin-bottom: 58px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 0 47px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  text-decoration: none;
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 900;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  transform: translateY(-2px);
  background: #1fc65e;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.14);
}

.whatsapp__icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 999px;
  font-size: 22px;
  line-height: 1;
  transform: rotate(-10deg);
}

.sand {
  position: absolute;
  left: 0;
  width: 100%;
  background: var(--sand);
  pointer-events: none;
}

.sand--wave {
  z-index: 1;
  bottom: 41px;
  height: 84px;
  border-radius: 50% 50% 0 0 / 72% 72% 0 0;
  transform: scaleX(1.22) translateY(28px);
}

.sand--base {
  z-index: 1;
  bottom: 0;
  height: 52px;
}

.destinations {
  padding: 107px 24px 96px;
  background: var(--soft-bg);
}

.section-head {
  margin: 0 auto 61px;
  max-width: 900px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 19px;
  color: var(--blue-title);
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.section-head p {
  margin-bottom: 0;
  color: #525761;
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 600;
}

.cards {
  width: min(1660px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 27px;
}

.card {
  min-height: 190px;
  padding: 36px 22px 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(34, 58, 84, 0.03);
}

.card__icon {
  min-height: 54px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  font-size: 42px;
  line-height: 1;
}

.card h3 {
  margin-bottom: 9px;
  color: #2d3038;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
}

.pyramid {
  position: relative;
  width: 62px;
  min-height: 54px;
  margin-inline: auto;
}

.pyramid::before {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  background:
    linear-gradient(135deg, transparent 47%, #b88b59 48% 52%, transparent 53%) 50% 0 / 28px 16px no-repeat,
    linear-gradient(to bottom, transparent 0 18%, #b88b59 19% 28%, transparent 29% 43%, #b88b59 44% 53%, transparent 54% 68%, #b88b59 69% 78%, transparent 79%),
    conic-gradient(from 225deg at 50% 0, transparent 0 25%, #c49968 0 75%, transparent 0);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media (max-width: 1100px) {
  .hero {
    min-height: 610px;
    padding-top: 78px;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 820px;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 600px;
    padding: 58px 18px 125px;
  }

  .bus {
    margin-bottom: 20px;
    font-size: 48px;
  }

  h1 {
    letter-spacing: -0.9px;
  }

  h1 br {
    display: none;
  }

  .hero__subtitle {
    margin-bottom: 36px;
  }

  .whatsapp {
    width: min(100%, 390px);
    min-height: 64px;
    padding: 0 20px;
    gap: 7px;
  }

  .whatsapp__icon {
    width: 31px;
    height: 31px;
    font-size: 17px;
    border-width: 2px;
  }

  .destinations {
    padding: 72px 18px 64px;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 430px;
    gap: 18px;
  }

  .card {
    min-height: 165px;
    padding: 29px 18px 25px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 620px;
  }

  .hero__welcome {
    margin-bottom: 14px;
  }

  .whatsapp {
    flex-wrap: wrap;
    line-height: 1.1;
  }
}

/* Sections du bas */
.services {
  padding: 104px 24px 112px;
  background: #fff;
}

.script {
  margin-bottom: 14px;
  font-family: "Pacifico", cursive;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.9);
}

.script--blue {
  color: #0a73c9;
}

.cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
}

.card--service {
  min-height: 245px;
  padding: 42px 34px 34px;
}

.split {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 104px;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 58px;
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  border: 1px solid var(--card-border);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(0, 76, 162, 0.08);
}

.split__content h2 {
  margin-bottom: 22px;
  color: var(--blue-title);
  font-size: clamp(32px, 3.1vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
}

.split__content > p:not(.script) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
}

.checklist {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 42px;
  color: #2f3540;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.vehicle-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 198, 74, 0.9) 0 42px, transparent 43px),
    linear-gradient(180deg, #bfe9ff 0 54%, #f7ead4 55% 100%);
  box-shadow: inset 0 -20px 0 rgba(255, 255, 255, 0.38);
}

.vehicle-card .sun {
  position: absolute;
  right: 58px;
  top: 44px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffc64a;
  box-shadow: 0 0 0 16px rgba(255, 198, 74, 0.18);
}

.vehicle-card .van {
  position: relative;
  z-index: 1;
  font-size: 112px;
  filter: drop-shadow(0 14px 18px rgba(0, 76, 162, 0.18));
}

.vehicle-card .road {
  position: absolute;
  left: 50%;
  bottom: 52px;
  width: 78%;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 76, 162, 0.18);
}

.why {
  padding: 102px 24px 112px;
  background: #f8fbff;
}

.features {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.feature {
  min-height: 165px;
  padding: 34px 42px 32px 108px; /* espace desktop à gauche entre le bord, l'icône et le texte */
  position: relative;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(34, 58, 84, 0.05);
}

.feature span {
  position: absolute;
  left: 38px; /* icônes écartées du bord gauche sur desktop */
  top: 36px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eef7ff;
  font-size: 28px;
  line-height: 1;
}

.feature h3 {
  margin-bottom: 9px;
  color: #26313f;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 650;
}

.cta {
  padding: 104px 24px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 16% 25%, rgba(0, 174, 210, 0.32), transparent 24%),
    linear-gradient(135deg, var(--blue-start), var(--blue-end));
}

.cta__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1px;
}

.cta__inner > p:not(.script) {
  margin: 0 auto 38px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.whatsapp--light {
  background: #fff;
  color: #138f49;
}

.whatsapp--light:hover,
.whatsapp--light:focus-visible {
  background: #f4fff8;
}

.footer {
  padding: 26px 24px;
  text-align: center;
  background: #003b7e;
  color: rgba(255, 255, 255, 0.82);
}

.footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .cards--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
    padding: 48px;
  }

  .vehicle-card {
    min-height: 300px;
  }
}

@media (max-width: 700px) {
  .services,
  .why,
  .cta {
    padding: 72px 18px;
  }

  .cards--three,
  .features {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .split {
    width: calc(100% - 36px);
    margin-bottom: 72px;
    padding: 34px 24px;
    gap: 34px;
    border-radius: 26px;
  }

  .split__content > p:not(.script),
  .cta__inner > p:not(.script) {
    font-size: 17px;
  }

  .checklist li {
    padding-left: 37px;
    font-size: 16px;
  }

  .feature {
    min-height: auto;
    padding: 30px 24px 28px;
    text-align: center;
  }

  .feature span {
    position: static;
    margin: 0 auto 18px;
  }

  .vehicle-card {
    min-height: 245px;
  }

  .vehicle-card .van {
    font-size: 82px;
  }
}
