#header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
  color: #004080; /* bleu comme sur ton image */
  text-transform: uppercase;
  margin: 0 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #007bff;
}

.btn-cta {
  font-weight: 600;
  padding: 10px 20px;
}

#header .navbar {
  padding-top: 20px;   /* augmente lâ€™espace en haut */
  padding-bottom: 20px; /* augmente lâ€™espace en bas */
}

#header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

/* Style par dÃ©faut */
.navbar-nav .nav-link {
  color: #333; /* gris foncÃ© */
  text-transform: uppercase;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

/* Lien actif */
.navbar-nav .nav-link.active {
  color: #007bff; /* bleu actif */
  font-weight: 600;
}

/* Hover */
.navbar-nav .nav-link:hover {
  color: #007bff;
}

/* ===== Hero Section ===== */
#hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f8f9fa; /* tu peux changer ou mettre une image */
  padding: 2rem 1rem;
}

/* --- Titres --- */
#hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  color: #0d3b66; /* mÃªme bleu que sur ton image */
  font-size: clamp(2rem, 5vw, 3.5rem); /* responsive */
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* --- Texte --- */
#hero p {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  max-width: 75ch; /* plus de mots par ligne */
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: #444;
}

/* --- Bouton CTA --- */
#hero .btn-get-started {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #0d6efd;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  border-radius: 999px; /* effet pilule */
  text-decoration: none; /* enlÃ¨ve le soulignement */
  transition: background-color 0.3s ease; /* correction */
}

#hero .btn-get-started:hover {
  background-color: #084298;
  color: #fff;
}

/* ===== Bouton CTA pilule (clean) ===== */
#hero .btn-get-started {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;                  /* pilule */
  background-color: #0d6efd;            /* bleu */
  color: #fff !important;               /* texte blanc */
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  text-decoration: none;                /* pas de soulignement */
  text-align: center;
  transition: background-color 0.25s ease, transform 0.12s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(13,110,253,0.12);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* hover / focus (accessible) */
#hero .btn-get-started:hover,
#hero .btn-get-started:focus {
  background-color: #084298;            /* bleu plus foncÃ© */
  transform: translateY(-3px);          /* lÃ©ger soulÃ¨vement */
  text-decoration: none;                /* assure pas de soulignement */
  outline: none;
  box-shadow: 0 12px 28px rgba(8,66,152,0.14);
}

/* focus visible pour clavier */
#hero .btn-get-started:focus-visible {
  box-shadow: 0 0 0 4px rgba(13,110,253,0.14);
  outline: none;
}

/* si Bootstrap ou autre surcharge : variante forcÃ©e (en dernier recours) */
#hero .btn-get-started.force {
  text-decoration: none !important;
  background-color: #0d6efd !important;
  color: #fff !important;
}
#hero .btn-get-started.force:hover {
  background-color: #084298 !important;
  transform: translateY(-3px) !important;
}

/* ===== Icon Boxes ===== */
.icon-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.icon-box .icon {
  font-size: 40px;
  color: #0d6efd; /* bleu du CTA */
  margin-bottom: 15px;
}

.icon-box .title {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

.icon-box .description {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #555;
}

/* ===== FORMULAIRE MODERNE ===== */
.jf-form {
  max-width: 800px;
  margin: 50px auto;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Open Sans', sans-serif;
}

/* Labels avec astÃ©risque rouge */
.jf-form label.control-label::after {
  content: " *";
  color: red;
  font-weight: bold;
}

.jf-form label.control-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  color: #333;
}

/* Champs */
.jf-form .form-control {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.jf-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
  outline: none;
}

/* Input group avec icÃ´ne */
.jf-form .input-group {
  align-items: center;
}

.jf-form .input-group-addon {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px 0 0 10px;
  padding: 12px;
  color: #0d6efd;
  font-size: 18px;
}

.jf-form .input-group .form-control {
  border-left: none;
  border-radius: 0 10px 10px 0;
}

/* Select */
.jf-form select.form-control {
  appearance: none;
  background: #fff url("data:image/svg+xml;utf8,<svg fill='%230d6efd' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Bouton CTA */
.jf-form button[type="submit"] {
  background: #0d6efd;
  border: none;
  border-radius: 50px;
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.jf-form button[type="submit"]:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Message d'erreur */
.jf-form .error {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: #fff3cd;
  color: #664d03;
}

/* Responsive */
@media (max-width: 768px) {
  .jf-form {
    padding: 20px;
  }
  .jf-form button[type="submit"] {
    width: 100%;
    justify-content: center;
  }
}

/* 3. Centre le bouton */
form .btn-cta {
  display: inline-block;
  margin: 0 auto;
}
form div:last-child {
  text-align: center;
}

.input-group-text {
    display: flex;
    align-items: center;
    height: calc(2.25rem + 2px); /* Hauteur standard d'un input Bootstrap */
}

.form-control {
    height: calc(2.25rem + 2px);
}

/* Style pour la section CTA */
#cta {
  background: linear-gradient(135deg, #3498db, #2980b9);
  padding: 60px 0;
  color: white;
}

#cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  line-height: 1.2;
}

#cta p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Style du bouton CTA */
.cta-btn {
  display: inline-block;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: none;
}

.cta-btn:hover {
  background-color: white;
  color: #3498db;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  #cta {
    padding: 40px 0;
  }
  
  #cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  #cta p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Section Partenaires */
#partners {
  background-color: #f8f9fa;
  padding: 80px 0;
  overflow: hidden;
}

#partners .section-title {
  text-align: center;
  margin-bottom: 60px;
}

#partners .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

#partners .section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

/* Container des partenaires */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

/* Chaque bloc partenaire */
.partner-item {
  position: relative;
  width: 180px;
  height: 120px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
}

.partner-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(41, 128, 185, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

/* Image du partenaire */
.partner-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(100%) contrast(1.2) brightness(0.8);
  position: relative;
  z-index: 2;
}

/* Effets au survol */
.partner-item:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.partner-item:hover::before {
  opacity: 1;
}

.partner-item:hover img {
  filter: grayscale(0%) contrast(1) brightness(1);
  transform: scale(1.05);
}

/* Animation d'entrÃ©e */
.partner-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.partner-item:nth-child(1) { animation-delay: 0.1s; }
.partner-item:nth-child(2) { animation-delay: 0.2s; }
.partner-item:nth-child(3) { animation-delay: 0.3s; }
.partner-item:nth-child(4) { animation-delay: 0.4s; }
.partner-item:nth-child(5) { animation-delay: 0.5s; }
.partner-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .partners-row {
    gap: 20px;
  }
  
  .partner-item {
    width: 160px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  #partners {
    padding: 60px 0;
  }
  
  #partners .section-title h2 {
    font-size: 2rem;
  }
  
  .partners-row {
    gap: 15px;
  }
  
  .partner-item {
    width: 140px;
    height: 90px;
    padding: 15px;
  }
  
  .partner-item:hover {
    transform: scale(1.08) translateY(-3px);
  }
}

@media (max-width: 576px) {
  .partners-row {
    flex-direction: column;
    align-items: center;
  }
  
  .partner-item {
    width: 200px;
    height: 120px;
  }
}

/* Effet de pulsation subtil */
.partner-item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #3498db, #2980b9, #3498db);
  border-radius: 17px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.partner-item:hover::after {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.1;
  }
}

/* Section Contact */
#contact {
  background-color: #f8f9fa;
  padding: 80px 0;
}

#contact .section-title {
  text-align: center;
  margin-bottom: 60px;
}

#contact .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

#contact .section-title p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
}

#contact .section-title p strong {
  color: #2c5aa0;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 15px;
}

/* Section informations de contact */
.info {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
  margin-top: 20px;
}

.info .address,
.info .email {
  margin-bottom: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
  position: relative;
}

.info .address:hover,
.info .email:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.info .address:last-child,
.info .email:last-child {
  margin-bottom: 0;
}

.info i {
  font-size: 2rem;
  color: #3498db;
  float: left;
  margin-right: 15px;
  margin-top: 5px;
  background: rgba(52, 152, 219, 0.1);
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info h4 {
  font-size: 1.4rem;
  color: #2c5aa0;
  margin-bottom: 10px;
  margin-left: 75px;
  font-weight: 600;
}

.info p {
  font-size: 1rem;
  margin-left: 75px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Formulaire */
.php-email-form {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.php-email-form .form-group {
  margin-bottom: 25px;
}

.php-email-form input,
.php-email-form textarea {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
  background: white;
  outline: none;
}

.php-email-form input::placeholder,
.php-email-form textarea::placeholder {
  color: #999;
  font-style: italic;
}

.php-email-form textarea {
  resize: vertical;
  min-height: 150px;
}

/* Messages de statut */
.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-weight: 500;
}

.php-email-form .loading {
  background: #e3f2fd;
  color: #1976d2;
  border-left: 4px solid #2196f3;
}

.php-email-form .error-message {
  background: #ffebee;
  color: #c62828;
  border-left: 4px solid #f44336;
}

.php-email-form .sent-message {
  background: #e8f5e8;
  color: #2e7d32;
  border-left: 4px solid #4caf50;
  line-height: 1.6;
}

/* Bouton de soumission */
.php-email-form button[type="submit"] {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: none;
  padding: 15px 40px;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
}

.php-email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
  background: linear-gradient(135deg, #2980b9, #3498db);
}

.php-email-form button[type="submit"]:active {
  transform: translateY(0);
}

/* Effet de vague sur le bouton */
.php-email-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.php-email-form button[type="submit"]:hover::before {
  width: 300px;
  height: 300px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .info {
    margin-bottom: 40px;
  }
  
  #contact .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 60px 0;
  }
  
  .info,
  .php-email-form {
    padding: 25px;
    margin-top: 30px;
  }
  
  .info .address,
  .info .email {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .info i {
    font-size: 1.5rem;
    padding: 12px;
    width: 50px;
    height: 50px;
  }
  
  .info h4 {
    margin-left: 65px;
    font-size: 1.2rem;
  }
  
  .info p {
    margin-left: 65px;
    font-size: 0.95rem;
  }
  
  .php-email-form button[type="submit"] {
    width: 100%;
    padding: 18px;
  }
}

@media (max-width: 576px) {
  #contact .section-title h2 {
    font-size: 1.8rem;
  }
  
  #contact .section-title p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

/* Footer */
#footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

#footer .container,
#footer .row,
#footer .footer-top {
  position: relative;
  z-index: 2;
}

/* Section supÃ©rieure du footer */
.footer-top {
  padding: 60px 0 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Informations de contact */
.footer-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #3498db;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2980b9);
  border-radius: 2px;
}

.footer-contact p {
  font-size: 1rem;
  line-height: 1.8;
  color: #bdc3c7;
  margin-bottom: 0;
}

.footer-contact strong {
  color: #ecf0f1;
  font-weight: 600;
}

/* Liens utiles */
.footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #ecf0f1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #3498db;
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.footer-links ul li:last-child {
  border-bottom: none;
}

.footer-links ul li:hover {
  padding-left: 10px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 5px;
}

.footer-links ul li i {
  color: #3498db;
  margin-right: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-links ul li:hover i {
  color: #2980b9;
  transform: translateX(5px);
}

.footer-links ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: #3498db;
  text-decoration: none;
}

/* Newsletter */
.footer-newsletter h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ecf0f1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-newsletter h4:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #3498db;
  border-radius: 1px;
}

.footer-newsletter p {
  font-size: 1rem;
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 25px;
}

.footer-newsletter form {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  transition: all 0.3s ease;
}

.footer-newsletter form:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(52, 152, 219, 0.5);
}

.footer-newsletter form input[type="email"] {
  border: 0;
  padding: 12px 20px;
  width: 100%;
  background: transparent;
  color: #ecf0f1;
  border-radius: 50px;
  outline: none;
  font-size: 14px;
}

.footer-newsletter form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter form input[type="submit"] {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: 0;
  width: auto;
  padding: 12px 25px;
  margin: 0;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.footer-newsletter form input[type="submit"]:hover {
  background: linear-gradient(135deg, #2980b9, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Section copyright */
#footer .container.d-md-flex {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 14px;
  color: #bdc3c7;
  margin-bottom: 5px;
}

.copyright strong {
  color: #3498db;
  font-weight: 600;
}

.credits a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.credits a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Animation d'apparition */
.footer-contact,
.footer-links,
.footer-newsletter {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.footer-contact {
  animation-delay: 0.1s;
}

.footer-links {
  animation-delay: 0.2s;
}

.footer-newsletter {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px 0;
  }

  .footer-contact,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 40px;
  }

  .footer-contact h3 {
    font-size: 1.5rem;
  }

  .footer-links h4,
  .footer-newsletter h4 {
    font-size: 1.2rem;
  }

  .footer-newsletter form {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    border-radius: 15px;
  }

  .footer-newsletter form input[type="email"] {
    padding: 15px 20px;
    border-radius: 10px;
  }

  .footer-newsletter form input[type="submit"] {
    border-radius: 10px;
    padding: 15px;
  }

  #footer .container.d-md-flex {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-contact,
  .footer-links,
  .footer-newsletter {
    margin-bottom: 30px;
  }

  .footer-links ul li {
    padding: 10px 0;
  }
}

/* Header Styles */
#header {
  padding: 8px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

#header.scrolled {
  padding: 5px 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Logo et branding */
#header .navbar-brand,
#header a[href="index.html"] {
  transition: all 0.3s ease;
}

#header a[href="index.html"]:hover {
  transform: translateY(-1px);
}

#header img {
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#header a[href="index.html"]:hover img {
  transform: scale(1.05);
}

#header .fw-bold {
  font-size: 1.2rem;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  text-shadow: none;
}

#header .text-muted {
  font-size: 0.85rem;
  color: #7f8c8d !important;
  font-style: italic;
  font-weight: 400;
}

/* Navigation */
.navbar-nav {
  gap: 15px;
}

.navbar-nav .nav-link {
  color: #2c3e50 !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 20px !important;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 25px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #3498db !important;
  transform: translateY(-2px);
}

/* Boutons CTA */
.btn-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  transition: all 0.3s ease;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2980b9, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Burger menu */
.navbar-toggler {
  border: 2px solid #3498db;
  border-radius: 8px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233498db' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

/* Hero Section */
#hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(52,152,219,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.5;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #7f8c8d;
  margin-bottom: 40px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.btn-get-started {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.btn-get-started:hover::before {
  width: 300px;
  height: 300px;
}

.btn-get-started:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.1);
  }

  .navbar-nav {
    gap: 5px;
  }

  .navbar-nav .nav-link {
    padding: 12px 20px !important;
    margin-bottom: 5px;
    text-align: center;
  }

  #hero {
    padding: 100px 0 60px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 10px 0;
  }

  #header .fw-bold {
    font-size: 1.1rem;
  }

  #header .text-muted {
    font-size: 0.8rem;
  }

  #header img {
    height: 45px !important;
  }

  .btn-primary {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  #hero {
    padding: 80px 0 50px 0;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .btn-get-started {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #header .container-fluid {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .btn-get-started {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Effet de scroll sur le header */
.header-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(15px);
}

html {
  scroll-behavior: smooth;
}

/* Correction pour les champs select avec texte coupÃ© */
select {
    height: 45px !important;
    min-height: 45px !important;
    padding: 10px 15px !important;
    line-height: 1.5 !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

#header + section {
    padding-top: 100px;
}
