/* ============================================
   ISMAEL TAXI 93 — CSS MOBILE-FIRST
   Design system: Blanc + Or + Marine
   ============================================ */

:root {
  /* Colors */
  --c-bg: #ffffff;
  --c-ink: #111827;
  --c-ink-light: #374151;
  --c-accent: #F0A500;
  --c-accent-hi: #D4911A;
  --c-accent-soft: #FEF3C7;
  --c-muted: #6b7280;
  --c-border: #e5e7eb;
  --c-surface: #f9fafb;
  --c-navy: #1a2540;
  --c-navy-light: #253152;

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing */
  --nav-h: 72px;
  --radius: 6px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1200px;

  /* Transitions */
  --t: 0.25s ease;
  --t-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-accent: 0 8px 24px rgba(240,165,0,0.3);
}

/* =========== RESET & BASE =========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* =========== UTILITIES =========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--t);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}

.btn--accent {
  background: var(--c-accent);
  color: #000;
  box-shadow: var(--shadow-accent);
}
.btn--accent:hover {
  background: var(--c-accent-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(240,165,0,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--c-ink);
  border: 2px solid var(--c-border);
}
.btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: var(--c-accent-soft);
}

.btn--white {
  background: #fff;
  color: var(--c-navy);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--c-accent);
  color: #000;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* =========== SECTION HEADER =========== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: var(--c-accent-soft);
  color: var(--c-accent-hi);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1.15;
  margin-bottom: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.section-title em {
  font-style: normal;
  color: var(--c-accent);
}

.section-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--c-muted);
  max-width: 520px;
  margin: 0 auto;
}

.stars {
  color: var(--c-accent);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

/* =========== ANIMATIONS =========== */
/* Contenu toujours visible — animation seulement quand visible */
.js-reveal.visible {
  animation: revealUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.js-reveal.visible:nth-child(2) { animation-delay: 0.08s; }
.js-reveal.visible:nth-child(3) { animation-delay: 0.16s; }
.js-reveal.visible:nth-child(4) { animation-delay: 0.24s; }
.js-reveal.visible:nth-child(5) { animation-delay: 0.32s; }
.js-reveal.visible:nth-child(6) { animation-delay: 0.4s; }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .js-reveal { opacity: 1; transform: none; }
}

/* =========== NAVIGATION =========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}

.nav.solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  transition: color var(--t);
}

.nav.solid .nav__logo { color: var(--c-ink); }

.nav__logo strong { color: var(--c-accent); }

.nav__logo-icon { font-size: 1.4rem; }

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--t);
}
.nav__links a:hover { color: var(--c-accent); }
.nav.solid .nav__links a { color: var(--c-ink-light); }
.nav.solid .nav__links a:hover { color: var(--c-accent); }

@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__cta { display: none; }
@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  min-height: auto;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--t);
}
.nav.solid .nav__burger span { background: var(--c-ink); }

.nav__burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (min-width: 1024px) { .nav__burger { display: none; } }

.nav__mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #fff;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%);
  opacity: 0;
  transition: transform var(--t-slow), opacity var(--t-slow);
  z-index: 99;
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}

.nav__mobile .btn {
  margin-top: 8px;
  justify-content: center;
  border: none;
}

@media (min-width: 1024px) { .nav__mobile { display: none; } }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.1s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 37, 64, 0.88) 0%,
    rgba(26, 37, 64, 0.65) 50%,
    rgba(26, 37, 64, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  max-width: 720px;
}

@media (min-width: 768px) { .hero__content { padding: 100px 32px; } }
@media (min-width: 1024px) { .hero__content { padding: 120px 48px; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--c-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__title em {
  font-style: italic;
  color: var(--c-accent);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.hero__rating strong { font-size: 1.1rem; color: #fff; }

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) { .hero__actions { flex-direction: row; flex-wrap: wrap; } }

.hero__actions .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero__actions .btn--outline:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(240,165,0,0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0%, 100% { top: 6px; opacity: 1; }
  70% { top: 18px; opacity: 0; }
}

/* =========== STATS =========== */
.stats {
  padding: 48px 0;
  background: var(--c-navy);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.stat {
  text-align: center;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========== SERVICES =========== */
.services {
  padding: 80px 0;
  background: var(--c-bg);
}

@media (min-width: 768px) { .services { padding: 100px 0; } }

.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.card:hover::after { transform: scaleX(1); }

.card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card__list li {
  font-size: 0.85rem;
  color: var(--c-ink-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========== ABOUT =========== */
.about {
  padding: 80px 0;
  background: var(--c-surface);
}

@media (min-width: 768px) { .about { padding: 100px 0; } }

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about__inner > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.about__visual {
  position: relative;
}

.about__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) { .about__img { height: 520px; } }

.about__badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--c-accent);
  color: #000;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about__badge-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about__badge-float span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about__text .section-title { text-align: left; }
.about__text .section-tag { margin-bottom: 12px; }

.about__text p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__text strong { color: var(--c-ink); }

.about__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--c-ink-light);
  font-weight: 500;
}

.about__feature-icon { font-size: 1.1rem; }

/* =========== TARIFS =========== */
.tarifs {
  padding: 80px 0;
  background: var(--c-bg);
}

@media (min-width: 768px) { .tarifs { padding: 100px 0; } }

.tarifs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.tarif-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--t), box-shadow var(--t);
}

.tarif-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tarif-card--featured {
  background: var(--c-navy);
  border-color: var(--c-accent);
  position: relative;
  overflow: hidden;
}

.tarif-card--featured::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0.08;
}

.tarif-card__label {
  display: inline-block;
  background: var(--c-accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.tarif-card__top h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.tarif-card--featured .tarif-card__top h3 { color: #fff; }

.tarif-card__top p {
  font-size: 0.85rem;
  color: var(--c-muted);
}

.tarif-card--featured .tarif-card__top p { color: rgba(255,255,255,0.6); }

.tarif-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tarif-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-accent);
  line-height: 1;
}

.tarif-card__unit {
  font-size: 0.85rem;
  color: var(--c-muted);
  font-weight: 500;
}

.tarif-card--featured .tarif-card__unit { color: rgba(255,255,255,0.5); }

.tarif-card__includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tarif-card__includes li {
  font-size: 0.9rem;
  color: var(--c-ink-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tarif-card__includes li::before {
  content: '✓';
  color: var(--c-accent);
  font-weight: 700;
  font-size: 0.85rem;
}

.tarif-card--featured .tarif-card__includes li { color: rgba(255,255,255,0.75); }

.tarifs__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =========== RÉSERVATION =========== */
.reservation {
  padding: 80px 0;
  background: var(--c-surface);
}

@media (min-width: 768px) { .reservation { padding: 100px 0; } }

.reservation__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.reservation__inner > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .reservation__inner { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.reservation__text .section-title { text-align: left; }
.reservation__text .section-tag { margin-bottom: 12px; }

.reservation__text p {
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.reservation__call {
  display: inline-flex;
  margin-bottom: 20px;
}

.reservation__avail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-muted);
  overflow-wrap: break-word;
  word-break: break-word;
  flex-wrap: wrap;
}

.avail-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* =========== FORM =========== */
.form {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 480px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-ink);
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-bg);
  transition: border-color var(--t), box-shadow var(--t);
  min-height: 48px;
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.15);
}

.form__group textarea {
  resize: vertical;
  min-height: 80px;
}

.form__legal {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.6;
}

.form__success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =========== AVIS =========== */
.avis {
  padding: 80px 0;
  background: var(--c-bg);
}

@media (min-width: 768px) { .avis { padding: 100px 0; } }

.avis__global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--c-muted);
}

.avis__global strong { color: var(--c-ink); font-size: 1.05rem; }

.review {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t);
}

.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review__stars {
  font-size: 1rem;
  color: var(--c-accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review p {
  font-size: 0.9rem;
  color: var(--c-ink-light);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review footer strong {
  font-size: 0.9rem;
  color: var(--c-ink);
  font-weight: 600;
}

.review footer span {
  font-size: 0.8rem;
  color: var(--c-muted);
}

.avis__grid {
  gap: 20px;
}

/* =========== CTA STRIP =========== */
.cta-strip {
  padding: 64px 0;
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0.05;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: 0.04;
}

.cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-strip__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.cta-strip__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-strip__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
}

.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 480px) { .cta-strip__actions { flex-direction: row; } }

/* =========== CONTACT =========== */
.contact {
  padding: 80px 0;
  background: var(--c-surface);
}

@media (min-width: 768px) { .contact { padding: 100px 0; } }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact__inner > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .contact__inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__item-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.contact__item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  margin-bottom: 4px;
}

.contact__item a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-accent);
  font-family: var(--font-display);
}

.contact__item a:hover { color: var(--c-accent-hi); }

.contact__item address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--c-ink-light);
  line-height: 1.7;
}

.contact__item span {
  font-size: 0.95rem;
  color: var(--c-ink-light);
}

.contact__zones strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__tags span {
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-ink);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

.contact__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}

.contact__map iframe {
  display: block;
  width: 100%;
}

/* =========== FOOTER =========== */
.footer {
  background: var(--c-ink);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

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

.footer__logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 280px;
}

.footer__nav,
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t);
}
.footer__nav a:hover { color: var(--c-accent); }

.footer__phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-accent) !important;
  display: block;
}

.footer__contact address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer__contact span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =========== MOBILE CTA =========== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: white;
  border-top: 1px solid var(--c-border);
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mobile-cta .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) { .mobile-cta { display: block; } }

/* Fix scroll padding for anchor links on mobile */
section { scroll-margin-top: var(--nav-h); }
