/* SIG TRANSIT — African Services Plus — feuille de style commune */

:root {
  --navy: #08263D;
  --navy-alt: #0b3050;
  --navy-header: rgba(8, 38, 61, 0.94);
  --ocean: #087EA4;
  --orange: #F47B20;
  --orange-hover: #ff9142;
  --sand: #D9C7A5;
  --fog: #F4F7F8;
  --fog-card: #FFFFFF;
  --black: #111820;
  --text-soft: #3a4750;
  --text-muted: #5a6b74;
  --border-light: rgba(8, 38, 61, 0.12);
  --border-light-strong: rgba(8, 38, 61, 0.25);
  --border-dark: rgba(217, 199, 165, 0.15);
  --placeholder-a: #17324a;
  --placeholder-b: #0f2436;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--fog);
  color: var(--black);
}

a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--orange); }
::selection { background: rgba(244, 123, 32, 0.25); }
img { max-width: 100%; display: block; }

.mono-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 14px;
  display: block;
}

.mono-tag.on-dark { color: var(--orange); }

.section-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 38px);
  margin: 0 0 44px;
  color: var(--navy);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 64px);
  background: var(--navy-header);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-dark);
}

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

.logo-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--fog);
}

.logo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--fog);
}

.nav-link.active { color: var(--orange); font-weight: 600; }
.nav-link:hover { color: var(--orange); }

.nav-cta {
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  background: var(--orange);
  color: var(--fog);
  border-radius: 3px;
}

.nav-cta:hover { background: var(--orange-hover); color: var(--fog); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fog);
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.nav-mobile-panel {
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 2px;
  overflow-y: auto;
}

.nav-mobile-panel.open { display: flex; }

.nav-mobile-panel a {
  color: var(--fog);
  font-size: 17px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--border-dark);
  font-weight: 600;
}

.nav-mobile-panel a.cta { color: var(--orange); }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 64px) 72px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--placeholder-a) 0px, var(--placeholder-a) 26px, var(--placeholder-b) 26px, var(--placeholder-b) 52px);
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

.hero-slide.active { opacity: 1; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,38,61,0.5) 0%, rgba(8,38,61,0.72) 55%, rgba(8,38,61,0.95) 100%);
}

.hero-photo-label {
  position: absolute;
  bottom: 24px;
  right: clamp(20px, 5vw, 64px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(244,247,248,0.35);
  letter-spacing: 0.05em;
}

.hero-inner { position: relative; z-index: 2; max-width: 900px; }

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--fog);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--sand);
  letter-spacing: 0.02em;
  margin: 0 0 36px;
}

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--orange);
  color: var(--fog);
  border: none;
  padding: 16px 30px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover { background: var(--orange-hover); color: var(--fog); }

.btn-secondary {
  background: transparent;
  color: var(--fog);
  border: 1px solid rgba(244,247,248,0.5);
  padding: 16px 30px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}

.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Intro ---------- */

.intro-section {
  padding: 96px clamp(20px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}

.intro-section p {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  color: var(--navy);
  max-width: 820px;
  margin: 0;
}

/* ---------- Expertises ---------- */

.expertises-section {
  padding: 0 clamp(20px, 5vw, 64px) 96px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.expertise-card {
  background: var(--fog-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expertise-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
}

.expertise-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  margin: 0;
}

.expertise-desc { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }

/* ---------- Parcours / Timeline ---------- */

.timeline-section {
  padding: 96px clamp(20px, 5vw, 64px);
  background: var(--navy);
}

.timeline-inner { max-width: 1200px; margin: 0 auto; }

.timeline-title { color: var(--fog); }

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.timeline-line {
  position: absolute;
  top: 20px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--orange);
  opacity: 0.4;
}

.timeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.timeline-num {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.timeline-step-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--fog);
}

.timeline-step-desc { font-size: 13px; line-height: 1.5; color: var(--sand); opacity: 0.85; }

/* ---------- Port / International ---------- */

.port-section {
  padding: 96px clamp(20px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: center;
}

.port-text h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin: 0 0 20px;
}

.port-text p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 24px;
}

.port-map-note {
  border: 1px dashed var(--border-light-strong);
  border-radius: 4px;
  padding: 16px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--navy);
  opacity: 0.65;
}

.port-photo {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background: repeating-linear-gradient(135deg, #dce4e8 0px, #dce4e8 16px, #ccd7dc 16px, #ccd7dc 32px);
}

/* ---------- Pourquoi ---------- */

.why-section {
  padding: 0 clamp(20px, 5vw, 64px) 96px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.why-point { border-top: 2px solid var(--orange); padding-top: 18px; }

.why-point-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  margin: 0 0 10px;
}

.why-point-desc { font-size: 14.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }

/* ---------- Galerie "Nos activités en images" ---------- */

.gallery-section { padding: 96px clamp(20px, 5vw, 64px); background: var(--fog); }
.gallery-inner { max-width: 1200px; margin: 0 auto; }

.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }

.gallery-filter-btn {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border-light-strong);
  padding: 9px 18px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
}

.gallery-filter-btn.active { background: var(--navy); color: var(--fog); border-color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-card {
  cursor: pointer;
  background: var(--fog-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  font-family: inherit;
  color: inherit;
  display: block;
  width: 100%;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.gallery-card:hover { border-color: var(--orange); transform: translateY(-2px); }

.gallery-card-image {
  aspect-ratio: 4 / 3;
  position: relative;
  background-size: cover;
  background-position: center;
  background: repeating-linear-gradient(135deg, #dce4e8 0px, #dce4e8 16px, #ccd7dc 16px, #ccd7dc 32px);
}

.gallery-card-media-count {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--fog);
  background: rgba(8,38,61,0.65);
  padding: 3px 7px;
  border-radius: 2px;
}

.gallery-card-body { padding: 18px 20px; }

.gallery-card-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.gallery-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
}

/* ---------- Lightbox ---------- */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 38, 61, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-overlay.open { display: flex; }

.lightbox-box {
  max-width: 820px;
  width: 100%;
  background: var(--fog);
  border-radius: 4px;
  overflow: hidden;
}

.lightbox-carousel {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #17324a 0px, #17324a 20px, #0f2436 20px, #0f2436 40px);
}

.lightbox-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-slide.active { opacity: 1; pointer-events: auto; }
.lightbox-slide-image { width: 100%; height: 100%; background-size: cover; background-position: center; }
.lightbox-slide-video { width: 100%; height: 100%; object-fit: contain; background: #000; display: block; }

.lightbox-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: rgba(244,247,248,0.5);
  text-align: center;
  padding: 0 24px;
}

.lightbox-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--fog);
  font-size: 22px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 2;
}

.lightbox-carousel-arrow.prev { left: 16px; }
.lightbox-carousel-arrow.next { right: 16px; }

.lightbox-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.lightbox-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  padding: 0;
}

.lightbox-dots button.active { background: var(--orange); }

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--fog);
  font-size: 16px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 2;
}

.lightbox-body { padding: 24px 28px; }

.lightbox-title {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.lightbox-desc { font-size: 14px; line-height: 1.6; color: var(--text-muted); }

/* ---------- Chiffres clés ---------- */

.stats-section {
  padding: 0 clamp(20px, 5vw, 64px) 96px;
  max-width: 1200px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat-card {
  border: 1px dashed var(--border-light-strong);
  border-radius: 4px;
  padding: 26px 22px;
}

.stat-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 6px;
}

.stat-label { font-size: 13.5px; color: var(--text-soft); margin-bottom: 8px; }

.stat-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--ocean);
  opacity: 0.75;
}

/* ---------- CTA final ---------- */

.cta-final {
  padding: 88px clamp(20px, 5vw, 64px);
  background: var(--navy);
  text-align: center;
}

.cta-final h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--fog);
  margin: 0 0 28px;
}

.cta-final-group p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--sand);
  margin: 32px 0 0;
}

/* ---------- Services (page) ---------- */

.services-header {
  padding: 100px clamp(20px, 5vw, 64px) 0;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  margin: 0 0 20px;
}

.services-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 700px;
  margin: 0 0 64px;
}

.services-list {
  padding: 0 clamp(20px, 5vw, 64px) 100px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 2fr);
  gap: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 40px;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  margin-bottom: 18px;
}

.service-row h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--navy);
  margin: 0;
}

.service-desc { font-size: 15px; line-height: 1.7; color: var(--text-soft); margin: 0 0 20px; }

.service-coverage-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 10px;
}

.service-coverage {
  margin: 0 0 22px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-coverage li { font-size: 14.5px; color: var(--text-soft); line-height: 1.5; }

.service-audience {
  background: var(--fog);
  border-left: 2px solid var(--orange);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--navy);
}

/* ---------- Bloc rattachement groupe ---------- */

.group-link-section {
  padding: 100px clamp(20px, 5vw, 64px);
  background: var(--fog-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.group-link-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Contact ---------- */

.contact-section { padding: 100px clamp(20px, 5vw, 64px) 120px; max-width: 1100px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
  gap: 64px;
}

.contact-info h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin: 0 0 26px;
}

.contact-info > p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 40px;
}

.contact-detail { margin-bottom: 22px; }

.contact-detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
}

.contact-success {
  background: var(--navy);
  border-radius: 4px;
  padding: 48px 36px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.contact-success.visible { display: flex; }

.contact-success-check {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
}

.contact-success h2 { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 22px; color: var(--fog); margin: 0; }
.contact-success p { font-size: 14.5px; color: var(--sand); margin: 0; }

.contact-form {
  background: var(--fog-card);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
}

.contact-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light-strong);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--black);
  background: var(--fog);
}

.contact-form textarea { resize: vertical; }

.contact-form button {
  background: var(--orange);
  border: none;
  color: var(--fog);
  padding: 15px 24px;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

.contact-form button:hover { background: var(--orange-hover); }
.contact-form button:disabled { opacity: 0.6; cursor: default; }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy); padding: 56px clamp(20px, 5vw, 64px) 32px; }

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fog);
}

.footer-brand-desc {
  font-size: 13.5px;
  color: var(--sand);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-col-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: block;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--sand); font-size: 14px; }
.footer-col a:hover { color: var(--orange); }
.footer-col span { font-family: 'IBM Plex Mono', monospace; font-size: 13.5px; color: var(--sand); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--orange); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #25D366;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.btn-whatsapp:hover { color: #1DA851; text-decoration: underline; }
.btn-whatsapp svg { fill: currentColor; }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  font-size: 12.5px;
  color: rgba(217,199,165,0.55);
  text-align: center;
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  border: 1px solid var(--border-dark);
  color: var(--fog);
  padding: 14px 22px;
  font-size: 14px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  border-radius: 3px;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.error { border-color: #e15b3f; }
.toast.success { border-color: var(--orange); }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .expertises-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .timeline-line { display: none; }
  .port-section { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .expertises-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { text-align: center; justify-items: center; }
}
