/* ============================================================
   N-Adventures France — Feuille de style principale
   Polices : Raleway (titres) + Outfit (corps)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1e3a8a;
  --navy-dark: #162e74;
  --blue:      #3399ff;
  --blue-light:#e8f4ff;
  --green:     #16a34a;
  --red:       #dc2626;
  --white:     #ffffff;
  --gray-50:   #f9fafb;
  --gray-100:  #f3f4f6;
  --gray-200:  #e5e7eb;
  --gray-300:  #d1d5db;
  --gray-600:  #4b5563;
  --gray-700:  #374151;
  --black:     #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.05);
  --radius:    10px;
  --max-w:     760px;
  --max-w-wide:960px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY HELPERS ===== */
.h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--black);
}
.h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--black);
}
.h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
}

/* ===== LAYOUT HELPERS ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container--wide { max-width: var(--max-w-wide); }
.section { padding-block: 4rem; }
.section--sm { padding-block: 2.5rem; }
.text-center { text-align: center; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: #c7d8f8;
  font-size: .8rem;
  font-weight: 500;
  padding: .45rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #c7d8f8;
  transition: color .2s;
}
.top-bar a:hover { color: #fff; }
.top-bar svg { flex-shrink: 0; }
.top-bar__sep {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.top-bar__en { opacity: .65; font-size: .76rem; }
.top-bar__en:hover { opacity: 1; color: #fff; }
.top-bar__flag { font-size: .9rem; }

/* ===== NAVIGATION ===== */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
  gap: 1rem;
}
.nav__logo {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
  white-space: nowrap;
}
.nav__logo span { color: var(--blue); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: #fff; }
.nav__links a.active { border-bottom: 2px solid var(--blue); padding-bottom: 2px; }

/* Mobile hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 1rem 1.25rem;
  gap: .8rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s;
}
.nav__mobile a:hover { color: #fff; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .65rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  transition: opacity .2s, transform .15s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn--primary  { background: var(--blue);  color: #fff; }
.btn--outline  { border-color: var(--blue); color: var(--blue); }
.btn--outline:hover { background: var(--blue-light); }
.btn--white    { background: #fff; color: var(--navy); }
.btn--white:hover { background: #e8f0ff; opacity: 1; }
.btn--ghost    { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); opacity: 1; }
.btn--green    { border-color: var(--green); color: var(--green); }
.btn--green:hover { background: #f0fdf4; opacity: 1; }
.btn--sm { padding: .35rem .9rem; font-size: .8rem; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card--blue  { border-left: 4px solid var(--blue); }
.card--red   { border-left: 4px solid var(--red); }
.card__img { height: 140px; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }

/* ===== FRENCH BADGE / ASSET BANNER ===== */
.fr-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: .55rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.fr-badge .flag { font-size: 1rem; }

.fr-band {
  background: linear-gradient(135deg, #0055a4 0%, #003580 50%, #ef4135 100%);
  color: #fff;
  padding: 1.2rem 0;
}
.fr-band .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fr-band__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.fr-band__text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .15rem;
}
.fr-band__text span {
  font-size: .85rem;
  opacity: .88;
}

/* ===== POURQUOI POLOGNE BAND ===== */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: .95rem; margin-bottom: .35rem; }
.why-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }
.why-card .why-icon { font-size: 1.4rem; margin-bottom: .5rem; }

/* ===== PROGRAMS TABLE ===== */
.prog-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.prog-table thead tr { background: var(--navy); color: #fff; }
.prog-table thead th { padding: .7rem .9rem; text-align: left; font-weight: 600; font-size: .82rem; }
.prog-table tbody tr { border-bottom: 1px solid var(--gray-200); transition: background .15s; }
.prog-table tbody tr:hover { background: var(--blue-light); }
.prog-table tbody td { padding: .65rem .9rem; color: var(--gray-700); }
.prog-table tbody td:first-child { font-weight: 600; color: var(--black); }
.prog-table .price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.prog-table .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: .15rem .55rem;
  border-radius: 100px;
  background: var(--blue-light);
  color: var(--navy);
}

/* ===== DIRECTOR QUOTE ===== */
.director-quote {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  position: relative;
}
.director-quote::before {
  content: '\201C';
  font-family: 'Raleway', sans-serif;
  font-size: 6rem;
  color: var(--blue);
  opacity: .15;
  position: absolute;
  top: -.5rem;
  left: 1rem;
  line-height: 1;
}
.director-quote blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 1rem;
  position: relative;
}
.director-quote cite {
  font-size: .85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}
.director-quote cite span { color: var(--gray-600); font-weight: 400; }

/* ===== INFO PRATIQUES PAGE ===== */
.info-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.info-table thead th { background: var(--navy); color: #fff; padding: .6rem .8rem; text-align: left; font-size: .8rem; }
.info-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.info-table tbody td { padding: .6rem .8rem; color: var(--gray-700); }
.info-table tbody td:first-child { font-weight: 600; color: var(--black); }

.airline-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.airline-item:last-child { border-bottom: none; }
.airline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 7px;
}
.airline-item strong { font-size: .9rem; }
.airline-item span { font-size: .85rem; color: var(--gray-600); }

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
  padding: .5rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.pack-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--gray-700);
  margin-bottom: .5rem;
}
.pack-item::before {
  content: '→';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}
.card__date {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: .7rem;
}
.card--red .card__date { background: var(--red); }
.card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .5rem;
  line-height: 1.35;
}
.card__desc {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 55% 42%; gap: 2rem; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== HERO ===== */
.hero { background: var(--white); padding-block: 3rem 2.5rem; }
.hero__check { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .7rem; }
.hero__check svg { color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.hero__check span { font-size: .92rem; color: var(--gray-700); }
.hero__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 460px;
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.hero__rating { display: flex; align-items: center; gap: .8rem; }
.stars { display: flex; gap: 2px; }
.stars span { font-size: 1rem; }
.hero__rating-text strong { font-size: 1.15rem; font-weight: 700; color: var(--black); }
.hero__rating-text small { display: block; font-size: .78rem; color: var(--gray-600); }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 2px solid var(--blue); opacity: .25; margin: 0 auto; max-width: 480px; }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 2rem; }
.section-header p { color: var(--gray-600); font-size: .95rem; max-width: 560px; margin-inline: auto; margin-top: .5rem; }
.section-header .note { font-size: .8rem; color: var(--gray-600); font-style: italic; margin-top: .4rem; }

/* ===== FAQ / DETAILS ===== */
.faq-item {
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--black);
  padding: 1rem 1.2rem;
  background: var(--white);
  user-select: none;
  transition: background .2s;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform .25s;
  flex-shrink: 0;
}
details.faq-item[open] summary { background: var(--blue-light); }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p {
  padding: .9rem 1.2rem 1rem;
  background: var(--gray-50);
  color: var(--gray-700);
  font-size: .92rem;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: #fff;
  padding-block: 3rem 1.5rem;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer__brand { font-family: 'Raleway', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .6rem; }
.footer__brand span { color: var(--blue); }
.footer p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer ul li { margin-bottom: .5rem; }
.footer ul a, .footer ul span {
  font-size: .87rem;
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.footer ul a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.3rem;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ===== ABOUT PAGE ===== */
.team-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.team-card__photo {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__role { color: var(--blue); font-size: .8rem; font-weight: 600; margin-bottom: .6rem; }
.team-card__bio { font-size: .85rem; color: var(--gray-600); line-height: 1.6; }

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.value-card h3 { margin-bottom: .5rem; }
.value-card p { color: var(--gray-600); font-size: .9rem; }

.reason-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.reason-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reason-card h3 { font-size: .95rem; margin-bottom: .3rem; }
.reason-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.55; }

/* ===== LEGAL INFO ===== */
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table tr { border-bottom: 1px solid var(--gray-200); }
.legal-table td { padding: .7rem .5rem; font-size: .9rem; }
.legal-table td:first-child { font-weight: 600; color: var(--navy); width: 200px; }
.legal-table td:last-child { color: var(--gray-700); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding-block: 4rem;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .8rem;
}
.cta-band p { opacity: .85; margin-bottom: 2rem; font-size: 1.05rem; max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.contact-info-box strong { font-weight: 700; }
.contact-info-box small { font-size: .82rem; color: var(--gray-600); }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item svg { color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.contact-item h3 { font-size: .95rem; margin-bottom: .3rem; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--gray-700); }
.contact-item a:hover { text-decoration: underline; }
.contact-item small { font-size: .82rem; color: var(--gray-600); }

/* Form */
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .6rem .9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(51,153,255,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn--submit {
  width: 100%;
  background: var(--blue);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  border: none;
  transition: background .2s, transform .15s;
}
.btn--submit:hover { background: #1a7fe0; transform: translateY(-1px); }

/* Success message */
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== FAQ SIMPLE BOXES (Contact page style) ===== */
.faq-box {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.faq-box h3 { font-size: .95rem; margin-bottom: .5rem; }
.faq-box p { font-size: .88rem; color: var(--gray-700); line-height: 1.6; }

/* ===== PROGRAMS PAGE ===== */
.programs-hero { padding-block: 3rem 2rem; background: var(--white); }
.programs-hero h1 { margin-bottom: .7rem; }
.programs-hero p { color: var(--gray-600); font-size: 1rem; max-width: 560px; }

/* ===== PROGRAM DETAIL PAGE ===== */
.detail-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--navy);
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,60,.85) 0%, rgba(15,25,60,.3) 60%, transparent 100%);
}
.detail-hero__content {
  position: absolute;
  bottom: 2rem;
  left: 0; right: 0;
}
.detail-hero__content .container { }
.detail-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  transition: color .2s;
}
.detail-hero__back:hover { color: #fff; }
.detail-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: .5rem;
}
.detail-hero p { color: rgba(255,255,255,.82); font-size: 1rem; }

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.detail-meta__item { display: flex; align-items: center; gap: .5rem; }
.detail-meta__item svg { color: var(--blue); flex-shrink: 0; }
.detail-meta__item strong { font-size: .85rem; font-weight: 700; color: var(--black); }
.detail-meta__item span { font-size: .82rem; color: var(--gray-600); }

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding-block: 2.5rem;
}
.itinerary-day { margin-bottom: 1.8rem; }
.itinerary-day h3 {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  border-left: 4px solid var(--blue);
  padding-left: .8rem;
  margin-bottom: .5rem;
}
.itinerary-day p { font-size: .9rem; color: var(--gray-700); line-height: 1.7; padding-left: 1.2rem; }

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .88rem;
  color: var(--gray-700);
  margin-bottom: .55rem;
}
.includes-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sidebar-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 80px;
}
.sidebar-box h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #fff;
}
.sidebar-price {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .2rem;
}
.sidebar-price-note { font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }
.sidebar-box .btn { width: 100%; margin-bottom: .7rem; }
.sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,.15); margin-block: 1.2rem; }
.sidebar-contact p { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: .5rem; }
.sidebar-contact a { color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 600; }
.sidebar-contact a:hover { color: #fff; }

/* ===== PAGE HERO (About, Contact pages) ===== */
.page-hero { padding-block: 3.5rem; background: var(--white); }
.page-hero h1 { margin-bottom: .8rem; }
.page-hero p { font-size: 1.05rem; color: var(--gray-700); max-width: 620px; }

/* ===== UTILITIES ===== */
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }
.text-gray { color: var(--gray-600); }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.space-y > * + * { margin-top: 1rem; }
.space-y-sm > * + * { margin-top: .6rem; }

.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: #fff; }

/* ===== MORE LINK ===== */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-weight: 600;
  font-size: .95rem;
  transition: gap .2s;
}
.more-link:hover { gap: .6rem; }

/* ===== NOTICE BOX ===== */
.notice {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: .8rem 1.1rem;
  font-size: .82rem;
  color: #92400e;
}

/* ===== NOT FOUND ===== */
.not-found { text-align: center; padding-block: 6rem; }
.not-found h1 { font-size: 4rem; color: var(--navy); }
.not-found p { color: var(--gray-600); margin-block: 1rem 2rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .5s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }

/* ===== RESPONSIVE ===== */

/* Mobile-only hero CTA block — hidden by default */
.hero__mobile-cta { display: none; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar-box { position: static; }
  .detail-hero { height: 280px; }

  /* Tight spacing on mobile */
  .hero { padding-block: 1.2rem 1rem; }
  .grid-2-1 { gap: .8rem; }
  .hero .h1 { margin-bottom: .8rem; }

  /* Hide fr-band on mobile — replaced by hero__mobile-cta */
  .fr-band { display: none; }

  /* Hero mobile: title first, photo second */
  .grid-2-1 {
    grid-template-columns: 1fr;
  }
  .grid-2-1 .hero__img {
    height: 320px;
  }
  .hero__img { height: 320px; }
  /* Reduce gap under title before photo */
  .hero .h1 { margin-bottom: 1rem; }

  /* Hide desktop-only hero elements */
  .hero__checks--desktop,
  .hero__buttons--desktop,
  .hero__rating--desktop { display: none !important; }

  /* Show mobile CTA block */
  .hero__mobile-cta {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid var(--gray-200);
  }
  .hero__mobile-fr {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    background: var(--blue-light);
    border-left: 3px solid var(--blue);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: .9rem 1rem;
    font-size: .88rem;
    color: var(--gray-700);
    line-height: 1.55;
  }

  /* Top bar: show only FR number on mobile */
  .top-bar__sep,
  .top-bar__en { display: none; }

  /* FR band: stack vertically */
  .fr-band .container { flex-direction: column; gap: .8rem; align-items: flex-start; }
  .fr-band .btn { margin-left: 0 !important; align-self: stretch; justify-content: center; }
}
@media (max-width: 560px) {
  .grid-3  { grid-template-columns: 1fr; }
  .grid-2  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .detail-meta { flex-direction: column; gap: .8rem; }
  .top-bar .container { justify-content: center; }
  .hero__img { height: 280px; }
  .h1 { font-size: 1.7rem; }
}
