/* ===================================
   SALAM TOURS — Design Luxe & Chaleureux
   Palette : Ivoire · Or · Brun foncé · Blanc
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Couleurs — charte graphique Salam Tours (mai 2025) */
  --gold:        #C29C4F;  /* doré officiel */
  --gold-light:  #D8B871;
  --gold-pale:   #EFE3C4;
  --gold-shine:  #E3CB88;  /* doré clair — texte sur fond marine */
  --dark:        #182E4F;  /* bleu marine officiel — en-tête, titres, sections foncées */
  --dark-soft:   #24406B;  /* marine un peu plus clair — footer, accents */
  --brown:       #6B4C1E;
  --blue-accent: #7D9FBF;  /* bleu poudré officiel — touches/hover */
  --blue-soft:   #A9C1DA;  /* bleu poudré clair */
  --sage:        #A2C2AC;  /* vert sauge (secondaire charte) */
  --forest:      #294538;  /* vert forêt (secondaire charte) */
  --ivory:       #FAF6EE;
  --ivory-deep:  #F2EAD8;
  --white:       #FFFFFF;
  --text:        #1B2430;  /* presque noir, teinté marine */
  --text-muted:  #5D6B79;  /* gris ardoise */
  --border:      #E8DCC8;
  --border-gold: rgba(194,156,79,0.32);

  /* Typographie — charte : Cochin (serif noble) + Myriad (sans lisible) */
  --font-serif: 'Cormorant Garamond', 'Cochin', Georgia, serif;              /* proche de Cochin — titres */
  --font-body:  'Source Sans 3', 'Myriad Pro', 'Helvetica Neue', Arial, sans-serif;  /* proche de Myriad */
  --font-italic:'Cormorant Garamond', Georgia, serif;

  /* Effets */
  --shadow-sm:  0 2px 12px rgba(26,18,0,0.07);
  --shadow-md:  0 6px 30px rgba(26,18,0,0.10);
  --shadow-lg:  0 16px 60px rgba(26,18,0,0.14);
  --radius:     4px;
  --radius-lg:  8px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- TYPOGRAPHIE ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

.label-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.label-gold::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
/* Centré : ligne des deux côtés */
.label-gold-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.label-gold-center::before,
.label-gold-center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.title-serif { font-family: var(--font-serif); }
.italic-serif { font-family: var(--font-italic); font-style: italic; color: var(--gold); }

/* Trait décoratif sous le titre */
.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.75rem auto 1.5rem;
}
.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.section-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.section-divider-icon { color: var(--gold); font-size: 0.8rem; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--dark); color: var(--ivory); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--ivory); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }

/* ---------- SPLIT SECTIONS ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.split-photo {
  position: relative;
  overflow: hidden;
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.split-photo:hover img { transform: scale(1.04); }
.split-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,18,0,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.split-photo-overlay-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(26,18,0,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.split-content {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--white);
}
.split-content.bg-ivory { background: var(--ivory); }
.split-content.bg-dark {
  background: var(--dark);
  color: var(--ivory);
}
.split-content.bg-dark h2 { color: var(--ivory); }
.split-content.bg-dark p  { color: rgba(250,246,238,0.75); }
.split-content h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.split-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 480px;
}
.split-stats {
  display: flex;
  gap: 3rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(196,146,42,0.2);
  border-bottom: 1px solid rgba(196,146,42,0.2);
}
.split-stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.split-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.split-content.bg-dark .split-stat-label { color: rgba(250,246,238,0.55); }
.split-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
}
.split-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.split-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #D4A520;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.split-feature-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.split-feature-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* Photo decorative label */
.split-photo-label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(26,18,0,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196,146,42,0.4);
  padding: 0.8rem 1.4rem;
  color: var(--ivory);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.split-photo-label strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-shine);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0.15rem;
}
@media (max-width: 900px) {
  .split-section { grid-template-columns: 1fr 1fr; min-height: 320px; }
  .split-photo { min-height: 220px; }
  .split-content { padding: 2rem 1.25rem; }
  .split-content h2 { font-size: clamp(1rem, 3.5vw, 1.6rem); margin-bottom: 0.75rem; }
  .split-content p { font-size: 0.78rem; }
  .split-stats { gap: 0.75rem; flex-wrap: wrap; }
  .split-stat-num { font-size: 1.4rem; }
  .split-stat-label { font-size: 0.62rem; }
  .split-features-list { gap: 1rem; }
  .split-feature-title { font-size: 0.82rem; }
  .split-feature-desc { font-size: 0.72rem; }
  .split-photo-label { display: none; }
}

/* ---------- SHOWCASE ALTERNÉ (texte / photo) ---------- */
.showcase { display: flex; flex-direction: column; }
.showcase-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); min-height: 400px; }
.showcase-media { position: relative; overflow: hidden; min-height: 300px; }
.showcase-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.showcase-media:hover img { transform: scale(1.04); }
.showcase-media.fit-contain { background: var(--ivory); }
.showcase-media.fit-contain img { object-fit: contain; }
.showcase-media.fit-contain:hover img { transform: none; }
.showcase-media.is-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; background: var(--ivory); color: var(--text-muted); text-align: center; padding: 1rem; }
.showcase-media.is-placeholder i { font-size: 2.4rem; color: var(--gold); }
.showcase-media.is-placeholder span { font-size: 0.8rem; }
.showcase-text { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem; background: var(--white); }
.showcase-row:nth-child(even) .showcase-text { background: var(--ivory); }
.showcase-text h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.2; margin: 0.5rem 0 1rem; }
.showcase-text p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.8; max-width: 460px; }
@media (max-width: 900px) {
  .showcase-row { min-height: 300px; }
  .showcase-media { min-height: 200px; }
  .showcase-text { padding: 1.75rem 1.25rem; }
  .showcase-text h3 { font-size: clamp(1.1rem, 3.5vw, 1.5rem); }
  .showcase-text p { font-size: 0.8rem; line-height: 1.7; }
}

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  border-radius: 2px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250,246,238,0.5);
}
.btn-outline-light:hover { background: rgba(250,246,238,0.1); border-color: var(--ivory); }

.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }

/* ---------- ORNEMENTS ---------- */
.ornament {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}
.ornament-left { margin: 0; }

/* ========== NAVIGATION ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(196,146,42,0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.85rem; }
.logo-img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;                      /* v2 : cercle blanc pour que le logo ressorte sur l'en-tête bleu */
  padding: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.logo-tagline {
  font-size: 0.6rem;
  color: rgba(245,230,192,0.5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Liens nav */
.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}
.nav-links a {
  color: rgba(250,246,238,0.7);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  margin-left: 1rem;
  padding: 0.55rem 1.4rem !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border: 1px solid var(--gold);
  border-radius: 2px;
  border-bottom: 1px solid var(--gold) !important;
  letter-spacing: 0.1em;
}
.nav-cta:hover {
  background: var(--dark-soft) !important;
  border-color: var(--dark-soft) !important;
  color: var(--gold-light) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

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

/* Texture de fond subtile */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(196,146,42,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(196,146,42,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Motif géométrique islamique côté droit */
.hero-pattern {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  opacity: 0.04;
  pointer-events: none;
  overflow: hidden;
}

/* Ligne dorée verticale décorative */
.hero-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero .container { position: relative; z-index: 1; padding-top: 2rem; padding-bottom: 2rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-shine);
  font-family: var(--font-serif);
}

.hero-desc {
  color: rgba(250,246,238,0.55);
  font-size: 1rem;
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats sous le hero */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(196,146,42,0.2);
}
.hero-stat {
  flex: 1;
  padding-right: 2.5rem;
  border-right: 1px solid rgba(196,146,42,0.15);
}
.hero-stat:last-child { border-right: none; padding-right: 0; padding-left: 2.5rem; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.4);
  margin-top: 0.3rem;
  font-weight: 400;
}

/* ========== BANDE D'ANNONCE ========== */
.announcement-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(196,146,42,0.3);
  border-bottom: 1px solid rgba(196,146,42,0.3);
  padding: 0.9rem 0;
  text-align: center;
}
.announcement-bar p {
  font-size: 0.82rem;
  color: var(--brown);
  letter-spacing: 0.08em;
}
.announcement-bar strong { color: var(--dark); font-weight: 600; }

/* ========== CARTES FORFAITS ========== */
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.package-card:hover {
  box-shadow: 0 20px 60px rgba(26,18,0,0.16);
  transform: translateY(-8px);
}

.package-card-header {
  padding: 2.25rem 2rem 1.75rem;
  border-bottom: 1px solid var(--border);
}
/* Header sombre pour la carte Hajj */
.package-card-header--dark {
  background: var(--dark);
  border-bottom-color: rgba(196,146,42,0.2);
}
.package-card-header--dark h3 { color: var(--ivory); }
.package-card-header--dark .package-price { color: var(--gold-light); }
.package-card-header--dark .package-card-eyebrow { color: var(--gold-light); }
.package-card-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.package-card-header h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.price-from {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.package-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.package-price sub {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: middle;
  margin-left: 0.25rem;
}

.package-card-body { padding: 1.5rem 2rem; flex: 1; }
.package-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.package-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.package-meta-item i { color: var(--gold); font-size: 0.8rem; }

.package-includes { margin: 0; }
.package-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.package-includes li:last-child { border-bottom: none; }
.package-includes li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

.package-card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ========== CARTES SERVICE ========== */
.service-card {
  padding: 2.25rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(26,18,0,0.1);
  transform: translateY(-5px);
  border-top-color: var(--gold);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #D4A520;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--dark);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--dark);
  font-family: var(--font-serif);
}
.service-card p {
  font-size: 0.9rem;
  color: #4a3520;
  line-height: 1.8;
}

/* Feature items (section about) */
.feature-item {
  background: var(--white);
  padding: 1.75rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.feature-item:hover {
  background: var(--ivory);
  border-left-color: var(--gold);
  transform: translateX(3px);
}
.feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #D4A520;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--dark);
  color: #D4A520;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.feature-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ========== CARTES RESSOURCES ========== */
.resource-card {
  display: block;
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  color: inherit;
  border-top: 3px solid transparent;
}
.resource-card-alt { background: var(--ivory-deep); }
.resource-card:hover {
  background: var(--ivory);
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.resource-card h3 { margin: 0.5rem 0; font-size: 1.15rem; }
.resource-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.4rem;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.resource-link i { font-size: 0.65rem; transition: transform var(--transition); }
.resource-card:hover .resource-link i { transform: translateX(4px); }

/* ========== ÉTAPES TIMELINE ========== */
.steps-timeline { position: relative; padding-left: 3rem; }
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(196,146,42,0.1));
}
.step-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.step-item:last-child { margin-bottom: 0; }
.step-number {
  position: absolute;
  left: -3.75rem;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--gold);
}
.step-tag {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.step-content h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step-content p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ========== TARIFS TABLE ========== */
/* ========== ANCIEN tableau (rétrocompat) ========== */
.price-table { width:100%; border-collapse:collapse; background:var(--white); border:1px solid var(--border); }
.price-table thead { background: var(--dark); }
.price-table th { padding:1rem 1.5rem; text-align:left; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.15em; color:var(--gold); font-weight:500; }
.price-table td { padding:1rem 1.5rem; font-size:0.9rem; border-bottom:1px solid var(--border); color:var(--text); }
.price-table tr:last-child td { border-bottom:none; }
.price-table tr:hover td { background:var(--ivory); }
.price-best td { background:rgba(196,146,42,0.04); }
.price-tag { color:var(--text); font-weight:500; }
.price-highlight { color:var(--gold); font-weight:600; font-family:var(--font-serif); }

/* ========== NOUVEAU TABLEAU TARIFS OMRA ========== */
.tarif-wrap { background:var(--white); border:1px solid var(--border); overflow:hidden; }
.tarif-header {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.1fr;
  background: var(--dark);
  padding: 0;
}
.tarif-header-cell {
  padding: 1.1rem 1.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  border-right: 1px solid rgba(196,146,42,0.12);
}
.tarif-header-cell:last-child { border-right: none; }
.tarif-header-cell i { font-size: 0.9rem; color: var(--gold-light); margin-bottom: 0.1rem; }
.tarif-header-cell span { color: rgba(250,246,238,0.45); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: none; font-weight: 400; }

/* Groupe saison */
.tarif-season {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  background: var(--ivory-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}
.tarif-season i { color: var(--gold); font-size: 0.8rem; }

/* Ligne tarif */
.tarif-row {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1.1fr 1.1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.tarif-row:last-child { border-bottom: none; }
.tarif-row:hover { background: var(--ivory); }
.tarif-row.row-best { background: rgba(196,146,42,0.04); }
.tarif-row.row-best:hover { background: rgba(196,146,42,0.08); }
.tarif-row.row-special { background: #fff8f0; }

.tarif-period {
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  border-right: 1px solid var(--border);
}
.tarif-period strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 600;
}
.tarif-period-dates {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.tarif-period-dates i { color: var(--gold); font-size: 0.65rem; }

.tarif-cell {
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-right: 1px solid var(--border);
  gap: 0.2rem;
}
.tarif-cell:last-child { border-right: none; }
.tarif-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.tarif-price.best { color: var(--gold); font-size: 1.2rem; }
.tarif-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-top: 0.2rem;
}
.tarif-badge-special {
  background: #c05010;
}
@media (max-width: 720px) {
  .tarif-header { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .tarif-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .tarif-period, .tarif-cell { padding: 0.85rem 0.75rem; }
  .tarif-price { font-size: 0.95rem; }
  .tarif-header-cell { padding: 0.85rem 0.75rem; }
}

/* ========== SCHÉMA — LES 3 FORMULES DU HAJJ (carte-hajj) ========== */
.schema-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 2.5rem; padding-bottom: 0.4rem; }
.schema-hajj { min-width: 700px; max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }

/* Bandeau-titre foncé + flèche de flux (dessinée en CSS, pas d'icône) */
.schema-title-banner {
  background: var(--dark);
  color: var(--gold-shine);
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: center;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
}
.schema-arrow {
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid var(--gold);
  margin: 0.1rem auto 0.35rem;
}

/* Grille : gouttière (badges ①②) + 3 colonnes égales */
.schema-grid { display: grid; grid-template-columns: 2rem 1fr 1fr 1fr; gap: 0.5rem; align-items: stretch; }
.schema-gut { display: flex; align-items: center; justify-content: center; }
.schema-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.55rem; height: 1.55rem; flex-shrink: 0;
  border: 1.5px solid var(--gold); border-radius: var(--radius);
  color: var(--gold); background: var(--white);
  font-family: var(--font-serif); font-weight: 700; font-size: 0.85rem;
}

/* En-têtes de colonnes (Al-Mufrid / Al-Qârin / Al-Mutamatti') */
.schema-head {
  background: var(--dark); border-radius: var(--radius);
  padding: 0.7rem 0.55rem; text-align: center;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.schema-head strong { font-family: var(--font-serif); font-size: 1.05rem; color: var(--gold-shine); }
.schema-head span { font-size: 0.72rem; line-height: 1.35; color: rgba(250,246,238,0.72); }

/* Bandeau commun « ihrâm au mîqât » — aligné sur les 3 colonnes */
.schema-common {
  grid-column: 2 / -1;
  background: var(--gold-pale); color: var(--brown);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  text-align: center; font-weight: 600; font-size: 0.9rem; padding: 0.6rem 1rem;
}

/* Cases */
.schema-cell {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.7rem 0.75rem; font-size: 0.82rem; line-height: 1.5; color: var(--text);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.schema-cell-accent {
  background: #F4EDDA; border-color: var(--border-gold);
  color: var(--brown); font-weight: 600;
}
.schema-stack {
  flex-direction: column; align-items: stretch; gap: 0.4rem; padding: 0.4rem;
  background: #F7F1E4; border-color: var(--border-gold);
}
.schema-sub {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0.5rem 0.55rem; font-size: 0.8rem; line-height: 1.45;
}

/* Corps du schéma + fils pointillés verticaux (gauche ①② + un par colonne), derrière les cases */
.schema-body { position: relative; z-index: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.schema-vlines {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  display: grid; grid-template-columns: 2rem 1fr 1fr 1fr; gap: 0.5rem;
}
.schema-vlines span { justify-self: center; align-self: stretch; border-left: 2px dashed #C0392B; }
.schema-num { position: relative; z-index: 1; }

/* Note / précisions — une seule case, style « note », non reliée */
.schema-precision {
  background: var(--ivory);
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
}
.schema-precision-title {
  font-family: var(--font-serif); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 0.5rem;
}
.schema-precision p { font-size: 0.82rem; line-height: 1.55; color: var(--text-muted); margin-bottom: 0.4rem; }
.schema-precision p:last-child { margin-bottom: 0; }
.schema-precision .n { color: var(--gold); font-weight: 700; margin-right: 0.15rem; }

/* Bloc bas — tuteur de l'enfant impubère */
.schema-textblock {
  background: var(--white); border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; margin-top: 0.4rem;
}
.schema-textblock p { font-size: 0.82rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 0.7rem; }
.schema-textblock p:last-child { margin-bottom: 0; }

/* ========== CARDS DOCUMENTS ========== */
.doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: var(--transition);
}
.doc-card:hover { box-shadow: var(--shadow-md); }
.doc-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--dark);
  border: 1px solid rgba(196,146,42,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
  margin-bottom: 1.5rem;
}
.doc-card h3 { font-size: 1rem; margin-bottom: 1.25rem; color: var(--dark); }
.doc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.doc-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.5;
}
.doc-list li:last-child { border-bottom: none; padding-bottom: 0; }
.doc-list li i { color: var(--gold); font-size: 0.75rem; margin-top: 0.2rem; flex-shrink: 0; }

/* ========== ACCORDION ========== */
.accordion { border: 1px solid var(--border); background: var(--white); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
  gap: 1rem;
  font-family: var(--font-body);
}
.accordion-trigger .acc-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.accordion-trigger.open .acc-icon { transform: rotate(180deg); background: var(--gold); color: var(--white); border-color: var(--gold); }
.accordion-body { display: none; padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }
.accordion-body.open { display: block; }

/* ========== NOTICE / ALERTE ========== */
.notice {
  padding: 1rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  border-left: 3px solid;
}
.notice-gold { background: rgba(196,146,42,0.06); border-color: var(--gold); color: var(--brown); }
.notice-warm { background: #fff8ee; border-color: #e8a020; color: #7a4800; }

/* ========== BANNIÈRE CTA ========== */
.cta-banner {
  background: var(--dark);
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(196,146,42,0.2);
}
.cta-banner-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cta-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ivory);
}
.cta-banner p { color: rgba(250,246,238,0.5); margin-top: 0.5rem; font-size: 0.9rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ========== CARTES INFORMATION ========== */
.info-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.info-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ========== LIVRES ========== */
.book-card {
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.book-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.book-cover {
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}
.book-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.book-cover-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.book-cover-author {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.3rem;
  position: relative;
  z-index: 1;
}
.book-body { padding: 1.5rem; flex: 1; }
.book-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.book-body h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.book-author { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.book-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.book-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.book-level-dots { display: flex; gap: 3px; }
.level-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.level-dot.filled { background: var(--gold); }
.book-footer-label { font-size: 0.75rem; color: var(--text-muted); }

/* ========== CONTACT ========== */
.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid rgba(196,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}
.contact-info strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info a:hover { color: var(--gold); }

/* ========== FORMULAIRE ========== */
.contact-form { background: var(--ivory-deep); border: 1px solid var(--border); padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.form-submit:hover { background: var(--dark); }
.form-success {
  display: none;
  border: 1px solid rgba(196,146,42,0.3);
  background: rgba(196,146,42,0.05);
  padding: 2rem;
  text-align: center;
}
.form-success h3 { color: var(--gold); font-family: var(--font-serif); margin-bottom: 0.5rem; }

/* ========== PAGE HERO INTERNE ========== */
.page-hero {
  background: var(--dark);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .label-gold { color: rgba(196,146,42,0.8); }
.page-hero h1 { color: var(--ivory); }
.page-hero p { color: rgba(250,246,238,0.5); margin-top: 0.75rem; font-size: 1rem; font-weight: 300; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(250,246,238,0.35);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(196,146,42,0.4); }

/* ========== CHATBOT ========== */
.chatbot-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--dark);
  border: 1px solid rgba(196,146,42,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  transition: var(--transition);
}
.chatbot-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.chat-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--dark);
}

.chatbot-window {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 340px;
  max-height: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  z-index: 901;
  transition: all 0.3s ease;
  transform-origin: bottom right;
}
.chatbot-window.hidden { opacity: 0; transform: scale(0.88) translateY(10px); pointer-events: none; }

.chatbot-header {
  background: var(--dark);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(196,146,42,0.2);
}
.chatbot-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chatbot-avatar {
  width: 32px;
  height: 32px;
  background: rgba(196,146,42,0.15);
  border: 1px solid rgba(196,146,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.chatbot-name { color: var(--ivory); font-weight: 500; font-size: 0.88rem; }
.chatbot-status { color: var(--gold); font-size: 0.68rem; letter-spacing: 0.08em; }
.chatbot-close { color: rgba(250,246,238,0.4); cursor: pointer; font-size: 0.9rem; background: none; border: none; transition: var(--transition); }
.chatbot-close:hover { color: var(--ivory); }

.chatbot-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.msg { max-width: 85%; padding: 0.65rem 0.9rem; font-size: 0.83rem; line-height: 1.5; }
.msg-bot { background: var(--ivory); color: var(--text); align-self: flex-start; border-left: 2px solid var(--gold); }
.msg-user { background: var(--dark); color: var(--ivory); align-self: flex-end; }

.chatbot-suggestions { padding: 0 1rem 0.5rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chat-suggest {
  background: transparent;
  border: 1px solid rgba(196,146,42,0.3);
  color: var(--brown);
  padding: 0.25rem 0.65rem;
  font-size: 0.73rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.chat-suggest:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.chatbot-input-area { padding: 0.75rem 1rem; border-top: 1px solid var(--border); display: flex; gap: 0.5rem; }
.chatbot-input-area input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border);
  font-size: 0.83rem;
  outline: none;
  font-family: var(--font-body);
  color: var(--text);
  transition: var(--transition);
  background: var(--ivory);
}
.chatbot-input-area input:focus { border-color: var(--gold); }
.chatbot-send {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--dark); }

/* ========== FOOTER ========== */
footer { background: var(--dark-soft); color: rgba(250,246,238,0.5); }
.footer-top {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 3rem;
  border-bottom: 1px solid rgba(196,146,42,0.12);
}
.footer-brand .logo-name { font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; margin-top: 0.75rem; line-height: 1.8; max-width: 270px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark); padding: 1rem 1.5rem; gap: 0; border-top: 1px solid rgba(196,146,42,0.15); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid rgba(196,146,42,0.08); border-bottom-width: 1px !important; }
  .nav-cta { margin-left: 0 !important; margin-top: 0.75rem; text-align: center; justify-content: center; display: flex; }
  .hamburger { display: flex; }
  .navbar .container { position: relative; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat { padding: 1rem 1.5rem 1rem 0; border-right: none; border-bottom: 1px solid rgba(196,146,42,0.12); width: 50%; flex: none; }
  .hero-stat:last-child { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .cta-banner { padding: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-pattern { display: none; }
  .hero-stats { flex-direction: column; }
  .hero-stat { width: 100%; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   SECTION AVIS GOOGLE
======================================== */
.reviews-section {
  padding: 5rem 0 6rem;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 20rem;
  color: var(--gold);
  opacity: 0.04;
  position: absolute;
  top: -3rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}

/* Note globale */
.reviews-global {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 2rem 0 3.5rem;
  flex-wrap: wrap;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.score-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.score-stars {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.score-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.score-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  background: transparent;
}

.btn-google-reviews:hover {
  background: var(--gold);
  color: var(--white);
}

/* Grille des avis — 3 colonnes × 2 rangées, toutes égales */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(196, 146, 42, 0.12);
}

/* En-tête de l'avis */
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-author {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
}

.review-guide {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  flex-shrink: 0;
}

.review-stars i {
  color: #F5A623;
  font-size: 0.8rem;
}

/* Texte de l'avis */
blockquote.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-pale);
  margin: 0;
}

blockquote.review-text strong {
  font-style: normal;
  color: var(--brown);
}

/* Badge Omra / Hajj */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  align-self: flex-start;
}

/* Responsive avis */
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-global {
    gap: 1.5rem;
  }
}

/* ══════════════════════════════════════════════
   GALERIE PHOTOS
══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
/* Carte galerie (conteneur image + légende) */
.gallery-item {
  display: block;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Zone média — ratio 4:3 fiable en contexte bloc */
.gallery-media {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--ivory-deep);
  border-radius: 10px 10px 0 0;
}
.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.gallery-media:hover img { transform: scale(1.07); }

/* Overlay zoom */
.gallery-media .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-media:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 1.6rem; }

/* Légende discrète */
.gallery-caption {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.85rem 0.55rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-radius: 0 0 10px 10px;
}
.gallery-caption-icon {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.gallery-caption-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.gallery-caption-title {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  color: #fff;
  font-size: 2.25rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* Lightbox vidéo — lecteur plein écran */
.lightbox-video-player {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  background: #000;
}

/* ── Miniature vidéo (thumbnail + overlay play) ── */
.video-thumb { cursor: pointer; }

/* Badge "▶ Vidéo" en haut à droite */
.video-thumb::before {
  content: "▶  Vidéo";
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 3;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 2, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-thumb:hover .video-thumb-overlay {
  background: rgba(10, 8, 2, 0.55);
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.video-play-btn i {
  color: var(--dark);
  font-size: 1.25rem;
  margin-left: 4px; /* centrage optique de l'icône ▶ */
}
.video-thumb:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--gold);
}
.video-thumb:hover .video-play-btn i { color: #fff; }

/* ══════════════════════════════════════════════
   CONFÉRENCES (livres.html)
══════════════════════════════════════════════ */
.conf-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 680px;
  margin: 2rem auto 0;
}
.conf-item a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  font-size: 0.93rem;
}
.conf-item a:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.conf-icon { color: #FF0000; font-size: 1.35rem; flex-shrink: 0; }
.conf-title { flex: 1; font-weight: 500; }
.conf-arrow { color: var(--text-muted); font-size: 0.75rem; }

/* ── Responsive galerie ── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE — pages plus courtes + images bien cadrées
   ═══════════════════════════════════════════════════════ */
@media (max-width: 700px) {
  /* Sections plus compactes verticalement */
  .section         { padding: 2.75rem 0; }
  .reviews-section { padding: 2.75rem 0 3rem; }

  /* Intro « A à Z » : empiler (photo au-dessus) au lieu de 2 colonnes serrées.
     Corrige l'image étirée → hauteur fixe + object-fit cover = bien cadrée. */
  .split-section { grid-template-columns: 1fr; min-height: 0; }
  .split-photo   { height: 240px; order: -1; }
  .split-content { padding: 2rem 1.25rem; }

  /* Avis : 3 témoignages sur mobile (les autres via « Voir tous les avis » Google) */
  .reviews-grid .review-card:nth-child(n+4) { display: none; }
  .reviews-global { margin: 1rem 0 2rem; gap: 1.5rem; }

  /* Showcase (page Hajj) : empiler + image cadrée + TEXTE toujours AU-DESSUS de la photo */
  .showcase-row   { grid-template-columns: 1fr; min-height: 0; }
  .showcase-text  { padding: 1.75rem 1.25rem; order: 0; }
  .showcase-media { height: 220px; min-height: 0; order: 1; }

  /* Forfaits Hajj : 1 carte par ligne au lieu de 2 serrées (override du style inline) */
  .forfait-grid { grid-template-columns: 1fr !important; }

  /* Hero un peu moins haut */
  .hero { min-height: 70vh; }
}
