/* ============================================
   MOZONLA — CSS Override
   Couleurs : Bleu marine #1A3A6E | Bleu ciel #29B6F6
   ============================================ */

/* ---------- Variables ---------- */
:root {
  --primary: #29B6F6;
  --primary-rgb: 41, 182, 246;
  --dark: #1A3A6E;
  --dark-rgb: 26, 58, 110;
  --headings-color: #1A3A6E;
  --font-family-base: 'Open Sans', sans-serif;
  --font-family-headings: 'Montserrat', sans-serif;
  --font-family-btn: 'Montserrat', sans-serif;
}

/* ---------- Image about-m2 ---------- */
.about-m2 img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

/* ---------- Bandeau GPS ---------- */
.gps-banner {
  background: #1A3A6E;
  color: #fff;
  padding: 14px 0;
  text-align: center;
}
.gps-banner .gps-icon {
  color: #29B6F6;
  margin-right: 8px;
  font-size: 1.1rem;
}
.gps-banner a {
  color: #29B6F6;
  text-decoration: underline;
  margin-left: 12px;
}
.gps-banner a:hover { color: #fff; }

/* ---------- Boutons flottants ---------- */
.float-btn {
  position: fixed;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.whatsapp-btn { background: #25D366; bottom: 160px; }
.call-btn     { background: #29B6F6; bottom: 95px; }

/* ---------- Services grid ---------- */
.mozonla-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #e0e8f4;
  transition: all 0.3s;
  height: 100%;
}
.mozonla-service-card:hover {
  border-color: #29B6F6;
  box-shadow: 0 8px 32px rgba(29, 182, 246, 0.15);
  transform: translateY(-4px);
}
.mozonla-service-card .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(41, 182, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #29B6F6;
  margin-bottom: 18px;
}
.mozonla-service-card h3 { color: #1A3A6E; font-size: 1.1rem; font-weight: 600; }
.mozonla-service-card p  { color: #535353; font-size: 0.95rem; margin: 0; }

/* ---------- Section couverture géographique ---------- */
.country-card {
  text-align: center;
  padding: 20px 10px;
  border-radius: 12px;
  border: 1px solid #e0e8f4;
  transition: all 0.3s;
  cursor: default;
}
.country-card:hover {
  background: #1A3A6E;
  color: #fff;
  border-color: #1A3A6E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 58, 110, 0.2);
}
.country-card.hub {
  background: #1A3A6E;
  color: #fff;
  border-color: #1A3A6E;
}
.country-card .hub-badge {
  display: inline-block;
  background: #29B6F6;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.country-flag { font-size: 2.6rem; line-height: 1; margin-bottom: 8px; }
.country-name { font-weight: 600; font-size: 0.9rem; }

/* ---------- Section contact info ---------- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .ci-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: rgba(41, 182, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #29B6F6;
}
.contact-info-item .ci-text p { margin: 0; font-size: 0.85rem; color: #788094; }
.contact-info-item .ci-text a,
.contact-info-item .ci-text span { font-weight: 600; color: #1A3A6E; }

/* ---------- SSL badge footer ---------- */
.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(41, 182, 246, 0.15);
  color: #29B6F6;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Slogan ---------- */
.slogan-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #29B6F6, #0277BD);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* ---------- Navbar logo sizing ---------- */
.navbar-brand img { max-height: 72px; width: auto; }
.f-logo img       { max-height: 80px; width: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 575px) {
  .float-btn { width: 48px; height: 48px; font-size: 20px; right: 14px; }
  .whatsapp-btn { bottom: 140px; }
  .call-btn     { bottom: 80px; }
  .gps-banner .d-none-sm { display: none; }
}