
:root {
  --navy: #0a1045;
  --navy-2: #10175c;
  --navy-soft: #131b5c;
  --gold: #f8c527;
  --gold-dark: #e0ab00;
  --blue: #3366ff;
  --text-dark: #12142b;
  --text-gray: #5b5f76;
  --text-light: #9aa0c3;
  --bg-light: #f3f4f9;
  --bg-white: #ffffff;
  --border-light: #e4e6f0;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px -20px rgba(10, 16, 69, 0.25);
  --container-width: 1160px;
  --font-heading: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

/* ==========================================================================
   Boutons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 30px -12px rgba(248, 197, 39, 0.7);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(10, 16, 69, 0.7);
}

.btn-navy:hover {
  background: var(--navy-2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  padding: 12px 30px;
  font-size: 0.85rem;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 13px 34px;
  font-size: 0.85rem;
  border-radius: 6px;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.btn-services {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 46px;
  text-align: center;
  box-shadow: 0 14px 30px -12px rgba(248, 197, 39, 0.7);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-services:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-services-line1 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
}

.btn-services-line2 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   En-tête / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px); 
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ==========================================================================
   Pied de page
   ========================================================================== */

.site-footer {
  background: var(--navy);
  color: #cfd3f0;
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}

/* ==========================================================================
   Accueil — Hero
   ========================================================================== */

.hero-banner {
  padding: 32px 0;
}

.hero-banner .hero-img {
  display: block;
  width: 100%;
  max-width: var(--container-width);
  height: auto;
  margin: 0 auto;
}

/* ==========================================================================
   Accueil — Présentation
   ========================================================================== */

.presentation {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.presentation-copy h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.presentation-copy p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.presentation-copy .highlight {
  color: var(--text-dark);
  font-weight: 700;
}

.why-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin: 28px 0 12px;
}

.why-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-gray);
  line-height: 1.8;
}

.why-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

.presentation-visual {
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.presentation-visual img {
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Accueil — Avis clients
   ========================================================================== */

.reviews {
  background: var(--bg-light);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-title .accent {
  color: var(--blue);
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 44px;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}

.rating-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.rating-count {
  color: var(--text-gray);
  font-size: 0.92rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-icon {
  color: var(--gold);
}

.review-text {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-role {
  font-size: 0.82rem;
  color: var(--text-gray);
}

.review-quote-end {
  color: var(--border-light);
  align-self: flex-end;
}

/* ==========================================================================
   Accueil — Barre de statistiques
   ========================================================================== */

.stats-bar {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}

.stats-bar .stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  position: relative;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  align-self: stretch;
}

.cta-center {
  display: flex;
  justify-content: center;
  padding: 56px 0 12px;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-hero {
  background: var(--navy);
  overflow: hidden;
}

.services-hero img {
  width: 100%;
  display: block;
}

.features-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.features-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-gray);
  line-height: 2;
  font-size: 1rem;
}

.features-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.service-card-media {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-media img.phone-img {
  height: 100%;
  width: auto;
}

.service-card-media img.moncash-img {
  width: 70%;
}

.service-card-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  text-align: center;
  width: 100%;
}

.service-card-box p {
  color: #dfe2f7;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-card-box strong {
  color: var(--blue);
}

/* ==========================================================================
   A propos
   ========================================================================== */

.about-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-content p {
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 20px;
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ==========================================================================
   Contact
   ========================================================================== */

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

.contact-form-title {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group label .req {
  color: #e14848;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-check input {
  margin-top: 3px;
}

.form-check label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.form-note {
  font-size: 0.85rem;
  margin-top: 10px;
  min-height: 1.2em;
}

.form-note.success {
  color: #1a9c5c;
}

.form-note.error {
  color: #e14848;
}

.contact-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.coord-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 28px 0 16px;
}

.coord-social {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.coord-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}

.coord-social a:hover {
  background: var(--navy);
  color: #fff;
}

.coord-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.coord-item strong {
  font-weight: 800;
}

.coord-item .coord-icon {
  color: var(--navy);
}

.map-wrap {
  margin-top: 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .presentation {
    grid-template-columns: 1fr;
  }

  .presentation-copy {
    text-align: center;
  }

  .presentation-copy .why-list {
    display: inline-block;
    text-align: left;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-bar {
    flex-direction: column;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 0;
    border-bottom: none;
  }

  section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .logo-word {
    font-size: 1.25rem;
  }

  .presentation-copy h2 {
    font-size: 1.5rem;
  }
}
