/* =====================================================================
   RK TANZANIE VOYAGE — CSS PAGE DÉTAIL SAFARI : CALDEIRA & SAVANE MIOMBO (safari-caldeira.php)
   Contient UNIQUEMENT les styles spécifiques à cette page.
   Le chrome partagé (topbar, navbar, sidebar, footer, floating, reveal,
   keyframes, :root) vit dans css/common.css.
   Ce fichier sert de TEMPLATE pour les autres pages safari-*.
   ===================================================================== */

/* HERO */
.hero {
  background: var(--green-dark);
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&q=80")
    center/cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  max-width: 900px;
  animation: fadeInUp 0.9s ease both;
}

.hero-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9fc9af;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.hero-back:hover {
  color: var(--gold);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff12;
  border: 1px solid #ffffff25;
  color: var(--gold);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
  animation: float 3.5s ease-in-out infinite;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffff12;
  border: 1px solid #ffffff18;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: #cce0cc;
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 40px;
  border-bottom: 1px solid #e8ede8;
}

.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--green-mid);
  text-decoration: none;
}

/* MAIN */
.main-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* INTRO + SECTION LABELS */
.section-tag {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--green-mid);
  font-size: 13px;
  margin-bottom: 6px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  color: var(--green-mid);
  font-style: italic;
}

.intro-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}

.intro-text p + p {
  margin-top: 14px;
}

/* HIGHLIGHTS */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.highlight-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e8ede8;
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlight-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 4px 16px rgba(45, 90, 61, 0.1);
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.highlight-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.highlight-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.55;
}

/* PARKS */
.parks-section {
  background: var(--green-dark);
  border-radius: 18px;
  padding: 28px 32px;
  margin-bottom: 36px;
}

.parks-title {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.parks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.park-tag {
  background: #ffffff15;
  border: 1px solid #ffffff25;
  color: #cce0cc;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA REQUEST */
.cta-request {
  background: linear-gradient(135deg, #1a3a2a, #2d5a3d);
  border-radius: 18px;
  padding: 36px 40px;
  text-align: center;
  border: 1px solid rgba(232, 201, 126, 0.3);
}

.cta-request h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.cta-request h3 em {
  color: var(--gold);
  font-style: italic;
}

.cta-request p {
  color: #9fc9af;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-cta-wa {
  background: #25d366;
  color: #fff;
  padding: 13px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta-wa:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* SIDEBAR */
.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.price-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8ede8;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.price-card-header {
  background: var(--green-dark);
  padding: 22px 20px;
  text-align: center;
}

.price-from {
  color: #9fc9af;
  font-size: 11px;
  margin-bottom: 4px;
}

.price-amount {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 700;
}

.price-unit {
  color: #9fc9af;
  font-size: 12px;
  margin-top: 2px;
}

.price-card-body {
  padding: 20px;
}

.price-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f4f0;
  font-size: 13px;
  color: var(--text-mid);
}

.price-info-row:last-child {
  border-bottom: none;
}

.price-info-icon {
  font-size: 16px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.btn-reserve-card {
  display: block;
  width: 100%;
  background: var(--green-mid);
  color: #fff;
  padding: 13px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.btn-reserve-card:hover {
  background: var(--green-dark);
}

.btn-wa-card {
  display: block;
  width: 100%;
  background: #25d366;
  color: #fff;
  padding: 13px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.quick-facts {
  background: var(--off-white);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: 1px solid #e8ede8;
}

.quick-facts h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-mid);
  margin-bottom: 9px;
}

/* OTHER SAFARIS */
.other-safaris {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8ede8;
  padding: 18px 20px;
}

.other-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.other-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0f4f0;
  font-size: 12.5px;
}

.other-item:last-child {
  border-bottom: none;
}

.other-item a {
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.other-item a:hover {
  color: var(--green-dark);
}

.other-price {
  font-size: 11.5px;
  color: var(--gray);
}

/* CTA BANNER */
.cta-banner {
  background: var(--green-mid);
  padding: 26px 40px;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-icon {
  font-size: 30px;
  margin-right: 14px;
  animation: float 3.5s ease-in-out infinite;
}

.cta-text h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 19px;
}

.cta-text p {
  color: #9fc9af;
  font-size: 13px;
  margin-top: 3px;
}

.btn-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* RESPONSIVE — page-specific (le chrome responsive est dans common.css) */
@media (max-width: 900px) {
  .hero-content {
    padding: 55px 20px 40px;
  }

  .breadcrumb {
    padding: 10px 20px;
  }

  .main-wrap {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 28px;
  }

  .sidebar-sticky {
    position: static;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}
