/* ============================================================
   GRAND TOUR DU SUD MAROCAIN — Promotional Page
   Matching Rahla Discovery hotel-detail design language
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── CSS Custom Properties (mirrors hotel-detail-redesign.css) ── */
:root {
  --rd-navy:      #1a2b4e;
  --rd-blue:      #1255CC;
  --rd-blue-light:#5191fa;
  --rd-blue-pale: #e8f0fe;
  --rd-gold:      #D4A843;
  --rd-gold-light:#F5D87A;
  --rd-green:     #00875A;
  --rd-red:       #C0392B;
  --rd-surface:   #f8f9fc;
  --rd-border:    #e4e8ef;
  --rd-text:      #1a2b4e;
  --rd-muted:     #6b7a8f;
  --rd-white:     #ffffff;
  --rd-sand:      #F9F3E8;
  --rd-sand-dark: #E8D9B8;
  --rd-shadow-sm: 0 1px 4px rgba(26,43,78,.06);
  --rd-shadow-md: 0 4px 20px rgba(26,43,78,.10);
  --rd-shadow-lg: 0 8px 40px rgba(26,43,78,.14);
  --rd-radius-sm: 8px;
  --rd-radius-md: 14px;
  --rd-radius-lg: 20px;
  --rd-transition: 0.22s cubic-bezier(.4,0,.2,1);
  --rd-font-display: 'Syne', sans-serif;
  --rd-font-body:    'DM Sans', sans-serif;
}

.gt-page {
  font-family: var(--rd-font-body);
  color: var(--rd-text);
  background: var(--rd-white);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.gt-hero {
  position: relative;
  height: 580px;
  min-height: 480px;
  overflow: hidden;
  background: var(--rd-navy);
}

.gt-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/grand-tour-hero.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.gt-hero:hover .gt-hero__bg {
  transform: scale(1.0);
}

.gt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,43,78,0.35) 0%,
    rgba(26,43,78,0.10) 40%,
    rgba(26,43,78,0.75) 80%,
    rgba(26,43,78,0.92) 100%
  );
}

.gt-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
}

.gt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rd-gold);
  color: white;
  font-family: var(--rd-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.gt-hero__title {
  font-family: var(--rd-font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.gt-hero__subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.gt-hero__subtitle i {
  color: var(--rd-gold-light);
}

.gt-hero__departure {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.gt-hero__dep-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

.gt-hero__dep-chip i {
  color: var(--rd-gold-light);
  font-size: 14px;
}

/* Scroll indicator */
.gt-hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce-down 2s infinite;
}

.gt-hero__scroll i { font-size: 18px; }

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   TOUR META STRIP
   ============================================================ */

.gt-meta-strip {
  background: var(--rd-navy);
  padding: 0;
}

.gt-meta-strip__inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.gt-meta-strip__inner::-webkit-scrollbar { display: none; }

.gt-meta-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--rd-transition);
}

.gt-meta-item:last-child { border-right: none; }

.gt-meta-item:hover { background: rgba(255,255,255,0.05); }

.gt-meta-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--rd-gold-light);
  flex-shrink: 0;
}

.gt-meta-item__label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 3px;
}

.gt-meta-item__value {
  font-family: var(--rd-font-display);
  font-size: 15px;
  font-weight: 600;
  color: white;
  display: block;
  line-height: 1.2;
}

/* ── Mobile: switch to 2-col grid ── */
@media (max-width: 767px) {
  .gt-meta-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    gap: 0;
  }

  .gt-meta-item {
    flex: none;
    min-width: 0;
    padding: 14px 16px;
    gap: 10px;
    /* bottom border acts as row divider */
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  /* Last item (5th) spans both columns, centred */
  .gt-meta-item:last-child {
    grid-column: 1 / -1;
    justify-content: center;
    border-bottom: none;
  }

  /* Remove bottom border from items in the last "complete" row */
  .gt-meta-item:nth-child(3),
  .gt-meta-item:nth-child(4) {
    border-bottom: none;
  }

  .gt-meta-item__icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
    border-radius: 8px;
  }

  .gt-meta-item__label {
    font-size: 10px;
    letter-spacing: 0.4px;
  }

  .gt-meta-item__value {
    font-size: 13px;
  }
}

/* ============================================================
   PAGE LAYOUT — Sticky nav + content + sidebar
   ============================================================ */

.gt-page-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--rd-border);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 70px;
  background: white;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,43,78,.06);
}

.gt-page-nav::-webkit-scrollbar { display: none; }

.gt-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rd-muted);
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--rd-transition);
}

.gt-nav-link:hover { color: var(--rd-blue); text-decoration: none; }
.gt-nav-link.active { color: var(--rd-blue); border-bottom-color: var(--rd-blue); font-weight: 600; }

/* ── Mobile nav: equal-width, icon + short label ── */
@media (max-width: 640px) {
  .gt-page-nav {
    overflow-x: visible; /* no scroll needed — items share the width */
  }

  .gt-nav-link {
    flex: 1;                 /* each item takes equal share */
    flex-direction: column;  /* stack icon above label */
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px;
    font-size: 10px;
    letter-spacing: 0.2px;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }

  .gt-nav-link i {
    font-size: 18px;
    display: block;
  }

  .gt-nav-label {
    display: block;
    font-size: 10px;
  }
}

/* ── Very small phones (< 400px): icon-only ── */
@media (max-width: 399px) {
  .gt-nav-link {
    padding: 13px 2px;
  }

  .gt-nav-label {
    display: none;
  }

  .gt-nav-link i {
    font-size: 20px;
  }

  /* Blue dot under active icon */
  .gt-nav-link.active::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rd-blue);
    margin: 4px auto 0;
  }
}

.gt-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 40px 0 60px;
}

.gt-main { min-width: 0; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */

.gt-section-heading {
  font-family: var(--rd-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--rd-navy);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gt-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rd-border);
  margin-left: 4px;
}

.gt-section-heading i { color: var(--rd-blue); font-size: 18px; }

.gt-section { margin-bottom: 44px; }

/* ============================================================
   FORMULA CARDS
   ============================================================ */

.gt-formulas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.gt-formula-card {
  background: white;
  border: 2px solid var(--rd-border);
  border-radius: var(--rd-radius-md);
  overflow: hidden;
  transition: all var(--rd-transition);
  position: relative;
}

.gt-formula-card:hover {
  border-color: var(--rd-blue-light);
  box-shadow: var(--rd-shadow-md);
  transform: translateY(-3px);
}

.gt-formula-card--premium {
  border-color: var(--rd-gold);
  box-shadow: 0 0 0 1px var(--rd-gold), var(--rd-shadow-md);
}

.gt-formula-card--premium:hover {
  border-color: var(--rd-gold);
  box-shadow: 0 0 0 1px var(--rd-gold), 0 8px 30px rgba(212,168,67,.25);
}

.gt-formula-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--rd-gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.gt-formula-header {
  padding: 20px 22px 16px;
  background: var(--rd-surface);
  border-bottom: 1px solid var(--rd-border);
}

.gt-formula-card--premium .gt-formula-header {
  background: linear-gradient(135deg, #FEF9EC, #FFF3CC);
  border-bottom-color: #F0E0A0;
}

.gt-formula-name {
  font-family: var(--rd-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--rd-navy);
  margin: 0 0 6px;
}

.gt-formula-card--premium .gt-formula-name { color: #7A5000; }

.gt-formula-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--rd-muted);
  margin-bottom: 10px;
}

.gt-formula-transport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--rd-blue-pale);
  color: var(--rd-blue);
}

.gt-formula-card--premium .gt-formula-transport {
  background: rgba(212,168,67,.15);
  color: #7A5000;
}

.gt-formula-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
}

.gt-formula-price {
  font-family: var(--rd-font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--rd-navy);
  line-height: 1;
}

.gt-formula-card--premium .gt-formula-price { color: #7A5000; }

.gt-formula-price-unit {
  font-size: 13px;
  color: var(--rd-muted);
}

.gt-formula-body {
  padding: 18px 22px;
}

.gt-formula-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gt-formula-includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--rd-text);
  line-height: 1.4;
}

.gt-formula-includes li i {
  color: var(--rd-green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.gt-formula-cta {
  display: block;
  width: 100%;
  padding: 13px 20px;
  background: var(--rd-blue);
  color: white;
  border: none;
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all var(--rd-transition);
  margin-top: 16px;
}

.gt-formula-cta:hover {
  background: var(--rd-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(18,85,204,.3);
  color: white;
  text-decoration: none;
}

.gt-formula-card--premium .gt-formula-cta {
  background: var(--rd-gold);
}

.gt-formula-card--premium .gt-formula-cta:hover {
  background: #b8922e;
  box-shadow: 0 4px 14px rgba(212,168,67,.4);
}

/* ============================================================
   ITINERARY / PROGRAMME
   ============================================================ */

.gt-itinerary {
  position: relative;
}

.gt-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  margin-bottom: 0;
  position: relative;
}

.gt-day:not(:last-child) .gt-day__line {
  position: absolute;
  left: 39px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--rd-gold), var(--rd-blue-light));
  z-index: 0;
}

.gt-day__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}

.gt-day__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rd-font-display);
  font-weight: 800;
  font-size: 15px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,43,78,.2);
}

.gt-day__number--1 { background: linear-gradient(135deg, #1255CC, #5191fa); }
.gt-day__number--2 { background: linear-gradient(135deg, #D4A843, #F0C96A); }
.gt-day__number--3 { background: linear-gradient(135deg, #00875A, #34c789); }
.gt-day__number--4 { background: linear-gradient(135deg, #8B44CC, #b57ef0); }

.gt-day__content {
  padding: 0 0 36px 20px;
}

.gt-day__header {
  margin-bottom: 16px;
}

.gt-day__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rd-muted);
  margin-bottom: 4px;
  display: block;
}

.gt-day__title {
  font-family: var(--rd-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--rd-navy);
  margin: 0 0 4px;
}

.gt-day__subtitle {
  font-size: 13px;
  color: var(--rd-muted);
  font-style: italic;
}

.gt-day__card {
  background: var(--rd-surface);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-md);
  padding: 20px 22px;
  transition: all var(--rd-transition);
}

.gt-day__card:hover {
  border-color: var(--rd-blue-light);
  box-shadow: var(--rd-shadow-sm);
}

.gt-activities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gt-activity {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--rd-text);
  line-height: 1.5;
}

.gt-activity__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.gt-activity__icon--meal    { background: #fff8e1; color: #D4A843; }
.gt-activity__icon--visit   { background: var(--rd-blue-pale); color: var(--rd-blue); }
.gt-activity__icon--travel  { background: #e8f5e9; color: var(--rd-green); }
.gt-activity__icon--hotel   { background: #f3e5f5; color: #8B44CC; }
.gt-activity__icon--desert  { background: #fff3e0; color: #E65100; }
.gt-activity__icon--culture { background: #fce4ec; color: #C2185B; }
.gt-activity__icon--nature  { background: #e8f5e9; color: #2E7D32; }

.gt-day__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--rd-border);
}

.gt-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.gt-tag--meal  { background: #fff8e1; color: #865d00; }
.gt-tag--hotel { background: #e8f5e9; color: #2e7d32; }
.gt-tag--camel { background: #fff3e0; color: #E65100; }
.gt-tag--4x4   { background: var(--rd-blue-pale); color: var(--rd-blue); }

/* ============================================================
   HIGHLIGHTS / WHAT'S INCLUDED
   ============================================================ */

.gt-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.gt-include-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--rd-surface);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--rd-text);
  transition: all var(--rd-transition);
}

.gt-include-chip:hover {
  background: var(--rd-blue-pale);
  border-color: var(--rd-blue-light);
  color: var(--rd-blue);
  transform: translateY(-2px);
  box-shadow: var(--rd-shadow-sm);
}

.gt-include-chip i {
  font-size: 18px;
  color: var(--rd-green);
  flex-shrink: 0;
}

/* ============================================================
   DEPARTURE CITIES
   ============================================================ */

.gt-departures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gt-departure-card {
  background: var(--rd-surface);
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--rd-transition);
}

.gt-departure-card:hover {
  border-color: var(--rd-blue-light);
  box-shadow: var(--rd-shadow-sm);
  transform: translateY(-2px);
}

.gt-departure-card__icon {
  width: 50px;
  height: 50px;
  background: var(--rd-blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: var(--rd-blue);
}

.gt-departure-card__city {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rd-navy);
  margin-bottom: 4px;
}

.gt-departure-card__time {
  font-size: 13px;
  color: var(--rd-muted);
}

.gt-departure-card__time strong {
  color: var(--rd-text);
  font-weight: 600;
}

/* ============================================================
   STICKY SIDEBAR
   ============================================================ */

.gt-sidebar {
  position: sticky;
  top: 130px;
}

.gt-booking-card {
  background: white;
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  overflow: hidden;
  box-shadow: var(--rd-shadow-md);
}

.gt-booking-card__header {
  background: linear-gradient(135deg, var(--rd-navy) 0%, #1e3a6e 100%);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.gt-booking-card__header::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.gt-booking-card__eyebrow {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.gt-booking-card__label {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 3px;
  margin-top: 16px;
}

.gt-booking-card__formulas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.gt-booking-formula-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--rd-radius-sm);
  padding: 10px 14px;
}

.gt-booking-formula-row__name {
  font-size: 13px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.gt-booking-formula-row__price {
  font-family: var(--rd-font-display);
  font-size: 18px;
  font-weight: 800;
  color: white;
}

.gt-booking-formula-row__price span {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
}

.gt-booking-card__body {
  padding: 24px;
}

.gt-form-group {
  margin-bottom: 18px;
}

.gt-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--rd-navy);
  margin-bottom: 6px;
}

.gt-form-label span {
  color: var(--rd-red);
}

.gt-form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 14px;
  color: var(--rd-text);
  background: white;
  transition: border-color var(--rd-transition), box-shadow var(--rd-transition);
  outline: none;
  appearance: none;
}

.gt-form-control:focus {
  border-color: var(--rd-blue);
  box-shadow: 0 0 0 3px rgba(18,85,204,.12);
}

.gt-form-control::placeholder { color: var(--rd-muted); }

textarea.gt-form-control {
  resize: vertical;
  min-height: 90px;
}

.gt-formula-select-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.gt-formula-option {
  border: 1.5px solid var(--rd-border);
  border-radius: var(--rd-radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: all var(--rd-transition);
  text-align: center;
}

.gt-formula-option:hover { border-color: var(--rd-blue-light); background: var(--rd-blue-pale); }

.gt-formula-option.selected {
  border-color: var(--rd-blue);
  background: var(--rd-blue-pale);
  box-shadow: 0 0 0 1px var(--rd-blue);
}

.gt-formula-option__name {
  font-weight: 700;
  font-size: 13px;
  color: var(--rd-navy);
  display: block;
}

.gt-formula-option__price {
  font-family: var(--rd-font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--rd-blue);
  display: block;
  margin-top: 2px;
}

.gt-form-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--rd-blue);
  color: white;
  border: none;
  border-radius: var(--rd-radius-sm);
  font-family: var(--rd-font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--rd-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.2px;
}

.gt-form-btn:hover {
  background: var(--rd-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18,85,204,.3);
}

.gt-form-btn:disabled {
  background: var(--rd-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.gt-booking-note {
  text-align: center;
  font-size: 12px;
  color: var(--rd-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.gt-booking-note i { color: var(--rd-green); }

/* Form Success State */
.gt-form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.gt-form-success__icon {
  width: 64px;
  height: 64px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--rd-green);
}

.gt-form-success__title {
  font-family: var(--rd-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--rd-navy);
  margin-bottom: 8px;
}

.gt-form-success__text {
  font-size: 14px;
  color: var(--rd-muted);
  line-height: 1.6;
}

/* Trust badges */
.gt-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid var(--rd-border);
  background: var(--rd-surface);
}

.gt-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--rd-muted);
}

.gt-trust-badge i { color: var(--rd-green); font-size: 14px; }

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

@media (max-width: 992px) {
  .gt-body {
    grid-template-columns: 1fr;
  }

  .gt-sidebar {
    position: static;
    order: -1;
  }

  .gt-formulas {
    grid-template-columns: 1fr;
  }

  .gt-departures-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .gt-hero { height: 460px; }
  .gt-hero__title { font-size: 26px; }
  .gt-day { grid-template-columns: 56px 1fr; }
  .gt-day__number { width: 36px; height: 36px; font-size: 13px; }
  .gt-day:not(:last-child) .gt-day__line { left: 27px; }
  .gt-departures-grid { grid-template-columns: 1fr; }
  .gt-includes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .gt-hero { height: 400px; }
  .gt-formula-select-group { grid-template-columns: 1fr; }
  .gt-includes-grid { grid-template-columns: 1fr; }
}
