/* ========== CONTACT SECTION ========== */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(var(--sahel-accent-rgb), 0.08);
  color: var(--sahel-primary);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(var(--sahel-accent-rgb), 0.2);
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: default;
}

.section-badge i {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.section-badge span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* --- Effet au survol --- */
.section-badge:hover {
  background: rgba(var(--sahel-accent-rgb), 0.12);
  transform: translateY(-2px);
  border-color: var(--sahel-primary);
  box-shadow: 0 5px 15px rgba(var(--sahel-accent-rgb), 0.1);
}
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--sahel-primary),
    var(--sahel-accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
/* --- Variantes de couleurs selon le contexte --- */

/* Variante badge info/question */
.section-badge i.bi-question-circle-fill {
  color: var(--sahel-accent);
}
.section-badge:has(.bi-question-circle-fill) {
  background: rgba(var(--sahel-primary-rgb), 0.08);
  border-color: rgba(var(--sahel-primary-rgb), 0.2);
  color: var(--sahel-accent);
}
/* --- CONTACT HERO BASE --- */
.contact-hero {
  padding: 60px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 850;
  color: #0f172a;
  line-height: 1.1;
  margin: 1.5rem 0;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 540px;
}

/* --- QUICK CONTACT CARDS REVISITÉS --- */
.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 2rem;
}

.quick-contact-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  background: #ffffff;
  /* Bordure très fine et subtile */
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-2xl);
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}

/* Petit reflet de lumière au survol */
.quick-contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}

.quick-contact-card:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.quick-contact-card:hover::before {
  opacity: 1;
}

/* Style spécifique au survol selon le type */
.quick-contact-card:hover.tel-card {
  background: linear-gradient(145deg, #ffffff, #f0fdf4);
}
.quick-contact-card:hover.email-card {
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
}

/* --- ICON BOX AVEC EFFET NEUMORPHIQUE --- */
.contact-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.05);
}

.icon-tel {
  background: var(--sahel-accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(var(--sahel-accent-rgb), 0.25);
}

.icon-email {
  background: var(--sahel-primary);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(var(--sahel-primary-rgb), 0.25);
}

.quick-contact-card:hover .contact-icon-box {
  transform: rotate(-10deg) scale(1.1);
}

/* --- TEXTES --- */
.contact-text {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -0.2px;
}

/* --- PETITE DÉCO : CERCLES EN FOND --- */
.quick-contact-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.03;
  z-index: -1;
  transition: 0.4s;
}

.tel-card::after {
  background: var(--sahel-accent);
}
.email-card::after {
  background: var(--sahel-primary);
}

.quick-contact-card:hover::after {
  transform: scale(2);
  opacity: 0.07;
}

/* --- VISUAL SIDE (AGRANDI & ÉPURÉ) --- */
.hero-visual-container {
  position: relative;
  padding: 20px;
  /* On s'assure que le container prend toute la hauteur possible */
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  /* On définit une hauteur minimale importante pour l'équilibre */
  height: 600px;
  border-radius: 60px; /* Arrondi encore plus marqué */
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.12),
    0 10px 20px rgba(var(--sahel-accent-rgb), 0.05);
  border: 10px solid #ffffff;
}

.hero-image-wrapper:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 60px 100px rgba(15, 23, 42, 0.18);
}

.contact-hero-img {
  width: 100%;
  height: 100%; /* L'image prend toute la hauteur du wrapper */
  display: block;
  object-fit: cover; /* Crucial pour ne pas écraser l'image */
  object-position: center;
  transition: transform 1.2s ease;
}

/* Lueur pulsante ajustée pour la nouvelle hauteur */
.hero-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(var(--sahel-accent-rgb), 0.12) 0%,
    transparent 70%
  );
  z-index: -1;
  transform: translate(-50%, -50%);
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* --- ADAPTATION MOBILE --- */
@media (max-width: 991px) {
  .hero-visual-container {
    height: auto;
    padding: 0;
    margin-top: 3rem;
  }
  .hero-image-wrapper {
    height: 450px; /* On réduit un peu la hauteur sur mobile */
    max-width: 100%;
    margin: 0 auto;
    transform: rotate(0deg);
    border-radius: 40px;
  }
}
/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .contact-hero {
    padding: 60px 0;
    text-align: center;
  }
  .hero-subtitle {
    margin-inline: auto;
  }
  .quick-contact-grid {
    justify-content: center;
  }
  .floating-trust-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }
}

/* ========== CONTACT FORM SECTION ========== */
.contact-form-section {
  padding: 100px 0;
  background: #f8fafc;
}

/* --- SIDEBAR DE CONTACT --- */
.contact-sidebar {
  background: #0f172a; /* Bleu très profond pour le sérieux */
  padding: 45px;
  border-radius: 35px;
  color: #ffffff;
  height: 100%;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.sidebar-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #ffffff;
}

.sidebar-header p {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.contact-list {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.item-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.item-icon-primary {
  color: var(--sahel-accent);
}
.item-icon-accent {
  color: var(--sahel-primary);
}
.item-icon-info {
  color: var(--sahel-primary-light);
}

.contact-item:hover .item-icon {
  background: #ffffff;
  transform: scale(1.1);
}

.item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.item-content p,
.item-content a {
  color: #94a3b8;
  text-decoration: none !important;
  margin: 0;
  font-size: 0.95rem;
  transition: 0.3s;
}

.item-content a:hover {
  color: var(--sahel-accent);
}

/* Horaires & Social */
.schedule-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.schedule-card h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.schedule-item:last-child {
  border: none;
}
.schedule-card h4 {
  font-size: 1.25rem; /* Agrandissement du texte */
  font-weight: 700;
  color: #ffffff; /* Texte en blanc pur */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
}

.schedule-card h4 i {
  color: #037b61; /* L'icône en vert pour le contraste sur le blanc */
  font-size: 1.4rem;
}
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--sahel-accent);
  transform: translateY(-5px);
}

/* ========== FORM WRAPPER & HEADER ========== */
.form-wrapper {
  background: #ffffff;
  padding: 50px;
  border-radius: 35px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #000000; /* Noir pur pour le titre principal */
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.form-header p {
  color: #64748b;
  margin-bottom: 45px;
  font-size: 1.05rem;
}

/* ========== HARMONISATION DES LABELS (NOIR GRAS) ========== */
.form-label {
  display: block;
  font-weight: 700; /* Gras robuste */
  color: #000000; /* Noir pur */
  margin-bottom: 10px;
  font-size: 0.95rem;
  transition: color 0.3s;
}

/* ========== CHAMPS DE SAISIE (INPUTS) ========== */
.input-group-custom {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group-custom i {
  position: absolute;
  left: 20px;
  color: #94a3b8;
  font-size: 1.1rem;
  z-index: 2;
  transition: color 0.3s;
}

.form-control {
  width: 100%;
  padding: 15px 20px 15px 52px;
  background: #f8fafc; /* Gris très léger et propre */
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  font-size: 1rem;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--sahel-accent); /* Vert Sahel */
  box-shadow: 0 0 0 4px rgba(var(--sahel-accent-rgb), 0.1);
  outline: none;
}

.form-control:focus + i {
  color: var(--sahel-accent); /* L'icône change de couleur au focus */
}

/* ========== TÉLÉPHONE — intl-tel-input overrides ========== */
.iti {
  width: 100%;
  display: block;
}

.iti__tel-input {
  width: 100%;
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 14px 16px 14px 58px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
  transition: all 0.3s ease;
  outline: none;
  height: 54px;
}

.iti__tel-input:focus {
  background: #ffffff;
  border-color: var(--sahel-accent);
  box-shadow: 0 0 0 4px rgba(var(--sahel-accent-rgb), 0.1);
}

.iti--separate-dial-code .iti__selected-country {
  background: #f1f5f9;
  border-radius: 14px 0 0 14px;
  border-right: 1px solid #e2e8f0;
  padding: 0 10px;
}

.iti__selected-dial-code {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1e293b;
}

.iti__country-list {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
  max-height: 280px;
  font-family: inherit;
}

.iti__country-list .iti__country.iti__highlight {
  background: rgba(var(--sahel-accent-rgb), 0.08);
}

/* ========== BOUTON SOUMISSION ========== */
.btn-submit {
  width: 100%;
  background: var(--gradient-accent);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(var(--sahel-accent-rgb), 0.25);
  filter: brightness(1.05);
}

.btn-submit:active {
  transform: translateY(0);
}

/* --- Notification Toast --- */
.sahel-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  background: #ffffff;
  border-left: 5px solid var(--sahel-accent); /* Vert Sahel */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 16px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sahel-notification.show {
  transform: translateX(0);
}

.notification-icon {
  width: 40px;
  height: 40px;
  background: rgba(var(--sahel-accent-rgb), 0.1);
  color: var(--sahel-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.notification-content h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.notification-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
}

/* Barre de progression de fermeture */
.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--sahel-accent);
  width: 100%;
  border-bottom-left-radius: 12px;
}

@keyframes progress-shrink {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* ========== PIED DE PAGE & STATUS ========== */
.form-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #64748b;
  font-size: 0.85rem;
}

.form-footer i {
  color: var(--sahel-accent);
  font-size: 1.1rem;
}

.required {
  color: var(--sahel-accent);
  margin-left: 3px;
}

.form-hint {
  display: block;
  margin-top: 8px;
  color: #94a3b8;
  font-size: 0.8rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .form-wrapper {
    padding: 35px 25px;
    border-radius: 25px;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }
}

/* ========== SUPPORT CENTERS SECTION ========== */
.support-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.support-card {
  background: var(--sahel-white);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--sahel-gray-light);
  display: flex;
  flex-direction: column;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sahel-accent);
}

/* Icônes avec dégradés */
.support-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 25px;
}

.support-icon-info {
  background: var(--gradient-accent);
}
.support-icon-success {
  background: var(--gradient-dark);
}
.support-icon-warning {
  background: linear-gradient(135deg, #e11d48, #fb7185);
}

/* Titres en NOIR GRAS */
.support-title {
  font-size: 1.4rem;
  font-weight: 800; /* Extra gras */
  color: #000000; /* Noir pur */
  margin-bottom: 15px;
}

.support-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Contacts */
.support-contacts {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.support-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.support-contacts i {
  color: var(--sahel-accent);
  font-size: 1.1rem;
}

.support-contacts a {
  color: #000000;
  text-decoration: none;
  font-weight: 700; /* Liens en gras aussi */
  transition: color 0.3s;
}

.support-contacts a:hover {
  color: var(--sahel-accent);
}

/* Footer de carte */
.support-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.support-hours i {
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ SECTION STYLES ========== */
.faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq-accordion {
  border: none;
}

.faq-accordion .accordion-item {
  border: none;
  background: #f8fafc;
  border-radius: 20px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  background: #f1f5f9;
}

/* Header & Button */
.faq-accordion .accordion-button {
  background: transparent;
  padding: 25px 30px;
  box-shadow: none;
  font-weight: 800; /* NOIR GRAS */
  color: #000000; /* NOIR PUR */
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--sahel-accent); /* Couleur primaire quand ouvert */
  background: transparent;
  box-shadow: none;
}

/* Wrapper d'icône à gauche du texte */
.faq-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sahel-accent);
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon-wrapper {
  background: var(--sahel-accent);
  color: #ffffff;
}

/* Personnalisation de la flèche (chevron) */
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Le contenu de la réponse */
.faq-accordion .accordion-body {
  padding: 0 30px 30px 85px; /* Aligné sous le texte, pas sous l'icône */
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-link {
  color: var(--sahel-accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid rgba(var(--sahel-accent-rgb), 0.1);
  transition: all 0.3s;
}

.faq-link:hover {
  border-bottom-color: var(--sahel-accent);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .faq-accordion .accordion-button {
    padding: 20px;
    font-size: 1rem;
  }
  .faq-accordion .accordion-body {
    padding: 0 20px 20px 20px;
  }
}

/* ========== CTA FINAL SECTION ========== */
.cta-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.cta-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--sahel-dark) 0%, var(--sahel-accent) 100%);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden; /* Pour contenir les formes décoratives */
  box-shadow: 0 30px 60px rgba(var(--sahel-accent-rgb), 0.2);
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* Titre CTA : Noir remplacé par Blanc pour lisibilité sur fond sombre */
.cta-title {
  font-size: 2.5rem;
  font-weight: 800; /* Extra Gras */
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Icône de tête */
.cta-icon-main {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0 auto 30px;
  backdrop-filter: blur(5px);
}

/* Boutons CTA */
.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-call {
  background: #ffffff;
  color: #0f172a;
  padding: 15px 35px;
  border-radius: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-call .btn-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.btn-cta-call small {
  font-size: 0.75rem;
  opacity: 0.7;
}
.btn-cta-call span {
  font-size: 1.1rem;
  font-weight: 800;
}

.btn-cta-mail {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-cta-call:hover,
.btn-cta-mail:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Badge de disponibilité */
.cta-availability {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

.pulse-icon {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.pulse-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #22c55e;
  border-radius: 50%;
  animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* Formes décoratives */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
}
.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -100px;
}
.cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -50px;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-wrapper {
    padding: 40px 20px;
  }
}
/* ==========================================================================
   SYSTÈME RESPONSIVE SAHEL MEDIC
   ========================================================================== */

@media (max-width: 1200px) {
  .hero-image-wrapper {
    height: 500px;
  }
  .form-wrapper {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  /* Layout Contact Hero */
  .contact-hero {
    padding: 60px 0;
    text-align: center;
  }
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  .hero-visual-container {
    margin-top: 3rem;
    padding: 0;
  }
  .hero-image-wrapper {
    height: 400px;
    border-radius: 40px;
    border-width: 6px;
  }

  /* Layout Formulaire & Sidebar */
  .contact-sidebar {
    margin-bottom: 30px;
    border-radius: 30px;
  }
  .form-wrapper {
    border-radius: 30px;
  }

  /* Quick Contact */
  .quick-contact-grid {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Typographie */
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  /* Grilles */
  .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  /* Accordéon FAQ */
  .faq-accordion .accordion-button {
    padding: 20px;
    font-size: 1rem;
  }
  .faq-accordion .accordion-body {
    padding: 0 20px 20px 70px;
  }

  /* CTA Final */
  .cta-wrapper {
    padding: 50px 25px;
    border-radius: 30px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-cta-call,
  .btn-cta-mail {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  /* Formulaire */
  .form-wrapper {
    padding: 30px 20px;
  }
  .form-header h2 {
    font-size: 1.6rem;
  }

  /* Input téléphone */
  .phone-prefix {
    padding: 0 10px;
    font-size: 0.9rem;
  }
  .phone-field {
    font-size: 0.95rem;
  }

  /* Cards de support */
  .support-card {
    padding: 30px 20px;
  }
  .support-title {
    font-size: 1.25rem;
  }

  /* Notification Toast */
  .sahel-notification {
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    top: auto;
    bottom: 20px;
  }

  /* Ajustement global des sections */
  section {
    padding: 60px 0 !important;
  }
}

/* Extra small screens (< 375px) */
@media (max-width: 374.98px) {
  .hero-image-wrapper {
    height: 260px;
    border-radius: 24px;
    border-width: 4px;
  }

  .hero-title {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
  }

  .contact-sidebar {
    padding: 25px 18px;
    border-radius: 20px;
  }

  .form-wrapper {
    padding: 22px 14px;
    border-radius: 18px;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-wrapper {
    padding: 30px 15px;
    border-radius: 20px;
  }
}

/* Optimisation pour les écrans très larges */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  .hero-image-wrapper {
    height: 700px;
  }
}
