/* ============================================================
   VALGEE TRAVELS AND TOURS LIMITED — Design System
   Premium Pan-African Travel Brand
   ============================================================ */

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

:root {
  /* Brand Colors */
  --navy: #1B3A5C;
  --navy-dark: #122740;
  --navy-light: #2A5580;
  --gold: #C9972B;
  --gold-light: #E0B94E;
  --gold-dark: #A67B1A;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --cream: #FAF7F0;
  --earth-warm: #8B6F4E;
  --earth-sand: #D4C4A8;
  --earth-clay: #C4A882;
  --charcoal: #2C2C2C;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --border-light: #E8E4DD;
  --border-medium: #D0C9BE;
  --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 58, 92, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 58, 92, 0.12);
  --shadow-xl: 0 16px 60px rgba(27, 58, 92, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 151, 43, 0.2);

  /* Typography */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-narrow: 800px;
  --nav-height: 80px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h5 {
  font-size: 1.125rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }

.overline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-sm);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--wide {
  max-width: var(--container-wide);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--sm {
  padding: var(--space-xl) 0;
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 255, 255, 0.8);
}

.section--cream {
  background-color: var(--cream);
}

.section--off-white {
  background-color: var(--off-white);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  justify-content: center;
}

.flex--wrap {
  flex-wrap: wrap;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* ---------- SECTION HEADERS ---------- */
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header .lead {
  max-width: 560px;
}

.section-header.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Gold decorative line */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: none;
  margin-bottom: var(--space-md);
}

.text-center .gold-line,
.gold-line.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-base);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav--scrolled .nav__logo-text {
  color: var(--navy);
}

.nav--scrolled .nav__link {
  color: var(--text-primary);
}

.nav--scrolled .nav__link:hover {
  color: var(--gold);
}

.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav__logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-base);
}

.nav__logo-text span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: -2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__cta {
  margin-left: var(--space-sm);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  min-width: 240px;
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__dropdown-link:hover {
  background: var(--cream);
  color: var(--gold) !important;
}

.nav__dropdown-link::after {
  display: none;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav--scrolled .nav__toggle span {
  background: var(--navy);
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  padding: calc(var(--nav-height) + 2rem) var(--space-md) var(--space-lg);
  overflow-y: auto;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav__mobile-overlay--active {
  opacity: 1;
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile-sub {
  padding-left: 1.5rem;
}

.nav__mobile-sub a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

.nav__mobile-cta {
  margin-top: var(--space-lg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: transparent;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
}

.btn--ghost:hover {
  color: var(--gold-dark);
}

.btn--ghost svg {
  transition: transform var(--transition-fast);
}

.btn--ghost:hover svg {
  transform: translateX(4px);
}

/* ── Form Alerts ── */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.form-alert__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-alert--success {
  background: #edfaf3;
  color: #0e6640;
  border: 1px solid #a7e9c3;
}

.form-alert--error {
  background: #fff0f0;
  color: #9b1c1c;
  border: 1px solid #f5c0c0;
}

.form-alert--validation {
  background: #fffbeb;
  color: #78350f;
  border: 1px solid #fcd34d;
}

.form-alert--validation ul {
  margin: 0.25rem 0 0;
  padding-left: 1.25rem;
  font-weight: 400;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.825rem;
}

.btn--lg {
  padding: 1.1rem 2.75rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ---------- HERO SECTIONS ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 39, 64, 0.85) 0%,
    rgba(27, 58, 92, 0.7) 50%,
    rgba(27, 58, 92, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--nav-height);
}

.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero__overline::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

/* ── Hero Slider ── */
.hero--slider {
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  display: flex;
  align-items: center;
}

.hero__slide--active {
  opacity: 1;
  z-index: 1;
}

.hero__slide-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 39, 64, 0.85) 0%,
    rgba(27, 58, 92, 0.7) 50%,
    rgba(27, 58, 92, 0.6) 100%
  );
}

.hero--slider .container {
  position: relative;
  z-index: 2;
}

.hero--slider .hero__content {
  position: relative;
  z-index: 2;
}

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

@media (max-width: 640px) {
  .hero__arrow { display: none; }
}

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.hero__dot--active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Page Hero (interior pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  background: var(--navy);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--navy), transparent);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb svg {
  width: 14px;
  height: 14px;
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card__image img,
.card__image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img,
.card:hover .card__image-placeholder {
  transform: scale(1.05);
}

.card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-full);
}

.card__body {
  padding: var(--space-md);
}

.card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card__meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.card:hover .card__title {
  color: var(--gold);
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.card__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
}

.card__price small {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Feature Card */
.feature-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 151, 43, 0.1), rgba(201, 151, 43, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.section--navy .stat-card__label {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  position: relative;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial__text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial__name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- PARTNER LOGOS ---------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
}

.partner-logo {
  height: 36px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition-base);
}

.partner-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

.partner-placeholder {
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- FORMS ---------- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 151, 43, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.form-panel h3 {
  margin-bottom: var(--space-md);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.footer__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer__logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer h5 {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
  color: var(--gold);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--ease-smooth);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-30px);
}

.reveal--left.reveal--visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(30px);
}

.reveal--right.reveal--visible {
  transform: translateX(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(201, 151, 43, 0.1) 50%,
    transparent 100%
  );
}

/* ---------- SERVICE DIVISIONS ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.service-block--reverse {
  direction: rtl;
}

.service-block--reverse > * {
  direction: ltr;
}

.service-block__image {
  position: relative;
  overflow: hidden;
}

.service-block__image .img-placeholder {
  height: 100%;
  min-height: 400px;
}

.service-block__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-block__content h3 {
  margin-bottom: var(--space-sm);
}

.service-block__content p {
  margin-bottom: var(--space-md);
}

.service-block__list {
  margin-bottom: var(--space-md);
}

.service-block__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-block__list li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201, 151, 43, 0.05);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201, 151, 43, 0.05);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

/* ---------- ACCORDION ---------- */
.accordion__item {
  border-bottom: 1px solid var(--border-light);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.accordion__trigger svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.accordion__item--active .accordion__trigger svg {
  transform: rotate(45deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.accordion__content-inner {
  padding-bottom: var(--space-md);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ---------- PROCESS / TIMELINE ---------- */
.process-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}

.process-step__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
}

.process-step__content h4 {
  margin-bottom: 0.25rem;
}

.process-step__content p {
  font-size: 0.9rem;
}

/* ---------- TABS ---------- */
.tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
}

.tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tab:hover {
  color: var(--navy);
}

.tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-content {
  display: none;
}

.tab-content--active {
  display: block;
}

/* ---------- INSIGHT / BLOG CARDS ---------- */
.insight-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.insight-card__image {
  height: 200px;
  overflow: hidden;
}

.insight-card__image .img-placeholder {
  height: 100%;
}

.insight-card__body {
  padding: var(--space-md);
}

.insight-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 151, 43, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.insight-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.insight-card:hover .insight-card__title {
  color: var(--gold);
}

.insight-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Featured Insight */
.insight-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.insight-featured__image {
  min-height: 350px;
  overflow: hidden;
}

.insight-featured__image .img-placeholder {
  height: 100%;
}

.insight-featured__body {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-featured__title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block--reverse {
    direction: ltr;
  }

  .service-block__image .img-placeholder {
    min-height: 280px;
  }

  .insight-featured {
    grid-template-columns: 1fr;
  }

  .insight-featured__image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 4rem;
    --space-xl: 3rem;
  }

  .nav__menu {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__mobile-overlay {
    display: block;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero__content {
    padding-right: 0;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-group .btn {
    width: 100%;
  }

  .partners {
    gap: var(--space-lg);
  }

  .section-header {
    max-width: 100%;
  }

  .stat-card {
    padding: var(--space-md);
  }

  .form-panel {
    padding: var(--space-md);
  }

  .page-hero {
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }

  .hero {
    min-height: 90vh;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================
   TOUR FLYER CARDS
   ============================ */
.tour-flyer {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.1);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.tour-flyer__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  z-index: 2;
}

.tour-flyer__badge--gold { background: var(--gold); color: var(--navy); }
.tour-flyer__badge--warm { background: #8B4513; color: var(--white); }

.tour-flyer__header {
  position: relative;
  padding: var(--space-2xl) var(--space-xl);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tour-flyer__image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tour-flyer__header-content { position: relative; z-index: 1; }

.tour-flyer__overline {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tour-flyer__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin: 0 0 0.35rem;
  line-height: 1.2;
}

.tour-flyer__subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0;
}

.tour-flyer__body { padding: var(--space-xl); }

.tour-flyer__meta-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

.tour-flyer__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.tour-flyer__meta-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 2px;
}

.tour-flyer__meta-item div { display: flex; flex-direction: column; }
.tour-flyer__meta-item strong { font-size: 0.75rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; }
.tour-flyer__meta-item span { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }

.tour-flyer__highlights h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 1rem;
}

.tour-flyer__highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.tour-flyer__highlight-item {
  background: var(--cream);
  border-radius: 8px;
  padding: 1rem;
}

.tour-flyer__highlight-day {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.tour-flyer__highlight-item strong { display: block; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 0.25rem; }
.tour-flyer__highlight-item p { font-size: 0.825rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }

.tour-flyer__inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--cream);
  border-radius: 8px;
}

.tour-flyer__inclusions h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.tour-flyer__inclusions ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.tour-flyer__inclusions li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.tour-flyer__inclusions li svg { width: 14px; height: 14px; flex-shrink: 0; }
.tour-flyer__inclusions div:first-child li svg { stroke: #28a745; }
.tour-flyer__inclusions div:last-child li svg { stroke: #dc3545; }

/* ============================
   FLEET / CAR CARDS
   ============================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.car-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.car-card--wide { grid-column: span 3; }

.car-card__image {
  height: 180px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.car-card__image--dark { background: #1a1a1a; }
.car-card__image--tall { height: 220px; }

.car-card__image svg, .car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-card__category {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.car-card__category--gold { background: var(--gold); color: var(--navy); }
.car-card__category--navy { background: var(--navy); color: var(--white); }

.car-card__body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.car-card__body h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.car-card__tagline { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.75rem; font-style: italic; }

.car-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.car-spec {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.car-spec svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--gold); }

.car-card__body p { font-size: 0.875rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 1rem; }

.car-card__uses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  margin-top: auto;
}

.car-card__uses span {
  background: rgba(27,58,92,0.08);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* ============================
   SERVICE FEATURE CARDS (Car Hire page)
   ============================ */
.service-feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.service-feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(27,58,92,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
}

.service-feature-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.service-feature-card p { font-size: 0.875rem; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* ============================
   RESPONSIVE OVERRIDES
   ============================ */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .car-card--wide { grid-column: span 2; }
  .tour-flyer__inclusions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .car-card--wide { grid-column: span 1; }
  .tour-flyer__meta-row { grid-template-columns: repeat(2, 1fr); }
  .tour-flyer__highlights-grid { grid-template-columns: 1fr; }
  .tour-flyer__inclusions { grid-template-columns: 1fr; }
}

/* ============================
   TOURS DESTINATION HEADERS
   ============================ */
.tours-destination-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border);
}

.tours-destination-flag {
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
}

.tours-destination-header h2 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

.tours-destination-header p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
