/* ─── CSS Variables ─── */
:root {
  --navy: #0b1629;
  --navy-mid: #132040;
  --navy-light: #1a2d56;
  --gold: #c9921a;
  --gold-light: #e8b840;
  --gold-pale: #f5d98a;
  --white: #ffffff;
  --text: #e6ecf8;
  --muted: #8a9bc0;
  --border: rgba(201, 146, 26, 0.2);
  --glass: rgba(19, 32, 64, 0.7);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 4px 24px rgba(201, 146, 26, 0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: "Playfair Display", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* ─── Reset / Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ─── Typography helpers ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.divider-gold {
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 22px;
}
.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}
.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  cursor: pointer;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 146, 26, 0.4);
  color: var(--navy);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 146, 26, 0.5);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: rgba(201, 146, 26, 0.12);
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
  white-space: nowrap;
  cursor: pointer;
}
.btn-white:hover {
  transform: translateY(-2px);
  background: var(--text);
  color: var(--navy);
}

/* ─── Geometric background pattern ─── */
.geo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.geo-bg::before,
.geo-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 146, 26, 0.12) 0%,
    transparent 70%
  );
}
.geo-bg::before {
  width: 600px;
  height: 600px;
  top: -150px;
  right: -100px;
}
.geo-bg::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -80px;
}

/* ─── Scroll reveal ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="100"] {
  transition-delay: 0.1s;
}
[data-reveal][data-delay="200"] {
  transition-delay: 0.2s;
}
[data-reveal][data-delay="300"] {
  transition-delay: 0.3s;
}
[data-reveal][data-delay="400"] {
  transition-delay: 0.4s;
}
[data-reveal][data-delay="500"] {
  transition-delay: 0.5s;
}

/* ════════════════════════════
         TOP BAR
      ════════════════════════════ */
.top-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  padding: 7px 0;
}
.top-bar__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.top-bar__info a,
.top-bar__info span {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar__info a:hover {
  color: var(--gold-light);
}
.top-bar__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.top-bar__social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.top-bar__social a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ════════════════════════════
         HEADER / NAVBAR
      ════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 22, 41, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  background: rgba(11, 22, 41, 0.98);
}
.navbar-brand {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.navbar-brand .brand-accent {
  color: var(--gold);
}
.navbar-brand span.brand-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-top: -2px;
}
.navbar-nav .nav-link {
  color: rgba(230, 236, 248, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light);
  background: rgba(201, 146, 26, 0.08);
}
.dropdown-menu {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
}
.dropdown-item {
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.88rem;
  padding: 9px 14px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(201, 146, 26, 0.1);
  color: var(--gold-light);
}
.navbar-toggler {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.navbar-toggler-icon {
  filter: invert(1);
}
.nav-cta {
  margin-left: 8px;
}

/* ════════════════════════════
         HERO SLIDER
      ════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #060d1a 0%, #0d1e38 50%, #0f1f3d 100%);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9921A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 146, 26, 0.15);
  top: -100px;
  right: -80px;
}
.hero-orb-2 {
  width: 350px;
  height: 350px;
  background: rgba(30, 60, 120, 0.3);
  bottom: -80px;
  left: -60px;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 146, 26, 0.15);
  border: 1px solid rgba(201, 146, 26, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-badge-pill i {
  font-size: 0.65rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}
.hero-trust__avatars {
  display: flex;
}
.hero-trust__avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: -10px;
}
.hero-trust__avatars span:first-child {
  margin-left: 0;
}
.hero-trust__text {
  font-size: 0.85rem;
  color: var(--muted);
}
.hero-trust__text strong {
  color: var(--white);
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-3d {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  width: 320px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 146, 26, 0.1);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.5s ease;
}
.hero-card-3d:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.hero-card-3d__chip {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.hero-card-3d__chip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}
.hero-card-3d__num {
  font-family: "Courier New", monospace;
  letter-spacing: 0.18em;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.hero-card-3d__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hero-card-3d__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-card-3d__brand {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 700;
}
.hero-float-stat {
  position: absolute;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.hero-float-stat__val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-float-stat__lbl {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3px;
}
.hero-float-1 {
  top: 10%;
  left: -30px;
  animation: floatY 3.5s ease-in-out infinite;
}
.hero-float-2 {
  bottom: 12%;
  right: -20px;
  animation: floatY 4s ease-in-out infinite 0.8s;
}
.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 0 4px;
  transition: var(--transition);
}
.carousel-indicators button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 146, 26, 0.15);
  border: 1px solid var(--border);
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-prev {
  left: 20px;
}
.carousel-control-next {
  right: 20px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
}

/* ════════════════════════════
         CARD BOX SECTION
      ════════════════════════════ */
.cardbox-section {
  padding: 0 0 90px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}
.cardbox-item {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cardbox-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(201, 146, 26, 0.08), transparent);
  transition: opacity 0.4s;
}
.cardbox-item:hover::before {
  opacity: 1;
}
.cardbox-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 146, 26, 0.4);
}
.cardbox-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 146, 26, 0.12);
  border: 1px solid rgba(201, 146, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.cardbox-item:hover .cardbox-icon {
  background: var(--gold);
  color: var(--navy);
}
.cardbox-item h5 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1rem;
}
.cardbox-item p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════
         ABOUT SECTION
      ════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: var(--navy);
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  height: 500px;
  box-shadow: var(--shadow);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 22px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-img-badge .val {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}
.about-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.about-check-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.about-check-list li strong {
  color: var(--white);
}

/* ════════════════════════════
         SERVICES SECTION
      ════════════════════════════ */

.services-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.service-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-num {
  font-size: 2.8rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: rgba(201, 146, 26, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.service-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-link i {
  transition: transform 0.3s;
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* Image des services */
.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden; /* empêche l'image de déborder de la bordure arrondie */
}
.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 28px 32px 32px;
  flex: 1;
}
/* Repositionnement du numéro */
.service-num {
  position: absolute;
  top: 220px;
  right: 24px;
  z-index: 2;
}

/* ════════════════════════════
         OBJECTIFS SECTION
      ════════════════════════════ */
.objectifs-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.objectif-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}
.objectif-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 146, 26, 0.12);
  border: 1px solid rgba(201, 146, 26, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}
.objectif-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.objectif-body p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}
.objectif-visual {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.rate-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.82rem;
}
.rate-bar-label span:first-child {
  color: var(--text);
  font-weight: 500;
}
.rate-bar-label span:last-child {
  color: var(--gold);
  font-weight: 700;
}
.rate-bar {
  height: 7px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  margin-bottom: 18px;
  overflow: hidden;
}
.rate-bar__fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════
   OBJECTIFS – IMAGE DE FOND SOMBRE
   ══════════════════════════════════ */
.objectifs-section {
  position: relative;
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  overflow: hidden;

  /* Photographie d’ambiance avec un fort assombrissement */
  background:
    linear-gradient(rgba(11, 22, 41, 0.88) 0%, rgba(11, 22, 41, 0.94) 100%),
    url("../images/banner/banner5.jpg") center / cover no-repeat;
}

/* Supprimer ou masquer l’ancien motif géométrique s’il existe */
.objectifs-section .geo-bg {
  display: none; /* on retire le fond SVG s’il n’est plus souhaité */
}

/* Lueur chaude en surimpression (optionnelle) */
.objectifs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 30% 70%,
    rgba(201, 146, 26, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.objectifs-section .geo-bg {
  opacity: 0.25;
  pointer-events: none;
}

/* ════════════════════════════
         POURQUOI NOUS
      ════════════════════════════ */
.whyus-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.whyus-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 26px;
  transition: var(--transition);
}
.whyus-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.whyus-card__ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201, 146, 26, 0.1);
  border: 1px solid rgba(201, 146, 26, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.whyus-card:hover .whyus-card__ico {
  background: var(--gold);
  color: var(--navy);
}
.whyus-card h6 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.whyus-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.whyus-side-stat {
  text-align: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.whyus-side-stat .big {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.whyus-side-stat .lbl {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 5px;
}

/* ════════════════════════════
         SIMULATEUR
      ════════════════════════════ */
.simulator-section {
  padding: 100px 0;
  background: var(--navy);
}
.sim-card {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.sim-input-group {
  margin-bottom: 22px;
}
.sim-input-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.sim-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.sim-input:focus {
  border-color: var(--gold);
  background: rgba(201, 146, 26, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 146, 26, 0.12);
}
.sim-result {
  background: linear-gradient(
    135deg,
    rgba(201, 146, 26, 0.12),
    rgba(201, 146, 26, 0.05)
  );
  border: 1px solid rgba(201, 146, 26, 0.3);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
  display: none;
}
.sim-result.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}
.sim-result__amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.sim-result__label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}
.sim-result__detail {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.sim-result__detail-item {
  flex: 1;
  min-width: 130px;
}
.sim-result__detail-item .val {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.sim-result__detail-item .lbl {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ══════════════════════════════════
   SIMULATEUR – FOND SOMBRE
   ══════════════════════════════════ */
.simulator-section {
  position: relative;
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  overflow: hidden;

  /* Image de fond assombrie avec un dégradé */
  background:
    linear-gradient(rgba(11, 22, 41, 0.88) 0%, rgba(11, 22, 41, 0.92) 100%),
    url("../images/image2.jpg") center / cover no-repeat;
}

/* Lueur subtile dorée en surimpression */
.simulator-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 40%,
    rgba(201, 146, 26, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Tous les éléments intérieurs (carte simulateur, blocs, etc.) 
   conservent leur positionnement existant grâce au z-index. */
.sim-card {
  position: relative;
  z-index: 2;
}

/* ════════════════════════════
         TESTIMONIALS
      ════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
  background: var(--navy-mid);
}
.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  margin: 10px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  font-family: "Georgia", serif;
}
.testimonial-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.92rem;
}
.testimonial-author-role {
  font-size: 0.78rem;
  color: var(--muted);
}
/* Owl Carousel arrows */
.owl-nav button {
  display: none !important;
}
.owl-dots {
  margin-top: 30px;
  text-align: center;
}
.owl-dot span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
  transition: var(--transition);
}
.owl-dot.active span {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* ════════════════════════════
         COUNTER SECTION
      ════════════════════════════ */
.counter-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--navy-light) 0%,
    var(--navy-mid) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.counter-item {
  text-align: center;
  padding: 16px;
}
.counter-value {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.counter-suffix {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.7em;
}
.counter-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.counter-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 auto;
}

/* ════════════════════════════
         FAQ SECTION
      ════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--navy);
}
.faq-accordion .accordion-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 20px 24px;
  box-shadow: none;
  font-family: var(--font-body);
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-light);
  background: rgba(201, 146, 26, 0.06);
}
.faq-accordion .accordion-button::after {
  filter: invert(1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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");
}
.faq-accordion .accordion-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  padding: 0 24px 22px;
  background: rgba(201, 146, 26, 0.03);
}

/* ════════════════════════════
         CTA SECTION
      ════════════════════════════ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-light) 0%, #1a3060 100%);
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9921A' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}
.cta-desc {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 18px 0 34px;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ══════════════════════════════════
   CTA SECTION AVEC IMAGE DE FOND
   ══════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 80px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  overflow: hidden;

  /* Image de fond sombre avec double overlay */
  background:
    linear-gradient(rgba(11, 22, 41, 0.88) 0%, rgba(11, 22, 41, 0.92) 100%),
    url("../images/image.jpg") center / cover no-repeat;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 70% 30%,
    rgba(201, 146, 26, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}
/* ════════════════════════════
         FOOTER
      ════════════════════════════ */
.footer {
  background: #060c18;
  padding: 70px 0 0;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .accent {
  color: var(--gold);
}
.footer-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 16px 0 22px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 9px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
}
.footer-contact-item p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.footer-contact-item a {
  color: var(--muted);
}
.footer-contact-item a:hover {
  color: var(--gold-light);
}
.footer-divider {
  border-color: rgba(255, 255, 255, 0.07);
  margin: 50px 0 0;
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  color: rgba(138, 155, 192, 0.55);
  font-size: 0.8rem;
  margin: 0;
}
.footer-bottom a {
  color: rgba(138, 155, 192, 0.55);
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ════════════════════════════
         ANIMATIONS
      ════════════════════════════ */
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}
.pulse-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse-ring 1.8s ease-out infinite;
}

/* ════════════════════════════
         RESPONSIVE
      ════════════════════════════ */
@media (max-width: 991px) {
  .hero-slide {
    min-height: auto;
    padding: 80px 0;
  }
  .hero-visual {
    margin-top: 50px;
  }
  .hero-card-3d {
    transform: none;
    width: 280px;
  }
  .hero-float-1 {
    left: -10px;
  }
  .hero-float-2 {
    right: -5px;
  }
  .whyus-grid {
    grid-template-columns: 1fr;
  }
  .about-img-badge {
    right: 0;
    bottom: -10px;
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-visual {
    display: none;
  }
  .top-bar {
    display: none;
  }
  .sim-card {
    padding: 24px;
  }
  .counter-divider {
    display: none;
  }
  .cardbox-section {
    margin-top: 0;
  }
}
