/* ════════════════════════════════════════════════════
   TUNITALIA EXPRESS — style.css  (Logo-matched theme)
   Red   #D0021B  — TUNI / Tunisie
   Green #1A7A2A  — TALIA / Italie
   Navy  #0A1E3C  — EXPRESS / avion / vagues
   White #FFFFFF
════════════════════════════════════════════════════ */

/* ─── Reset & Variables ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #D0021B;
  --red-dark:   #a5000f;
  --red-light:  rgba(208,2,27,0.08);
  --green:      #1A7A2A;
  --green-dark: #125c1f;
  --green-light:rgba(26,122,42,0.08);
  --navy:       #0A1E3C;
  --navy-mid:   #152d55;
  --navy-light: rgba(10,30,60,0.08);
  --white:      #ffffff;
  --grey-bg:    #F4F6F9;
  --grey-text:  #6b7280;
  --text:       #1a2535;
  --silver:     #C0C5CC;
  --shadow-sm:  0 2px 10px rgba(10,30,60,0.07);
  --shadow-md:  0 8px 30px rgba(10,30,60,0.12);
  --shadow-lg:  0 20px 60px rgba(10,30,60,0.18);
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --tr:         0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: .9rem; letter-spacing: .03em;
  cursor: pointer; border: 2px solid transparent;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr), color var(--tr);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: rgba(10,30,60,.35); }
.btn-outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ─── Sections ─── */
.section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-grey  { background: var(--grey-bg); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--red-light); color: var(--red);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: .85rem;
}
.section-eyebrow.eyebrow-green { background: var(--green-light); color: var(--green); }
.section-eyebrow.eyebrow-navy  { background: var(--navy-light); color: var(--navy); }

.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-title span       { color: var(--red); }
.section-title span.green { color: var(--green); }
.section-subtitle { color: var(--grey-text); max-width: 560px; margin: 0 auto; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════ LOGO WORDMARK ══════════════ */
.lw-tuni         { color: var(--red);   font-family: 'Montserrat', sans-serif; font-weight: 900; }
.lw-talia        { color: var(--green); font-family: 'Montserrat', sans-serif; font-weight: 900; }
.lw-express      { display: block; font-size: .55em; letter-spacing: .18em;
                   background: var(--navy); color: var(--white);
                   padding: .12em .5em; border-radius: 4px; text-align: center; margin-top: 1px; }
.lw-express-footer { display: block; font-size: .5em; letter-spacing: .18em;
                     background: var(--navy); color: var(--white);
                     padding: .1em .5em; border-radius: 3px; text-align: center; margin-top: 2px; }

/* ══════════════ NAVBAR ══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: .75rem 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,30,60,.1);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--red) 0%, var(--white) 50%, var(--green) 100%) 1;
  transition: padding var(--tr), box-shadow var(--tr);
}
.navbar.scrolled {
  padding: .5rem 0;
  box-shadow: 0 4px 24px rgba(10,30,60,.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}

/* Nav logo */
.logo {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none;
}
.logo-img {
  width: 50px; height: 50px;
  object-fit: contain;
  border-radius: 10px;
  background: transparent;
  flex-shrink: 0;
}
.logo-wordmark {
  font-size: 1.1rem; line-height: 1.1;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .83rem;
  padding: .4rem .85rem; border-radius: 6px;
  transition: color var(--tr), background var(--tr);
  letter-spacing: .01em;
}
.nav-links a:hover { color: var(--red); background: var(--red-light); }
.nav-links .nav-cta {
  background: var(--red); color: var(--white);
  padding: .42rem 1.1rem; border-radius: 50px; margin-left: .3rem;
}
.nav-links .nav-cta:hover { background: var(--red-dark); color: var(--white); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f8fafd 0%, #edf2fa 55%, #f4f7fc 100%);
}

.hero-bg { position: absolute; inset: 0; }

/* Large blobs echoing country map shapes from logo */
.blob {
  position: absolute; border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  filter: blur(90px); opacity: .07;
}
.blob-tn { width: 700px; height: 700px; background: var(--red);   top: -200px; left: -180px; }
.blob-it { width: 650px; height: 650px; background: var(--green); bottom: -180px; right: -180px; }

/* Wave SVG at bottom */
.waves-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; line-height: 0;
  display: none;
}
.wave { width: 100%; height: 90px; }

/* Hero content */
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 8rem 1.5rem 6rem;
}

/* Hero big logo */
.hero-logo-wrap {
  margin-bottom: 1.8rem;
  animation: heroFadeDown .8s ease both;
}
.hero-logo-img {
  width: 160px; height: 160px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 22px;
  background: var(--white);
  padding: 10px;
  box-shadow: 0 8px 40px rgba(10,30,60,.14), 0 2px 10px rgba(10,30,60,.08);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(10,30,60,.06);
  border: 1px solid rgba(10,30,60,.12);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.2rem;
  animation: heroFadeDown .8s .1s ease both;
  backdrop-filter: blur(6px);
}

/* Title mirrors logo colors: TUNI red, TALIA green, EXPRESS navy */
.hero-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: .5rem;
  animation: heroFadeDown .8s .2s ease both;
}
.ht-tuni   { color: var(--red); }
.ht-talia  { color: #3bba5a; } /* slightly brighter for dark bg */
.ht-express {
  display: block;
  font-size: clamp(1rem, 3vw, 2rem);
  letter-spacing: .22em;
  color: var(--white);
  background: var(--navy);
  display: inline-block;
  padding: .18em .8em;
  border-radius: 8px;
  margin-top: .4rem;
  border: 1.5px solid rgba(10,30,60,.12);
}

.hero-slogan {
  color: var(--grey-text);
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  max-width: 580px; margin: 1.4rem auto 1.8rem;
  animation: heroFadeDown .8s .32s ease both;
}
.hero-slogan strong { color: var(--navy); }

/* Animated route bar */
.hero-route {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 2rem;
  animation: heroFadeDown .8s .42s ease both;
}
.route-flag {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .82rem; color: var(--navy);
}
.route-flag img { border-radius: 3px; box-shadow: 0 1px 6px rgba(0,0,0,.35); }
.route-anim {
  display: flex; align-items: center; gap: 5px;
}
.ra-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(10,30,60,.18);
  animation: raPulse 2.4s ease-in-out infinite;
}
.ra-dot.d1{animation-delay:0s}
.ra-dot.d2{animation-delay:.2s}
.ra-dot.d3{animation-delay:.4s}
.ra-dot.d4{animation-delay:.6s}
.ra-dot.d5{animation-delay:.8s}
.ra-dot.d6{animation-delay:1s}
@keyframes raPulse {
  0%,100%{opacity:.25;transform:scale(1)}
  50%{opacity:1;transform:scale(1.5);background:var(--navy)}
}
.ra-plane {
  color: var(--navy); opacity: .5; font-size: 1rem;
  animation: flyPlane 4s ease-in-out infinite;
  margin: 0 4px;
}
@keyframes flyPlane { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
.ra-ship {
  color: var(--navy); opacity: .45; font-size: 1.05rem;
  animation: swayShip 3s ease-in-out infinite;
  margin: 0 4px;
}
@keyframes swayShip { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* Compte à rebours prochain départ / retour */
.hero-countdown {
  display: flex; align-items: stretch; justify-content: center;
  gap: 1.2rem; flex-wrap: wrap; margin-bottom: 2.2rem;
  animation: heroFadeDown .8s .48s ease both;
}
.cd-card {
  background: var(--white);
  border: 1px solid rgba(10,30,60,.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(10,30,60,.08);
  padding: 1rem 1.4rem;
  min-width: 230px;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.cd-card.cd-dep { border-top: 3px solid var(--red); }
.cd-card.cd-ret { border-top: 3px solid var(--green-dark); }
.cd-label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: .4rem;
}
.cd-dep .cd-label { color: var(--red-dark); }
.cd-ret .cd-label { color: var(--green-dark); }
.cd-timer { display: flex; align-items: center; gap: .5rem; }
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 2.4rem; }
.cd-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.5rem; line-height: 1; color: var(--navy);
  font-variant-numeric: tabular-nums;
}
.cd-unit small { font-size: .62rem; color: var(--grey-text); letter-spacing: .03em; text-transform: uppercase; }
.cd-date { font-size: .74rem; color: var(--grey-text); text-transform: capitalize; }

.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
  animation: heroFadeDown .8s .52s ease both;
}

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  animation: heroFadeDown .8s .65s ease both;
}
.stat { text-align: center; }
.stat span {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem; font-weight: 900; color: var(--navy); line-height: 1;
}
.stat small { color: var(--grey-text); font-size: .76rem; letter-spacing: .04em; }
.stat-sep { width: 1px; height: 40px; background: rgba(10,30,60,.12); }

.scroll-arrow {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(10,30,60,.3); font-size: 1rem; z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(8px)}
}
@keyframes heroFadeDown {
  from{opacity:0;transform:translateY(-18px)}
  to{opacity:1;transform:translateY(0)}
}

/* ══════════════ ABOUT ══════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-visual { position: relative; }
.about-shield {
  position: relative;
  max-width: 380px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.shield-logo {
  width: 100%; max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(10,30,60,.25));
  border-radius: var(--radius-lg);
}

.about-pill {
  position: absolute;
  background: var(--white); box-shadow: var(--shadow-md);
  border-radius: 50px; padding: .5rem 1rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .76rem;
  display: flex; align-items: center; gap: .4rem;
  color: var(--navy); white-space: nowrap;
}
.about-pill i { flex-shrink: 0; }
.pill-1 { top: 0; left: -1.5rem; }
.pill-1 i { color: var(--navy); }
.pill-2 { top: 50%; right: -1.5rem; transform: translateY(-50%); }
.pill-2 i { color: var(--red); }
.pill-3 { bottom: 1rem; left: -1.5rem; }
.pill-3 i { color: var(--green); }

.about-flag-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; margin-top: 1.5rem;
  padding: .9rem 1.5rem;
  background: var(--grey-bg); border-radius: var(--radius);
}
.flag-block { display: flex; align-items: center; gap: .5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; color: var(--navy); }
.flag-block img { border-radius: 3px; box-shadow: 0 1px 5px rgba(0,0,0,.2); }
.flag-arrow { color: var(--red); font-size: 1.1rem; }

.about-text .section-title { text-align: left; font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 1.2rem; }
.about-text p { color: var(--grey-text); margin-bottom: 1rem; }

.about-checklist { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .65rem; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .94rem; color: var(--text);
}
.about-checklist li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }

/* ══════════════ SERVICES ══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(0,0,0,.05);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.2rem;
  transition: transform var(--tr), background var(--tr), color var(--tr);
}
.si-red   { background: var(--red-light);   color: var(--red);   }
.si-green { background: var(--green-light); color: var(--green); }
.si-navy  { background: var(--navy-light);  color: var(--navy);  }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-card:hover .si-red   { background: var(--red);   color: var(--white); }
.service-card:hover .si-green { background: var(--green); color: var(--white); }
.service-card:hover .si-navy  { background: var(--navy);  color: var(--white); }
.service-card h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--navy); margin-bottom: .55rem;
}
.service-card p { color: var(--grey-text); font-size: .9rem; line-height: 1.65; }

/* ══════════════ SCHEDULE TABLE ══════════════ */
.table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.schedule-table {
  width: 100%; border-collapse: collapse; background: var(--white); min-width: 560px;
}
.schedule-table thead tr { background: var(--navy); }
.schedule-table.schedule-table-green thead tr { background: var(--green-dark); }
.schedule-table thead th {
  padding: 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.75); text-align: left; white-space: nowrap;
}
.schedule-table thead th i { margin-right: .4rem; }
.schedule-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background var(--tr);
}
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: rgba(208,2,27,.03); }
.schedule-table tbody td { padding: 1rem 1.25rem; font-size: .92rem; color: var(--text); }

.city-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .3rem .75rem; border-radius: 50px;
  font-weight: 700; font-size: .8rem; font-family: 'Montserrat', sans-serif;
}
.chip-tn { background: var(--red-light);   color: var(--red);   }
.chip-it { background: var(--green-light); color: var(--green-dark); }
.status-badge {
  padding: .28rem .85rem; border-radius: 50px;
  font-size: .76rem; font-weight: 700; font-family: 'Montserrat', sans-serif; white-space: nowrap;
}
.status-badge.available {
  background: var(--green-light); color: var(--green-dark);
  border: 1px solid rgba(26,122,42,.2);
}

/* ══════════════ NEWS ══════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,30,60,.07);
  border: 1.5px solid rgba(10,30,60,.05);
  border-left: 4px solid transparent;
  display: flex; flex-direction: column;
  transition: transform var(--tr), box-shadow var(--tr), border-left-color var(--tr);
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(10,30,60,.13); }
.nc-red:hover   { border-left-color: var(--red); }
.nc-navy:hover  { border-left-color: var(--navy); }
.nc-green:hover { border-left-color: var(--green); }

/* Carte vedette (1ère) — layout horizontal */
.news-featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.news-featured .news-img-wrap {
  width: 320px; flex-shrink: 0; height: auto; min-height: 230px;
}
.news-featured .news-body { padding: 2rem 2.2rem; justify-content: center; }
.news-featured .news-body h3 { font-size: 1.28rem; line-height: 1.35; margin-bottom: .8rem; }
.news-featured .news-body p  { font-size: .95rem; }

.news-img-wrap {
  position: relative; height: 155px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* overlay coloré sur l'image */
.news-img-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
}
.ni-navy::before  { background: linear-gradient(140deg, rgba(10,30,60,.78) 0%, rgba(20,55,110,.72) 100%); }
.ni-red::before   { background: linear-gradient(140deg, rgba(140,0,10,.78) 0%, rgba(200,4,22,.72) 100%); }
.ni-green::before { background: linear-gradient(140deg, rgba(8,50,18,.78) 0%, rgba(20,100,40,.72) 100%); }
/* fallback gradient si image absente */
.ni-navy  { background-color: #0c2250; }
.ni-red   { background-color: #9a000e; }
.ni-green { background-color: #0b4018; }
.news-icon { font-size: 3.4rem; color: rgba(255,255,255,.55); position: relative; z-index: 2; }
.news-badge-new {
  position: absolute; top: .75rem; right: .75rem; z-index: 4;
  background: #fff; color: var(--red);
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .62rem; border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.news-cat {
  position: absolute; top: .75rem; left: .75rem; z-index: 4;
  background: rgba(255,255,255,.16); color: rgba(255,255,255,.95);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .66rem;
  letter-spacing: .09em; text-transform: uppercase;
  padding: .24rem .72rem; border-radius: 50px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
}
.news-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
  margin-bottom: .75rem;
}
.news-date {
  font-size: .74rem; color: var(--grey-text);
  display: flex; align-items: center; gap: .3rem;
}
.news-read-time {
  font-size: .72rem; color: var(--grey-text);
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  display: flex; align-items: center; gap: .28rem;
}
.news-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--silver); flex-shrink: 0; }
.news-body h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1rem; color: var(--navy); line-height: 1.38;
  margin-bottom: .7rem; flex: 1;
}
.news-body p { font-size: .87rem; color: var(--grey-text); line-height: 1.65; margin-bottom: 1.1rem; }
.news-cta {
  display: inline-flex; align-items: center; gap: .45rem; align-self: flex-start;
  background: var(--red); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  padding: .52rem 1.15rem; border-radius: 50px;
  transition: background var(--tr), gap var(--tr), transform var(--tr);
}
.news-cta:hover { background: var(--red-dark); gap: .65rem; transform: translateX(2px); }
.nc-navy  .news-cta { background: var(--navy); }
.nc-navy  .news-cta:hover { background: var(--navy-mid); }
.nc-green .news-cta { background: var(--green); }
.nc-green .news-cta:hover { background: var(--green-dark); }

/* ══════════════ AGENCIES ══════════════ */
.agency-country { margin-bottom: 3rem; }
.country-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem; padding-bottom: .75rem;
}
.ch-tn { border-bottom: 3px solid var(--red); }
.ch-it { border-bottom: 3px solid var(--green); }
.country-header img { border-radius: 4px; box-shadow: 0 1px 5px rgba(0,0,0,.18); }
.country-header h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--navy);
}
.agencies-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.2rem; }

.agency-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: box-shadow var(--tr), transform var(--tr);
}
.ac-tn { border-top-color: var(--red); }
.ac-it { border-top-color: var(--green); }
.agency-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.agency-city {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--navy); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .4rem;
}
.ac-tn .agency-city i { color: var(--red); }
.ac-it .agency-city i { color: var(--green); }
.agency-card ul { display: flex; flex-direction: column; gap: .55rem; }
.agency-card li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .87rem; color: var(--grey-text); line-height: 1.5;
}
.ac-tn .agency-card li i, .ac-tn li i { color: var(--red); }
.ac-it .agency-card li i, .ac-it li i { color: var(--green); }
.agency-card li i { margin-top: 2px; flex-shrink: 0; width: 14px; text-align: center; }
.agency-card li a { color: var(--grey-text); transition: color var(--tr); }
.ac-tn .agency-card li a:hover { color: var(--red); }
.ac-it .agency-card li a:hover { color: var(--green); }

/* ══════════════ CONTACT ══════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-logo-mini { margin-bottom: 1.5rem; }
.contact-logo-mini img { width: 90px; object-fit: contain; }
.contact-info h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--navy); margin-bottom: 1.6rem;
}
.contact-items { display: flex; flex-direction: column; gap: 1.15rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-red   { background: var(--red-light);   color: var(--red);   }
.ci-green { background: var(--green-light); color: var(--green); }
.ci-navy  { background: var(--navy-light);  color: var(--navy);  }
.contact-item > div { display: flex; flex-direction: column; }
.contact-item strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .83rem; color: var(--navy); margin-bottom: .12rem; }
.contact-item a, .contact-item span { font-size: .88rem; color: var(--grey-text); transition: color var(--tr); }
.contact-item a:hover { color: var(--red); }
.contact-social { display: flex; gap: .7rem; }
.contact-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grey-bg); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: .92rem;
  transition: background var(--tr), color var(--tr), transform var(--tr);
}
.contact-social a:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

/* Form */
.contact-form-wrap {
  background: var(--grey-bg); border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 4px solid var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 1.2rem; }
.form-group label {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .8rem; color: var(--navy); letter-spacing: .02em;
}
.form-group label span { color: var(--red); }
.form-group input, .form-group textarea {
  padding: .85rem 1rem; border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius-sm); font-size: .92rem; color: var(--text);
  background: var(--white); transition: border-color var(--tr), box-shadow var(--tr);
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,2,27,.09);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #adb5bd; }
#submitBtn { font-size: 1rem; }
.hidden { display: none !important; }
.form-success, .form-error {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .3rem;
  padding: 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-size: .9rem;
}
.form-success { background: rgba(26,122,42,.08); color: var(--green-dark); border: 1px solid rgba(26,122,42,.2); }
.form-error   { background: rgba(208,2,27,.07);  color: var(--red-dark);   border: 1px solid rgba(208,2,27,.2); }
.form-success i, .form-error i { font-size: 1.8rem; margin-bottom: .2rem; }
.form-success strong, .form-error strong { font-family: 'Montserrat', sans-serif; font-weight: 700; }

/* ══════════════ FOOTER ══════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 2.5rem; }

.footer-logo-link {
  display: flex; align-items: center; gap: .65rem;
  text-decoration: none; margin-bottom: 1rem;
}
.footer-logo-img {
  width: 50px; height: 50px; object-fit: contain;
  border-radius: 10px; background: rgba(255,255,255,.08); padding: 3px;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.footer-wordmark { font-size: 1rem; line-height: 1.1; }

.footer-brand p { font-size: .87rem; line-height: 1.75; max-width: 270px; margin-top: .5rem; }
.footer-social { display: flex; gap: .55rem; margin-top: 1.4rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center; font-size: .82rem;
  transition: background var(--tr), color var(--tr);
}
.footer-social a:hover { background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.9); margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .86rem; color: rgba(255,255,255,.52);
  transition: color var(--tr), padding-left var(--tr);
  display: flex; align-items: center; gap: .4rem;
}
.footer-col ul li a i { font-size: .68rem; color: var(--red); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .86rem; color: rgba(255,255,255,.52);
}
.footer-contact-list li i { margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,.52); transition: color var(--tr); }
.footer-contact-list li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.2rem 0; text-align: center;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.fb-tuni  { color: var(--red); font-weight: 700; }
.fb-talia { color: #3bba5a; font-weight: 700; }

/* ══════════════ HERO HEADLINE ══════════════ */
.hero-headline {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.2; margin-bottom: 1rem;
  animation: heroFadeDown .8s .3s ease both;
}
.hh-main   { color: var(--navy); }
.hh-red    { color: var(--red); }
.hh-green  { color: #2ea84f; }

/* ══════════════ LIEUX DE TRANSPORT ══════════════ */
.lieux-grid {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 1.5rem; align-items: center;
  max-width: 860px; margin: 0 auto 2rem;
}
.lieux-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 14px rgba(10,30,60,.07);
  text-align: center;
}
.lieux-tn { border-top: 4px solid var(--red); }
.lieux-it { border-top: 4px solid var(--green); }
.lieux-header {
  display: flex; align-items: center; justify-content: center;
  gap: .75rem; margin-bottom: 1.1rem;
}
.lieux-header img { border-radius: 4px; box-shadow: 0 1px 5px rgba(0,0,0,.18); }
.lieux-header h3 {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.15rem; color: var(--navy);
}
.lieux-cities {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--text); line-height: 1.9;
  letter-spacing: .01em;
}
.lieux-sep {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--grey-text);
}
.lieux-tagline {
  text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--grey-text); margin-top: .5rem;
}
@media (max-width: 600px) {
  .lieux-grid { grid-template-columns: 1fr; }
  .lieux-sep { transform: rotate(90deg); }
}

/* ══════════════ SCHEDULE — JOUR-BASED ══════════════ */
.route-row {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
}
.route-arrow { color: var(--grey-text); font-size: .8rem; }
.day-badge {
  display: inline-block;
  background: rgba(10,30,60,.07);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .8rem;
  padding: .28rem .9rem; border-radius: 50px;
  border: 1px solid rgba(10,30,60,.1);
}
.schedule-table-simple thead tr { background: linear-gradient(135deg,#0c1d3a 0%,#1a3560 100%); }
.schedule-table-green.schedule-table-simple thead tr { background: linear-gradient(135deg,#0d4a1c 0%,#1e9040 100%); }
.dep-note {
  margin-top: 1rem; font-size: .82rem; color: var(--grey-text);
  display: flex; align-items: center; gap: .5rem;
  font-style: italic;
}
.dep-note i { color: var(--navy); flex-shrink: 0; }

/* ══════════════ SERVICE CLIENT BOX ══════════════ */
.service-client-box {
  background: var(--grey-bg); border-radius: var(--radius-lg);
  padding: 1.75rem; border-left: 4px solid var(--green);
  margin-top: 2rem;
}
.service-client-box p {
  color: var(--grey-text); font-size: .9rem; margin-bottom: 1rem; line-height: 1.7;
}
.sc-checklist { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.sc-checklist li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .88rem; color: var(--text);
}
.sc-checklist li i { color: var(--green); margin-top: 2px; flex-shrink: 0; }
.sc-priority {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: .9rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem;
}
.sc-priority i { font-size: 1.5rem; color: #f7c94e; flex-shrink: 0; }

/* ══════════════ FOOTER TAGLINE ══════════════ */
.footer-tagline {
  text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: .9rem 0 .4rem;
}

/* ══════════════ LANGUAGE SWITCHER ══════════════ */
.lang-switcher {
  display: flex; align-items: center; gap: 3px;
  background: rgba(10,30,60,.06);
  border: 1px solid rgba(10,30,60,.13);
  border-radius: 50px; padding: 3px;
  flex-shrink: 0;
}
.lang-btn {
  background: transparent; border: none; border-radius: 50px;
  padding: .28rem .58rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .7rem; letter-spacing: .05em;
  color: var(--navy); cursor: pointer;
  transition: background var(--tr), color var(--tr);
  line-height: 1;
}
.lang-btn:hover { background: var(--navy-light); color: var(--navy); }
.lang-btn.active { background: var(--navy); color: var(--white); }

/* ── RTL (Arabic) ── */
html[dir="rtl"] body { font-family: 'Cairo', 'Open Sans', sans-serif; }
html[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
html[dir="rtl"] .logo { flex-direction: row-reverse; }
html[dir="rtl"] .logo-wordmark { text-align: right; }
html[dir="rtl"] .lw-express, html[dir="rtl"] .lw-express-footer { text-align: right; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .hero-route { flex-direction: row-reverse; }
html[dir="rtl"] .route-flag { flex-direction: row-reverse; }
html[dir="rtl"] .hero-stats { flex-direction: row-reverse; }
html[dir="rtl"] .about-flag-bar { flex-direction: row-reverse; }
html[dir="rtl"] .flag-block { flex-direction: row-reverse; }
html[dir="rtl"] .about-text { text-align: right; }
html[dir="rtl"] .about-text .section-title { text-align: right; }
html[dir="rtl"] .about-checklist li { flex-direction: row-reverse; }
html[dir="rtl"] .about-pill { flex-direction: row-reverse; }
html[dir="rtl"] .service-card { text-align: right; }
html[dir="rtl"] .contact-item { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .contact-social { flex-direction: row-reverse; }
html[dir="rtl"] .agency-card li { flex-direction: row-reverse; }
html[dir="rtl"] .agency-city { flex-direction: row-reverse; }
html[dir="rtl"] .footer-col h4::after { left: auto; right: 0; }
html[dir="rtl"] .footer-col ul li a { flex-direction: row-reverse; }
html[dir="rtl"] .footer-col ul li a:hover { padding-left: 0; padding-right: 4px; }
html[dir="rtl"] .footer-contact-list li { flex-direction: row-reverse; }
html[dir="rtl"] .footer-logo-link { flex-direction: row-reverse; }
html[dir="rtl"] .footer-wordmark { text-align: right; }
html[dir="rtl"] .footer-social { flex-direction: row-reverse; }
html[dir="rtl"] .country-header { flex-direction: row-reverse; }
html[dir="rtl"] .news-date { flex-direction: row-reverse; }
html[dir="rtl"] .contact-info h3 { text-align: right; }
html[dir="rtl"] .form-group label { text-align: right; }
html[dir="rtl"] .city-chip { flex-direction: row-reverse; }
@media (max-width: 768px) {
  html[dir="rtl"] .nav-links {
    right: auto; left: -100%; align-items: stretch;
  }
  html[dir="rtl"] .nav-links.open { left: 0; right: auto; }
  html[dir="rtl"] .nav-links a { text-align: right; flex-direction: row-reverse; }
  html[dir="rtl"] .nav-links a::before { transform: scaleX(-1); }
}

/* ─── Back to top ─── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 12px; font-size: 1rem; cursor: pointer;
  box-shadow: 0 4px 18px rgba(208,2,27,.45);
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--tr), transform var(--tr), background var(--tr);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--red-dark); }

/* ══════════════ SECTION ENHANCEMENTS ══════════════ */

/* Section title — accent bar dégradé rouge→vert */
.section-header .section-title { padding-bottom: 1rem; }
.section-header .section-title::after {
  content: '';
  display: block;
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--green) 100%);
  border-radius: 4px;
  margin: .9rem auto 0;
}

/* Section eyebrow — ombre plus marquée */
.section-eyebrow {
  box-shadow: 0 1px 6px rgba(208,2,27,.12);
}
.section-eyebrow.eyebrow-green { box-shadow: 0 1px 6px rgba(26,122,42,.12); }

/* À propos — visual card */
.about-shield {
  background: linear-gradient(145deg, #f4f7fb 0%, #edf2fa 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,30,60,.06);
}
.shield-logo {
  border-radius: var(--radius);
  filter: drop-shadow(0 6px 20px rgba(10,30,60,.12));
}
.about-flag-bar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,30,60,.06);
}
.about-pill {
  border: 1px solid rgba(10,30,60,.06);
}

/* Services — icônes plus grandes, cartes épurées */
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  font-size: 1.45rem;
}
.service-card {
  border: none;
  box-shadow: 0 2px 14px rgba(10,30,60,.07);
}
.service-card:hover {
  box-shadow: 0 18px 50px rgba(10,30,60,.13);
}

/* Tableau départs / retours — headers en gradient + lignes alternées */
.schedule-table thead tr {
  background: linear-gradient(135deg, #0c1d3a 0%, #1a3560 100%);
}
.schedule-table.schedule-table-green thead tr {
  background: linear-gradient(135deg, #0d4a1c 0%, #1e9040 100%);
}
.schedule-table thead th {
  color: rgba(255,255,255,.92);
  font-size: .8rem;
}
.schedule-table tbody tr:nth-child(even) { background: rgba(10,30,60,.025); }
.schedule-table tbody tr:hover { background: rgba(10,30,60,.045); }
.table-wrapper { border: 1px solid rgba(10,30,60,.08); }

/* Actualités — headers plus riches + cartes épurées */
.news-img-wrap { height: 152px; }
.news-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 80%, rgba(255,255,255,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 18%, rgba(255,255,255,.06) 0%, transparent 45%);
}
.news-icon { font-size: 3rem; color: rgba(255,255,255,.3); }
.news-card {
  border: none;
  box-shadow: 0 2px 16px rgba(10,30,60,.07);
}
.news-card:hover { box-shadow: 0 14px 44px rgba(10,30,60,.13); }
.news-cat { border: 1px solid rgba(255,255,255,.2); }

/* Agences — ville avec séparateur, items alignés */
.agency-city {
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  margin-bottom: .85rem;
}
.agency-card {
  box-shadow: 0 2px 14px rgba(10,30,60,.07);
}
.agency-card:hover { box-shadow: 0 10px 32px rgba(10,30,60,.12); }
.agency-card li { padding: .22rem 0; }

/* Contact — formulaire fond blanc avec ombre */
.contact-form-wrap {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.contact-logo-mini img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  padding: 6px;
}
.form-group input, .form-group textarea {
  border: 1.5px solid rgba(10,30,60,.09);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,30,60,.07);
}
.contact-social a {
  border: 1px solid rgba(10,30,60,.08);
}

/* Footer — dégradé subtil + colonnes avec underline */
.footer {
  background: linear-gradient(180deg, #0e2040 0%, #091628 100%);
}
.footer-logo-img {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}
.footer-col h4 { position: relative; padding-bottom: .75rem; }
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.footer-social a {
  transition: background var(--tr), color var(--tr), transform var(--tr);
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
}

/* ══════════════ TRUST STRIP ══════════════ */
.trust-strip {
  background: var(--navy);
  padding: .85rem 0;
  position: relative;
  z-index: 1;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .77rem;
  padding: .3rem 1rem;
  white-space: nowrap;
}
.trust-item i { color: var(--red); font-size: .85rem; flex-shrink: 0; }
.trust-sep {
  width: 1px; height: 18px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* ══════════════ NEXT-DATE COLUMN ══════════════ */
.next-date-wrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: .28rem;
  min-width: 130px;
}
.next-date-val {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .87rem; color: var(--navy); text-transform: capitalize;
}
.next-date-badge {
  display: inline-block;
  padding: .18rem .65rem; border-radius: 50px;
  font-size: .66rem; font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap; letter-spacing: .03em;
}
.ndb-green  { background: var(--green-light);          color: var(--green-dark); }
.ndb-orange { background: rgba(234,142,0,.12);         color: #8a4a00; }
.ndb-red    { background: var(--red-light);            color: var(--red-dark); }

/* ─── Effet "brille" + texte animé (prochaine date) ─── */
@keyframes shineGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(208,2,27,0); }
  50%      { box-shadow: 0 0 12px 2px rgba(208,2,27,.55); }
}
.next-date-shine { animation: shineGlow 1.8s ease-in-out infinite; }

@keyframes textShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.next-date-shine-text {
  background: linear-gradient(90deg, var(--navy) 0%, var(--red) 25%, var(--navy) 50%, var(--red) 75%, var(--navy) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: textShimmer 2.6s linear infinite;
}

/* ══════════════ TABLEAU SCROLLABLE (historique fusionné) ══════════════ */
.table-wrapper-scroll {
  max-height: 320px;
  overflow-y: auto;
}
.table-wrapper-scroll thead th {
  position: sticky; top: 0; z-index: 1;
  background: linear-gradient(135deg,#0c1d3a 0%,#1a3560 100%);
}
.table-wrapper-scroll .schedule-table-green thead th {
  background: linear-gradient(135deg,#0d4a1c 0%,#1e9040 100%);
}
.sched-row-next { background: rgba(208,2,27,.04); }
.schedule-table-green .sched-row-next { background: rgba(26,122,42,.05); }

.hist-tag {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .64rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--red-dark);
}
.hist-tag i { margin-right: .3rem; }
.hist-tag-muted { color: rgba(10,30,60,.4); text-transform: none; font-size: .74rem; font-weight: 600; }

.hist-date-wrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: .15rem;
}
.hist-date-val { font-size: .85rem; color: rgba(10,30,60,.55); font-weight: 600; }

/* ══════════════ TESTIMONIALS ══════════════ */
@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.testi-track-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; z-index: 2;
  width: 80px; pointer-events: none;
}
.testi-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.testi-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeLeft 32s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
.testi-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: 0 2px 16px rgba(10,30,60,.07);
  border: 1.5px solid rgba(10,30,60,.05);
  border-top: 3px solid var(--red);
  display: flex; flex-direction: column; gap: .85rem;
  transition: box-shadow var(--tr);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: .12rem; }
.testi-text {
  font-size: .92rem; color: var(--grey-text);
  line-height: 1.75; font-style: italic; flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(10,30,60,.06);
}
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.testi-author strong {
  display: block;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .9rem; color: var(--navy);
}
.testi-author span { font-size: .76rem; color: var(--grey-text); }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { gap: 2.5rem; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured .news-img-wrap { width: 260px; }
}
@media (max-width: 768px) {
  .trust-sep { display: none; }
  .trust-item { font-size: .72rem; padding: .28rem .6rem; }
  .next-date-wrap { align-items: flex-start; min-width: 0; }
  .section { padding: 3.5rem 0; }
  .burger { display: flex; }

  /* ── Mobile drawer : cohérent avec la navbar blanche ── */
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(300px, 88vw); height: 100vh;
    background: var(--white);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 0; gap: 0;
    transition: right .32s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 40px rgba(10,30,60,.18);
    z-index: 999; overflow-y: auto;
  }
  .nav-links.open { right: 0; }

  /* En-tête du tiroir */
  .nav-links::before {
    content: 'TUNITALIA EXPRESS';
    display: block;
    background: var(--white);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--red), var(--green)) 1;
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    font-size: .72rem; letter-spacing: .18em;
    padding: 1.4rem 1.5rem 1.2rem;
    color: var(--navy);
  }

  /* Liens */
  .nav-links a {
    font-size: .92rem; padding: .85rem 1.5rem;
    width: 100%; border-radius: 0; color: var(--navy);
    border-bottom: 1px solid rgba(10,30,60,.06);
    display: flex; align-items: center; gap: .6rem;
  }
  .nav-links a::before {
    content: ''; display: inline-block;
    width: 3px; height: 1em; border-radius: 2px;
    background: var(--red); opacity: 0;
    transition: opacity var(--tr);
    flex-shrink: 0;
  }
  .nav-links a:hover { color: var(--red); background: var(--red-light); }
  .nav-links a:hover::before { opacity: 1; }
  .nav-links a.active { color: var(--red) !important; background: var(--red-light) !important; }
  .nav-links a.active::before { opacity: 1 !important; }

  /* Bouton Contact */
  .nav-links .nav-cta {
    margin: 1.2rem 1.5rem; width: calc(100% - 3rem);
    border-radius: 50px; justify-content: center;
    background: var(--red); color: var(--white);
    border-bottom: none; font-weight: 700;
  }
  .nav-links .nav-cta::before { display: none; }
  .nav-links .nav-cta:hover { background: var(--red-dark); color: var(--white); }
  .hero-logo-img { width: 120px; height: 120px; }
  .hero-stats { gap: 1rem; }
  .hero-countdown { gap: .8rem; }
  .cd-card { min-width: 0; width: 100%; max-width: 260px; padding: .85rem 1rem; }
  .cd-num { font-size: 1.25rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .pill-2 { right: -.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .hero-route { gap: .5rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .hero-stats { gap: .7rem; }
  .services-grid, .agencies-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-featured { flex-direction: column !important; }
  .news-featured .news-img-wrap { width: 100% !important; height: 160px !important; min-height: 0 !important; }
  .news-featured .news-body { padding: 1.5rem !important; }
  .testi-card { width: 260px; }
  .back-to-top { bottom: 1rem; right: 1rem; }
  .hero-logo-img { width: 100px; height: 100px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
