/* =============================================
   Generation Travels — Design System (2026)
   ============================================= */
:root {
  --red: #c41e3a;
  --red-light: #e85d6f;
  --red-dark: #9a1530;
  --gold: #c9a962;
  --gold-soft: rgba(201, 169, 98, 0.15);
  --ink: #0c1222;
  --black: #121826;
  --text: #1a2332;
  --muted: #5c6b7f;
  --light: #f4f1ec;
  --cream: #faf8f5;
  --white: #fff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 8px rgba(12, 18, 34, 0.06);
  --shadow: 0 8px 30px rgba(12, 18, 34, 0.1);
  --shadow-lg: 0 24px 60px rgba(12, 18, 34, 0.14);
  --shadow-red: 0 12px 40px rgba(196, 30, 58, 0.28);
  --radius: 16px;
  --radius-sm: 12px;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-accent: "Dancing Script", cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background-color: #0a0d12;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.55;
  font-weight: 400;
  position: relative;
  background: transparent;
  min-height: 100%;
}

/* ——— Fond « wow » : base cinéma + aurore animée (hors topbar/nav/footer inchangés) ——— */

/* Profondeur & vignette (fixe) — z-index -4 */
html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% -15%, rgba(196, 30, 58, 0.22) 0%, transparent 48%),
    radial-gradient(ellipse 90% 55% at 50% 115%, rgba(154, 21, 48, 0.14) 0%, transparent 42%),
    radial-gradient(ellipse 80% 100% at 0% 50%, rgba(0, 0, 0, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse 80% 100% at 100% 50%, rgba(0, 0, 0, 0.07) 0%, transparent 45%),
    linear-gradient(168deg, #fdfbf7 0%, #ebe2d6 22%, #f3ebe2 48%, #e8dfd4 72%, #faf6f0 100%);
}

/* Voile conique très lent (lueur « voyage de luxe ») — z-index -3 */
html::after {
  content: "";
  position: fixed;
  inset: -35%;
  width: 170%;
  height: 170%;
  left: -35%;
  top: -35%;
  z-index: -3;
  pointer-events: none;
  background: conic-gradient(
    from 210deg at 45% 35%,
    transparent 0deg,
    rgba(196, 30, 58, 0.08) 70deg,
    transparent 130deg,
    rgba(201, 169, 98, 0.14) 200deg,
    transparent 280deg,
    rgba(232, 93, 111, 0.07) 330deg,
    transparent 360deg
  );
  animation: gt-halo-spin 100s linear infinite;
  opacity: 0.9;
}

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

/* Halos bordeaux & or qui respirent (couche principale) — z-index -2 */
body::before {
  content: "";
  position: fixed;
  inset: -12%;
  width: 124%;
  height: 124%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 12% 22%, rgba(196, 30, 58, 0.34), transparent 58%),
    radial-gradient(ellipse 52% 44% at 92% 12%, rgba(232, 93, 111, 0.2), transparent 54%),
    radial-gradient(ellipse 48% 52% at 6% 78%, rgba(201, 169, 98, 0.28), transparent 52%),
    radial-gradient(ellipse 55% 48% at 95% 85%, rgba(154, 21, 48, 0.18), transparent 55%),
    radial-gradient(ellipse 85% 65% at 48% 48%, rgba(252, 248, 242, 0.55), transparent 58%);
  animation: gt-aurora 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes gt-aurora {
  0% {
    transform: translate(0%, 0%) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(3%, -2%) scale(1.045) rotate(0.8deg);
  }
  66% {
    transform: translate(-2.5%, 2.5%) scale(1.02) rotate(-0.6deg);
  }
  100% {
    transform: translate(1.5%, 1%) scale(1.03) rotate(0.3deg);
  }
}

/* Texture + reflet doré qui glisse — z-index -1 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 2px,
      rgba(12, 18, 34, 0.018) 2px,
      rgba(12, 18, 34, 0.018) 3px
    ),
    radial-gradient(circle at 20% 30%, rgba(201, 169, 98, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(196, 30, 58, 0.05) 0%, transparent 40%),
    linear-gradient(
      118deg,
      transparent 0%,
      transparent 42%,
      rgba(255, 255, 255, 0.09) 48%,
      rgba(201, 169, 98, 0.22) 50.2%,
      rgba(255, 255, 255, 0.07) 53%,
      transparent 58%,
      transparent 100%
    );
  background-size: 100% 100%, 100% 100%, 100% 100%, 300% 300%;
  background-position: 0 0, 0 0, 0 0, 50% 50%;
  animation: gt-shine 22s ease-in-out infinite alternate;
  opacity: 0.78;
  mix-blend-mode: soft-light;
}

@keyframes gt-shine {
  0% {
    background-position: 0 0, 12% 20%;
    opacity: 0.58;
  }
  100% {
    background-position: 80px 40px, 88% 78%;
    opacity: 0.88;
  }
}

@media (prefers-reduced-motion: reduce) {
  html::after,
  body::before,
  body::after {
    animation: none !important;
  }
  body::before {
    transform: none;
  }
  .section-bg {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* Bandeau haut & pied de page : restent opaques, au-dessus du fond décoratif */
.topbar,
footer.main-footer {
  position: relative;
  z-index: 20;
}

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

/* ---- TOPBAR ---- */
.topbar {
  background: linear-gradient(90deg, #0a0e18 0%, #121826 50%, #0d1424 100%);
  padding: 9px clamp(16px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
  letter-spacing: 0.02em;
}
.topbar-left { display: flex; gap: 24px; }
.topbar-left span { display: flex; align-items: center; gap: 8px; }
.topbar-left a { color: rgba(255, 255, 255, 0.88); transition: color 0.2s; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 22px; align-items: center; }
.topbar-right a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.topbar-right a:hover { color: #fff; }

/* ---- NAV ---- */
nav.main-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo img,
.nav-brand .brand-logo-img { height: 48px; width: auto; max-height: 52px; object-fit: contain; }

/* Logo + wordmark (header: Generation noir, Travels rouge) */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.nav-brand-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.nav-brand .brand-gen { color: #0a0a0a; }
.nav-brand .brand-trav { color: var(--red); }

/* Footer: Generation blanc, Travels rouge */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 16px;
}
.footer-brand-logo {
  height: 56px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}
.footer-brand .footer-brand-text {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.footer-brand .brand-gen { color: #fff; }
.footer-brand .brand-trav { color: var(--red-light); }

/* Réseaux sociaux — boutons ronds (icônes officielles style) */
.social-round-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.social-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.social-round:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.social-round img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.social-round--fb { background: #1877f2; }
.social-round--ig {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.social-round--wa { background: #25d366; }
.social-round--tiktok {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.social-round--tiktok img {
  filter: brightness(0) invert(1);
  width: 20px;
  height: 20px;
}

/* Même pictogramme WhatsApp que les boutons ronds (offres accueil, fiche voyage) */
.offer-btn-wa img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.btn-wa-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wa-inline-icon {
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

/* Cartes offres / voyages : Réserver + pastille WhatsApp (même SVG partout) */
.offer-card-actions {
  display: flex;
  gap: 10px;
}
.offer-btn-book {
  flex: 1;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  padding: 11px 0;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.offer-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.offer-btn-wa {
  width: 44px;
  height: 44px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.offer-btn-wa:hover {
  background: #1da851;
  transform: scale(1.05);
}
.trip-card-actions {
  margin-top: 14px;
}

/* Barre sociale flottante — fixée au viewport, suit le défilement (toujours visible) */
.social-float {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(12, 18, 34, 0.18);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.social-float .social-round {
  width: 44px;
  height: 44px;
}
.social-float .social-round:hover {
  transform: scale(1.08);
}
.rtl .social-float {
  right: auto;
  left: 12px;
}
@media (max-width: 768px) {
  .social-float {
    top: auto;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    transform: none;
    right: 10px;
    padding: 10px 6px;
    gap: 8px;
  }
  .social-float .social-round {
    width: 40px;
    height: 40px;
  }
  .rtl .social-float {
    left: 10px;
    right: auto;
  }
}

.nav-links {
  display: flex;
  gap: 8px 26px;
  list-style: none;
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
  border-radius: 4px;
}
.nav-hamburger:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.nav-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  box-shadow: var(--shadow-red);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(196, 30, 58, 0.35);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 280px;
  height: 32vh;
  max-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.45) 0%, rgba(8, 12, 22, 0.75) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.breadcrumb { font-size: 13px; opacity: 0.88; margin-top: 10px; font-weight: 500; }

/* ---- SECTION ---- */
.section {
  padding: clamp(48px, 8vw, 88px) clamp(20px, 4vw, 48px);
  position: relative;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.section-subtitle {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-bg {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(248, 242, 234, 0.35) 100%
  );
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-block: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* ---- CARDS ---- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trip-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.35s;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.trip-card-img { width: 100%; height: 190px; overflow: hidden; position: relative; }
.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trip-card:hover .trip-card-img img { transform: scale(1.08); }
.trip-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}
.trip-card-body { padding: 18px 18px 20px; }
.trip-card-location {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trip-card-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
  font-family: var(--font-body);
  color: var(--ink);
}
.trip-card-footer { display: flex; align-items: center; justify-content: space-between; }
.trip-card-duration {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.trip-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-family: var(--font-body);
}
.btn-red {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(196, 30, 58, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ---- FOOTER ---- */
footer.main-footer {
  background: linear-gradient(180deg, #0d1219 0%, #06090e 100%);
  color: #94a3b8;
  padding: clamp(48px, 6vw, 72px) clamp(20px, 4vw, 48px) 28px;
  position: relative;
}
footer.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
  opacity: 0.85;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 40px;
}
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 22px;
  color: rgba(148, 163, 184, 0.95);
  max-width: 320px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
  color: #cbd5e1;
  font-weight: 700;
}
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: color 0.2s;
}
footer ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.75);
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  font-family: var(--font-body);
}
.skip-link:focus {
  left: 0;
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ---- UTILS ---- */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tag-omra { background: #fef3c7; color: #92400e; }
.tag-maroc { background: #dcfce7; color: #166534; }
.tag-monde { background: #dbeafe; color: #1e40af; }
.loading { text-align: center; padding: 60px; color: var(--muted); font-size: 16px; }
.empty { text-align: center; padding: 60px; color: var(--muted); }

/* ---- FORM ---- */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}
.form-control:focus {
  border-color: rgba(196, 30, 58, 0.45);
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.08);
}
textarea.form-control { resize: vertical; min-height: 110px; }

/* ---- BADGE STATUS ---- */
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.status-pending { background: #fef9c3; color: #854d0e; }
.status-confirmed { background: #dcfce7; color: #166534; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-available { background: #dcfce7; color: #166534; }
.status-soldout { background: #fee2e2; color: #991b1b; }

/* =============================================
   RESPONSIVE MOBILE
   ============================================= */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {
  .topbar {
    padding: 6px 12px;
    font-size: 11px;
    gap: 8px;
  }
  .topbar-left { gap: 10px; flex-wrap: nowrap; }
  .topbar-left span:last-child { display: none; }
  .topbar-right { justify-content: flex-end; gap: 10px; flex-wrap: nowrap; }
  .topbar-right > a { display: none; }
  .lang-switcher { margin-left: 0; }
}

@media (max-width: 768px) {
  nav.main-nav {
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    align-items: center;
  }
  .nav-logo { flex: 1; min-width: 0; }
  .nav-logo img,
  .nav-brand .brand-logo-img { height: 40px; max-height: 44px; }
  .nav-brand { gap: 8px; max-width: calc(100% - 120px); }
  .nav-brand-text { font-size: clamp(0.9rem, 3.5vw, 1.05rem); }
  .nav-links { display: none; order: 4; width: 100%; }
  .nav-cta { font-size: 11px; padding: 8px 14px; order: 3; flex-shrink: 0; }
  .nav-hamburger { order: 2; margin-left: auto; }
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

@media (max-width: 768px) {
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .page-hero { min-height: 200px; height: 26vh; }
  .page-hero-content h1 { font-size: 1.85rem; }
}

@media (max-width: 768px) {
  .section { padding: 40px 16px; }
  .section-title { font-size: 1.85rem; }
}

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .cards-grid,
  .cards-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-embed { margin: 0 16px 24px; }
}

@media (max-width: 768px) {
  footer.main-footer { padding: 36px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; font-size: 11px; text-align: center; }
}

/* ---- LANGUAGE SWITCHER ---- */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  line-height: 1.5;
}
.lang-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.lang-btn.active {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196, 30, 58, 0.35);
}

/* ---- RTL (Arabic) ---- */
.rtl { direction: rtl; text-align: right; }
.rtl .topbar { flex-direction: row-reverse; }
.rtl .topbar-left { flex-direction: row-reverse; }
.rtl .topbar-right { flex-direction: row-reverse; }
.rtl nav.main-nav { flex-direction: row-reverse; }
.rtl .nav-links { flex-direction: row-reverse; }
.rtl .hero-content { padding: 0 60px 0 0; margin-right: 0; margin-left: auto; }
.rtl .booking-widget { left: 55px; right: auto; }
.rtl .slider-prev { right: 14px; left: auto; }
.rtl .slider-next { left: 395px; right: auto; }
.rtl .slider-dots { right: 60px; left: auto; }
.rtl .offer-header { flex-direction: row-reverse; }
.rtl .about-inner { direction: rtl; }
.rtl .feat { flex-direction: row; }
.rtl .footer-grid { direction: rtl; }
.rtl .footer-bottom { flex-direction: row-reverse; }
.rtl .newsletter-form { flex-direction: row-reverse; }
.rtl .trip-card-location,
.rtl .trip-card-footer { flex-direction: row-reverse; }
.rtl .offer-card-meta { flex-direction: row-reverse; }
.rtl .offer-card-actions { flex-direction: row-reverse; }
.rtl .offer-prev { right: -18px; left: auto; }
.rtl .offer-next { left: -18px; right: auto; }
.rtl .booking-widget select,
.rtl .booking-widget input { text-align: right; }

.rtl,
.rtl * {
  font-family: "Outfit", "Segoe UI", Tahoma, Arial, sans-serif;
}
.rtl .section-title,
.rtl .about-content h2,
.rtl .offer-section-title,
.rtl .newsletter h2,
.rtl .booking-widget h2,
.rtl .page-hero-content h1 {
  font-family: var(--font-display), "Georgia", serif;
}
