/* ============================================================
   WORLD TOURS CENTRE — Brand Stylesheet
   Brand: Deep Navy #0B1F3A | Gold #F5A623 | Teal #0ABFA3
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@500;600;700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --navy:       #0B1F3A;
  --navy-light: #152D52;
  --gold:       #F5A623;
  --gold-dark:  #D4891A;
  --teal:       #0ABFA3;
  --teal-dark:  #089C85;
  --white:      #FFFFFF;
  --off-white:  #F4F8FF;
  --gray-100:   #F0F4FA;
  --gray-200:   #E2E8F4;
  --gray-400:   #94A3BB;
  --gray-600:   #5A6A82;
  --dark:       #1A1A2E;
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:  0 4px 24px rgba(11,31,58,0.12);
  --shadow-lg:  0 8px 40px rgba(11,31,58,0.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --transition: 0.25s ease;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-ui:    'Montserrat', 'Inter', sans-serif;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::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(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.75; }

.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

/* ─── UTILITIES ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-ui);
}
.badge-gold  { background: rgba(245,166,35,0.15); color: var(--gold-dark); }
.badge-teal  { background: rgba(10,191,163,0.15); color: var(--teal-dark); }
.badge-navy  { background: var(--navy); color: var(--white); }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* ─── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: var(--navy);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
}
.nav-logo-text span {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-ui);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,31,58,0.85) 0%,
    rgba(11,31,58,0.55) 60%,
    rgba(10,191,163,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.4);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: '✈'; }
.hero h1 { color: var(--white); max-width: 700px; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 550px;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-ui);
}

/* ─── SEARCH WIDGET ─────────────────────────────────────── */
.search-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 2rem;
  max-width: 900px;
}
.search-tabs {
  display: flex;
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-200);
}
.search-tab {
  flex: 1;
  padding: 1rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.search-tab.active { color: var(--navy); border-bottom-color: var(--gold); background: var(--white); }
.search-tab:hover:not(.active) { color: var(--navy); }

.search-panel { display: none; padding: 1.5rem; }
.search-panel.active { display: block; }

.search-row {
  display: grid;
  gap: 0.75rem;
  align-items: end;
}
.search-row.flights-row { grid-template-columns: 1fr 1fr 1fr 1fr auto; }
.search-row.hotels-row  { grid-template-columns: 1fr 1fr 1fr auto; }
.search-row.tours-row   { grid-template-columns: 1fr 1fr auto; }

.search-field { display: flex; flex-direction: column; gap: 0.35rem; }
.search-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  font-family: var(--font-ui);
}
.search-field input,
.search-field select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.search-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* ─── TRUST BAR ─────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-family: var(--font-ui);
}
.trust-item svg, .trust-item .icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ─── SECTION HEADERS ───────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header h2 { color: var(--navy); margin-bottom: 0.75rem; }
.section-header p { max-width: 600px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }
.section-header .view-all {
  color: var(--teal);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  transition: gap var(--transition);
}
.section-header .view-all:hover { gap: 0.6rem; }

/* ─── TOUR CARDS ────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.07); }

.tour-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tour-card-save {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.tour-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.tour-card-location {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tour-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  flex: 1;
}
.tour-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.85rem;
  margin-top: auto;
}
.tour-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}
.tour-rating .stars { color: var(--gold); letter-spacing: -0.1em; font-size: 0.75rem; }
.tour-rating .count { color: var(--gray-400); font-weight: 400; }
.tour-price { text-align: right; }
.tour-price .from { font-size: 0.7rem; color: var(--gray-400); display: block; }
.tour-price .amount { font-family: var(--font-head); font-size: 1.2rem; color: var(--navy); font-weight: 700; }
.tour-card-footer { padding: 0 1.25rem 1.25rem; }
.tour-card-footer .btn { width: 100%; justify-content: center; }

/* ─── DESTINATION CARDS ─────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.dest-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,31,58,0.85) 0%, transparent 55%);
  transition: opacity var(--transition);
}
.dest-card:hover .dest-card-overlay { opacity: 0.9; }
.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}
.dest-card-info h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 0.25rem; }
.dest-card-info span { color: var(--gold); font-size: 0.78rem; font-family: var(--font-ui); font-weight: 600; }

/* ─── CATEGORY FILTER ───────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── WHY US SECTION ────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}
.why-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; }

/* ─── PROMO BANNER ──────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a6e 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--gold);
  opacity: 0.05;
  border-radius: 50%;
  top: -100px;
  right: -50px;
}
.promo-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.promo-banner p { color: rgba(255,255,255,0.7); max-width: 500px; }

/* ─── AFFILIATE LOGOS ───────────────────────────────────── */
.affiliates-bar {
  background: var(--off-white);
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.affiliates-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.affiliate-tag {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.affiliate-tag:hover { color: var(--navy); }

/* ─── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-text { font-style: italic; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author-info span { font-size: 0.78rem; color: var(--gray-400); }

/* ─── NEWSLETTER ────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 4rem 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-section h2 { color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,0.8); }
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  font-size: 0.9rem;
  color: var(--dark);
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: 1rem 1.75rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--navy-light); }

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 1rem; font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

/* ─── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=60&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  font-family: var(--font-ui);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

/* ─── CRUISE PAGE ───────────────────────────────────────── */
.cruise-hero {
  background-image: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1920&q=80&fit=crop');
  background-size: cover;
  background-position: center;
}
.cruise-hero::before { background: rgba(11,31,58,0.7); opacity: 1; }

.cruise-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cruise-feature {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--teal);
}
.cruise-feature .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.cruise-feature h3 { color: var(--navy); margin-bottom: 0.5rem; }

/* ─── FLIGHT / HOTEL PAGES ──────────────────────────────── */
.full-widget-section {
  background: var(--off-white);
  padding: 3rem 0;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}
.affiliate-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.affiliate-link-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.affiliate-link-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.affiliate-link-card .aff-name {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.affiliate-link-card .aff-desc { font-size: 0.78rem; color: var(--gray-400); }

/* ─── CONTACT FORM ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-ui);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,166,35,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,166,35,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; color: var(--gold); font-size: 0.82rem; font-family: var(--font-ui); margin-bottom: 0.2rem; }
.contact-info-text span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* ─── ABOUT PAGE ────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 450px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge strong { display: block; font-family: var(--font-head); font-size: 2rem; }
.about-img-badge span { font-size: 0.78rem; font-family: var(--font-ui); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; }
.team-card { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { color: var(--navy); font-size: 0.95rem; }
.team-card span { font-size: 0.78rem; color: var(--gray-400); }

/* ─── PAGINATION ────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-row.flights-row { grid-template-columns: 1fr 1fr; }
  .search-row.flights-row .search-btn { grid-column: 1 / -1; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .search-row.flights-row,
  .search-row.hotels-row,
  .search-row.tours-row { grid-template-columns: 1fr; }
  .promo-banner { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .cruise-features { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.5rem; }
  .affiliates-inner { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .tours-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .search-widget { border-radius: var(--radius-md); }
  .promo-banner { padding: 2rem; }
}

/* ─── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; animation-name: fadeUp; animation-duration: 0.6s; }

/* ─── BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  border: none;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ─── MOBILE NAV CLOSE ──────────────────────────────────── */
.nav-close {
  display: none;
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 1001;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.nav-links.open ~ .nav-close { display: block; }
