/* ============ RESET DE BASE ============ */

/* Normalisation du rendu entre navigateurs */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Suppression des styles par défaut des listes et liens */
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit; /* pour éviter le bleu par défaut */
}

/* Images et médias */
img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}

/* ============ STYLES GLOBAUX ============ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #374151;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: #111827;
  line-height: 1.2;
  font-weight: 600;
}

/* Boutons */
button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}


/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: #1e3a8a;
  color: white;
  font-weight: bold;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  font-family: 'Poppins', sans-serif;
}

/* Navigation desktop */
.nav-desktop {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #1e3a8a;
}

/* Actions Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-number {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
}

@media (min-width: 640px) {
  .phone-number {
    display: flex;
  }
}

.icon {
  width: 1rem;
  height: 1rem;
}

/* Bouton principal */
.btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #1e3a8a;
  color: white;
}

.btn-primary:hover {
  background: #1e40af;
}

/* Burger menu */
.burger-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .burger-menu {
    display: none;
  }
}

.burger-menu span {
  width: 1.5rem;
  height: 2px;
  background: #1e3a8a;
  transition: all 0.3s;
}

/* Animation du burger */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation mobile */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  padding: 1rem;
  color: #374151;
  transition: background 0.3s;
}

.nav-link-mobile:hover {
  background: #e5e7eb;
}
/* ================= HERO SECTION ================= */

.hero-section {
  padding: 8rem 1rem 4rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f9fafb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contenu */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #dbeafe;
  color: #1e3a8a;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.text-blue {
  color: #1e3a8a;
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ✅ Liste des avantages */
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #16a34a;
  flex-shrink: 0;
}

/* Boutons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-lg {
  padding: 0.75rem 2rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  color: #374151;
}

.btn-outline:hover {
  background: #f3f4f6;
}

/* Image */
.hero-image-container {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 3;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e3a8a;
}

.stat-label {
  font-size: 0.875rem;
  color: #4b5563;
}



/* ================= PRÉSENTATION ================= */

.presentation-section {
  background: #f3f4f6;
  padding: 6rem 1rem;
}

.presentation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .presentation-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Texte */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827;
}

.presentation-paragraph {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Boîte "Notre mission" */
.mission-box {
  background: #eef2ff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.mission-title {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mission-text {
  color: #1e40af;
  line-height: 1.6;
  font-weight: 400;
}

/* Cartes de statistiques */
.presentation-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 2rem 1rem;
}

.stat-icon {
  background: #dbeafe;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-card .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #1e3a8a;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
}

.stat-label {
  font-size: 0.875rem;
  color: #374151;
}


/* ================= SERVICES ================= */

.services-section {
  background: #f9fafb;
  padding: 6rem 1rem;
  text-align: center;
}

.section-title.center {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Grille */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Carte */
.service-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Icône */
.service-icon {
  background: #dbeafe;
  color: #1e3a8a;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Titres + texte */
.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-desc {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-list {
  list-style-type: disc;
  padding-left: 1.25rem;
  color: #1e3a8a;
}

.service-list li {
  margin-bottom: 0.5rem;
}

/* Boutons CTA */
.services-cta {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .services-cta {
    flex-direction: row;
  }
}

.services-cta .btn i {
  margin-right: 0.5rem;
}


/* ================= RÉALISATIONS ================= */

.realisations-section {
  background: #ffffff;
  padding: 6rem 1rem;
  text-align: center;
}

.realisations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .realisations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Carte */
.realisation-card {
  background: #f9fafb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.realisation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.realisation-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.realisation-content {
  text-align: left;
  padding: 1.5rem;
}

/* Métadonnées */
.realisation-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.tag {
  background: #e0e7ff;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
}

.year {
  font-size: 0.875rem;
  color: #6b7280;
}

.realisation-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}

.realisation-location {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.realisation-location i {
  margin-right: 0.25rem;
  color: #1e3a8a;
}

.realisation-desc {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* CTA */
.realisations-cta {
  margin-top: 4rem;
  text-align: center;
}

.cta-text {
  color: #374151;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-buttons .btn i {
  margin-right: 0.5rem;
}
/* ================= GARANTIES / VALEURS ================= */

.garanties-section {
  background: #eef2ff;
  padding: 6rem 1rem;
  text-align: center;
}

/* CTA boutons en haut */
.garanties-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 3rem;
}

@media (min-width: 640px) {
  .garanties-cta {
    flex-direction: row;
  }
}

/* Grille de cartes */
.garanties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .garanties-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.garantie-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.garantie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Icône principale */
.garantie-icon {
  background: #dbeafe;
  color: #1e3a8a;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Label vert ("Expérience", etc.) */
.garantie-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #d1fae5;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
}

/* Texte */
.garantie-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.garantie-text {
  color: #4b5563;
  line-height: 1.6;
}
/* ================= CONTACT / DEVIS ================= */
.contact-section {
  background: #f9fafb;
  padding: 5rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}

/* ================= COORDONNÉES ================= */
.contact-info {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.info-icon {
  background: #e0e7ff;
  color: #1e3a8a;
  border-radius: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.info-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.info-text span {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ================= FORMULAIRE ================= */
.contact-form {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
  }
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 0.25rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: #f9fafb;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid #2563eb;
  background: #fff;
}

.form textarea {
  resize: none;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .form-buttons {
    flex-direction: row;
  }
}

.form-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 1rem;
}

/* Boutons */
.form .btn {
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #1e3a8a;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  background: #ffffff;
  border: 1px solid #1e3a8a;
  color: #1e3a8a;
}

.btn-outline:hover {
  background: #e0e7ff;
}
/* ================= OFFRE DÉPLACEMENT GRATUIT ================= */
.contact-offer {
  background: #1e3a8a;
  color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
h4{
color: white;


}
.contact-offer h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-offer p {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.contact-offer .btn-call {
  display: inline-block;
  background: #f9fafb;
  color: #111827;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-offer .btn-call:hover {
  background: #dbeafe;
}


/* ================= FOOTER ================= */
.footer {
  background: #1e3a8a;
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Logo et description */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  background: #f9fafb;
  color: #1e3a8a;
  font-weight: 700;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Réseaux sociaux */
.footer-socials a {
  display: inline-block;
  color: #e0e7ff;
  margin-right: 0.75rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #ffffff;
}

/* Liens de navigation et services */
.footer-links h4,
.footer-contact h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #e0e7ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact ul li i {
  margin-right: 0.5rem;
}

.footer-btn {
  display: inline-block;
  background: #f9fafb;
  color: #111827;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #dbeafe;
}

/* Ligne de séparation */
.footer-line {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
}

/* Bas du footer */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links a {
  color: #cbd5e1;
  margin: 0 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Crédits */
.footer-credit {
  text-align: center;
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 1rem;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

h3{
    color:white
}