/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&display=swap');

/* --- Variables CSS pour une maintenance facile --- */
:root {
  --primary-color: #3498db; /* Bleu Vif (pour accents, boutons) */
  --secondary-color: #2c3e50; /* Bleu Nuit (pour header, footers, titres forts) */
  --text-dark: #343a40; /* Texte principal foncé */
  --text-light: #6c757d; /* Texte secondaire, paragraphes */
  --bg-light: #f8f9fa; /* Fond clair général */
  --bg-dark-light: #eff2f5; /* Nouveau fond légèrement plus foncé pour alternance */
  --bg-medium: #e9ecef; /* Fond pour la section des logos/références */
  --white: #ffffff;
  --spacing-unit: 1rem;
  --border-radius: 8px;
  --box-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08); /* Ombres plus riches */
  --box-shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15); /* Ombres encore plus riches */
  --primary-color-rgb: 52, 152, 219;
  --secondary-color-rgb: 44, 62, 80;
}

/* --- Base Styles & Resets --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  padding: calc(var(--spacing-unit) * 2) 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: var(--spacing-unit);
  font-weight: 700; /* Plus de poids par défaut */
}

p {
  margin-bottom: var(--spacing-unit);
  color: var(--text-light);
}

/* --- Header & Navigation --- */
header {
  background: var(--secondary-color);
  color: var(--white);
  padding: calc(var(--spacing-unit) * 0.75) 0;
  min-height: 65px;
  border-bottom: 4px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Ombre plus distincte */
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

#branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-bottom: 2px;
}

#branding h1 {
  margin: 0;
  font-size: 2.1em;
  font-weight: 800; /* Encore plus épais */
  color: var(--white);
  line-height: 1;
  position: relative;
  top: 1px;
}

#branding h1 span {
    float: right;
}

#branding img {
  height: 40px;
  margin-right: var(--spacing-unit);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header nav ul li {
  margin-left: calc(var(--spacing-unit) * 1.5); /* Espacement légèrement augmenté */
}

header nav ul li a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.05em; /* Légèrement plus grand */
  font-weight: 600; /* Plus de poids */
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  display: block;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 3px; /* Soulignement plus épais */
  background-color: var(--primary-color);
  transition: width 0.3s ease-in-out;
}

header nav ul li a:hover::after,
header nav ul li a.current::after {
  width: 100%;
}

header nav ul li a:hover {
  color: var(--primary-color);
}

/* --- Menu Burger (Mobile) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1100;
  background: transparent;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  min-height: 580px; /* Hauteur légèrement augmentée */
  background: url('images/hero-image.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
  animation: fadeIn 1s ease-out; /* Animation d'apparition */
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(var(--secondary-color-rgb), 0.8),
    rgba(var(--secondary-color-rgb), 0.6)
  ); /* Dégradé pour l'overlay */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 950px;
  color: var(--white);
  padding: 0;
}

.hero h1 {
  font-size: 4.5em; /* Grand titre percutant */
  font-weight: 800; /* Très gras */
  margin-bottom: var(--spacing-unit);
  line-height: 1.1;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9); /* Ombre plus prononcée */
  color: var(--white);
}

.hero p {
  font-size: 1.6em; /* Paragraphe clair */
  margin-bottom: calc(var(--spacing-unit) * 2);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Ombre plus prononcée */
  color: var(--white);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--primary-color) 0%,
    #2980b9 100%
  ); /* Dégradé pour le bouton */
  color: var(--white);
  padding: calc(var(--spacing-unit) * 1.1) calc(var(--spacing-unit) * 2.2);
  border-radius: var(--border-radius);
  font-weight: 700; /* Plus de poids */
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25); /* Ombre plus marquée */
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px; /* Espacement léger */
}

.btn:hover {
  background: linear-gradient(
    90deg,
    #2980b9 0%,
    var(--secondary-color) 100%
  ); /* Dégradé inversé au survol */
  transform: translateY(-4px); /* Effet de soulèvement plus prononcé */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35); /* Ombre encore plus marquée */
}

/* --- Section Styling (General) --- */
section {
  padding: calc(var(--spacing-unit) * 4) 0;
  background-color: var(--white);
  border-bottom: 1px solid #e9ecef;
}

section:nth-of-type(odd) {
  background-color: var(--bg-dark-light); /* Utilisation du nouveau fond clair foncé */
}

section:last-of-type {
  border-bottom: none;
}

section h2 {
  text-align: center;
  margin-bottom: calc(var(--spacing-unit) * 3);
  font-size: 3em; /* Titres de section plus grands */
  font-weight: 800; /* Encore plus de poids */
  position: relative;
  padding-bottom: var(--spacing-unit);
  text-transform: uppercase; /* Titres en majuscules */
  letter-spacing: 1px; /* Espacement des lettres */
}

section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px; /* Ligne de séparation plus large */
  height: 5px; /* Ligne de séparation plus épaisse */
  background: var(--primary-color);
  border-radius: 2px;
}

/* --- Feature Grid --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Retour à une largeur min plus grande */
  gap: calc(var(--spacing-unit) * 2.5); /* Espacement augmenté */
  text-align: center;
}

.feature-item {
  background: var(--white);
  padding: calc(var(--spacing-unit) * 2.5); /* Padding augmenté */
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-medium); /* Ombre plus marquée par défaut */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  text-align: center;
  border: 1px solid #e0e0e0; /* Bordure légère */
}

.feature-item:hover {
  transform: translateY(-7px); /* Effet de soulèvement plus prononcé */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); /* Ombre plus intense au survol */
}

.feature-item i {
  font-size: 4.5em; /* Icônes plus grandes */
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.15)); /* Ombre plus prononcée sur l'icône */
}

.feature-item h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-unit);
  font-size: 1.6em;
  font-weight: 700; /* Plus de poids */
  text-transform: uppercase; /* Titres en majuscules */
}

.feature-item p {
  font-size: 1.05em;
  color: var(--text-light);
  flex-grow: 1;
}

/* --- Services Page Specific --- */
.service-item {
  margin-bottom: calc(var(--spacing-unit) * 3);
  padding-bottom: calc(var(--spacing-unit) * 2);
  border-bottom: 1px solid #dcdcdc; /* Ligne plus visible */
}

.service-item:last-of-type {
  border-bottom: none;
}

.service-item h3 {
  color: var(--secondary-color); /* Couleur primaire pour l'icône */
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2em; /* Titres de service plus grands */
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  display: flex;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase; /* Titres en majuscules */
}

.service-item h3 i {
  margin-right: var(--spacing-unit);
  font-size: 1.3em; /* Icône plus grande */
  color: var(--primary-color); /* Icône en couleur primaire */
  flex-shrink: 0;
}

.service-item p {
  font-size: 1.1em; /* Texte plus grand */
  color: var(--text-dark);
  margin-left: calc(1.3em + var(--spacing-unit));
  margin-bottom: var(--spacing-unit);
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin-left: calc(1.3em + var(--spacing-unit));
}

.service-item ul li {
  background: var(--white);
  margin-bottom: var(--spacing-unit); /* Marge augmentée */
  padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5);
  border-left: 6px solid var(--primary-color); /* Bordure plus épaisse */
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-light); /* Ombre légère */
  display: flex;
  align-items: center;
  font-size: 1.05em;
  color: var(--text-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item ul li:hover {
  transform: translateX(8px); /* Décalage plus prononcé */
  box-shadow: var(--box-shadow-medium);
}

.service-item ul li i {
  margin-right: var(--spacing-unit);
  color: var(--primary-color);
  font-size: 1.2em;
  flex-shrink: 0;
}

/* --- About Page Specific --- */
#our-story,
#our-approach {
  background-color: var(--bg-medium); /* Nouveau fond pour ces sections */
  padding: calc(var(--spacing-unit) * 3) 0;
}

#our-story h3,
#our-approach h3 {
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 2em;
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  text-align: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
#our-story h3::after,
#our-approach h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px; /* Ligne plus épaisse */
  background: var(--primary-color);
  border-radius: 1.5px;
}

#our-story p,
#our-approach p {
  font-size: 1.15em;
  color: var(--text-dark);
  max-width: 850px;
  margin: 0 auto calc(var(--spacing-unit) * 2) auto; /* Marge augmentée */
  text-align: center;
}

#our-approach ul {
  list-style: none;
  padding: 0;
  max-width: 900px; /* Largeur augmentée */
  margin: calc(var(--spacing-unit) * 2.5) auto; /* Marge augmentée */
}

#our-approach ul li {
  background: var(--white);
  margin-bottom: var(--spacing-unit) * 1.2; /* Marge augmentée */
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 2); /* Padding augmenté */
  border-left: 8px solid var(--primary-color); /* Bordure encore plus épaisse */
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-medium); /* Ombre plus marquée */
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: var(--text-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#our-approach ul li:hover {
  transform: translateX(10px); /* Décalage plus prononcé */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#our-approach ul li strong {
  color: var(--secondary-color);
  margin-right: 15px; /* Marge augmentée */
  flex-shrink: 0;
}

#our-approach ul li i {
  font-size: 2em; /* Icônes plus grandes */
  color: var(--primary-color);
  margin-right: calc(var(--spacing-unit) * 1.5);
  min-width: 50px; /* Min-width augmenté */
  text-align: center;
  flex-shrink: 0;
}

/* --- Contact Page Specific --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: calc(var(--spacing-unit) * 3);
  align-items: flex-start;
}

.contact-form h3,
.contact-info h3 {
  color: var(--secondary-color);
  font-family: 'Montserrat', sans-serif;
  font-size: 2em; /* Titres plus grands */
  margin-bottom: calc(var(--spacing-unit) * 1.5);
  padding-bottom: var(--spacing-unit);
  border-bottom: 4px solid var(--primary-color); /* Bordure plus épaisse */
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-form label {
  display: block;
  margin-bottom: calc(var(--spacing-unit) * 0.8);
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1em; /* Taille ajustée */
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form input[type='tel'],
.contact-form textarea {
  width: 100%;
  padding: calc(var(--spacing-unit) * 1.2); /* Padding augmenté */
  margin-bottom: calc(var(--spacing-unit) * 1.5); /* Marge augmentée */
  border: 1px solid #ccc;
  border-radius: calc(var(--border-radius) * 0.75);
  font-size: 1em;
  background-color: var(--white);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.3); /* Ombre focus plus prononcée */
  outline: none;
}

.contact-form textarea {
  min-height: 180px; /* Hauteur augmentée */
  resize: vertical;
}

.contact-info p {
  margin-bottom: var(--spacing-unit);
  font-size: 1.1em; /* Texte plus grand */
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  line-height: 1.5; /* Hauteur de ligne augmentée */
}

.contact-info i {
  margin-right: calc(var(--spacing-unit) * 1.2); /* Marge augmentée */
  color: var(--primary-color);
  font-size: 1.6em; /* Icônes plus grandes */
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 2px;
}

iframe {
  width: 100%;
  height: 400px; /* Hauteur augmentée */
  border: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-medium);
  margin-top: calc(var(--spacing-unit) * 1.5);
}

.contact-info .social-links {
  display: flex;
  justify-content: center;
  margin-top: calc(var(--spacing-unit) * 2); /* Marge augmentée */
  padding-top: var(--spacing-unit);
}

.contact-info .social-links a {
  color: var(--primary-color);
  font-size: 3.5em; /* Icône plus grande */
  margin: 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.contact-info .social-links a:hover {
  color: #25d366;
  transform: translateY(-5px) scale(1.05);
}

/* --- Clients Logos --- */
.clients-logos {
  text-align: center;
  padding: calc(var(--spacing-unit) * 4) 0;
  background-color: var(--bg-medium); /* Nouveau fond pour cette section */
  border-top: 1px solid #e9ecef;
}

.clients-logos h2 {
  margin-bottom: calc(var(--spacing-unit) * 2.5);
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* Largeur min ajustée */
  gap: calc(var(--spacing-unit) * 2); /* Espacement augmenté */
  align-items: center;
  justify-content: center;
  max-width: 1100px; /* Largeur max augmentée */
  margin: 0 auto;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-unit);
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-light); /* Ombre légère */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 120px; /* Hauteur augmentée */
  border: 1px solid #e0e0e0; /* Bordure légère */
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-medium); /* Ombre plus marquée au survol */
}

.logo-item img {
  max-width: 90%;
  max-height: 80px; /* Hauteur max augmentée */
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7; /* Opacité légèrement augmentée */
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Footer --- */
footer {
  text-align: center;
  padding: calc(var(--spacing-unit) * 2.5); /* Padding augmenté */
  background: var(--secondary-color);
  color: var(--white);
  border-top: 5px solid var(--primary-color); /* Bordure plus épaisse */
}

footer p {
  margin: 0;
  font-size: 0.95em; /* Taille ajustée */
  color: rgba(255, 255, 255, 0.85); /* Plus opaque */
}

footer a {
  color: var(--primary-color);
  font-weight: 700; /* Plus de poids */
}

footer a:hover {
  color: var(--white);
}

/* --- Responsive Design (General) --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.8em;
  }
  .hero p {
    font-size: 1.4em;
  }
  section h2 {
    font-size: 2.8em;
  }
  .service-item h3 {
    font-size: 2.1em;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 2);
  }
  .contact-info {
    margin-top: 0;
    padding-top: calc(var(--spacing-unit) * 2);
    border-top: 1px solid #e9ecef;
  }
}

/* --- Responsive pour Mobile (< 768px) --- */
@media (max-width: 768px) {
  /* Header Mobile */
  header .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%; /* Largeur du menu mobile légèrement augmentée */
    height: 100%;
    background: var(--secondary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3); /* Ombre plus prononcée */
    transition: right 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  header nav.open {
    right: 0;
  }

  header nav ul {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  header nav ul li {
    margin: var(--spacing-unit) * 1.2 0; /* Espacement augmenté */
  }

  header nav ul li a {
    font-size: 1.3em; /* Taille des liens plus grande sur mobile */
    padding: 15px 0;
  }

  header nav ul li a::after {
    bottom: -8px;
    height: 3px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 450px;
    padding: calc(var(--spacing-unit) * 3) var(--spacing-unit);
  }
  .hero h1 {
    font-size: 3.2em; /* Texte Hero ajusté */
    margin-bottom: var(--spacing-unit) * 0.8;
  }
  .hero p {
    font-size: 1.2em; /* Paragraphe Hero ajusté */
    margin-bottom: calc(var(--spacing-unit) * 1.5);
  }
  .btn {
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.8);
    font-size: 1em;
  }

  /* Général sur Mobile */
  section {
    padding: calc(var(--spacing-unit) * 3) 0;
  }
  section h2 {
    font-size: 2.2em;
    margin-bottom: calc(var(--spacing-unit) * 2);
  }
  section h2::after {
    width: 80px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--spacing-unit) * 1.5);
  }
  .feature-item {
    padding: calc(var(--spacing-unit) * 1.5);
  }
  .feature-item i {
    font-size: 3.8em;
  }
  .feature-item h3 {
    font-size: 1.5em;
  }

  .service-item h3 {
    font-size: 1.9em;
  }
  .service-item p,
  .service-item ul li {
    font-size: 1em;
    margin-left: var(--spacing-unit) * 0.75;
  }
  .service-item ul li i {
    font-size: 1.1em;
  }

  #our-story p,
  #our-approach p {
    font-size: 1.05em;
  }
  #our-approach ul li {
    font-size: 1em;
    padding: var(--spacing-unit) calc(var(--spacing-unit) * 1.5);
    border-left-width: 6px;
  }
  #our-approach ul li i {
    font-size: 1.6em;
    min-width: 38px;
  }

  .contact-form h3, .contact-info h3 {
    font-size: 1.8em;
  }
  .contact-form label {
    font-size: 0.95em;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-info p {
    font-size: 1em;
  }
  .contact-info p {
    margin-bottom: calc(var(--spacing-unit) * 0.8);
    line-height: 1.4;
  }
  .contact-info i {
    font-size: 1.3em;
    margin-right: var(--spacing-unit) * 0.8;
    min-width: 25px;
  }
  iframe {
    height: 320px;
  }

  .contact-info .social-links a {
    font-size: 3em;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-unit);
  }
  .logo-item {
    height: 100px;
    padding: calc(var(--spacing-unit) * 0.7);
  }
  .logo-item img {
    max-height: 60px;
  }
  footer p {
    font-size: 0.9em;
  }
}

/* --- Responsive pour très petits écrans (< 480px) --- */
@media (max-width: 480px) {
  #branding h1 {
    font-size: 1.8em;
  }
  #branding img {
    height: 35px;
  }
  header nav ul li a {
    font-size: 1.1em;
  }

  .hero h1 {
    font-size: 2.5em;
  }
  .hero p {
    font-size: 1em;
  }

  section h2 {
    font-size: 1.9em;
  }

  .feature-item i {
    font-size: 3.2em;
  }
  .feature-item h3 {
    font-size: 1.3em;
  }

  .service-item h3 {
    font-size: 1.6em;
  }
  .service-item p,
  .service-item ul li {
    font-size: 0.95em;
  }

  .contact-form h3, .contact-info h3 {
    font-size: 1.6em;
  }
  .contact-form label,
  .contact-form input,
  .contact-form textarea,
  .contact-info p {
    font-size: 0.9em;
  }
  .contact-info .social-links a {
    font-size: 2.8em;
  }
}