/* =========================================================
   VARIABLES GLOBALES - PALETTE A (BLEU ROYAL + OR)
========================================================= */
:root {
  --blue-main: #0256ff;
  --blue-soft: #56aaff;
  --blue-soft-bg: rgba(86, 170, 255, 0.12);
  --gold: #ffb800;
  --dark: #050816;
  --dark-2: #020617;
  --text-main: #0f172a;
  --light: #f9fafb;
  --white: #ffffff;
}

/* =========================================================
   RESET SIMPLE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden !important;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--text-main);
}

a {
  text-decoration: none;
}

/* =========================================================
   LAYOUT GLOBAL
========================================================= */

.page-wrapper {
  padding-top: 76px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 0.95rem;
}

/* =========================================================
   NAVBAR PREMIUM
========================================================= */

.bg-nav {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar-toggler i {
  font-size: 26px;
  transition: .3s ease;
}


.navbar-scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4);
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.navbar-brand {
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

/* Logo texte circulaire (au cas où tu l’utilises encore) */
.logo-circle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), #003bbd);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Logo image */
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.07);
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.45));
}

.navbar .nav-link {
  position: relative;
  margin-inline: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #fff !important;
  transition: 0.3s;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  height: 2px;
  width: 0;
  background: var(--white);
  transition: width 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover {
  color: #4da3ff !important;
  transform: translateY(-2px);
}

/* Bouton WhatsApp dans la nav (si utilisé) */
.btn-nav-whatsapp {
  background: #25d366;
  padding: 8px 18px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.btn-nav-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
}

/* =========================================================
   HERO SECTION PREMIUM
========================================================= */

.hero-section {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 7rem;
  position: relative;
  overflow: hidden;
}

/* Background carousel (Bootstrap) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  object-fit: cover;
  height: 100vh;
  width: 100%;
  filter: brightness(90%) contrast(108%) saturate(115%);
}

/* Overlay pour lisibilité */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65),
    rgba(2, 86, 255, 0.35)
  );
  z-index: 1;
}

/* Contenu hero */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .row {
  align-items: center;
}

/* Texte hero - desktop : aligné à gauche, mobile : centré */
.hero-section h1 {
  max-width: 650px;
  margin-bottom: 1rem;
  font-size: 2.8rem;
  line-height: 1.15;
  text-align: left;
}

.hero-section p {
  max-width: 550px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  text-align: left;
}

.hero-section .d-flex {
  justify-content: flex-start;
}

/* Badge hero */
.badge-hero {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

/* Texte gradient bleu-or */
.text-gradient {
  background: linear-gradient(90deg, var(--gold), var(--blue-main));
  -webkit-background-clip: text;
  color: transparent;
}

/* Boutons Hero */
.btn-premium {
  background: linear-gradient(135deg, var(--gold), #0056b3);
  border: none;
  color: #fff !important;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 35px rgba(0, 86, 179, 0.55);
  transition: 0.35s ease;
}

.btn-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 86, 179, 0.7);
}

.btn-light-outline {
  border: 1px solid #fff;
  color: #fff !important;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.35s ease;
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Carte hero (pays phares) */
.glass-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 1.4rem;
}

/* Flag cards dans le hero */
.flag-card {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: 0.35s ease;
}

.flag-card span {
  font-size: 0.9rem;
  font-weight: 700;
}

.flag-card p {
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.9;
}

.flag-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 40px rgba(2, 86, 255, 0.45);
}

/* =========================================================
   BOUTONS GLOBAUX
========================================================= */

.btn-primary-gradient {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-soft));
  border: none;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(2, 86, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-3px);
  opacity: 0.95;
  box-shadow: 0 18px 55px rgba(2, 86, 255, 0.65);
  color: #ffffff;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  color: #0f172a;
  background-color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  color: #ffffff;
}

/* =========================================================
   CARTES GLOBALES (services, destinations, etc.)
========================================================= */

.card-feature,
.destination-card,
.apartment-card,
.team-card,
.contact-card,
.about-card {
  background: #ffffff;
  border-radius: 1.3rem;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 1.6rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card-feature:hover,
.destination-card:hover,
.apartment-card:hover,
.team-card:hover,
.contact-card:hover,
.about-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.16);
  border-color: var(--blue-main);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 86, 255, 0.08);
  font-size: 1.6rem;
}

/* =========================================================
   ABOUT PREMIUM
========================================================= */

.about-premium {
  background: #ffffff;
}

.about-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 420px;
  box-shadow: 0 18px 55px rgba(2, 86, 255, 0.25);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.12);
}

.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 86, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

.about-img-wrapper:hover .img-overlay {
  opacity: 1;
}

.badge-premium {
  display: inline-block;
  background: rgba(2, 86, 255, 0.12);
  border: 1px solid rgba(2, 86, 255, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-short {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
}

/* Mini-cards */
.about-minicards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-card {
  background: linear-gradient(135deg, var(--gold), var(--blue-main));
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(2, 86, 255, 0.25);
  transition: 0.3s;
}

.mini-card:hover {
  transform: translateY(-4px);
}

/* Stats About */
.about-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.about-stats div {
  text-align: center;
}

.about-stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--gold), var(--blue-main));
  -webkit-background-clip: text;
  color: transparent;
}

.about-stats span {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Team photo */
.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
  border: 3px solid rgba(255, 255, 255, 0.9);
}

/* =========================================================
   SERVICES PREMIUM
========================================================= */

.services-premium {
  background: #f8fafc;
}

/* Grid uniforme */
#services .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#services .col-md-6,
#services .col-lg-4 {
  display: flex;
  align-items: stretch;
}

@media (min-width: 992px) {
  #services .col-md-6,
  #services .col-lg-4 {
    flex: 1 1 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 991.98px) and (min-width: 576px) {
  #services .col-md-6 {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  #services .col-md-6,
  #services .col-lg-4 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Carte service */
.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  padding: 28px;
  text-align: center;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.45s ease;
  transform: translateY(0);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  width: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: linear-gradient(
    135deg,
    rgba(2, 86, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  top: -80%;
  left: -80%;
  transform: rotate(25deg);
  transition: 0.7s;
}

.service-card:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow: 0 18px 55px rgba(2, 86, 255, 0.25);
}

.service-card:hover::before {
  top: -10%;
  left: -10%;
}

.service-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), #003bbd);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
}

.service-card:hover .service-icon {
  transform: rotate(12deg) scale(1.15);
}

/* =========================================================
   STATS CIRCULAIRES
========================================================= */

#stats {
  padding: 90px 0;
}

#stats .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--blue-main));
  -webkit-background-clip: text;
  color: transparent;
}

.circle-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin: auto;
  cursor: pointer;
  transition: transform 0.45s ease;
}

.circle-container:hover {
  transform: translateY(-8px) scale(1.08);
}

.progress-ring-bg {
  fill: none;
  stroke: #d4d4d8;
  stroke-width: 10;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--blue-main); /* tu peux remplacer par un gradient via <defs> si besoin */
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 345;
  stroke-dashoffset: 345;
  transition: stroke-dashoffset 1.4s ease-in-out;
  filter: drop-shadow(0 0 10px rgba(2, 86, 255, 0.45));
}

.circle-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--blue-main));
  -webkit-background-clip: text;
  color: transparent;
}

#stats p {
  font-size: 0.95rem;
  color: #334155;
  margin-top: 12px;
  font-weight: 600;
}

#stats .col-6:hover p {
  color: var(--blue-main);
  text-shadow: 0 0 6px rgba(2, 86, 255, 0.4);
}

/* =========================================================
   BANNIÈRES
========================================================= */

/* Bannière spéciale Omrah / Hajj */
.banner-offer {
  position: relative;
  height: 50vh;
  background: url("assets/images/c3.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.banner-title {
  position: relative;
  z-index: 3;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.banner-subtitle {
  position: relative;
  z-index: 3;
  margin-top: 12px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 650px;
  margin-inline: auto;
}

.btn-offer-premium {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  padding: 0.8rem 2.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--blue-main));
  color: #fff !important;
  font-weight: 700;
  font-size: 1.05rem;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.btn-offer-premium:hover {
  transform: translateY(-4px);
}

/* Ancienne bannière 50vh (si tu l’utilises encore) */
.banner-50vh {
  position: relative;
  height: 50vh;
  background: url("assets/img/banner-hero.jpg") center/cover no-repeat;
}

.banner-50vh::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* =========================================================
   TÉMOIGNAGES CARROUSEL
========================================================= */

.testimonial-box {
  max-width: 680px;
  margin: 0 auto;
}

.premium-card {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  padding: 35px 32px 30px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(2, 86, 255, 0.25);
  box-shadow: 0 25px 70px rgba(2, 86, 255, 0.28);
  text-align: center;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.premium-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 36px 90px rgba(2, 86, 255, 0.38);
}

.testimonial-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--blue-main);
  margin-bottom: 18px;
  box-shadow: 0 14px 35px rgba(2, 86, 255, 0.45);
}

.testimonial-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-main);
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333f50;
  font-style: italic;
  margin-bottom: 14px;
}

.stars {
  font-size: 1.2rem;
  color: gold;
  letter-spacing: 3px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: rgba(2, 86, 255, 0.25);
  transition: 0.3s;
}

.carousel-indicators .active {
  width: 34px;
  background-color: var(--blue-main);
}

/* =========================================================
   DESTINATIONS & APPARTEMENTS
========================================================= */

#destinations {
  background: #020617;
}

.destination-card-premium {
  position: relative;
  height: 280px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.destination-card-premium:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 25px 80px rgba(2, 86, 255, 0.35);
}

.destination-card-premium .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 35%,
    rgba(2, 86, 255, 0.85)
  );
  opacity: 0.85;
  transition: opacity 0.45s ease;
}

.destination-card-premium:hover .overlay {
  opacity: 0.25;
}

.destination-card-premium .content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: white;
  z-index: 3;
  transform: translateY(20px);
  transition: transform 0.45s ease;
}

.destination-card-premium:hover .content {
  transform: translateY(0);
}

.destination-card-premium h4 {
  font-size: 1.4rem;
  font-weight: 700;
}

.destination-card-premium p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Appartements */
.apartment-premium-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: pointer;
  position: relative;
}

.apartment-premium-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 80px rgba(2, 86, 255, 0.45);
}

.apartment-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

.apartment-premium-card:hover .apartment-img {
  transform: scale(1.08);
}

.apartment-info {
  padding: 18px;
}

.apartment-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.apartment-location {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue-main);
  margin-bottom: 6px;
}

.apartment-description {
  font-size: 0.86rem;
  color: #6b7280;
  min-height: 54px;
}

.apartment-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: var(--blue-main);
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-view {
  padding: 6px 14px;
  background: var(--blue-main);
  color: white;
  border-radius: 18px;
  font-size: 0.8rem;
  transition: 0.25s;
}

.btn-view:hover {
  background: #003bbd;
}

.badge-type {
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 14px;
  font-weight: 600;
}

.badge-type.premium {
  background: #dbeafe;
  color: var(--blue-main);
}
.badge-type.classic {
  background: #fff0c9;
  color: #b45309;
}
.badge-type.vip {
  background: #fef3c7;
  color: #b91c1c;
}

/* =========================================================
   CONTACT PREMIUM
========================================================= */

.contact-premium {
  position: relative;
  padding: 90px 0;
  background: url("../img/contact-bg.jpg") center/cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 86, 255, 0.75), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(6px);
}

.contact-premium .container {
  position: relative;
  z-index: 3;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-info-list .info-item {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-list .icon {
  font-size: 1.2rem;
}

.email {
  color: #fff;
  text-decoration: underline;
  opacity: 0.85;
}

.email:hover {
  opacity: 1;
}

.btn-contact-premium {
  background: #25d366;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact-premium:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
}

.btn-contact-outline {
  background: transparent;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  border: 2px solid white;
  font-weight: 600;
  transition: 0.3s;
}

.btn-contact-outline:hover {
  background: white;
  color: black;
  transform: translateY(-3px);
}

.contact-form-card {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.premium-input {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  border: none;
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.premium-input:focus {
  border: 2px solid var(--blue-main);
  box-shadow: none;
}

.btn-submit-premium {
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--blue-main), #003bbd);
  border: none;
  border-radius: 40px;
  font-weight: 600;
  color: white;
  transition: 0.3s;
}

.btn-submit-premium:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 35px rgba(2, 86, 255, 0.55);
}

.map-box {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 14px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
}

/* Buttons full width sur mobile */
@media (max-width: 768px) {
  .btn-contact-premium,
  .btn-contact-outline {
    width: 100%;
    text-align: center;
  }
}

/* =========================================================
   WHATSAPP FLOAT & BACK TO TOP
========================================================= */

.whatsapp-floating {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: #fff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s, background 0.3s;
  animation: pulseWhats 0.9s infinite alternate;
  cursor: pointer;
}

.whatsapp-floating:hover {
  transform: scale(1.12) translateY(-4px);
  background: #1ebe5c;
}

@keyframes pulseWhats {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow: 0 0 18px 12px rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(2, 86, 255, 0.95);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: 0.35s;
  box-shadow: 0 12px 25px rgba(2, 86, 255, 0.45);
}

.back-to-top:hover {
  transform: translateY(-6px);
  background: #003bbd;
}

/* =========================================================
   FOOTER PREMIUM
========================================================= */

.footer-premium {
  background: #020b24;
  color: #d1d5db;
  padding: 70px 0 40px;
  margin-top: 50px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-main), #003bbd);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-links li,
.footer-contact li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4da3ff;
  padding-left: 6px;
}

.footer-contact i {
  margin-right: 8px;
  color: #4da3ff;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--blue-main);
  transform: translateY(-5px);
}

.footer-separator {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 25px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}

/* =========================================================
   ANIMATIONS AU SCROLL (data-animate)
========================================================= */

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateX(24px);
}

[data-animate="fade-left"].animated {
  transform: translateX(0);
}

[data-animate="fade-right"] {
  transform: translateX(-24px);
}

[data-animate="fade-right"].animated {
  transform: translateX(0);
}

[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate="zoom-in"].animated {
  transform: scale(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.8;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom strong {
  color: #4da3ff;
  font-weight: 700;
}

/* Centré en mobile */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 6px;
  }
}
/* ===== VIDEO TESTIMONIALS PREMIUM ===== */
.video-testimonials {
  background: linear-gradient(135deg,#ffffff,#f8fafc);
  padding: 90px 0;
}

/* ===== VIDEO CARDS PREMIUM ===== */
.video-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16/9;
  margin: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 55px rgba(2,86,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform .35s ease, box-shadow .35s ease;
}

.video-frame:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 70px rgba(2,86,255,0.55);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 👈 pour ne plus couper les visages */
  background: #000;
}

/* NOM DES AUTEURS */
.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0256ff;
  margin-top: 12px;
}

/* MOBILE OPTIMISÉ */
@media (max-width: 768px) {
  .video-frame{
    max-width: 310px;
    border-radius: 18px;
  }
  .testimonial-name {
    font-size: .92rem;
  }
}


/* Controls premium */
.carousel-control-icon {
  background: rgba(255,255,255,0.75);
  color: #0256ff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  transition:.35s;
}

.carousel-control-icon:hover {
  background: #0256ff;
  color:white;
  transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 768px) {
  .video-frame {
    border-radius: 14px;
  }
  .testimonial-name {
    font-size: 1rem;
  }
}

/* =========================================================
   RESPONSIVE GLOBAL
========================================================= */

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 96px;
    text-align: center;
  }
  .hero-section h1,
  .hero-section p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section .d-flex {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-img-wrapper {
    height: 300px;
  }
  .about-stats {
    justify-content: center;
  }
  .whatsapp-floating {
    width: 56px;
    height: 56px;
    font-size: 26px;
    bottom: 20px;
  }
  .circle-container {
    width: 120px;
    height: 120px;
  }
  .circle-value {
    font-size: 1.6rem;
  }
  .badge-hero {
    margin: 0 auto 14px auto;
    font-size: 0.72rem;
    padding: 0.5rem 1.2rem;
  }
  .logo-img {
    height: 34px;
  }
}

@media (max-width: 575.98px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
/* Banner Responsive text sizing */
@media (max-width: 992px) {
  .banner-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }
  .banner-subtitle {
    font-size: 1.05rem;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 1.8rem;
    line-height: 1.2;
    padding: 0 12px;
  }
  .banner-subtitle {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.6rem;
  }
  .banner-subtitle {
    font-size: 0.88rem;
  }
  .btn-offer-premium {
    margin-bottom: 80px !important;
  }
}
