/* ========== RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #071526;
  --navy2: #0d2040;
  --navy3: #163366;
  --gold: #b8935a;
  --gold2: #d4ab72;
  --gold3: #f0cc96;
  --cream: #f8f4ed;
  --white: #ffffff;
  --gray1: #f2f0eb;
  --gray2: #ddd8ce;
  --gray3: #9e9b94;
  --text: #1a1a1a;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: radial-gradient(circle at 12% 10%, rgba(184, 147, 90, 0.12), transparent 18%),
              radial-gradient(circle at 85% 8%, rgba(7, 21, 38, 0.08), transparent 20%),
              radial-gradient(circle at 50% 90%, rgba(20, 62, 113, 0.08), transparent 22%),
              var(--white);
  color: var(--text);
  overflow-x: hidden;
  min-height: 90vh;
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}

/* Effet de grain */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjciIG51bU9jdGF2ZXM9IjMiLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWx0ZXI9InVybCgjZikiIG9wYWNpdHk9IjAuMDMiLz48L3N2Zz4=');
  background-repeat: repeat;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ========== CURSOR ========== */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}

#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--transition), width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-hover #cursor {
  width: 6px;
  height: 6px;
  background: var(--gold3);
}

.cursor-hover #cursor-ring {
  width: 54px;
  height: 54px;
  border-color: var(--gold3);
}

/* ========== LOADER ========== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo-wrapper {
  animation: floatLogo 3s ease-in-out infinite;
  text-align: center;
}

.loader-logo-img {
  width: 100px;
  height: auto;
  max-width: 140px;
  animation: logoScale 1.2s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards,
             logoPulse 2s infinite 0.5s,
             logoGlow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(184, 147, 90, 0.5));
  transform-origin: center;
  border-radius: 50px;
}

.loader-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 800;
  margin-top: 1rem;
  animation: fadeUp 1s 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.loader-logo-text span {
  color: var(--white);
  font-weight: 700;
}

.loader-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: growLine 2s 0.5s ease-out forwards;
}

.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}

@keyframes logoPulse {
  0% { filter: drop-shadow(0 0 0 rgba(184, 147, 90, 0.6)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 20px rgba(184, 147, 90, 0.8)); transform: scale(1.05); }
  100% { filter: drop-shadow(0 0 0 rgba(184, 147, 90, 0)); transform: scale(1); }
}

@keyframes logoScale {
  0% { transform: scale(0.2) rotate(-10deg); opacity: 0; }
  60% { transform: scale(1.1) rotate(2deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 2px var(--gold)); }
  50% { filter: drop-shadow(0 0 15px var(--gold3)); }
  100% { filter: drop-shadow(0 0 2px var(--gold)); }
}

@keyframes floatLogo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes growLine {
  from { width: 0; opacity: 0; }
  to { width: 220px; opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== NAVIGATION ========== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(7, 21, 38, 0.96);
  backdrop-filter: blur(12px);
  height: 66px;
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.nav-logo img {
  width: 40px;
  height: auto;
  border-radius: 20px;
}

.nav-logo span {
  color: var(--white);
  font-size: 0.9rem;
}

.nav-center {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-center a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.3rem 0;
  position: relative;
  transition: color 0.3s;
  text-decoration: bold;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--transition);
}

.nav-center a:hover {
  color: var(--gold);
}

.nav-center a:hover::after,
.nav-center a.active::after {
  width: 100%;
}

.nav-center a.active {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.lang-btn {
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.nav-quote {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  border-radius: 20px;
}

.nav-quote:hover {
  background: var(--gold);
  color: var(--navy);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ========== PAGES ========== */
.page {
  display: none;
  min-height: 70vh;
}

.page.active {
  display: block;
  animation: pageFade 0.5s ease forwards;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== HERO CARROUSEL ========== */
.hero-carousel {
  position: relative;
  width: 100%;
  min-height: 75vh;
  max-height: 80vh;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 85vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 3;
  padding: 0 5%;
  max-width: 940px;
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide .hero-eyebrow,
.hero-slide .hero-h1 .line,
.hero-slide .hero-sub,
.hero-slide .hero-btns {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-slide.active .hero-h1 .line:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide.active .hero-h1 .line:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-slide.active .hero-h1 .line:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-slide.active .hero-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(184, 147, 90, 0.7);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-prev:hover,
.hero-next:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.hero-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

.hero-dot:hover {
  background: var(--gold);
  transform: scale(1.2);
}

/* ========== HERO STATIQUE (fallback) ========== */
#hero {
  position: relative;
  min-height: 65vh;
  max-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  animation: kenBurns 14s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 21, 38, 0.92) 45%, rgba(117, 126, 136, 0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 940px;
  padding-top: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: slideRight 1s 1.8s forwards;
}

.eyebrow-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  font-weight: 400;
  opacity: 0;
  animation: slideRight 1s 2s forwards;
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-h1 .line {
  overflow: hidden;
  display: block;
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
  margin: 1.5rem 0 2.5rem;
  opacity: 0;
  animation: slideRight 1s 2.2s forwards;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideRight 1s 2.4s forwards;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.4rem;
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 6px;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold3);
  transition: left 0.4s var(--transition);
}

.btn-gold:hover::before {
  left: 0;
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  border-radius: 6px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 3s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--cream);
  padding: 1.8rem 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(19, 13, 4, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color:black rgba(15, 13, 13, 0.315);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.trust-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  animation: spin 4s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 6rem 5%;
  background: var(--white);
}

.services-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}

.s-intro-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.s-intro-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--navy);
  font-weight: 400;
}

.s-intro-text {
  color: var(--gray3);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 1rem;
}

/* ========== SERVICE CARDS ========== */
.svc-card {
  background: linear-gradient(135deg, var(--white) 0%, #faf8f4 100%);
  padding: 1.8rem 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(184, 147, 90, 0.15);
  box-shadow: 0 10px 30px rgba(5, 16, 29, 0.06);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  animation: cardPulseGlow 3s infinite ease-in-out;
  transform-style: preserve-3d;
  perspective: 800px;
}

.svc-card:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(2deg) scale(1.02);
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 147, 90, 0.15), transparent);
  transition: left 0.6s ease;
  z-index: 0;
  pointer-events: none;
}

.svc-card:hover::before {
  left: 100%;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom-right-radius: 20px;
  transition: width 0.3s, height 0.3s;
  pointer-events: none;
}

.svc-card:hover::after {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at bottom right, rgba(184, 147, 90, 0.15), transparent);
}

.svc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.svc-icon-wrap {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  transform: translateZ(15px);
}

.svc-card:hover .svc-icon-wrap {
  transform: translateZ(25px) scale(1.05);
}

.svc-icon {
  font-size: 1.4rem;
  transition: transform 0.3s, filter 0.3s;
}

.svc-card:hover .svc-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(184, 147, 90, 0.3));
}

.svc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
  transform: translateZ(10px);
  transition: transform 0.3s, color 0.3s;
  position: relative;
  z-index: 1;
}

.svc-card:hover .svc-title {
  transform: translateZ(20px);
  color: var(--gold);
}

.svc-text {
  font-size: 0.85rem;
  color: var(--gray3);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.svc-card:hover .svc-text {
  color: var(--text);
}

.svc-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  font-weight: 500;
  transition: gap 0.3s;
  margin-top: auto;
  transform: translateZ(5px);
  position: relative;
  z-index: 1;
}

.svc-card:hover .svc-link {
  gap: 0.8rem;
  transform: translateZ(15px);
}

@keyframes cardPulseGlow {
  0% {
    background: radial-gradient(ellipse at 30% 40%, #ffffff 0%, #f8f4ed 100%);
    box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border-color: rgba(184, 147, 90, 0.15);
    transform: perspective(500px) translateZ(0) rotateX(0deg);
  }
  25% {
    background: radial-gradient(ellipse at 70% 60%, #fffcf5 0%, #ede5d5 100%);
    box-shadow: 0 5px 15px -8px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(184, 147, 90, 0.3);
    transform: perspective(500px) translateZ(-15px) rotateX(1deg);
  }
  50% {
    background: radial-gradient(ellipse at 50% 50%, #ffffff 0%, #fef9ef 100%);
    box-shadow: 0 25px 40px -15px rgba(184, 147, 90, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 0 2px rgba(184, 147, 90, 0.2);
    border-color: rgba(184, 147, 90, 0.5);
    transform: perspective(500px) translateZ(12px) rotateX(-1deg);
  }
  75% {
    background: radial-gradient(ellipse at 80% 30%, #fdf9f0 0%, #e8dfcf 100%);
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    border-color: rgba(184, 147, 90, 0.35);
    transform: perspective(500px) translateZ(-8px) rotateX(0.5deg);
  }
  100% {
    background: radial-gradient(ellipse at 30% 40%, #ffffff 0%, #f8f4ed 100%);
    box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    border-color: rgba(184, 147, 90, 0.15);
    transform: perspective(500px) translateZ(0) rotateX(0deg);
  }
}

/* Pause de l'animation au survol */
.svc-card:hover {
  animation-play-state: paused;
}

/* ========== CAROUSEL (HOME & SERVICES PAGE) ========== */
.carousel-container,
.services-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 40px;
}

.carousel-wrapper,
.services-carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-wrapper::-webkit-scrollbar,
.services-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-track,
.services-carousel-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.carousel-track .svc-card,
.services-carousel-track .svc-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.carousel-prev,
.carousel-next,
.services-carousel-prev,
.services-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.2s;
}

.carousel-prev,
.services-carousel-prev { left: 0; }
.carousel-next,
.services-carousel-next { right: 0; }

.carousel-prev:hover,
.carousel-next:hover,
.services-carousel-prev:hover,
.services-carousel-next:hover {
  background: var(--white);
  color: var(--gold);
}

.carousel-dots,
.services-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot,
.services-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray2);
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.carousel-dot.active,
.services-carousel-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: var(--gold);
  padding: 2.5rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(7, 21, 38, 0.2);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.stat-suffix {
  font-size: 1.4rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 21, 38, 0.6);
  margin-top: 0.5rem;
}

/* ========== WHO WE ARE (HOME) ========== */
/* Utilise les mêmes classes que about-section pour la cohérence */
.home-who-section {
  padding: 6rem 5%;
  background: var(--navy);
}

.home-who-section .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.home-who-section .about-img-wrap {
  position: relative;
  padding-bottom: 30px;
  padding-left: 20px;
}

.home-who-section .about-img-main {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.home-who-section .about-img-accent {
  position: absolute;
  bottom: 0px;
  right: -20px;
  width: 155px;
  height: 125px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

.home-who-section .about-badge {
  position: absolute;
  top: 30px;
  left: 0px;
  background: #b8935a;
  color: #fff;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(184,147,90,.45);
  z-index: 2;
}

.home-who-section .about-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #b8935a;
  border: 1px solid #b8935a;
  padding: .3rem .9rem;
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.home-who-section .about-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.home-who-section .about-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.78;
  margin-bottom: 1.6rem;
}

/* ========== HOME BLOG SECTION ========== */
/* Utilise les mêmes classes que blog-list-section */
.home-blog-section {
  padding: 6rem 5%;
  background: #f7f4ef;
}

.home-blog-section .services-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Réutilisation des classes blog-card */
.home-blog-section .blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
}

.home-blog-section .blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 42px rgba(0,0,0,.13);
}

.home-blog-section .blog-card-img-wrap {
  overflow: hidden;
  position: relative;
  height: 220px;
}

.home-blog-section .blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.home-blog-section .blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.home-blog-section .blog-card-body {
  padding: 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-blog-section .blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  color: #999;
  margin-bottom: .85rem;
  font-family: 'DM Sans', sans-serif;
}

.home-blog-section .blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: #0d2240;
  line-height: 1.35;
  margin-bottom: .7rem;
  font-weight: 400;
}

.home-blog-section .blog-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: #666;
  line-height: 1.68;
  flex: 1;
  margin: 0;
}

.home-blog-section .blog-card-cta {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #b8935a;
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: 1.3rem;
}

.home-blog-more {
  text-align: center;
  margin-top: 3rem;
}

/* ========== HOME SIDEBAR STATS ========== */
.home-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid-home {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.home-stats-sidebar {
  flex: 0 0 auto;
  min-width: 0;
  background: var(--gold);
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.home-stats-sidebar .stats-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.home-stats-sidebar .stat-item {
  flex: 1 1 0;
  min-width: 70px;
  background: var(--white);
  border-radius: 12px;
  padding: 0.8rem 0.5rem;
  text-align: center;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-stats-sidebar .stat-item::after {
  display: none;
}

.home-stats-sidebar .stat-number {
  font-size: 1.4rem;
  justify-content: center;
  gap: 0.1rem;
}

.home-stats-sidebar .stat-suffix {
  font-size: 0.9rem;
}

.home-stats-sidebar .stat-label {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: linear-gradient(135deg, #0a1a2f 0%, #0c1f36 100%);
  padding: 5rem 5%;
}

.testi-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.testi-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 3rem auto 0;
  overflow: hidden;
}

.testi-carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.testi-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.testi-track {
  display: flex;
  gap: 2rem;
  padding: 0.5rem 0;
}

.testi-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(184,147,90,0.2);
  transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(184,147,90,0.3);
}

.testi-quote-icon {
  font-size: 3rem;
  color: var(--gold);
  font-family: serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testi-stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testi-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-name {
  font-weight: 700;
  color: var(--white);
  font-family: 'Syne', sans-serif;
}

.testi-role {
  font-size: 0.8rem;
  color: #aaa;
}

.testi-prev,
.testi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  color: var(--navy);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-prev:hover,
.testi-next:hover {
  background: var(--white);
  color: var(--gold);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #666;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.testi-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 6px;
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f4 100%);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(184, 147, 90, 0.03), transparent 60%);
  pointer-events: none;
}

.partners-header {
  margin-bottom: 3rem;
  position: relative;
}

.partners-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(184, 147, 90, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.partners-title {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  color: var(--navy);
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.partners-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1rem auto 0;
}

.partners-carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.partners-carousel-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0.5rem;
  cursor: grab;
}

.partners-carousel-wrapper:active {
  cursor: grabbing;
}

.partners-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.partners-track {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 20px;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  position: relative;
  min-width: 100px;
  opacity: 0;
  animation: logoReveal 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.partner-logo:nth-child(1) { animation-delay: 0s; }
.partner-logo:nth-child(2) { animation-delay: 0.05s; }
.partner-logo:nth-child(3) { animation-delay: 0.1s; }
.partner-logo:nth-child(4) { animation-delay: 0.15s; }
.partner-logo:nth-child(5) { animation-delay: 0.2s; }
.partner-logo:nth-child(6) { animation-delay: 0.25s; }
.partner-logo:nth-child(7) { animation-delay: 0.3s; }
.partner-logo:nth-child(8) { animation-delay: 0.35s; }

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.partner-logo img {
  max-height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(40%) brightness(0.95);
  opacity: 0.7;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.partner-logo:hover {
  transform: translateY(-8px) scale(1.05);
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.partner-logo::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(184, 147, 90, 0.15), transparent);
  border-radius: 30px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  z-index: -1;
}

.partner-logo:hover::before {
  opacity: 1;
  transform: scale(1);
}

.partner-logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.partner-logo:hover::after {
  left: 150%;
}

.partners-prev,
.partners-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.partners-prev { left: 0; }
.partners-next { right: 0; }

.partners-prev:hover,
.partners-next:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.partners-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.partners-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.partners-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(184, 147, 90, 0.5);
}

/* ========== ABOUT PAGE ========== */
.about-section {
  padding: 5rem 10%;
  background: var(--navy);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-left-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  animation: cardPulseGlow 3s infinite ease-in-out;
}

.about-img-accent {
  width: 200px;
  height: 140px;
  object-fit: cover;
  position: absolute;
  bottom: 25px;
  right: 25px;
  border: 5px solid var(--navy);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-radius: 18px;
  z-index: 2;
  animation: cardPulseGlow 3s infinite ease-in-out;
}

.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 100px;
  height: 100px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border: 5px solid var(--navy);
}

.ab-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
}

.ab-text {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-top: 0.2rem;
}

.about-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid rgba(184,147,90,0.4);
}

.about-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.25;
}

.about-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.about-stats {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 28px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.about-stats .stats-grid {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.about-stats .stat-item {
  flex: 1 1 0;
  min-width: 100px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 1.2rem 0.6rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation: statCardAppear 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.about-stats .stat-item:nth-child(1) { animation-delay: 0.1s; }
.about-stats .stat-item:nth-child(2) { animation-delay: 0.2s; }
.about-stats .stat-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes statCardAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-stats .stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-stats .stat-item::after {
  display: none;
}

.about-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
}

.about-stats .stat-suffix {
  font-size: 1rem;
  color: var(--navy);
}

.about-stats .stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy2);
  margin-top: 0.4rem;
  font-weight: 600;
  opacity: 0.8;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy2), var(--navy));
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184, 147, 90, 0.07);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.nl-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.nl-title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.nl-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
}

.nl-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nl-input {
  flex: 1;
  background: rgba(41, 35, 35, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  color: var(--white);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  outline: none;
}

.nl-input:focus {
  border-color: var(--gold);
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.nl-btn {
  background: var(--gold);
  border: none;
  color: var(--navy);
  padding: 1rem 2.2rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--gold3);
}

.nl-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 1rem;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  padding: 5rem 5% 7rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 28px;
  order: 1;
}

.contact-info {
  order: 2;
}

.contact-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 2rem;
}

.ci-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border-radius: 8px;
}

.ci-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--text);
}

.contact-map {
  width: 100%;
  height: 260px;
  background: var(--gray1);
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 16px;
  animation: mapPulse 4s infinite ease-in;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) contrast(1.1);
}

@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 147, 90, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(184, 147, 90, 0); }
}

.cf-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cf-sub {
  font-size: 0.82rem;
  color: var(--gray3);
  margin-bottom: 2rem;
}

/* ========== FORMULAIRES ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1/-1;
}

.form-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
  border-radius: 12px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--navy2);
  color: var(--white);
}

.form-textarea {
  height: 100px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: 0.5rem;
  grid-column: 1/-1;
}

.form-check input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.form-check label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.form-check label a {
  color: var(--gold);
  text-decoration: none;
}

.submit-btn {
  grid-column: 1/-1;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem;
  border: none;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 12px;
}

.submit-btn:hover {
  background: var(--gold3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .check-circle {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ========== QUOTE PAGE ========== */
.quote-section {
  padding: 5rem 5%;
  background: var(--white);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.quote-left h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.2;
}

.quote-left p {
  color: var(--gray3);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.quote-benefits {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.qb-item {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.qb-icon {
  width: 38px;
  height: 38px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border-radius: 10px;
}

.qb-text {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.qb-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.quote-form {
  background: var(--navy);
  padding: 2.5rem;
  border-radius: 28px;
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
}

.quote-form .form-input,
.quote-form .form-textarea,
.quote-form .form-select {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

.quote-form .form-textarea {
  height: 90px;
}

/* ========== BLOG LIST ========== */
.blog-list-section {
  background: var(--white);
  padding: 5rem 5%;
}

.blog-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(10,20,60,.09);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ece4;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(10,20,60,.16);
}

.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
}

.blog-card-body {
  padding: 1.8rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
}

.blog-card-date {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
}

.blog-card-read {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  color: #999;
}

.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .8rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.4rem;
}

.blog-card-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}

.blog-card:hover .blog-card-cta {
  gap: .85rem;
}

/* ========== BLOG ARTICLE ========== */
.blog-article {
  background: var(--white);
  padding: 4rem 5% 5rem;
}

.blog-article-inner {
  max-width: 820px;
  margin: 0 auto;
}

.blog-article-lead {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.7;
  border-left: 4px solid var(--gold);
  padding-left: 1.4rem;
  margin-bottom: 2.5rem;
}

.blog-article h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  letter-spacing: -.01em;
}

.blog-article p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 1.5rem 0;
}

.blog-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #444;
  padding: .4rem 0 .4rem 1.6rem;
  position: relative;
}

.blog-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.blog-list-dot {
  list-style: disc;
  padding-left: 1.4rem;
  margin: .5rem 0;
}

.blog-list-dot li {
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: #555;
  margin-bottom: .2rem;
}

.blog-highlight-box {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: #fdf8f0;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  margin: 2rem 0;
}

.bhb-icon { font-size: 1.6rem; margin-top: .1rem; flex-shrink: 0; }

.blog-highlight-box p {
  margin: 0;
  color: #333;
}

.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0 2rem;
}

.blog-info-card {
  background: #f8f6f2;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.bic-icon { font-size: 1.6rem; margin-bottom: .6rem; }

.blog-info-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4rem;
}

.blog-info-card p {
  font-size: .88rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 .4rem;
}

.blog-usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: .8rem;
  margin: 1.2rem 0 2rem;
}

.bug-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #f8f6f2;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 500;
}

.bug-item span { font-size: 1.2rem; }

.blog-cta-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  margin: 3rem 0 2rem;
}

.bcb-check {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
}

.blog-cta-box h3 {
  font-family: 'Syne', sans-serif;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.blog-cta-box p {
  color: #ccc;
  font-size: .93rem;
  margin: 0;
}

.blog-blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--gold);
  font-style: italic;
  border: none;
  margin: .5rem 0 1rem;
  line-height: 1.6;
  padding: 0;
}

.blog-back-btn-wrap {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.blog-back-btn {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.blog-back-btn:hover {
  background: var(--navy);
  color: #fff;
}

/* ========== PAGE HERO (GENERIC) ========== */
.page-hero {
  padding: 140px 5% 70px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(7, 21, 38, 0.85) 0%, rgba(7, 21, 38, 0.55) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero .ph-tag,
.page-hero .ph-title,
.page-hero .ph-sub,
.page-hero .breadcrumb {
  position: relative;
  z-index: 2;
}

.ph-tag {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ph-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
}

.ph-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 1.2rem;
  max-width: 500px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-top: 2rem;
}

.breadcrumb span,
.breadcrumb a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy);
  padding: 5rem 5% 2rem;
  border-top: 1px solid rgba(184, 147, 90, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.footer-brand .logo span {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-soc-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 147, 90, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
}

.footer-soc-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 0.8rem 1.8rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.3s;
}

.wa-cta:hover {
  background: #1da852;
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 900;
  transition: right 0.4s var(--transition);
  padding: 100px 2.5rem 2.5rem;
  border-left: 1px solid rgba(184, 147, 90, 0.1);
}

.mobile-menu.open {
  right: 0;
}

.mob-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mob-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.mob-nav a:hover {
  color: var(--gold);
}

.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 899;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mob-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ========== SPINNER / TOAST ========== */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(7, 21, 38, 0.3);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
  margin: 0 auto;
}

#toast {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 0.83rem;
  z-index: 9999;
  transform: translateX(200%);
  transition: transform 0.4s var(--transition);
  max-width: 300px;
  border-radius: 12px;
}

#toast.show {
  transform: translateX(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .home-flex {
    flex-direction: column;
  }
  .home-stats-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .home-stats-sidebar .stats-grid {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .home-stats-sidebar .stat-item {
    border-bottom: none;
  }
}

@media (max-width: 1024px) {
  .about-inner,
  .home-who-section .about-inner,
  .quote-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .testi-card {
    flex: 0 0 calc(50% - 1rem);
  }
  .about-img-main {
    height: 350px;
  }
  .about-badge {
    width: 85px;
    height: 85px;
  }
  .ab-num {
    font-size: 1.8rem;
  }
  .partner-logo img {
    max-height: 65px;
    max-width: 130px;
  }
  .partners-carousel-container {
    padding: 0 35px;
  }
}

@media (max-width: 900px) {
  .home-who-section .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-who-section .about-img-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  .home-blog-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }
  .about-img-accent {
    width: 35%;
    bottom: 10px;
    right: 10px;
  }
  .about-badge {
    top: 1rem;
    left: -0.8rem;
    width: 70px;
    height: 70px;
  }
  .about-stats .stats-grid {
    gap: 0.8rem;
  }
}

@media (max-width: 768px) {
  .nav-center,
  .nav-right .nav-quote {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  
  #hero {
    min-height: 60vh;
    max-height: 70vh;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero-h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-sub {
    font-size: 0.85rem;
    max-width: 100%;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-prev,
  .hero-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
  .hero-dots {
    bottom: 60px;
    gap: 8px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  .hero-dot.active {
    width: 20px;
  }
  
  .services-grid-home {
    grid-template-columns: 1fr;
  }
  
  .home-flex {
    flex-direction: column;
  }
  .home-stats-sidebar {
    width: 100%;
  }
  .home-stats-sidebar .stats-grid {
    flex-direction: column;
    gap: 0.8rem;
  }
  .home-stats-sidebar .stat-item {
    min-width: auto;
  }
  
  .testi-card {
    flex: 0 0 100%;
  }
  .testi-prev,
  .testi-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .nl-form {
    flex-direction: column;
  }
  .nl-input {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    padding: 100px 4% 50px;
  }
  
  .quote-form,
  .contact-form-wrap {
    padding: 2rem;
  }
  
  .about-stats .stats-grid {
    gap: 0.8rem;
  }
  .about-stats .stat-item {
    padding: 1rem 0.4rem;
  }
  .about-stats .stat-number {
    font-size: 1.4rem;
  }
  
  .services-carousel-container,
  .carousel-container {
    padding: 0 20px;
  }
  .services-carousel-prev,
  .services-carousel-next,
  .carousel-prev,
  .carousel-next {
    width: 34px;
    height: 34px;
    font-size: 1.2rem;
  }
  
  .partners-section {
    padding: 3rem 4%;
  }
  .partners-title {
    font-size: 1.4rem;
  }
  .partner-logo img {
    max-height: 50px;
    max-width: 100px;
  }
  .partners-carousel-container {
    padding: 0 25px;
  }
  .partners-prev,
  .partners-next {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .home-who-section {
    padding: 4rem 5%;
  }
  .home-who-section .about-img-main {
    height: 280px;
  }
  .home-who-section .about-img-accent {
    width: 110px;
    height: 90px;
    right: 0;
  }
}

@media (max-width: 600px) {
  .about-img-accent {
    display: none;
  }
  .about-badge {
    width: 55px;
    height: 55px;
    top: 0.5rem;
    left: -0.5rem;
  }
  .about-stats .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  .about-stats .stat-item {
    flex: 0 1 auto;
    min-width: 80px;
    padding: 0.6rem 0.3rem;
  }
  .about-stats .stat-number {
    font-size: 1.1rem;
  }
  
  .blog-list-inner {
    grid-template-columns: 1fr;
  }
  .blog-cta-box {
    flex-direction: column;
  }
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  #navbar {
    padding: 0 3%;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .nav-logo img {
    width: 32px;
  }
  
  #hero {
    min-height: 55vh;
    max-height: 65vh;
  }
  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .hero-sub {
    font-size: 0.8rem;
    margin: 1rem 0 1.8rem;
  }
  
  .btn-gold,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
  }
  
  .page-hero {
    padding: 80px 3% 40px;
  }
  .ph-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .ph-sub {
    font-size: 0.8rem;
  }
  
  .quote-section,
  .services-section,
  .contact-grid {
    padding: 3rem 3%;
  }
  
  .newsletter-section {
    padding: 3rem 1.2rem;
  }
  .nl-title {
    font-size: 1.6rem;
  }
  
  .footer-top {
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .about-img-main {
    height: 250px;
    border-radius: 20px;
  }
  .about-img-accent {
    width: 110px;
    height: 85px;
  }
  .about-badge {
    width: 70px;
    height: 70px;
  }
  .ab-num {
    font-size: 1.5rem;
  }
  
  .about-stats .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-stats .stat-item {
    flex: 0 1 calc(50% - 0.8rem);
    min-width: 100px;
  }
  
  .home-who-section .about-badge {
    left: 10px;
    top: 16px;
    padding: 0.7rem 1rem;
  }
}

@media (max-width: 480px) {
  .hero-prev,
  .hero-next {
    display: none;
  }
  
  .partner-logo img {
    max-height: 40px;
    max-width: 80px;
  }
  .partners-carousel-container {
    padding: 0 15px;
  }
  .partners-prev,
  .partners-next {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  .testimonials-section {
    padding: 2rem 3%;
  }
  .testi-header .s-intro-title {
    font-size: 1.5rem;
  }
  .testi-card {
    width: 90vw;
    max-width: 280px;
    padding: 1rem;
  }
  .testi-quote-icon {
    font-size: 2rem;
  }
  .testi-text {
    font-size: 0.8rem;
  }
}
/* ========== HOME WHO WE ARE SECTION (ÉQUILIBRÉE) ========== */
.home-who-section {
  padding: 6rem 5%;
  background: var(--navy);
}

.home-who-section .who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Colonne gauche - Image */
.home-who-section .who-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-who-section .who-img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.home-who-section .who-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.home-who-section .who-img-main:hover {
  transform: scale(1.02);
}

.home-who-section .who-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid var(--navy);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.home-who-section .who-img-accent:hover {
  transform: translateY(-5px) rotate(-2deg);
}

.home-who-section .who-badge {
  position: absolute;
  top: 25px;
  left: -15px;
  background: var(--gold);
  color: var(--navy);
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(184,147,90,0.5);
  z-index: 2;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.home-who-section .who-badge .ab-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
}

.home-who-section .who-badge .ab-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  line-height: 1.3;
  color: var(--navy);
}

/* Colonne droite - Texte */
.home-who-section .who-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-who-section .about-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.home-who-section .about-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.home-who-section .about-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* Liste des points */
.home-who-section .who-checks {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.home-who-section .who-check-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.home-who-section .who-check-item:hover {
  transform: translateX(8px);
}

.home-who-section .who-check-icon {
  min-width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.home-who-section .who-check-item:hover .who-check-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(184,147,90,0.4);
}

.home-who-section .who-check-content {
  flex: 1;
}

.home-who-section .who-check-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.home-who-section .who-check-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin: 0;
}

/* Stats en bas */
.home-who-section .who-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.home-who-section .who-stat-item {
  transition: transform 0.3s ease;
}

.home-who-section .who-stat-item:hover {
  transform: translateY(-3px);
}

.home-who-section .who-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.home-who-section .who-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ========== HOME BLOG SECTION (CARTES COMPACTES EFFET WAOUH) ========== */
.home-blog-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, #f7f4ef 0%, #faf8f4 100%);
  position: relative;
  overflow: hidden;
}

.home-blog-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,147,90,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.home-blog-section .services-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Carte blog compacte avec effet waouh */
.home-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
}

.home-blog-card:hover {
  transform: translateY(-12px) rotateX(3deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Effet de brillance au survol */
.home-blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.home-blog-card:hover::before {
  left: 150%;
}

/* Bordure dorée animée */
.home-blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  transition: width 0.4s ease;
  z-index: 1;
}

.home-blog-card:hover::after {
  width: 80%;
}

.home-blog-card-img-wrap {
  overflow: hidden;
  position: relative;
  height: 180px;
}

.home-blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.home-blog-card:hover .home-blog-card-img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Tag catégorie */
.home-blog-card-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

.home-blog-card:hover .home-blog-card-tag {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Corps de la carte */
.home-blog-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.home-blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #999;
  margin-bottom: 0.7rem;
  font-family: 'DM Sans', sans-serif;
}

.home-blog-card-date {
  color: var(--gold);
  font-weight: 600;
}

.home-blog-card-read {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.home-blog-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.6rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.home-blog-card:hover h3 {
  color: var(--gold);
}

.home-blog-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.6;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-blog-card-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.home-blog-card-cta .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.home-blog-card:hover .home-blog-card-cta .arrow {
  transform: translateX(5px);
}

.home-blog-more {
  text-align: center;
  margin-top: 3rem;
}

/* Animation d'entrée des cartes */
.home-blog-card {
  opacity: 0;
  animation: blogCardReveal 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.home-blog-card:nth-child(1) { animation-delay: 0.1s; }
.home-blog-card:nth-child(2) { animation-delay: 0.2s; }
.home-blog-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes blogCardReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ========== RESPONSIVE HOME SECTIONS ========== */
@media (max-width: 1024px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .home-who-section .who-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-who-section .who-img-wrap {
    max-width: 450px;
    margin: 0 auto;
  }

  .home-who-section .who-img-main {
    height: 350px;
  }

  .home-who-section .who-img-accent {
    width: 130px;
    height: 100px;
    bottom: -15px;
    right: -15px;
  }

  .home-who-section .who-right {
    text-align: center;
  }

  .home-who-section .about-tag {
    margin: 0 auto 1.2rem;
  }

  .home-who-section .who-checks {
    text-align: left;
    max-width: 450px;
    margin: 0 auto 1.8rem;
  }

  .home-who-section .who-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .home-blog-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 1.5rem;
  }

  .home-blog-card-img-wrap {
    height: 200px;
  }

  .home-who-section .who-img-main {
    height: 300px;
  }

  .home-who-section .who-badge {
    top: 15px;
    left: -10px;
    padding: 0.8rem 1rem;
  }

  .home-who-section .who-badge .ab-num {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .home-who-section {
    padding: 4rem 5%;
  }

  .home-who-section .who-img-main {
    height: 250px;
  }

  .home-who-section .who-img-accent {
    width: 100px;
    height: 80px;
    right: -10px;
    bottom: -10px;
  }

  .home-who-section .who-stats {
    gap: 1.5rem;
  }

  .home-who-section .who-stat-num {
    font-size: 1.5rem;
  }

  .home-blog-section {
    padding: 3rem 5%;
  }

  .home-blog-card-img-wrap {
    height: 180px;
  }
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.90); /* était 0.4 */
}
.footer-col h4 {
  color: rgba(255, 255, 255, 0.65); /* était 0.4 */
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.82); /* était 0.5 */
}
.footer-soc-btn {
  color: rgba(255, 255, 255, 0.75); /* était 0.5 */
}