
/* tours.css — version iMac 24" + cards spacing */

/* Hero */
.t-hero{
  padding:56px 0 24px;
  background:linear-gradient(180deg,#0b0f14,#0b0f14 70%,#0d1420);
  color:#e6edf6;
}

/* Large container */
.t-wrap{
  max-width:1440px;
  margin:0 auto;
  padding:0 32px;
}

/* Home + global container */
.wrap{
  max-width:1440px !important;
  margin:0 auto;
  padding:28px 24px;
}

/* Grid */
.t-grid{
  display:grid;
  gap:26px;
  grid-template-columns:repeat(12,1fr);
}
.t-col-7{grid-column:span 7}
.t-col-5{grid-column:span 5}

/* Cards */
.t-card{
  background:#111826;
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px;
  padding:22px;
  color:#e6edf6;
}
.t-card h3{margin:0 0 8px;font-size:19px}
.t-card p{margin:0;color:#d9dde3;font-size:15px;line-height:1.55}

/* Section spacing */
.t-section{padding:34px 0}

/* Tour card layout (main grid) — widened spacing */
.t-tourgrid{
  display:grid;
  gap:32px; /* ← spacing increased */
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
}

/* Pills */
.t-pill{
  display:inline-block;border:1px solid rgba(255,255,255,.18);border-radius:999px;
  padding:6px 12px;font-size:12px;margin:4px 6px 0 0;color:#9fb0c8;
}

/* WhatsApp button */
.wa-float{
  position:fixed;right:22px;bottom:22px;width:56px;height:56px;border-radius:50%;
  background:#25D366;color:#fff;display:inline-flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(0,0,0,.2);text-decoration:none;z-index:9999;
  transition:transform .15s ease, box-shadow .2s ease, opacity .2s;
}
.wa-float:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,.28)}

/* Responsive */
@media (max-width:1200px){
  .t-wrap, .wrap{max-width:1100px !important;}
}
@media (max-width:900px){
  .t-grid{grid-template-columns:1fr 1fr}
  .t-col-7,.t-col-5{grid-column:1 / -1}
}
@media (max-width:560px){
  .t-grid{grid-template-columns:1fr}
  .t-wrap, .wrap{padding:0 20px}
}
/* --- Avis Premium / Fond sombre --- */

.home-reviews {
  text-align: center;
  padding: 40px 0;
  font-family: sans-serif;
  color: #ffffff; /* texte blanc */
}

.home-reviews .stars {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: #d4a545; /* doré élégant */
}

.home-reviews .review-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border: 1px solid #d4a545;
  border-radius: 30px;
  text-decoration: none;
  color: #d4a545;
  transition: 0.3s;
}
.home-reviews .review-link:hover {
  background: #d4a545;
  color: #000;
}

/* Page avis */
.review-highlight {
  max-width: 700px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
  color: #ffffff; /* texte blanc */
}

.review-highlight .stars {
  font-size: 30px;
  color: #d4a545;
}

.review-text {
  font-size: 1.1rem;
  margin: 16px 0;
  font-style: italic;
  color: #e6e6e6; /* gris clair doux */
}

.review-author {
  opacity: 0.8;
  color: #cccccc;
}

/* Boutons */
.review-actions {
  text-align: center;
  margin-top: 30px;
}

.review-actions .review-btn {
  margin: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #d4a545;
  color: #d4a545;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.review-actions .review-btn:hover {
  background: #d4a545;
  color: #000;
}
/* === AVIS GOOGLE (FOND NOIR) === */
.reviews-section { margin:60px 0; color:#eee; }
.reviews-header { display:flex; gap:16px; align-items:center; margin-bottom:18px; }
.reviews-header h2 { margin:0; font-size:32px; }
.reviews-cta, .reviews-all {
  border:1px solid rgba(255,255,255,.25);
  padding:8px 14px;
  border-radius:10px;
  text-decoration:none;
  color:#eee;
}
.reviews-cta:hover, .reviews-all:hover { background:rgba(255,255,255,.08); }
.reviews-list { display:grid; gap:18px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.review-card {
  background:#111; border:1px solid #333; border-radius:12px; padding:16px;
}
.review-stars { font-size:16px; color:#d4a545; margin-bottom:8px; }
.review-text { margin-bottom:6px; line-height:1.5; color:#ddd; }
.review-name { font-size:14px; opacity:.8; }
.reviews-loading { opacity:.7; }
/* --- Language Switch Button --- */
.lang {
  position: absolute;
  right: 0;
  top: 0;
}

.lang a {
  font-size: 13px;
  padding: 6px 10px;
  border: 1px solid #242428;
  border-radius: 999px;
  background: #1a1a1e;
  color: #eaecef;
}
/* FAQ */
.faq-section details {
  background: #151518;
  border: 1px solid #242428;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0;
}
.faq-section details summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
  list-style: none;
}
.faq-section details[open] summary {
  color: #d4a545;
}
.faq-section details > div {
  margin-top: 10px;
  color: #d9dde3;
  line-height: 1.55;
}
.faq-section a { color: #d4a545; text-decoration: underline; }
/* FAQ bas de page, discrète */
.faq-section {
  margin: 40px auto 20px;
  padding: 10px 0 0;
  max-width: 900px;
  opacity: 0.75;
}

.faq-section h2 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #bfc3c9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: left;   /*
}
.faq-section {
  text-align: left;   /* ✅ tout le bloc à gauche */
}
}

.faq-section details {
  background: #141416;
  border: 1px solid #232326;
  border-radius: 12px;
  padding: 8px 14px;
  margin: 6px 0;
}

.faq-section summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #ddd;
}

.faq-section details > div {
  font-size: 14px;
  color: #bfc3c9;
  margin-top: 6px;
  line-height: 1.45;
}

.faq-section details[open] summary {
  color: #d4a545;
}
/* --- FAQ MINIMALISTE & RÉDUITE --- */
.faq-section {
  max-width: 900px;
  margin: 60px auto 40px auto;
  padding: 0 12px;
  text-align: left;
  opacity: 0.75;
}

.faq-section h2 {
  font-size: 14px;               /* 🔥 Plus petit */
  font-weight: 500;
  margin-bottom: 8px;
  color: #bfc3c9;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Conteneur des items */
.faq-item {
  margin-bottom: 6px;            /* 🔥 réduit */
}

/* Bouton question */
.faq-question {
  width: 100%;
  background: #1a1a1d;           /* plus discret */
  border: 1px solid #2a2a2d;
  color: #d9dde3;
  padding: 8px 10px;             /* 🔥 plus petit */
  border-radius: 8px;            /* légèrement arrondi */
  font-size: 14px;               /* 🔥 taille réduite */
  text-align: left;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.faq-question:hover {
  background: #232326;
  border-color: #3a3a3d;
}

/* Réponse */
.faq-answer {
  padding: 6px 12px;             /* 🔥 réduit */
  font-size: 14px;               /* 🔥 réduit */
  color: #c7c7c9;
  line-height: 1.45;
  background: #111113;
  border-left: 2px solid #3a3a3d;
  margin-top: 2px;
  border-radius: 0 0 6px 6px;
}
/* ========== FAQ STYLE ========== */

.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 14px;
  font-size: 15px;
  color: #ccc;
}

.faq-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: .8;
}

details {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  margin-bottom: 8px;
  padding: 10px 14px;
  background: #111;
  transition: background .25s;
}

details:hover {
  background: #161616;
}

details summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

details p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #aaa;
}