:root {
  --bleu: #1a2e4a;
  --bleu-clair: #1e3a5f;
  --or: #f5a623;
  --blanc: #ffffff;
  --gris-clair: #f7f8fa;
  --gris-texte: #4a4a4a;
  --vert-wa: #25d366;
  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--bleu);
  background: var(--blanc);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 46, 74, 0.08);
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--bleu);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--blanc);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--bleu);
  letter-spacing: 1px;
}

.nav-logo-text span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  color: var(--or);
  letter-spacing: 1px;
}

.nav-logo-text p {
  font-size: 0.65rem;
  color: var(--gris-texte);
  font-weight: 400;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bleu);
  color: var(--blanc);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--or);
  transform: scale(1.03);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* ── HERO ── */
.hero {
  margin-top: 64px;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-image-side {
  position: relative;
  height: 100%;
  min-height: 520px;
  overflow: hidden;
}

.hero-image-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--blanc));
}

.hero-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
  filter: brightness(0.92);
}

/* Fallback gradient si pas d'image */
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(
    135deg,
    var(--bleu) 0%,
    #2a5298 50%,
    var(--bleu-clair) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder svg {
  width: 200px;
  opacity: 0.3;
}

.hero-content {
  padding: 60px 8% 60px 5%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 0.8s ease both;
  text-align: center;
  align-items: center;
}

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

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gris-texte);
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  color: var(--bleu);
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--or);
  letter-spacing: 0.3px;
}

.hero-btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bleu);
  color: var(--blanc);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(26, 46, 74, 0.25);
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-btn-phone:hover {
  background: var(--or);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.4);
}

.hero-btn-phone svg {
  width: 20px;
  height: 20px;
}

.hero-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 10px 16px;
  width: fit-content;
  background: var(--blanc);
  animation: fadeUp 0.8s 0.25s ease both;
}

.google-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 1px;
}

.google-label {
  font-size: 0.75rem;
  color: #666;
}

.google-score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu);
}

.google-brand {
  font-size: 0.75rem;
}

.google-brand span {
  font-weight: 700;
}

/* ── SERVICES ── */
.services {
  padding: 80px 5%;
  background: var(--blanc);
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  text-align: center;
  color: var(--bleu);
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--or);
  margin: 12px auto 0;
  border-radius: 2px;
}

.services-list {
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid #e8e8e8;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 8px;
  border-bottom: 1px solid #e8e8e8;
  transition: background 0.2s, padding-left 0.2s;
  cursor: default;
}

.service-item:hover {
  background: var(--gris-clair);
  padding-left: 16px;
}

.service-icon {
  width: 36px;
  height: 36px;
  background: var(--bleu);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--or);
}

.service-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bleu);
}

/* ── WHATSAPP BAND ── */
.whatsapp-band {
  background: var(--gris-clair);
  padding: 40px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 5vw, 80px);
  flex-wrap: wrap;
}

.wa-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-logo {
  width: 52px;
  height: 52px;
}

.wa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.wa-text span:first-child {
  font-size: 0.85rem;
  color: var(--gris-texte);
}

.wa-text strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vert-wa);
  color: var(--blanc);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.wa-btn svg {
  width: 20px;
  height: 20px;
}

/* ── AVIS ── */
.avis {
  position: relative;
  padding: 80px 5%;
  overflow: hidden;
}

.avis-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bleu) 0%, #1e3a5f 100%);
  z-index: 0;
}

.avis-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.avis-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.avis-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 36px 40px;
  text-align: center;
}

.avis-stars {
  font-size: 1.6rem;
  color: var(--or);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.avis-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

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

.avis-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
}

.avis-info {
  text-align: left;
}

.avis-name {
  font-weight: 600;
  color: var(--blanc);
  font-size: 0.9rem;
}

.avis-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.avis-google-badge {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── CONTACT ── */
.contact {
  padding: 80px 5%;
  background: var(--blanc);
}

.contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  text-align: center;
  color: var(--or);
  margin-bottom: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

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

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--bleu);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--or);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--bleu);
  text-decoration: none;
}

.contact-item-value:hover {
  color: var(--or);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 46, 74, 0.12);
  height: 260px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── FOOTER ── */
footer {
  padding: 40px 5% 60px;
  background: var(--blanc);
  color: var(--bleu);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  color: var(--bleu);
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--or);
}

.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
  width: 100%;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.footer-social-link:hover {
  background: var(--or);
  transform: translateY(-3px);
}

.footer-social-link i {
  font-size: 18px;
  color: var(--bleu) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  text-align: center;
  padding-bottom: 20px;
}

.footer-credit a {
  color: var(--or);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-side {
    height: 100%;
    min-height: 280px;
  }

  .hero-image-side::after {
    background: linear-gradient(to bottom, transparent 50%, var(--blanc));
  }

  .hero-content {
    padding: 32px 6% 10px;
  }

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

  .contact-map {
    height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    width: 500px;
  }

  .avis-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 0 4%;
  }

  .nav-logo-text strong {
    font-size: 1.1rem;
  }

  .nav-cta span {
    display: none;
  }

  .whatsapp-band {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}
