/* ============================================================
   Umbrella Tours & Travel — Main Stylesheet
   Color Palette:
     Primary:    #1b2d45 (dark navy)
     Secondary:  #1b2d45 (terracotta)
     Accent:     #1b2d45 (light blue)
     Background: #ffffff
     Text:       #222222
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Serif+Display:ital@0;1&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
  --color-primary:    #192a41;
  --color-secondary:  #d4956a;
  --color-accent:     #d4956a;
  --color-bg:         #ffffff;
  --color-text:       #192a41;
  --color-text-light: #4a5568;
  --color-text-muted: #718096;
  --color-surface:    #faf8f5;
  --color-border:     #e8e2d9;
  --color-overlay:    rgba(14, 42, 71, 0.75);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;
  --fw-heavy:   800;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.25rem;
  --fs-xl:   1.5rem;
  --fs-2xl:  1.875rem;
  --fs-3xl:  2.25rem;
  --fs-4xl:  3rem;
  --fs-5xl:  3.75rem;
  --fs-6xl:  4.5rem;

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.09), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-accent:0 4px 20px rgba(212, 149, 106, 0.20);

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --header-h: 90px;
  --container-max: 1280px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
}

/* ─── Reset / Normalize ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.75;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
table { border-collapse: collapse; width: 100%; }
::selection { background: #d4956a; color: #192a41; }
:focus-visible { outline: 2px solid var(--color-secondary); outline-offset: 3px; }

/* ─── Typography Scale ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-primary);
}
h1 { font-size: clamp(var(--fs-3xl), 6vw, var(--fs-6xl)); }
h2 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); }
h3 { font-size: clamp(var(--fs-xl),  3vw, var(--fs-2xl)); }
h4 { font-size: clamp(var(--fs-lg),  2.5vw, var(--fs-xl)); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p { color: var(--color-text-light); line-height: 1.8; }

.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d4956a;
}

/* ─── Utility ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.text-center { text-align: center; }
.text-gold   { color: #d4956a; }
.text-navy   { color: #192a41; }
.text-white  { color: #fff; }
.mt-4  { margin-top: var(--space-4); }
.mb-4  { margin-bottom: var(--space-4); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Section Layout ────────────────────────────────────────── */
.section { padding: var(--space-24) 0; background: #ffffff; }
.section--sm { padding: var(--space-16) 0; }
.section--lg { padding: var(--space-32) 0; }
.section--navy { background: #192a41; }
.section--surface { background: #f7f9fc; }

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section__header .label { display: block; margin-bottom: var(--space-3); }
.section__header h2 { margin-bottom: var(--space-4); }
.section__header p {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  font-size: var(--fs-md);
}

/* Section heading underline */
.section__header h2::after,
.underline-gold::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d4956a;
  opacity: 1;
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
}
.underline-gold--left::after { margin-left: 0; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75em 1.75em;
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn--gold {
  background: #d4956a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,149,106,0.30);
}
.btn--gold:hover {
  background: #c4854a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,149,106,0.40);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid #192a41;
}
.btn--outline-navy:hover {
  background: #192a41;
  color: #fff;
  transform: translateY(-2px);
}

.btn--navy {
  background: #192a41;
  color: #fff;
}
.btn--navy:hover {
  background: #192a41;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm { padding: 0.55em 1.3em; font-size: 0.8rem; }
.btn--lg { padding: 0.85em 2em; font-size: 0.95rem; }

/* ─── Header / Navigation ───────────────────────────────────── */
:root { --header-h: 64px; }

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}
#site-header.scrolled {
  padding-top: 0;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(27,45,69,0.10);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__img {
  width: 190px;
  height: auto;
  display: block;
  max-width: none;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
#site-header.scrolled .logo__img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(32%) saturate(900%) hue-rotate(185deg) brightness(88%) contrast(102%);
}

/* Footer logo */
.footer__logo .logo__img {
  width: 220px;
  height: auto;
  filter: none;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__link {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,0.12); }
.nav__link.active { color: #fff; }

/* When scrolled — dark text */
#site-header.scrolled .nav__link {
  color: rgba(27,45,69,0.65);
}
#site-header.scrolled .nav__link:hover,
#site-header.scrolled .nav__link.active {
  color: #192a41;
  background: rgba(25,42,65,0.08);
}

/* Header CTA button */
.header__cta {
  margin-left: 0.5rem;
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #fff;
  color: #1b2d45;
  padding: 0.75em 1.75em;
  border-radius: var(--radius-full);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.header__cta:hover { background: #192a41; color: #fff; }

#site-header.scrolled .header__cta {
  background: #1b2d45;
  color: #fff;
}
#site-header.scrolled .header__cta:hover {
  background: #192a41;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.15); }
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  transform-origin: center;
}
#site-header.scrolled .hamburger span { background: #1b2d45; }
#site-header.scrolled .hamburger:hover { background: rgba(27,45,69,0.08); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: var(--space-6) var(--space-6) var(--space-8);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-nav.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a {
  display: block;
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: rgba(27,45,69,0.70);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(25,42,65,0.08);
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: #192a41; }
.mobile-nav .btn { margin-top: var(--space-6); width: 100%; justify-content: center; text-align: center; }

/* Slightly reduce header CTA size on small screens for balance */
@media (max-width: 640px) {
  .header__cta { font-size: 0.9rem; padding: 0.6em 1.25em; }
  .mobile-nav a { font-size: 0.9rem; }
}

/* ─── Grain overlay (exact travelinspo) ─────────────────────── */
.grain-overlay { position: relative; }
.grain-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 1;
}

/* ─── Hero Sections ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1b2d45;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 45, 69, 0.60) 0%,
    rgba(27, 45, 69, 0.40) 50%,
    rgba(27, 45, 69, 0.80) 100%
  );
}
.hero__container {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 5rem;
}
.hero__content {
  max-width: 768px;
  color: #fff;
  text-align: left;
}
.hero__label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__title em { color: rgb(212, 149, 106); font-style: italic; }
.hero__subtitle {
  font-family: 'DM Sans', 'Inter', system-ui, sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.80);
  font-weight: 300;
  line-height: 1.625;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  align-items: center;
}

/* Terracotta filled button */
.btn--terracotta {
  background: #d4956a;
  color: #fff;
  border: none;
}
.btn--terracotta:hover { background: #c4854a; transform: translateY(-1px); }

/* Glass outline button */
.btn--glass {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,0.25); transform: translateY(-1px); }

/* Hero inline stats (exact travelinspo — flex row, no bar) */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero__stat {
  display: flex;
  flex-direction: column;
}
.hero__stat-number {
  display: flex;
  align-items: center;
  font-family: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}
.hero__stat-star {
  font-size: 1.3rem;
  margin-left: 3px;
  color: #fff;
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.60);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Scroll indicator — bouncing chevron (exact travelinspo) */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.50);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 1s infinite;
}

/* Page hero (non-home) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-20)) 0 var(--space-20);
  background: var(--color-primary);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(75,163,199,0.18) 0%, transparent 70%);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 42, 65, 0.75);
  z-index: 1;
}
.page-hero .label { display: block; margin-bottom: var(--space-4); }
.page-hero h1 { color: #fff; margin-bottom: var(--space-4); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin-inline: auto; font-size: var(--fs-md); }
.page-hero__breadcrumb {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
}
.page-hero__breadcrumb a { color: #192a41; }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero .container { position: relative; z-index: 2; }

/* ─── Destination / Tour Cards ──────────────────────────────── */
.cards-grid {
  display: grid;
  gap: var(--space-8);
}
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.card:hover .card__image img { transform: scale(1.08); }

.card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: #192a41;
  color: #ffffff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.card__badge--accent {
  background: var(--color-accent);
  color: #fff;
}
.card__badge--navy {
  background: var(--color-primary);
  color: #fff;
}

.card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  position: relative;
  padding-bottom: var(--space-3);
}
.card__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: #d4956a;
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}
.card:hover .card__title::after { width: 48px; }

.card__description {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.65;
  flex: 1;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}
.card__meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.card__meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.card__price span {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}
.card__footer { margin-top: auto; }

/* World Tour Cards (landscape) */
.world-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.world-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.world-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.world-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.world-card:hover .world-card__image img { transform: scale(1.07); }
.world-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,41,64,0.65) 0%, transparent 55%);
}
.world-card__region {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: #192a41;
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}
.world-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.world-card:hover .world-card__body { border-top-color: #d4956a; }
.world-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.world-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  flex: 1;
}
.world-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.world-card__price {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.world-card__price small {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--color-text-muted);
}

/* ─── Feature / Why Us Blocks ───────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.feature-block {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-block:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-block:hover::before { transform: scaleX(1); }

.feature-block__icon {
  width: 72px;
  height: 72px;
  background: rgba(25,42,65,0.06);
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(25,42,65,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-block:hover .feature-block__icon {
  background: rgba(25,42,65,0.09);
  border-color: #d4956a;
  box-shadow: 0 0 0 4px rgba(212,149,106,0.10);
}
.feature-block__icon svg,
.feature-block__icon img {
  width: 54px;
  height: 54px;
  color: #192a41;
  object-fit: contain;
  display: block;
  margin: auto;
}
.feature-block h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}
.feature-block p { font-size: var(--fs-sm); color: var(--color-text-muted); }

/* ─── Package Highlight Cards ───────────────────────────────── */
.package-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 4px;
  background: #d4956a;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card:hover::after { transform: scaleY(1); }
.package-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #192a41;
  background: rgba(212,175,55,0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.package-card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.package-card p { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-5); }
.package-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.package-card__price .amount {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}
.package-card__price .per {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}
.package-card__includes {
  margin-bottom: var(--space-6);
}
.package-card__includes li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-2);
}
.package-card__includes li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #192a41;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Statistics / Counters ─────────────────────────────────── */
.stats-section {
  background: var(--color-primary);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(75,163,199,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.10) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}
.stat-item {
  text-align: center;
  padding: var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-item__suffix { font-size: 0.7em; }
.stat-item__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.stat-item__desc {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-1);
}

/* ─── Testimonials Slider ───────────────────────────────────── */
.testimonials-section {
  background: #ffffff;
  padding: var(--space-16) 0;
}

/* 3-column testimonial grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 1.25rem;
  align-items: center;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e8e2d9;
  position: relative;
  height: 100%;
}

/* Side cards — slightly muted */
.testimonial-card--side {
  opacity: 0.92;
}

/* Featured centre card — navy background, elevated */
.testimonial-card--featured {
  background: #192a41;
  border-color: transparent;
  padding: var(--space-8);
  box-shadow: 0 16px 48px rgba(25,42,65,0.22);
  transform: scale(1.03);
}
.testimonial-card--featured .testimonial-quote { color: rgba(255,255,255,0.92); font-size: clamp(var(--fs-sm), 1.5vw, var(--fs-base)); }
.testimonial-card--featured .testimonial-author__name { color: #fff; }
.testimonial-card--featured .testimonial-author__location { color: rgba(255,255,255,0.55); }
.testimonial-card--featured .testimonial-stars svg { fill: #d4956a; }
.testimonial-card--featured .testimonial-author__avatar { background: rgba(255,255,255,0.15); }

.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: rgba(255,255,255,0.20);
  line-height: 1;
  margin-bottom: -0.4rem;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: #192a41;
  fill: var(--color-secondary);
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 1.2vw, var(--fs-sm));
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-author__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  margin-bottom: 0;
}
.testimonial-author__location {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  border-color: #192a41;
  color: #192a41;
  box-shadow: var(--shadow-gold);
  transform: scale(1.08);
}
.slider-btn svg { width: 20px; height: 20px; }
.slider-dots {
  display: flex;
  gap: var(--space-2);
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: #192a41;
  width: 24px;
  border-radius: var(--radius-full);
}

/* ─── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid #efefef;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  font-size: var(--fs-md);
  cursor: pointer;
  user-select: none;
  gap: var(--space-4);
  transition: background var(--transition);
}
.faq-question:hover { background: #faf8f5; }
.faq-item.open .faq-question { background: #faf8f5; color: #192a41; }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: var(--radius-full);
}
.faq-icon { position: relative; }
.faq-icon span {
  display: block;
  width: 12px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--transition);
}
.faq-icon span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 12px;
  height: 2px;
  background: currentColor;
  transition: transform var(--transition);
}
.faq-item.open .faq-icon span::before { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ─── Gallery Grid ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-3);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,41,64,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { width: 32px; height: 32px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.28); }
.lightbox__nav--prev { left: -64px; }
.lightbox__nav--next { right: -64px; }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-sm);
}

/* ─── Contact Form ───────────────────────────────────────────── */
.contact-section { padding: var(--space-24) 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: #faf8f5;
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; color: #ffffff; }
.contact-card__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}
.contact-card__value { font-weight: var(--fw-medium); color: #192a41; }
.contact-card__value a { color: var(--color-primary); transition: color var(--transition); }
.contact-card__value a:hover { color: #192a41; }

/* Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.form-subtitle { font-size: var(--fs-sm); color: var(--color-text-muted); margin-bottom: var(--space-8); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.form-grid .form-group--full { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-primary);
}
.form-group label .required { color: #192a41; margin-left: 2px; }
.form-control {
  padding: 0.85em 1.1em;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: #faf8f5;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.form-control:focus {
  border-color: #192a41;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-control.error { border-color: #e53e3e; }
.form-control::placeholder { color: var(--color-text-muted); }
select.form-control { 
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23192a41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.85em center;
  background-size: 20px;
  padding-right: 2.5em;
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error {
  font-size: var(--fs-xs);
  color: #e53e3e;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-control { border-color: #e53e3e; }
.form-success {
  display: none;
  padding: var(--space-4);
  background: rgba(72, 187, 120, 0.12);
  border: 1px solid #48bb78;
  border-radius: var(--radius-md);
  color: #276749;
  font-size: var(--fs-sm);
  margin-top: var(--space-4);
}

/* ─── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
  background: #192a41;
  background-image: url('https://images.unsplash.com/photo-1543959190-4f42c5caa88f?w=1920&q=85&fit=crop');
  background-size: cover;
  background-position: center 40%;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.nl-skyline {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: var(--space-10);
}
.nl-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,42,65,0.82) 0%, rgba(25,42,65,0.75) 50%, rgba(25,42,65,0.88) 100%);
  z-index: 0;
}
.newsletter-section::after { display: none; }
.newsletter-section .container { position: relative; z-index: 1; }

.newsletter-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

/* London landmark decorations */
.nl-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.nl-london { position: absolute; }

/* London Eye — left side, vertically centred */
.nl-london-eye {
  width: 300px;
  height: 330px;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
}

/* Big Ben — right side */
.nl-london-bigben {
  width: 110px;
  height: 290px;
  right: 6%;
  bottom: 0;
  opacity: 0.85;
}

/* Tower Bridge — bottom, full width */
.nl-london-bridge {
  width: 100%;
  max-width: 700px;
  height: 120px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  opacity: 0.75;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.07); }
}

/* Organic outline blob shapes */
.nl-blob {
  position: absolute;
  animation: blobFloat 10s ease-in-out infinite;
}
.nl-blob--a {
  width: 340px; height: 340px;
  top: -60px; right: 5%;
  animation-delay: 0s; animation-duration: 11s;
}
.nl-blob--b {
  width: 260px; height: 260px;
  bottom: -40px; left: 3%;
  animation-delay: 1.5s; animation-duration: 9s;
}
.nl-blob--c {
  width: 180px; height: 180px;
  top: 40%; left: 5%;
  animation-delay: 0.8s; animation-duration: 13s;
}
.nl-blob--d {
  width: 220px; height: 220px;
  bottom: 10%; right: 12%;
  animation-delay: 2.5s; animation-duration: 8s;
}
.nl-blob--e {
  width: 160px; height: 160px;
  top: 15%; left: 22%;
  animation-delay: 3.2s; animation-duration: 12s;
}
.nl-blob--f {
  width: 290px; height: 290px;
  bottom: -30px; right: 28%;
  animation-delay: 0.5s; animation-duration: 14s;
}
.nl-blob--g {
  width: 130px; height: 130px;
  top: 55%; right: 22%;
  animation-delay: 4s; animation-duration: 10s;
}
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33%       { transform: translateY(-16px) rotate(6deg) scale(1.04); }
  66%       { transform: translateY(8px) rotate(-4deg) scale(0.97); }
}

.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.newsletter-inner .label { margin-bottom: var(--space-3); }
.newsletter-inner h2 { color: #fff; margin-bottom: var(--space-3); }
.newsletter-inner p { color: rgba(255,255,255,0.65); margin-bottom: var(--space-8); }
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-6);
}
.newsletter-form input {
  flex: 1;
  background: none;
  color: #fff;
  font-size: var(--fs-sm);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=85&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--space-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,42,65,0.72) 0%, rgba(25,42,65,0.60) 50%, rgba(25,42,65,0.78) 100%);
}
.cta-section h2 { color: #fff; position: relative; }
.cta-section p { color: rgba(255,255,255,0.80); max-width: 520px; margin: var(--space-4) auto var(--space-8); position: relative; font-size: var(--fs-md); font-weight: 300; }

/* ─── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: #192a41;
  color: rgba(255,255,255,0.80);
  padding: var(--space-20) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: var(--space-5); }
.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: #192a41;
  color: #192a41;
  background: rgba(212,175,55,0.1);
}
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-6);
  position: relative;
  padding-bottom: var(--space-3);
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: #d4956a;
  border-radius: var(--radius-full);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer-links a:hover { color: #192a41; }
.footer-links a::before {
  content: '›';
  color: rgba(255,255,255,0.35);
  font-size: var(--fs-md);
  line-height: 1;
}
.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-4);
  align-items: flex-start;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.45); }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: #192a41; }
.footer-bottom {
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p { font-size: var(--fs-xs); color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: #192a41; }
.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}
.footer-bottom-links a {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: #192a41; }

/* ─── Back to Top ────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: #192a41;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  border: 2px solid var(--color-secondary);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
#back-to-top:hover { background: #d4956a; color: var(--color-primary); transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; }

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: calc(var(--space-8) + 60px);
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all var(--transition);
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ─── Scroll Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.revealed { opacity: 1; }
/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }
.stagger > *:nth-child(7) { transition-delay: 0.6s; }
.stagger > *:nth-child(8) { transition-delay: 0.7s; }

/* ─── Keyframe Animations ────────────────────────────────────── */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50%       { transform: translateX(-50%) translateY(-6px); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* Exact travelinspo animation classes */
.animate-fade-up  { animation: 0.7s cubic-bezier(0.22, 1, 0.36, 1) both fadeUp; }
.animate-fade-in  { animation: 0.6s ease both fadeIn; }

/* ─── About Page Specifics ──────────────────────────────────── */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.story-text .label { display: block; margin-bottom: var(--space-3); }
.story-text h2 { margin-bottom: var(--space-5); }
.story-text p { margin-bottom: var(--space-4); }
.story-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--color-secondary);
  border-radius: calc(var(--radius-xl) + 8px);
  z-index: -1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-secondary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card h3 { font-size: var(--fs-xl); margin-bottom: var(--space-4); }
.value-card p { font-size: var(--fs-sm); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}
.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: #fff;
  margin: 0 auto var(--space-5);
  border: 3px solid var(--color-secondary);
}
.team-card h3 { font-size: var(--fs-lg); margin-bottom: var(--space-1); }
.team-card .role {
  font-size: var(--fs-sm);
  color: #192a41;
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-3);
}
.team-card p { font-size: var(--fs-xs); color: var(--color-text-muted); }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.award-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.award-item:hover { box-shadow: var(--shadow-md); }
.award-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,175,55,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.award-icon svg { width: 28px; height: 28px; color: #192a41; }
.award-info h4 { font-size: var(--fs-md); margin-bottom: var(--space-1); }
.award-info p { font-size: var(--fs-xs); margin: 0; }

/* ─── Contact Page ──────────────────────────────────────────── */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.hours-table { margin-top: var(--space-4); }
.hours-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: var(--color-text-muted); }
.hours-table td:last-child { color: var(--color-primary); font-weight: var(--fw-medium); text-align: right; }

/* Regional tour sections */
.region-section { padding: var(--space-16) 0 var(--space-8); }
.region-heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}
.region-heading h2 {
  font-size: var(--fs-2xl);
  white-space: nowrap;
}
.region-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.region-heading h2::after { display: none; }

/* ─── Responsive Breakpoints ─────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 72px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .story-layout { grid-template-columns: 1fr; }
  .story-image { max-width: 560px; margin-inline: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .lightbox__nav--prev { left: -52px; }
  .lightbox__nav--next { right: -52px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(even) { border-right: none; }
  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-group--full { grid-column: span 1; }
  .contact-form-wrapper { padding: var(--space-6); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: scale(1); }
  .testimonial-card--side { opacity: 1; }
  .testimonial-card { padding: var(--space-6); }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); padding: var(--space-4); }
  .newsletter-form input { text-align: center; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .lightbox__nav--prev { left: -40px; }
  .lightbox__nav--next { right: -40px; }
  .lightbox__nav { width: 36px; height: 36px; }
  #back-to-top { bottom: var(--space-4); right: var(--space-4); }
  .whatsapp-float { bottom: var(--space-4); right: calc(var(--space-4) + 58px); }
  .slider-controls { gap: var(--space-4); }
  .page-hero { padding-top: calc(var(--header-h) + var(--space-12)); padding-bottom: var(--space-12); }
  .section { padding: var(--space-16) 0; }
  .section--lg { padding: var(--space-20) 0; }
  .region-heading h2 { font-size: var(--fs-xl); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
  .lightbox__inner { max-width: 100vw; }
  .lightbox__nav--prev { left: 4px; top: auto; bottom: -56px; transform: none; }
  .lightbox__nav--next { right: 4px; top: auto; bottom: -56px; transform: none; }
  .lightbox__close { top: 8px; right: 8px; background: rgba(0,0,0,0.5); }

  /* Hero adjustments */
  .hero__content { text-align: center; }
  .hero__label { text-align: center; }
  .hero__stats { justify-content: center; gap: 1.5rem; }
  .hero__actions { align-items: center; }

  /* Cards full width */
  .cards-grid--2,
  .cards-grid--3 { grid-template-columns: 1fr; }

  /* Section header tighter */
  .section__header { margin-bottom: var(--space-12); }

  /* CTA buttons stack */
  .cta-section .btn { width: 100%; max-width: 280px; }

  /* Feature blocks more compact */
  .feature-block { padding: var(--space-6) var(--space-5); }

  /* Newsletter inner */
  .newsletter-inner { padding: var(--space-10) var(--space-4); }

  /* Contact cards */
  .contact-card { flex-direction: column; text-align: center; align-items: center; }

  /* Footer */
  .footer-links { columns: 1; }

  /* Page hero smaller text */
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

  /* World cards */
  .world-card { max-width: 100%; }

  /* Package cards */
  .package-card__price .amount { font-size: var(--fs-2xl); }

  /* Wider buttons */
  .btn--lg { padding: 0.85em 1.5em; }
}
