/* =============================================
   FOOTBALL2026MEXICO — MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --green: #006847;
  --green-dark: #004d34;
  --green-light: #e8f5ef;
  --red: #CE1126;
  --red-dark: #a50d1e;
  --red-light: #fdeef0;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --dark: #1a1a2e;
  --gold: #FFD700;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-green { background: var(--green); }
.bg-red { background: var(--red); }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--off-white); }

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-gold { background: rgba(255,215,0,0.15); color: #b8960a; }
.badge-white { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(206,17,38,0.35); }
.btn-secondary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-secondary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,104,71,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-outline-green { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--red));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.logo span { color: var(--red); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 7px 12px;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,0.12); }

/* Blog button — special style */
.main-nav a.nav-blog-btn {
  background: linear-gradient(135deg, var(--gold), #f0b800);
  color: var(--dark) !important;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(255,215,0,0.35);
  transition: all var(--transition);
}
.main-nav a.nav-blog-btn:hover {
  background: linear-gradient(135deg, #f0b800, var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.5);
  color: var(--dark) !important;
}

/* ======================================
   LANGUAGE SWITCHER DROPDOWN — 16 LANGS
   ====================================== */
.lang-switcher-wrapper {
  position: relative;
}
.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 7px 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-switcher-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 190px;
  max-height: 380px;
  overflow-y: auto;
  display: none;
  z-index: 2000;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.lang-option.active {
  background: var(--green);
  color: var(--white);
}

.header-right { display: flex; align-items: center; gap: 12px; }

/* Mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,68,47,0.82) 0%, rgba(26,26,46,0.75) 50%, rgba(206,17,38,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-flag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.flag-stripe {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.flag-stripe span {
  display: block;
  width: 28px; height: 18px;
}
.flag-stripe .g { background: var(--green); }
.flag-stripe .w { background: var(--white); }
.flag-stripe .r { background: var(--red); }
.hero-flag-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .highlight { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute;
  bottom: 60px;
  left: 0; right: 0;
  z-index: 2;
}
.hero-stats-inner {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ---- ANNOUNCEMENT BAR ---- */
.announce-bar {
  background: linear-gradient(90deg, var(--dark), var(--green-dark), var(--dark));
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 999;
}
.announce-bar .highlight { color: var(--gold); }

/* ---- WHY US SECTION ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--green); }
.why-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--green); }
.why-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.why-card p { color: var(--gray-600); font-size: 0.95rem; margin: 0; }

/* ---- EXCURSIONS GRID (homepage) ---- */
.excursions-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.excursion-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.excursion-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.excursion-card:hover .card-img img { transform: scale(1.06); }
.card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-tag.green { background: var(--green); }
.card-price {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card-body p { color: var(--gray-600); font-size: 0.92rem; flex: 1; }
.card-meta {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-600);
  font-weight: 600;
}
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
}
.stars { color: var(--gold); font-size: 0.9rem; }

/* ---- EXCURSIONS PAGE — HERO ---- */
.excursions-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.excursions-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.excursions-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,68,47,0.88) 0%, rgba(26,26,46,0.8) 60%, rgba(206,17,38,0.4) 100%);
}
.excursions-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 60px 0;
}
.excursions-hero-content .hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.excursions-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.excursions-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
}
.excursions-hero .hero-stats {
  position: static;
  margin-top: 40px;
}
.excursions-hero .hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.excursions-hero .hero-stat {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 28px;
  text-align: center;
  flex: none;
  border-right: none;
}
.excursions-hero .hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
}
.excursions-hero .hero-stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* ---- EXCURSIONS PAGE — FILTERS ---- */
.excursions-filters-section {
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  padding: 28px 0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.filters-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 140px;
}
.filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ---- EXCURSIONS PAGE — GRID ---- */
.excursions-grid-section {
  padding: 60px 0;
  background: var(--off-white);
}
.section-header { margin-bottom: 40px; }
.section-header h2 { margin-bottom: 8px; }
.result-count { color: var(--gray-600); font-size: 0.95rem; margin: 0; }
.excursions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exc-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.exc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.exc-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.exc-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exc-card:hover .exc-card-img-wrap img { transform: scale(1.06); }
.exc-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.exc-price-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.exc-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.exc-cities-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.exc-city-tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.exc-card-body h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.exc-card-body p { color: var(--gray-600); font-size: 0.88rem; flex: 1; line-height: 1.6; margin-bottom: 14px; }
.exc-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.exc-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--gray-600); font-weight: 600; }
.exc-meta-item svg { color: var(--green); flex-shrink: 0; }
.exc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.exc-price-big { display: flex; align-items: baseline; gap: 3px; }
.price-from-label { font-size: 0.72rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; }
.price-amount { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--green); }
.price-unit { font-size: 0.75rem; color: var(--gray-600); font-weight: 600; }
.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}
.btn-book:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(206,17,38,0.3); }
.no-results { text-align: center; padding: 80px 20px; background: var(--white); border-radius: var(--radius-md); border: 2px dashed var(--gray-200); }
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { margin-bottom: 8px; color: var(--gray-600); }

/* ---- EXCURSIONS PAGE — CITIES ---- */
.excursions-cities { padding: 80px 0; background: var(--white); }
.cities-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.city-card-ex {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform var(--transition);
}
.city-card-ex:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  transition: all var(--transition);
}
.city-card-ex:hover .city-card-overlay {
  background: linear-gradient(to top, rgba(0,68,47,0.88) 0%, rgba(0,68,47,0.4) 60%, rgba(0,68,47,0.1) 100%);
}
.city-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
  z-index: 2;
}
.city-card-content h3 { font-size: 1.4rem; margin-bottom: 6px; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.city-card-content p { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.city-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  transition: all var(--transition);
  text-decoration: none;
}
.city-filter-btn:hover { background: var(--red); border-color: var(--red); }

/* ---- EXCURSIONS PAGE — CTA ---- */
.excursions-cta { padding: 80px 0; background: var(--off-white); }
.cta-box {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 50%, rgba(206,17,38,0.8) 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-box::before { content: '⚽'; position: absolute; font-size: 18rem; opacity: 0.04; right: -40px; top: -40px; line-height: 1; }
.cta-emoji { font-size: 3rem; margin-bottom: 20px; }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }

/* ---- HOW IT WORKS ---- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 40px; left: calc(10% + 40px); right: calc(10% + 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--red));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.step:hover .step-num { background: var(--green); color: var(--white); }
.step h4 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--gray-600); margin: 0; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--green);
  line-height: 1;
  opacity: 0.15;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text { color: var(--gray-600); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-country { font-size: 0.8rem; color: var(--gray-600); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 50%, var(--red-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before { content: '⚽'; position: absolute; font-size: 20rem; opacity: 0.04; right: -50px; top: -50px; line-height: 1; }
.cta-content { position: relative; z-index: 1; }

/* ---- NEWSLETTER ---- */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { border-color: var(--white); background: rgba(255,255,255,0.15); }

/* ---- FAQ ---- */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  border: none;
  transition: all var(--transition);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: left;
  gap: 16px;
  color: var(--dark);
}
.faq-question:hover { background: var(--green-light); color: var(--green); }
.faq-item.open .faq-question { background: var(--green); color: var(--white); }
.faq-arrow { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 20px 24px; background: var(--off-white); color: var(--gray-600); line-height: 1.7; font-size: 0.93rem; margin: 0; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }

/* ---- VILLES PAGE ---- */
.stade-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.stade-card.reverse { direction: rtl; }
.stade-card.reverse > * { direction: ltr; }
.stade-img { height: 340px; }
.stade-img img { width: 100%; height: 100%; object-fit: cover; }
.stade-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.stade-body h3 { margin-bottom: 8px; font-size: 1.5rem; }
.stade-stats { display: flex; gap: 24px; margin: 20px 0; flex-wrap: wrap; }
.stade-stat { text-align: center; }
.stade-stat strong { display: block; font-size: 1.4rem; font-weight: 900; color: var(--green); }
.stade-stat span { font-size: 0.78rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; }
.stade-body p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; }

/* ======================================
   FOOTER — LANGUAGE GRID
   ====================================== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.6); margin: 16px 0 24px; font-size: 0.9rem; line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }

/* Language bar in footer */
.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-lang-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: all var(--transition);
}
.footer-lang-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.footer-lang-link.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }
.footer-flags { display: flex; gap: 8px; align-items: center; }
.footer-flags span { font-size: 1.3rem; }

/* ---- 404 ---- */
.page-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code { font-size: 10rem; font-weight: 900; font-family: var(--font-heading); line-height: 1; }
.error-code span:nth-child(1) { color: var(--green); }
.error-code span:nth-child(2) { color: var(--red); }
.error-code span:nth-child(3) { color: var(--green); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed { opacity: 1; transform: none; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .main-nav a { font-size: 0.76rem; padding: 6px 9px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .excursions-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-trio { grid-template-columns: 1fr 1fr; }
  .cities-trio .city-card-ex:last-child { grid-column: span 2; }
  .stade-card { grid-template-columns: 1fr; }
  .stade-card.reverse { direction: ltr; }
  .stade-img { height: 260px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    z-index: 998;
    padding: 100px 32px 40px;
    gap: 8px;
    overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; padding: 12px 16px; border-radius: var(--radius-sm); }
  .main-nav a.nav-blog-btn { border-radius: var(--radius-sm); text-align: center; justify-content: center; }
  .burger { display: flex; position: relative; z-index: 999; }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 45%; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .excursions-grid { grid-template-columns: 1fr; }
  .cities-trio { grid-template-columns: 1fr; }
  .cities-trio .city-card-ex:last-child { grid-column: auto; }
  .excursions-filters-section { position: static; }
  .filter-group { flex-direction: column; align-items: flex-start; }
  .filter-label { min-width: auto; }
  .cta-box { padding: 48px 24px; }
  .lang-dropdown { right: auto; left: 0; min-width: 200px; }
  .lang-switcher-btn span:last-of-type { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-sm); }
  .exc-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-book { width: 100%; justify-content: center; }
  .header-right .btn { display: none; }
}