/*
Theme Name: Privat Ready Tours
Theme URI: https://www.privatreadytours.com/
Author: Privat Ready Tours
Author URI: https://www.privatreadytours.com/
Description: Thème WordPress sur mesure pour Privat Ready Tours, agence de voyages privés au Maroc — circuits sur-mesure, tours en moto, bivouacs dans le désert, transferts et expériences authentiques (surf, cuisine, montgolfière, quad, balade à dos de chameau). Converti à partir du site vitrine statique.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: privat-ready-tours
*/

  :root {
    --navy: #060d1f;
    --navy2: #0a1530;
    --gold: #d4881a;
    --gold-bright: #f5a623;
    --gold-pale: #f0c97a;
    --white: #f5f0e8;
    --cream: #fdf6e8;
    --rust: #8b3a0f;
    --sand: #c8956c;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 9999; opacity: .35;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 3rem;
    height: 80px;
    background: linear-gradient(180deg, rgba(6,13,31,.98) 0%, rgba(6,13,31,.85) 100%);
    border-bottom: 1px solid rgba(212,136,26,.25);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 68px; width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(212,136,26,.5)) brightness(1.05);
  }

  .nav-menu {
    display: flex; align-items: center; gap: 0;
    list-style: none;
  }

  .nav-menu li a {
    display: block;
    padding: 0 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-pale);
    text-decoration: none;
    position: relative;
    transition: color .3s;
  }

  .nav-menu li a::after {
    content: '';
    position: absolute; bottom: -4px; left: 1.1rem; right: 1.1rem;
    height: 1px; background: var(--gold-bright);
    transform: scaleX(0); transform-origin: center;
    transition: transform .3s;
  }

  .nav-menu li a:hover { color: var(--gold-bright); }
  .nav-menu li a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: .5rem 1.4rem !important;
    border-radius: 2px;
    font-weight: 700 !important;
    letter-spacing: .1em;
    transition: background .3s, transform .2s !important;
  }
  .nav-cta:hover { background: var(--gold-bright) !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
    text-align: center;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,136,26,.08) 0%, transparent 70%),
      linear-gradient(180deg, rgba(6,13,31,0) 0%, rgba(6,13,31,.7) 60%, var(--navy) 100%);
    z-index: 1;
  }

  /* Geometric zellige pattern */
  .hero-pattern {
    position: absolute; inset: 0; z-index: 0; overflow: hidden;
  }
  .hero-pattern svg {
    width: 100%; height: 100%;
    opacity: .07;
  }

  /* Floating orbs */
  .orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,136,26,.25), transparent 70%);
    animation: drift 12s ease-in-out infinite;
  }
  .orb1 { width: 500px; height: 500px; top: -100px; left: -100px; animation-delay: 0s; }
  .orb2 { width: 350px; height: 350px; bottom: 0; right: -50px; animation-delay: -5s; }
  .orb3 { width: 200px; height: 200px; top: 40%; left: 60%; animation-delay: -3s; }

  @keyframes drift {
    0%, 100% { transform: translate(0,0); }
    33% { transform: translate(20px,-30px); }
    66% { transform: translate(-15px,20px); }
  }

  .hero-content {
    position: relative; z-index: 2;
    padding: 0 1rem;
    animation: fadeUp .9s ease both;
  }

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

  .hero-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: .75rem; letter-spacing: .3em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: flex; align-items: center; justify-content: center; gap: .8rem;
  }
  .hero-eyebrow span { display: inline-block; width: 40px; height: 1px; background: var(--gold); }

  .hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
    color: var(--cream);
    text-shadow: 0 0 60px rgba(212,136,26,.3);
    margin-bottom: .4rem;
  }
  .hero-title .gold { color: var(--gold-bright); }

  .hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gold-pale);
    letter-spacing: .06em;
    margin-bottom: 2.5rem;
  }

  .hero-btns {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    border: none; cursor: pointer;
    padding: .85rem 2.4rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: .9rem;
    letter-spacing: .12em; text-transform: uppercase;
    border-radius: 2px;
    transition: background .3s, transform .2s, box-shadow .3s;
    box-shadow: 0 4px 20px rgba(212,136,26,.35);
    text-decoration: none;
  }
  .btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,136,26,.5);
  }

  .btn-outline {
    background: transparent;
    color: var(--gold-pale);
    border: 1px solid rgba(212,136,26,.5);
    cursor: pointer;
    padding: .85rem 2.4rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; font-size: .9rem;
    letter-spacing: .12em; text-transform: uppercase;
    border-radius: 2px;
    transition: border-color .3s, color .3s, transform .2s;
    text-decoration: none;
  }
  .btn-outline:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    transform: translateY(-2px);
  }

  .hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    z-index: 2;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: .7rem; letter-spacing: .2em; color: rgba(212,136,26,.6);
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
  }
  .hero-scroll::after {
    content: '';
    display: block; width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(212,136,26,.6), transparent);
  }
  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* ─── BOOKING STRIP ─── */
  .booking-strip {
    background: rgba(10,21,48,.9);
    border-top: 1px solid rgba(212,136,26,.2);
    border-bottom: 1px solid rgba(212,136,26,.2);
    padding: 2rem 3rem;
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  }

  .booking-strip label {
    font-family: 'Rajdhani', sans-serif;
    font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 4px;
  }

  .booking-field {
    display: flex; flex-direction: column;
  }

  .booking-field select,
  .booking-field input {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,136,26,.3);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    padding: .55rem .9rem;
    outline: none;
    min-width: 160px;
    transition: border-color .3s;
  }
  .booking-field select option { background: var(--navy2); }
  .booking-field select:focus,
  .booking-field input:focus { border-color: var(--gold); }

  .booking-strip .btn-primary { align-self: flex-end; white-space: nowrap; }

  /* ─── SECTIONS ─── */
  section { padding: 7rem 3rem; }

  .section-header {
    text-align: center; margin-bottom: 4rem;
  }
  .section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: .8rem;
  }
  .section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: var(--cream);
    margin-bottom: 1rem;
  }
  .section-title .gold { color: var(--gold-bright); }
  .section-divider {
    display: flex; align-items: center; justify-content: center; gap: .8rem;
    margin-bottom: 1rem;
  }
  .section-divider::before, .section-divider::after {
    content: ''; display: block; width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,136,26,.5));
  }
  .section-divider::after {
    background: linear-gradient(to left, transparent, rgba(212,136,26,.5));
  }
  .section-divider span { color: var(--gold); font-size: 1.2rem; }
  .section-desc {
    font-size: 1.1rem; color: rgba(245,240,232,.6);
    font-style: italic; max-width: 560px; margin: 0 auto;
  }

  /* ─── DESTINATIONS GRID ─── */
  #destinations { background: var(--navy); }

  .dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1300px; margin: 0 auto;
  }

  .dest-card {
    position: relative; overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
  }
  .dest-card.tall { grid-row: span 2; aspect-ratio: unset; }

  .dest-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
    filter: brightness(.85) saturate(1.1);
  }
  .dest-card:hover .dest-img { transform: scale(1.07); }

  .dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(6,13,31,.9) 0%, rgba(6,13,31,.1) 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.6rem;
    transition: background .4s;
  }
  .dest-card:hover .dest-overlay {
    background: linear-gradient(0deg, rgba(6,13,31,.95) 0%, rgba(6,13,31,.3) 80%);
  }

  .dest-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .3rem;
  }
  .dest-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem; color: var(--cream); margin-bottom: .4rem;
  }
  .dest-meta {
    font-size: .9rem; color: rgba(245,240,232,.6);
    font-style: italic;
  }
  .dest-arrow {
    position: absolute; top: 1.2rem; right: 1.2rem;
    width: 36px; height: 36px;
    background: rgba(212,136,26,.9);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    opacity: 0; transform: translateY(-6px);
    transition: opacity .3s, transform .3s;
    color: var(--navy); font-size: 1rem;
  }
  .dest-card:hover .dest-arrow { opacity: 1; transform: translateY(0); }

  /* ─── TOURS SERVICES ─── */
  #tours { background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%); }

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px; margin: 0 auto;
  }

  .tour-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(212,136,26,.15);
    border-radius: 4px;
    padding: 2.2rem 1.8rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .3s, background .3s, transform .3s;
    position: relative; overflow: hidden;
  }
  .tour-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: center;
    transition: transform .3s;
  }
  .tour-card:hover {
    border-color: rgba(212,136,26,.4);
    background: rgba(212,136,26,.04);
    transform: translateY(-4px);
  }
  .tour-card:hover::before { transform: scaleX(1); }

  .tour-icon {
    font-size: 2.6rem; margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px rgba(212,136,26,.4));
  }
  .tour-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: .95rem; color: var(--gold-pale);
    margin-bottom: .7rem;
  }
  .tour-desc {
    font-size: .9rem; color: rgba(245,240,232,.5);
    font-style: italic; line-height: 1.6;
  }

  /* ─── EXPERIENCES ─── */
  #experiences { background: var(--navy2); position: relative; overflow: hidden; }
  #experiences::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .exp-list {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  }

  .exp-item {
    display: flex; align-items: flex-start; gap: 1.5rem;
    padding: 1.8rem;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(212,136,26,.12);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .3s, background .3s;
  }
  .exp-item:hover {
    border-color: rgba(212,136,26,.35);
    background: rgba(212,136,26,.04);
  }

  .exp-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem; color: rgba(212,136,26,.25);
    line-height: 1; flex-shrink: 0; width: 48px;
  }
  .exp-item:hover .exp-num { color: rgba(212,136,26,.6); }

  .exp-body {}
  .exp-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem; font-weight: 700; letter-spacing: .08em;
    color: var(--gold-pale); margin-bottom: .4rem;
    text-transform: uppercase;
  }
  .exp-desc {
    font-size: .95rem; color: rgba(245,240,232,.5);
    font-style: italic; line-height: 1.7;
  }

  /* ─── TRANSFER ─── */
  #transfert {
    background: var(--navy);
    display: flex; flex-direction: column; align-items: center;
  }

  .transfer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    max-width: 1100px; width: 100%; margin-bottom: 3rem;
  }

  .transfer-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(212,136,26,.12);
    border-radius: 4px; padding: 2rem;
    text-align: center;
    transition: border-color .3s, transform .3s;
  }
  .transfer-card:hover { border-color: var(--gold); transform: translateY(-3px); }
  .transfer-card .t-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
  .transfer-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 1rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--gold-pale);
    margin-bottom: .5rem;
  }
  .transfer-card p { font-size: .9rem; color: rgba(245,240,232,.5); font-style: italic; }

  /* ─── BOOKING FORM ─── */
  #reservation {
    background: linear-gradient(135deg, var(--navy2) 0%, rgba(6,13,31,1) 100%);
    position: relative;
  }
  #reservation::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212,136,26,.05), transparent);
  }

  .form-container {
    max-width: 760px; margin: 0 auto;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(212,136,26,.2);
    border-radius: 6px;
    padding: 3rem 3.5rem;
    position: relative;
  }
  .form-container::before {
    content: '';
    position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-full { grid-column: 1 / -1; }

  .form-group { display: flex; flex-direction: column; }
  .form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,136,26,.25);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; padding: .65rem .9rem;
    outline: none; transition: border-color .3s;
    resize: vertical;
  }
  .form-group select option { background: var(--navy2); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }

  .form-submit {
    margin-top: 1.5rem; text-align: center;
  }
  .form-submit .btn-primary { font-size: 1rem; padding: 1rem 3.5rem; }

  /* ─── STATS ─── */
  .stats-bar {
    background: linear-gradient(90deg, var(--rust) 0%, var(--gold) 100%);
    padding: 2.5rem 3rem;
    display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem;
    text-align: center;
  }
  .stat-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.5rem; color: var(--navy);
    display: block;
  }
  .stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; font-size: .8rem; letter-spacing: .15em;
    text-transform: uppercase; color: rgba(6,13,31,.75);
  }

  /* ─── FOOTER ─── */
  footer {
    background: #040b18;
    border-top: 1px solid rgba(212,136,26,.15);
    padding: 3rem 3rem 1.5rem;
  }

  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem; max-width: 1200px; margin: 0 auto 2.5rem;
  }

  .footer-brand img { height: 75px; margin-bottom: 1rem; object-fit: contain; }
  .footer-brand p {
    font-size: .9rem; color: rgba(245,240,232,.4);
    font-style: italic; line-height: 1.8; max-width: 280px;
  }

  .footer-col h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: .75rem; letter-spacing: .25em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: .55rem; }
  .footer-col ul li a {
    color: rgba(245,240,232,.45);
    text-decoration: none; font-size: .9rem;
    transition: color .3s;
  }
  .footer-col ul li a:hover { color: var(--gold-pale); }

  .footer-bottom {
    border-top: 1px solid rgba(212,136,26,.1);
    padding-top: 1.2rem;
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto;
    font-size: .8rem; color: rgba(245,240,232,.25);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: .1em;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-menu { display: none; }
    section { padding: 5rem 1.5rem; }
    .exp-list { grid-template-columns: 1fr; }
    .transfer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-strip { padding: 1.5rem; }
  }

  /* ─── LANG SELECTOR ─── */
  .lang-selector {
    position: relative;
    display: flex; align-items: center;
  }
  .lang-btn {
    background: transparent;
    border: 1px solid rgba(212,136,26,.4);
    color: var(--gold-pale);
    font-family: 'Rajdhani', sans-serif;
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
    padding: .38rem .85rem;
    border-radius: 2px; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: border-color .3s, color .3s;
  }
  .lang-btn:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
  .lang-btn .flag { font-size: 1rem; }
  .lang-btn .arrow { font-size: .6rem; transition: transform .25s; }
  .lang-selector.open .lang-btn .arrow { transform: rotate(180deg); }
  .lang-dropdown {
    display: none;
    position: absolute; top: calc(100% + 8px); right: 0;
    background: rgba(6,13,31,.98);
    border: 1px solid rgba(212,136,26,.25);
    border-radius: 4px;
    min-width: 160px;
    z-index: 2000;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
  }
  .lang-selector.open .lang-dropdown { display: block; }
  .lang-dropdown button {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: .65rem 1.1rem;
    background: transparent; border: none; cursor: pointer;
    font-family: 'Rajdhani', sans-serif; font-size: .85rem;
    letter-spacing: .08em; color: var(--gold-pale);
    text-align: left; transition: background .2s, color .2s;
  }
  .lang-dropdown button:hover { background: rgba(212,136,26,.12); color: var(--gold-bright); }
  .lang-dropdown button.active { color: var(--gold-bright); font-weight: 700; }

  /* ─── CLIENT SPACE ─── */
  .client-btn {
    background: transparent;
    border: 1px solid rgba(212,136,26,.5);
    color: var(--gold-pale);
    font-family: 'Rajdhani', sans-serif;
    font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .38rem .9rem;
    border-radius: 2px; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
    transition: all .3s;
    white-space: nowrap;
  }
  .client-btn:hover { background: rgba(212,136,26,.12); border-color: var(--gold-bright); color: var(--gold-bright); }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(6,13,31,.85);
    backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: var(--navy2);
    border: 1px solid rgba(212,136,26,.3);
    border-radius: 6px;
    padding: 2.5rem 3rem;
    width: 100%; max-width: 420px;
    position: relative;
    animation: fadeUp .35s ease both;
  }
  .modal-box::before {
    content: '';
    position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; cursor: pointer;
    color: rgba(245,240,232,.4); font-size: 1.4rem; line-height: 1;
    transition: color .2s;
  }
  .modal-close:hover { color: var(--gold-bright); }
  .modal-tabs {
    display: flex; gap: 0; margin-bottom: 2rem;
    border-bottom: 1px solid rgba(212,136,26,.2);
  }
  .modal-tab {
    flex: 1; text-align: center;
    padding: .7rem 1rem;
    font-family: 'Rajdhani', sans-serif; font-size: .82rem;
    letter-spacing: .15em; text-transform: uppercase;
    color: rgba(245,240,232,.4);
    background: none; border: none; cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px; transition: all .25s;
  }
  .modal-tab.active { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }
  .modal-form { display: none; flex-direction: column; gap: 1rem; }
  .modal-form.active { display: flex; }
  .modal-form label {
    font-family: 'Rajdhani', sans-serif; font-size: .7rem;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: 4px;
  }
  .modal-form input {
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(212,136,26,.25);
    border-radius: 2px;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif; font-size: 1rem;
    padding: .6rem .9rem; outline: none;
    transition: border-color .3s;
    box-sizing: border-box;
  }
  .modal-form input:focus { border-color: var(--gold); }
  .modal-form .btn-primary { width: 100%; text-align: center; margin-top: .5rem; }
  .modal-divider {
    text-align: center;
    font-family: 'Rajdhani', sans-serif; font-size: .7rem;
    letter-spacing: .15em; color: rgba(245,240,232,.25);
    margin: .5rem 0;
  }
  .modal-title {
    font-family: 'Cinzel Decorative', serif; font-size: 1.2rem;
    color: var(--cream); text-align: center; margin-bottom: 1.5rem;
  }
  .modal-switch {
    text-align: center; margin-top: 1.2rem;
    font-family: 'Rajdhani', sans-serif; font-size: .8rem;
    letter-spacing: .05em; color: rgba(245,240,232,.4);
  }
  .modal-switch a { color: var(--gold); cursor: pointer; text-decoration: underline; }
  .modal-switch a:hover { color: var(--gold-bright); }

  /* ─── NAV RIGHT GROUP ─── */
  .nav-right {
    display: flex; align-items: center; gap: .75rem;
  }


  /* ─── EXPERIENCE CARDS (detailed) ─── */
  .exp-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .exp-card {
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(212,136,26,.15);
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s, box-shadow .3s;
    position: relative;
  }
  .exp-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s;
  }
  .exp-card:hover {
    border-color: rgba(212,136,26,.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }
  .exp-card:hover::before { transform: scaleX(1); }

  .exp-card-icon {
    font-size: 2.8rem;
    padding: 1.6rem 1.8rem .8rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(212,136,26,.4));
  }

  .exp-card-body {
    padding: 0 1.8rem 1.8rem;
    display: flex; flex-direction: column; gap: .75rem;
    flex: 1;
  }

  .exp-card-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 1rem;
  }

  .exp-card-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.3;
  }

  .exp-card-price-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    color: var(--navy);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 1rem;
    letter-spacing: .06em;
    padding: .25rem .75rem;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .exp-card-locs {
    font-family: 'Rajdhani', sans-serif;
    font-size: .75rem; letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .8;
  }

  .exp-card-desc {
    font-size: .9rem;
    color: rgba(245,240,232,.55);
    font-style: italic;
    line-height: 1.7;
    flex: 1;
  }

  /* price variants (balloon, quad) */
  .exp-card-variants {
    display: flex; gap: .6rem; flex-wrap: wrap;
    margin-top: .4rem;
  }
  .exp-variant {
    flex: 1; min-width: 120px;
    background: rgba(212,136,26,.07);
    border: 1px solid rgba(212,136,26,.2);
    border-radius: 4px;
    padding: .6rem .9rem;
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  }
  .exp-variant-alt {
    background: rgba(212,136,26,.04);
    border-color: rgba(212,136,26,.12);
  }
  .exp-variant-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: .8rem; letter-spacing: .08em;
    color: var(--gold-pale);
  }
  .exp-variant-price {
    font-family: 'Cinzel Decorative', serif;
    font-size: .9rem; color: var(--gold-bright);
    white-space: nowrap;
  }

  /* location pills */
  .exp-locations-pills {
    display: flex; flex-wrap: wrap; gap: .4rem;
    margin-top: .2rem;
  }
  .exp-pill {
    background: rgba(212,136,26,.08);
    border: 1px solid rgba(212,136,26,.2);
    color: var(--gold-pale);
    font-family: 'Rajdhani', sans-serif;
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    padding: .22rem .65rem;
    border-radius: 20px;
    transition: background .2s, border-color .2s;
  }
  .exp-card:hover .exp-pill {
    background: rgba(212,136,26,.14);
    border-color: rgba(212,136,26,.35);
  }

  @media (max-width: 900px) {
    .exp-cards-grid { grid-template-columns: 1fr; }
  }


  /* ─── MOTO PROGRAMME CARDS ─── */
  .moto-programme-day {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(212,136,26,.08);
    transition: background .2s;
  }
  .moto-programme-day:last-child { border-bottom: none; }
  .moto-programme-day:hover { background: rgba(212,136,26,.04); }

  .moto-day-num {
    padding: 1rem 1rem 1rem 1.4rem;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    border-right: 1px solid rgba(212,136,26,.1);
  }
  .moto-day-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); opacity: .7; line-height: 1;
  }
  .moto-day-n {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.5rem; color: rgba(212,136,26,.35);
    line-height: 1.1;
  }
  .moto-programme-day:hover .moto-day-n { color: rgba(212,136,26,.7); }

  .moto-day-content {
    padding: 1rem 1.4rem;
  }
  .moto-day-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: .95rem; letter-spacing: .06em;
    color: var(--gold-pale); text-transform: uppercase;
    margin-bottom: .35rem;
  }
  .moto-day-desc {
    font-size: .88rem; color: rgba(245,240,232,.55);
    font-style: italic; line-height: 1.65;
  }
  .moto-day-meta {
    display: flex; gap: .8rem; margin-top: .45rem; flex-wrap: wrap;
  }
  .moto-meta-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); opacity: .75;
    display: flex; align-items: center; gap: 4px;
  }

  .moto-includes-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .5rem .8rem;
    margin-top: .8rem;
  }
  .moto-include-item {
    display: flex; align-items: flex-start; gap: .5rem;
    font-size: .88rem; color: rgba(245,240,232,.6); line-height: 1.5;
  }
  .moto-include-item span:first-child { color: var(--gold); font-size: .8rem; flex-shrink: 0; margin-top: 2px; }

  @media (max-width: 700px) {
    .moto-programme-day { grid-template-columns: 70px 1fr; }
    .moto-includes-grid { grid-template-columns: 1fr; }
  }


  /* Card montgolfière cliquable */
  .exp-card-gallery { cursor: pointer; position: relative; }
  .exp-card-gallery::after {
    content: '🖼 Voir la galerie';
    position: absolute; bottom: 1rem; right: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,136,26,.1);
    border: 1px solid rgba(212,136,26,.3);
    padding: .3rem .7rem; border-radius: 2px;
    transition: background .3s, color .3s;
  }
  .exp-card-gallery:hover::after {
    background: var(--gold); color: var(--navy);
  }

  /* Modal galerie */
  .gallery-modal {
    display: none;
    position: fixed; inset: 0; z-index: 9500;
    background: rgba(4,10,24,.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 2rem 1.5rem 3rem;
  }
  .gallery-modal.active { display: flex; }
  .gallery-modal-header {
    width: 100%; max-width: 1200px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212,136,26,.2);
    flex-shrink: 0;
  }
  .gallery-modal-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.4rem; color: var(--cream);
    display: flex; align-items: center; gap: .8rem;
  }
  .gallery-modal-title span.gtag {
    font-family: 'Rajdhani', sans-serif;
    font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--gold); display: block; margin-bottom: .3rem;
  }
  .gallery-modal-close {
    background: rgba(212,136,26,.1);
    border: 1px solid rgba(212,136,26,.3);
    color: var(--gold-pale); font-size: 1.4rem;
    width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .25s, color .25s;
    flex-shrink: 0;
  }
  .gallery-modal-close:hover { background: var(--gold); color: var(--navy); }
  .gallery-modal .gallery-grid {
    width: 100%;
    animation: fadeUp .4s ease both;
  }


  /* ─── Gallery badge on clickable cards ─── */
  .exp-card-gallery { cursor: pointer; position: relative; }
  .exp-card-gallery::after {
    content: '🖼 Voir la galerie';
    position: absolute; bottom: 1rem; right: 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,136,26,.1);
    border: 1px solid rgba(212,136,26,.3);
    padding: .3rem .7rem; border-radius: 2px;
    transition: background .3s, color .3s;
  }
  .exp-card-gallery:hover::after { background: var(--gold); color: var(--navy); }

  /* ─── Gallery Modal ─── */
  .gallery-modal {
    display: none; position: fixed; inset: 0; z-index: 9500;
    background: rgba(4,10,24,.97); backdrop-filter: blur(14px);
    flex-direction: column; align-items: center;
    overflow-y: auto; padding: 2rem 1.5rem 3rem;
  }
  .gallery-modal.active { display: flex; }
  .gallery-modal-header {
    width: 100%; max-width: 1200px;
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 2rem; padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212,136,26,.2); flex-shrink: 0;
  }
  .gallery-modal-close {
    background: rgba(212,136,26,.1); border: 1px solid rgba(212,136,26,.3);
    color: var(--gold-pale); font-size: 1.4rem;
    width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .25s, color .25s; flex-shrink: 0;
  }
  .gallery-modal-close:hover { background: var(--gold); color: var(--navy); }

  /* ─── Gallery Grid ─── */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px; width: 100%; max-width: 1200px;
  }
  .gallery-item {
    position: relative; overflow: hidden; border-radius: 4px;
    aspect-ratio: 3/4; cursor: pointer;
    border: 1px solid rgba(212,136,26,.15);
    transition: border-color .3s, transform .3s;
  }
  .gallery-item:hover { border-color: rgba(212,136,26,.5); transform: translateY(-3px); }
  .gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease; filter: brightness(.9) saturate(1.1);
  }
  .gallery-item:hover img { transform: scale(1.06); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(6,13,31,.35);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity .3s; font-size: 1.8rem;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .quad-empty { display: flex; align-items: center; justify-content: center; min-height: 200px; }
  .gallery-empty-msg {
    font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; letter-spacing: .15em;
    color: rgba(212,136,26,.5); text-align: center; padding: 3rem;
    border: 1px dashed rgba(212,136,26,.25); border-radius: 4px; width: 100%;
  }

  /* ─── Lightbox ─── */
  .lightbox {
    display: none; position: fixed; inset: 0; z-index: 9800;
    background: rgba(4,10,24,.96); backdrop-filter: blur(10px);
    align-items: center; justify-content: center; flex-direction: column; gap: 1.2rem;
  }
  .lightbox.active { display: flex; }
  .lightbox img {
    max-width: 88vw; max-height: 80vh; object-fit: contain;
    border-radius: 4px; border: 1px solid rgba(212,136,26,.3);
    box-shadow: 0 20px 60px rgba(0,0,0,.7); animation: fadeUp .3s ease both;
  }
  .lightbox-nav { display: flex; align-items: center; gap: 2rem; }
  .lightbox-btn {
    background: rgba(212,136,26,.15); border: 1px solid rgba(212,136,26,.4);
    color: var(--gold-pale); width: 44px; height: 44px; border-radius: 50%;
    font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s, color .25s;
  }
  .lightbox-btn:hover { background: var(--gold); color: var(--navy); }
  .lightbox-counter {
    font-family: 'Rajdhani', sans-serif; font-size: .8rem; letter-spacing: .2em;
    color: rgba(212,136,26,.7); min-width: 60px; text-align: center;
  }
  .lightbox-close {
    position: absolute; top: 1.2rem; right: 1.5rem;
    background: none; border: none; cursor: pointer;
    color: rgba(245,240,232,.4); font-size: 2rem; line-height: 1; transition: color .2s;
  }
  .lightbox-close:hover { color: var(--gold-bright); }

  /* ─── Reviews Panel ─── */
  .reviews-panel {
    width: 100%; max-width: 1200px;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(212,136,26,.15);
  }
  .reviews-panel-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
  }
  .reviews-panel-title {
    font-family: 'Cinzel', serif; font-size: 1rem; letter-spacing: .12em;
    color: var(--cream); text-transform: uppercase; margin-bottom: .3rem;
  }
  .review-avg {
    display: flex; align-items: center; gap: .4rem;
    font-family: 'Rajdhani', sans-serif; font-size: .8rem; color: rgba(212,136,26,.7);
  }
  .review-avg-score { font-size: 1.2rem; font-weight: 700; color: var(--gold-bright); }
  .add-review-btn {
    background: rgba(212,136,26,.1); border: 1px solid rgba(212,136,26,.35);
    color: var(--gold); border-radius: 4px;
    font-family: 'Rajdhani', sans-serif; font-size: .75rem; letter-spacing: .18em;
    text-transform: uppercase; padding: .5rem 1.2rem; cursor: pointer;
    transition: background .25s, color .25s;
  }
  .add-review-btn:hover { background: var(--gold); color: var(--navy); }
  .reviews-list { display: flex; flex-direction: column; gap: 1rem; }
  .review-card {
    background: rgba(255,255,255,.03); border: 1px solid rgba(212,136,26,.1);
    border-radius: 6px; padding: 1.2rem 1.4rem; animation: fadeUp .3s ease both;
  }
  .review-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: .6rem; flex-wrap: wrap; }
  .review-card-name {
    font-family: 'Rajdhani', sans-serif; font-weight: 700;
    font-size: .9rem; letter-spacing: .08em; color: var(--cream); flex: 1;
  }
  .review-card-stars { color: var(--gold-bright); font-size: .9rem; }
  .review-card-date {
    font-family: 'Rajdhani', sans-serif; font-size: .7rem;
    color: rgba(212,136,26,.5); letter-spacing: .1em;
  }
  .review-card-text {
    font-family: 'Libre Baskerville', serif; font-size: .85rem;
    line-height: 1.65; color: rgba(245,240,232,.72);
  }
  .reviews-empty {
    font-family: 'Rajdhani', sans-serif; font-size: .9rem; letter-spacing: .1em;
    color: rgba(212,136,26,.4); text-align: center; padding: 2rem;
    border: 1px dashed rgba(212,136,26,.15); border-radius: 4px;
  }

  /* ─── Review Input Modal ─── */
  .review-modal {
    display: none; position: fixed; inset: 0; z-index: 9900;
    background: rgba(4,10,24,.97); backdrop-filter: blur(16px);
    align-items: center; justify-content: center; padding: 1.5rem;
  }
  .review-modal.active { display: flex; }
  .review-modal-inner {
    background: var(--navy2); border: 1px solid rgba(212,136,26,.25);
    border-radius: 8px; padding: 2.5rem 2rem; width: 100%; max-width: 540px;
    position: relative; animation: fadeUp .3s ease both;
  }
  .review-modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: none; border: none; cursor: pointer;
    color: rgba(245,240,232,.3); font-size: 1.4rem; transition: color .2s;
  }
  .review-modal-close:hover { color: var(--gold-bright); }
  .review-modal-subtitle {
    font-family: 'Rajdhani', sans-serif; font-size: .75rem;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .4rem;
  }
  .review-modal-title {
    font-family: 'Cinzel Decorative', serif; font-size: 1.15rem;
    color: var(--cream); margin-bottom: 1.5rem;
  }
  .star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .3rem; margin-bottom: 1.5rem; }
  .star-rating input { display: none; }
  .star-rating label { font-size: 2rem; cursor: pointer; color: rgba(212,136,26,.22); transition: color .15s, transform .15s; }
  .star-rating label:hover,
  .star-rating label:hover ~ label,
  .star-rating input:checked ~ label { color: var(--gold-bright); }
  .star-rating label:hover { transform: scale(1.2); }
  .review-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
  .review-field label {
    font-family: 'Rajdhani', sans-serif; font-size: .72rem;
    letter-spacing: .18em; text-transform: uppercase; color: rgba(212,136,26,.7);
  }
  .review-field input, .review-field textarea {
    background: rgba(255,255,255,.04); border: 1px solid rgba(212,136,26,.2);
    border-radius: 4px; color: var(--cream);
    font-family: 'Rajdhani', sans-serif; font-size: .95rem;
    padding: .65rem .9rem; transition: border-color .25s; outline: none; resize: vertical;
  }
  .review-field input:focus, .review-field textarea:focus { border-color: rgba(212,136,26,.6); }
  .review-field textarea { min-height: 100px; }
  .review-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    color: var(--navy); border: none; border-radius: 4px;
    font-family: 'Cinzel', serif; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
    padding: .85rem; cursor: pointer; transition: opacity .2s, transform .2s;
  }
  .review-submit-btn:hover { opacity: .88; transform: translateY(-1px); }
  .review-success { display: none; text-align: center; padding: 2rem 0; }
  .review-success.show { display: block; }
  .review-success-icon { font-size: 3rem; margin-bottom: .8rem; }
  .review-success-msg { font-family: 'Cinzel Decorative', serif; font-size: 1rem; color: var(--cream); margin-bottom: .4rem; }
  .review-success-sub { font-family: 'Rajdhani', sans-serif; font-size: .85rem; color: rgba(212,136,26,.7); letter-spacing: .1em; }

