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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #F8F9FB;
  color: #0B1320;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ===== PALETTE ===== */
:root {
  --primary: #0B1320;
  --secondary: #163D6B;
  --gold: #C9A227;
  --gold-light: #e0b83a;
  --light: #F8F9FB;
  --gray: #eef0f3;
  --text: #1a1f2e;
  --text-light: #5a6275;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ===== READING PROGRESS ===== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ===== TYPOGRAPHIE ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  line-height: 1.2;
}

section h2 br {
  display: none;
}

@media (min-width: 768px) {
  section h2 br {
    display: block;
  }
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #0B1320;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 39, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
  }
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4444;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  background: var(--primary);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 400;
}

.trust-icon {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .trust-items {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .trust-item {
    font-size: 0.78rem;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(11, 19, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--gold);
  font-weight: 400;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-cta {
  background: var(--gold);
  color: #0B1320 !important;
  padding: 10px 26px;
  border-radius: 60px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: #0B1320 !important;
}

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

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #0B1320;
    padding: 80px 40px 40px;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .nav-links a {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
  }
  .nav-cta {
    padding: 12px 32px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(22, 61, 107, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, rgba(11, 19, 32, 0.85) 0%, rgba(11, 19, 32, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 40px 0 20px;
  max-width: 780px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stats span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.hero-stats strong {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 1.1rem;
}

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

@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
    padding: 20px 0;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-content {
    padding: 20px 0;
  }
  .hero-stats {
    flex-direction: column;
    gap: 8px;
  }
  .hero .container {
    padding: 0 20px;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

.problems {
  background: #fff;
}

/* ===== PROBLEMS ===== */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

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

.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.problem-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #e8eaed;
}

.problem-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.problem-card:hover .problem-card-image img {
  transform: scale(1.05);
}

.problem-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 19, 32, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.problem-card-body {
  padding: 18px 20px 22px;
}

.problem-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.problem-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.problem-card-rating .stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.problem-card-rating .rating-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--light);
  padding: 2px 10px;
  border-radius: 20px;
}

.problem-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.problem-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #eef0f3;
}

.problem-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--secondary);
  background: rgba(22, 61, 107, 0.08);
  padding: 4px 14px;
  border-radius: 30px;
  letter-spacing: 0.03em;
}

.btn-card {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-card:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 20px;
  }
  .problem-card-image {
    height: 160px;
  }
  .problem-card-body {
    padding: 16px 16px 20px;
  }
}

/* ===== SERVICES ===== */
.services {
  background: var(--primary);
  color: #fff;
}

.services .section-label {
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.service-card span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* ===== METHODE TRACK ===== */
.method {
  background: #fff;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--light);
  padding: 24px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step span {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 36px;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light);
}

.steps-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.flow-item {
  background: #fff;
  padding: 20px 32px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  border: 1px solid #e6e8ec;
  transition: all 0.3s ease;
}

.flow-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.flow-item span {
  background: var(--gold);
  color: #0B1320;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== RESULTS ===== */
.results {
  background: var(--primary);
  color: #fff;
}

.results .section-label {
  color: var(--gold);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.result-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.result-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about {
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-text .btn {
  align-self: flex-start;
  margin-top: 8px;
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--secondary);
  text-align: center;
  border-left: 4px solid var(--gold);
  padding: 16px 0 16px 24px;
  background: var(--light);
  border-radius: 0 12px 12px 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-photo {
    height: 300px;
  }
  .about-text .btn {
    align-self: center;
    width: 100%;
    text-align: center;
  }
  .about-quote {
    font-size: 1rem;
    padding: 14px 0 14px 18px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light);
  padding: 80px 0;
  overflow: hidden;
  will-change: transform;
}

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.testimonials-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 24px;
  will-change: transform;
}

.testimonial-group {
  display: flex;
  gap: 24px;
  min-width: 100%;
  flex: 0 0 100%;
}

.testimonial-item {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid #e6e8ec;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  will-change: transform;
}

.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 16px;
  flex: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eef0f3;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-item:hover .testimonial-avatar {
  transform: scale(1.05);
  border-color: var(--gold-light);
}

.testimonial-author {
  flex: 1;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e6e8ec;
  background: #fff;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-nav:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
}

.testimonial-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.testimonial-nav:disabled:hover {
  background: #fff;
  color: var(--primary);
  border-color: #e6e8ec;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d0d3d8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

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

.testimonial-dot:hover:not(.active) {
  background: #a0a5ae;
}

@media (max-width: 992px) {
  .testimonial-item {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  .testimonials-wrapper {
    gap: 12px;
    padding: 10px 0;
  }
  .testimonials-track {
    gap: 16px;
  }
  .testimonial-group {
    gap: 16px;
  }
  .testimonial-item {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 20px 18px;
  }
  .testimonial-nav {
    width: 40px;
    height: 40px;
  }
  .testimonial-nav svg {
    width: 20px;
    height: 20px;
  }
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }
  .testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .testimonial-author h4 {
    font-size: 0.9rem;
  }
  .testimonial-author span {
    font-size: 0.8rem;
  }
}

/* ===== FAQ ===== */
.faq {
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e6e8ec;
  padding: 8px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--primary);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 0;
  color: var(--text-light);
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 0 20px 0;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--primary);
  color: #fff;
}

.contact .section-label {
  color: var(--gold);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  background: rgba(255,255,255,0.04);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-form .form-group {
  margin-bottom: 16px;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border 0.3s, background 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

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

.contact-form input.error,
.contact-form textarea.error {
  border-color: #f44336;
}

.form-error {
  display: none;
  color: #f44336;
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-error.visible {
  display: block;
}

.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}

.contact-info p {
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
}

.contact-info a {
  color: var(--gold);
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--gold-light);
}

.contact-hours {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.95rem;
  text-align: center;
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top: 2px solid #0B1320;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 10px;
}

.spinner.active {
  display: inline-block;
}

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

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #060b12;
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.footer-brand .logo {
  font-size: 1.1rem;
  color: #fff;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: #0B1320;
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.8rem;
  margin-top: 8px;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #0B1320;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.3);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  background: var(--gold-light);
}

@media (max-width: 768px) {
  .scroll-top {
    right: 80px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BIOGRAPHIE PAGE
   ============================================================ */

/* Bio Hero */
.bio-hero {
  padding: 140px 0 60px;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.bio-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.bio-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.bio-hero-text {
  color: #fff;
}

.bio-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 6px 18px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}

.bio-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.bio-hero-text h1 .highlight {
  color: var(--gold);
}

.bio-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.bio-hero-stats {
  display: flex;
  gap: 40px;
}

.bio-stat {
  text-align: center;
}

.bio-stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.bio-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.bio-hero-image {
  position: relative;
}

.bio-hero-image img {
  width: 100%;
  max-width: 400px;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(201, 162, 39, 0.3);
  margin: 0 auto;
  display: block;
}

.bio-image-quote {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #0B1320;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 250px;
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
}

/* Bio Grid */
.bio-full {
  padding: 80px 0;
  background: #fff;
}

.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar */
.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bio-card {
  background: var(--light);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid #eef0f3;
}

.bio-card h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.bio-info-list {
  list-style: none;
  padding: 0;
}

.bio-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bio-info-list li:last-child {
  border-bottom: none;
}

.bio-label {
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.85rem;
}

.bio-value {
  font-weight: 500;
  color: var(--primary);
  font-size: 0.85rem;
  text-align: right;
}

.bio-timeline {
  list-style: none;
  padding: 0;
}

.bio-timeline li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bio-timeline li:last-child {
  border-bottom: none;
}

.bio-year {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
}

.bio-desc {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Main Content */
.bio-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bio-section h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.bio-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.bio-section strong {
  color: var(--primary);
}

.bio-mission-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 40px;
  border-radius: 16px;
  margin-top: 16px;
}

.bio-mission-box h2 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.bio-mission-box p {
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.bio-mission-box blockquote {
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding: 16px 0 16px 24px;
  margin: 16px 0 0 0;
  color: rgba(255,255,255,0.9);
}

.bio-mission-box blockquote strong {
  color: var(--gold);
}

.bio-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Bio */
@media (max-width: 992px) {
  .bio-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bio-hero-stats {
    justify-content: center;
  }

  .bio-hero-image img {
    max-width: 300px;
    height: 350px;
  }

  .bio-image-quote {
    bottom: -10px;
    right: 10%;
    font-size: 0.85rem;
    padding: 12px 18px;
    max-width: 200px;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .bio-hero {
    padding: 120px 0 40px;
  }

  .bio-hero-text h1 {
    font-size: 2.2rem;
  }

  .bio-hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .bio-stat-number {
    font-size: 1.5rem;
  }

  .bio-hero-image img {
    max-width: 220px;
    height: 280px;
  }

  .bio-image-quote {
    display: none;
  }

  .bio-sidebar {
    grid-template-columns: 1fr;
  }

  .bio-mission-box {
    padding: 24px;
  }

  .bio-actions {
    flex-direction: column;
  }

  .bio-actions .btn {
    width: 100%;
    text-align: center;
  }
}