/* ======================================================
   🌍 MAHINDA AIR CARGO – CSS GLOBAL & RESPONSIVE
   ====================================================== */

/* === VARIABLES === */
:root {
  --brand: #0f3d91;
  --brand-2: #0bb1d3;
  --accent: #ffc107;
  --bg: #f8fafc;
  --alt-bg: #eef3fa;
  --text: #0f172a;
  --muted: #475569;
  --white: #ffffff;
}

/* === BASE === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  scroll-behavior: smooth;
}
a { text-decoration: none; color: inherit; transition: color .3s ease; }
.container { width: min(1200px, 92%); margin: auto; }
img { max-width: 100%; display: block; }
.center { text-align: center; }
.mt-24 { margin-top: 2rem; }

/* === BOUTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all .3s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 6px 20px rgba(15,61,145,0.3);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--brand);
  color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* ======================================================
   🧭 NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  backdrop-filter: blur(14px) saturate(180%);
  background: rgba(15, 61, 145, 0.55);
  box-shadow: 0 2px 15px rgba(0,0,0,.15);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 0;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img.logo { width: 50px; height: 50px; object-fit: contain; }
.brand strong { color: #fff; font-weight: 800; letter-spacing: .5px; }
.brand small { color: #dbeafe; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a {
  font-weight: 600;
  color: #e2e8f0;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ===============================
   🍔 BURGER & MENU MOBILE MODERNE
   =============================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.25s ease;
}

.burger:hover { transform: scale(1.08); }

.burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem;
  gap: 1.3rem;
  transition: right 0.4s ease;
  z-index: 1000;
}

.mobile-nav.show { right: 0; }

.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.mobile-nav a:hover { opacity: 0.8; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* ======================================================
   ✈ HERO — Slideshow d’images (corrigé hauteur complète)
   ====================================================== */

.hero-slideshow-section {
  position: relative;
  width: 100%;
  min-height: 100vh; /* ✅ assure la pleine hauteur */
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* --- images du slideshow --- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  filter: brightness(55%) saturate(120%);
}

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

/* --- couche d’overlay du texte --- */
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh; /* ✅ visible sur toute la hauteur */
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
  color: #fff;
  padding: 120px 0; /* espace vertical interne */
}

/* --- grille interne du contenu --- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 2rem;
  width: min(1200px, 92%);
  margin: auto;
}

/* --- textes et badges --- */
.badge {
  background: rgba(255,255,255,0.2);
  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .9rem;
  display: inline-block;
}
.display {
  font-size: 2.8rem;
  line-height: 1.2;
  margin: 1rem 0;
  font-weight: 800;
}
.txt-accent { color: var(--accent); }
.txt-brand-2 { color: var(--brand-2); }
.lead {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- KPI Cards --- */
.kpi-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.kpi-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: .8rem 1rem;
  text-align: center;
  flex: 1 1 100px;
}
.kpi-label { font-weight: 600; color: var(--accent); }
.kpi-value { font-size: 1.2rem; font-weight: 700; color: #fff; }
.kpi-card small { color: #cbd5e1; }

/* --- cartes statistiques --- */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.2rem;
  color: #fff;
}
.stat-icon {
  font-size: 1.8rem;
  margin-bottom: .3rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .85rem;
}

/* ✅ évite que le Hero écrase le reste */
#about {
  position: relative;
  z-index: 3;
  background: #fff;
  margin-top: 0;
  padding-top: 100px;
}

/* ======================================================
   🏢 SECTIONS
   ====================================================== */
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ======================================================
   💼 À PROPOS / SERVICES
   ====================================================== */
.feature-grid, .cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.feature-card, .glass-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  padding: 1.5rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover, .glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}
.f-icon, .g-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
  color: var(--brand-2);
  text-align: center;
}
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
}
/* ======================================================
   🌍 SECTION DESTINATIONS — Mahinda Air Cargo
   ====================================================== */

#routes {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 0.5rem;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === Grille principale === */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

/* === Carte de destination === */
.dest-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* === Image supérieure === */
.dest-img {
  height: 190px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img {
  transform: scale(1.05);
}

/* === Corps du texte === */
.dest-body {
  padding: 1.4rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dest-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-2);
  margin-bottom: 0.8rem;
}

.dest-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.dest-body li {
  margin-bottom: 0.5rem;
}

.dest-body b {
  color: var(--text);
}

/* === Images spécifiques === */
.dest-china { background-image: url('../img/guangzhou.jpg'); }
.dest-abj   { background-image: url('../img/abidjan.jpg'); }
.dest-bko   { background-image: url('../img/bamako.jpg'); }
.dest-cgo   { background-image: url('../img/congo.jpg'); }

/* === Bouton central === */
.center {
  text-align: center;
}

.center .btn {
  margin-top: 2rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.8rem;
  }
  .dest-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #routes {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-lead {
    font-size: 1rem;
  }
  .dest-img {
    height: 170px;
  }
  .dest-body {
    padding: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.4rem;
  }
  .section-lead {
    font-size: 0.95rem;
  }
  .dest-body h3 {
    font-size: 1.1rem;
  }
  .dest-body ul {
    font-size: 0.9rem;
  }
}

/* ======================================================
   📊 CHIFFRES
   ====================================================== */
.stats-section {
  background: var(--alt-bg);
  padding: 80px 0;
}
.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}
.stat-block {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
}
.clients-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.clients-logos img {
  width: 120px;
  filter: grayscale(100%);
  opacity: .8;
  transition: .3s;
}
.clients-logos img:hover {
  filter: none;
  opacity: 1;
}

/* ======================================================
   💬 TÉMOIGNAGES
   ====================================================== */
.testi-slider {
  position: relative;
  overflow: hidden;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
  text-align: center;
  max-width: 700px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  color: var(--text);
  font-size: 1.05rem;
}
.quote.active { opacity: 1; transform: translateY(0); }
/* ======================================================
   TRacking formulaire
   ====================================================== */

/* Champs de formulaire */
.form-styled .field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-styled input,
.form-styled select,
.form-styled textarea {
  padding: .75rem 1rem;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
  transition: all .25s ease;
  background: var(--white);
}

.form-styled input:focus,
.form-styled select:focus,
.form-styled textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,255,.15);
}

/* Timeline tracking */
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .6rem 0;
  border-left: 3px solid var(--blue);
  margin-left: .5rem;
  padding-left: 1rem;
}
.timeline-item .dot {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.w-100 {
  width: 100%;
}

/* Résultat devis */
.result-info p {
  margin: .4rem 0;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: .8rem;
}
/* === DEVIS HERO === */
.devis-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.devis-left, .devis-right {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  padding: 2rem;
  transition: all .3s ease;
}

.devis-left:hover, .devis-right:hover {
  transform: translateY(-3px);
}

.devis-right {
  position: relative;
  text-align: left;
}

.plane-icon {
  position: absolute;
  top: -25px;
  right: 25px;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  margin-top: 1rem;
}

.info-box {
  background: rgba(255,255,255,0.65);
  border-radius: 12px;
  padding: 1rem;
  font-size: .95rem;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

#placeholder {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
  font-weight: 600;
}

/* === RESPONSIVITÉ AMÉLIORÉE === */
@media (max-width: 1024px) {
  .devis-hero {
    grid-template-columns: 1fr;
  }
  .plane-icon {
    display: none;
  }
}

@media (max-width: 600px) {
  .devis-left, .devis-right {
    padding: 1.3rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-lead {
    font-size: .95rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  button.btn {
    font-size: .95rem;
    padding: .9rem 1.2rem;
  }
}

@media (max-width: 400px) {
  .price {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 1.2rem;
  }
  .section-lead {
    font-size: .9rem;
  }
}
/* === CONTACT HERO === */
.contact-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.contact-left, .contact-right {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);
  padding: 2rem;
  transition: all .3s ease;
}

.contact-left:hover, .contact-right:hover {
  transform: translateY(-3px);
}

.contact-info {
  list-style: none;
  margin: 1rem 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-info li i {
  margin-right: .6rem;
  color: var(--brand-2);
}

.social-links {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
  margin-top: 1rem;
}
.social-links a {
  color: var(--brand-2);
  transition: transform .3s, color .3s;
}
.social-links a:hover {
  transform: scale(1.15);
  color: var(--brand);
}

/* ✅ Animation succès */
@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .contact-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact-left, .contact-right {
    padding: 1.3rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .section-lead {
    font-size: .95rem;
  }
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 1.2rem;
  }
  .section-lead {
    font-size: .9rem;
  }
  .contact-info li {
    font-size: .9rem;
  }
}

/* ======================================================
   💬 WHATSAPP FLOAT
   ====================================================== */
.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37,211,102,.35);
  transition: transform .2s;
  z-index: 100;
}
.wa:hover { transform: scale(1.05); }

/* ===============================
   🌍 FOOTER MAHINDA – MODERNE & RESPONSIVE
   =============================== */
.footer {
  background: linear-gradient(180deg, #0b1324, #0e1b3a);
  color: #f1f5f9;
  padding: 60px 0 30px;
  margin-top: 80px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: #38bdf8;
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.3rem;
  color: #38bdf8;
  margin-bottom: 10px;
}

.footer-desc {
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-copy {
  color: #94a3b8;
  font-size: 0.9rem;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #38bdf8;
  color: #0b1324;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 16px;
}

.footer-bottom a {
  color: #94a3b8;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #38bdf8;
}

/* === Bouton retour haut === */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 20px;
  background: #38bdf8;
  color: #0b1324;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #0ea5e9;
}
.footer-link {
  color: var(--brand-2);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ❤ Animation du cœur */
.heart {
  color: #e11d48;
  display: inline-block;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
/* ======================================================
   ✨ ANIMATIONS
   ====================================================== */
.fade-in, .fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.visible, .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ======================================================
   🎯 ICONES ANIMÉES (Font Awesome)
   ====================================================== */
.icon-animate {
  animation: fadeInUp 0.8s ease, pulse 2s infinite ease-in-out;
}
.icon-hover {
  transform: scale(1.2) rotate(10deg);
  color: var(--accent);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
/* ======================================================
   📱 RESPONSIVE DESIGN
   ====================================================== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .kpi-wrap { justify-content: center; }
  footer .container { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 600px) {
  .display { font-size: 2rem; }
  .btn { padding: .6rem 1rem; font-size: .9rem; }
  .section-title { font-size: 1.6rem; }
  .stat-number { font-size: 2rem; }
  .hero-slideshow-section { height: 85vh; }
}

@media (max-width: 400px) {
  .display { font-size: 1.5rem; line-height: 1.3; }
  .lead { font-size: .9rem; }
  .nav-right .btn { padding: .5rem .8rem; font-size: .85rem; }
  footer .container { padding-inline: 1rem; }
}