/*-----------------------------------*\
  #style.css - Halisi Africa Inspired
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 * Redesigned for Beyond Ocean - Safari & Tours
 * Inspired by halisiafrica.tours premium travel aesthetic
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /* Earth & Safari Palette - inspired by African landscapes */
  --terracotta: #c75d3a;
  --terracotta-dark: #a64a2c;
  --terracotta-light: #fbe9e0;
  --sand: #d4a574;
  --sand-light: #f5ebe0;
  --savanna: #b89968;
  --baobab: #6b4423;
  --baobab-dark: #3d2817;
  --safari-green: #4a6741;
  --safari-green-dark: #2f4528;
  --safari-green-light: #e8efe5;
  --sunset: #e8a87c;
  --sunset-gold: #d4a017;
  --ocean-deep: #0c4a6e;
  --ocean: #0891b2;
  --ocean-light: #e0f2fe;

  --white: #ffffff;
  --white-soft: #faf8f5;
  --cream: #f7f3ec;
  --gray-50: #f5f3ef;
  --gray-100: #e8e4dd;
  --gray-200: #d4cfc4;
  --gray-300: #a8a195;
  --gray-400: #7a7264;
  --gray-500: #5a5347;
  --gray-600: #3d3830;
  --gray-700: #2a2620;
  --gray-800: #1a1813;

  --shadow-sm: 0 2px 8px rgba(58, 40, 23, 0.06);
  --shadow-md: 0 8px 24px rgba(58, 40, 23, 0.08);
  --shadow-lg: 0 16px 48px rgba(58, 40, 23, 0.12);
  --shadow-xl: 0 24px 64px rgba(58, 40, 23, 0.18);
  --shadow-warm: 0 8px 32px rgba(199, 93, 58, 0.18);

  --ff-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-accent: 'Comforter Brush', cursive;

  --fs-xs: 0.875rem;
  --fs-sm: 1rem;
  --fs-base: 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;
  --fs-7xl: 5.5rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --section-padding: 100px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
li { list-style: none; }
a { text-decoration: none; color: inherit; }
a, img, span, input, button, ion-icon { display: block; }
input, button { border: none; background: none; font: inherit; }
button { cursor: pointer; }
input { width: 100%; }
img { height: auto; max-width: 100%; }
address { font-style: normal; }
:focus-visible { outline-offset: 3px; outline: 2px solid var(--terracotta); }

html {
  font-family: var(--ff-primary);
  font-size: 12px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--white-soft);
  font-size: 1.7rem;
  color: var(--gray-500);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: 24px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: var(--fw-600); font-size: var(--fs-sm); padding: 16px 32px;
  border-radius: var(--radius-full); transition: var(--transition-base);
  cursor: pointer; border: 2px solid transparent; letter-spacing: 0.02em;
  text-transform: uppercase; font-size: 1.2rem;
}

.btn-primary { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); box-shadow: 0 6px 20px rgba(199, 93, 58, 0.35); }
.btn-primary:is(:hover, :focus) { background: var(--terracotta-dark); border-color: var(--terracotta-dark); box-shadow: 0 10px 30px rgba(199, 93, 58, 0.5); transform: translateY(-3px); }

.btn-outline { background: transparent; color: var(--baobab); border-color: var(--baobab); }
.btn-outline:is(:hover, :focus) { background: var(--baobab); color: var(--white); transform: translateY(-3px); }

.btn-secondary { background: var(--white); color: var(--terracotta); border-color: var(--white); }
.btn-secondary:is(:hover, :focus) { background: var(--baobab); color: var(--white); border-color: var(--baobab); transform: translateY(-3px); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:is(:hover, :focus) { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-3px); }

.section { padding-block: var(--section-padding); }
.section-subtitle {
  font-family: var(--ff-accent); color: var(--terracotta);
  font-size: var(--fs-3xl); text-align: center; margin-bottom: 12px;
  font-weight: 400;
}
.section-title {
  font-family: var(--ff-display); font-size: var(--fs-5xl);
  color: var(--gray-800); text-align: center; margin-bottom: 16px;
  line-height: 1.15; font-weight: var(--fw-700); letter-spacing: -0.02em;
}
.section-desc { text-align: center; color: var(--gray-400); max-width: 640px; margin: 0 auto 60px; font-size: var(--fs-lg); }

.h2 { font-family: var(--ff-display); font-size: var(--fs-4xl); color: var(--gray-800); font-weight: var(--fw-700); line-height: 1.2; }
.h3 { font-family: var(--ff-display); font-size: var(--fs-2xl); font-weight: var(--fw-600); }

.img-cover { width: 100%; height: 100%; object-fit: cover; }

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 20px 0; transition: var(--transition-base);
  background: rgba(26, 24, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(26, 24, 19, 0.08);
}
.header.scrolled {
  background: rgba(26, 24, 19, 0.95);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(26, 24, 19, 0.15);
}
.header.transparent {
  background: transparent;
  box-shadow: none;
}
.header.transparent.scrolled {
  background: rgba(26, 24, 19, 0.95);
  box-shadow: 0 4px 30px rgba(26, 24, 19, 0.15);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  color: var(--white); font-family: var(--ff-display);
  font-size: 2.6rem; font-weight: var(--fw-800); letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
}
.nav-toggle-btn { background: transparent; border: none; padding: 8px; cursor: pointer; display: none; z-index: 1001; }
.nav-toggle-btn ion-icon { color: var(--white); font-size: 32px; --ionicon-stroke-width: 40px; }
.nav-toggle-btn .close { display: none; }
.navbar { display: flex; align-items: center; gap: 36px; }
.navbar-list { display: flex; gap: 36px; align-items: center; }
.navbar-link {
  color: rgba(255,255,255,0.85); font-size: 1.4rem;
  font-weight: var(--fw-500); padding: 6px 0; position: relative;
  transition: var(--transition-fast); letter-spacing: 0.02em;
}
.navbar-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--terracotta);
  transition: var(--transition-base); border-radius: 1px;
  transform: translateX(-50%);
}
.navbar-link:is(:hover, :focus), .navbar-link.active { color: var(--white); }
.navbar-link:is(:hover, :focus)::after, .navbar-link.active::after { width: 100%; }

@media (max-width: 991px) {
  .nav-toggle-btn { display: block; }
  .navbar {
    position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
    background: var(--baobab-dark); padding: 100px 32px 32px;
    flex-direction: column; align-items: flex-start; gap: 0;
    transition: var(--transition-slow); box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .navbar.active { right: 0; }
  .navbar-list { flex-direction: column; gap: 8px; width: 100%; }
  .navbar-list li { width: 100%; }
  .navbar-link { font-size: 1.5rem; padding: 14px 16px; border-radius: var(--radius-md); width: 100%; }
  .navbar-link:hover { background: rgba(255,255,255,0.05); }
  .navbar-link::after { display: none; }
  .navbar .btn { margin-top: 16px; width: 100%; }
  .nav-toggle-btn.active .open { display: none; }
  .nav-toggle-btn.active .close { display: block; }
}

/*-----------------------------------*\
  #HERO - Fullscreen cinematic
\*-----------------------------------*/

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 80px; color: var(--white);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,24,19,0.55) 0%, rgba(26,24,19,0.3) 50%, rgba(26,24,19,0.55) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 40px;
  text-align: center; padding-block: 60px;
}
.hero-content { max-width: 880px; margin: 0 auto; }
.hero .section-subtitle { text-align: center; font-size: 3rem; color: var(--sunset); margin-bottom: 16px; }
.hero-title {
  font-family: var(--ff-display); font-size: var(--fs-7xl);
  color: var(--white); font-weight: var(--fw-700);
  line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.025em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-text {
  color: rgba(255,255,255,0.92); font-size: 1.6rem;
  line-height: 1.7; margin-bottom: 36px; max-width: 700px; margin-inline: auto;
}
.btn-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.hero-search {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full); padding: 8px;
  display: flex; gap: 8px; max-width: 640px; margin: 30px auto 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero-search input {
  flex: 1; padding: 14px 24px; background: transparent;
  color: var(--white); font-size: 1.4rem; border: none; outline: none;
}
.hero-search input::placeholder { color: rgba(255,255,255,0.7); }
.hero-search .btn { padding: 12px 24px; font-size: 1.2rem; }

/* Hero with side image */
.hero-split .container {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center; text-align: left;
}
.hero-split .hero-content { max-width: none; margin: 0; }
.hero-split .hero .section-subtitle { text-align: left; }
.hero-split .hero-text { margin-inline: 0; }
.hero-split .btn-group { justify-content: flex-start; }
.hero-split .hero-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-split .hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-split .hero-image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-image-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  padding: 16px 20px; border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.hero-image-badge .badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-image-badge strong { display: block; color: var(--gray-800); font-size: 1.3rem; }
.hero-image-badge span { color: var(--gray-400); font-size: 1.1rem; }

/*-----------------------------------*\
  #DESTINATION
\*-----------------------------------*/

.destination { background: var(--white-soft); }
.destination .section-subtitle { text-align: center; margin-bottom: 12px; }
.destination .section-title { text-align: center; margin-bottom: 60px; }

.destination-list { display: flex; flex-wrap: wrap; gap: 24px; }
.destination-list > li { width: calc(33.33% - 16px); }
.destination-list .w-50 { width: calc(50% - 12px); }
.destination-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; display: block; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.destination-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,19,0.85) 0%, rgba(26,24,19,0.3) 50%, transparent 80%);
  z-index: 1; transition: var(--transition-base);
}
.destination-card:hover::after { background: linear-gradient(to top, rgba(199,93,58,0.85) 0%, rgba(26,24,19,0.3) 50%, transparent 80%); }
.destination-card .card-banner { aspect-ratio: 4 / 3; }
.destination-card img { transition: var(--transition-slow); width: 100%; height: 100%; object-fit: cover; display: block; }
.destination-card:is(:hover, :focus) img { transform: scale(1.08); }
.destination-card .card-content {
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 28px; z-index: 2;
}
.destination-card .card-subtitle {
  color: var(--sunset); font-family: var(--ff-accent);
  font-size: 2.2rem; margin-bottom: 4px;
}
.destination-card .card-title {
  color: var(--white); font-family: var(--ff-display);
  font-size: var(--fs-2xl); font-weight: var(--fw-700);
}

/*-----------------------------------*\
  #TOUR CARDS - Grid
\*-----------------------------------*/

.tour-grid-section { background: var(--white-soft); }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tour-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition-base); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
}
.tour-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.tour-card .card-image {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.tour-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition-slow);
}
.tour-card:hover .card-image img { transform: scale(1.08); }
.tour-card .card-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--terracotta); color: var(--white);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 1.1rem; font-weight: var(--fw-600);
  letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.tour-card .card-duration {
  position: absolute; top: 16px; right: 16px;
  background: rgba(26,24,19,0.7); backdrop-filter: blur(8px);
  color: var(--white); padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 1.1rem; font-weight: var(--fw-500);
  display: flex; align-items: center; gap: 6px;
}
.tour-card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-card .card-location {
  display: flex; align-items: center; gap: 6px;
  color: var(--terracotta); font-size: 1.2rem;
  font-weight: var(--fw-600); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.tour-card .card-location ion-icon { font-size: 16px; }
.tour-card .card-title {
  font-family: var(--ff-display); font-size: 1.9rem;
  color: var(--gray-800); font-weight: var(--fw-700);
  margin-bottom: 12px; line-height: 1.3;
}
.tour-card .card-text {
  color: var(--gray-400); font-size: 1.3rem;
  line-height: 1.6; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.tour-card .card-meta {
  display: flex; gap: 16px; margin-bottom: 20px;
  padding-block: 16px; border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.tour-card .meta-item {
  display: flex; align-items: center; gap: 6px;
  color: var(--gray-400); font-size: 1.1rem;
}
.tour-card .meta-item ion-icon { color: var(--terracotta); font-size: 16px; }
.tour-card .card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; gap: 12px;
}
.tour-card .card-price {
  display: flex; flex-direction: column; gap: 2px;
}
.tour-card .price-from {
  font-size: 1rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.tour-card .price-amount {
  font-family: var(--ff-display); font-size: 2.2rem;
  color: var(--terracotta); font-weight: var(--fw-700);
  line-height: 1;
}
.tour-card .price-amount small {
  font-size: 1.1rem; color: var(--gray-400);
  font-family: var(--ff-primary); font-weight: 500;
}
.tour-card .card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--baobab); color: var(--white);
  padding: 10px 20px; border-radius: var(--radius-full);
  font-size: 1.2rem; font-weight: var(--fw-600);
  transition: var(--transition-fast);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.tour-card .card-cta:is(:hover, :focus) { background: var(--terracotta); gap: 10px; }

/*-----------------------------------*\
  #POPULAR / BLOG CARDS (legacy)
\*-----------------------------------*/

.popular { background: var(--white); }
.popular-list, .blog-list { display: grid; gap: 30px; }
.popular-card, .blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition-base); border: 1px solid var(--gray-100);
}
.popular-card:hover, .blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
:is(.popular, .blog) .card-banner { position: relative; aspect-ratio: 3 / 2; }
:is(.popular, .blog) .card-banner img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
:is(.popular, .blog) .card-banner:hover img { transform: scale(1.08); }
:is(.popular, .blog) .card-content { padding: 24px; }
:is(.popular, .blog) .card-title {
  color: var(--gray-700); font-size: var(--fs-lg);
  font-weight: var(--fw-600); margin-block: 12px; line-height: 1.4;
}
:is(.popular, .blog) .card-title > a { color: inherit; transition: var(--transition-fast); }
:is(.popular, .blog) .card-title > a:is(:hover, :focus) { color: var(--terracotta); }

.btn-link {
  color: var(--terracotta); font-weight: var(--fw-600);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--fs-sm); transition: var(--transition-fast);
}
.btn-link ion-icon { font-size: 18px; transition: var(--transition-fast); }
.btn-link:is(:hover, :focus) { color: var(--terracotta-dark); gap: 10px; }

/*-----------------------------------*\
  #ABOUT (homepage section)
\*-----------------------------------*/

.about-content { margin-bottom: 50px; }
.about .section-subtitle { margin-bottom: 12px; }
.about .section-title { margin-bottom: 20px; text-align: left; }
.about-text, .about-item-text { color: var(--gray-400); font-size: 1.5rem; line-height: 1.7; }
.about-text { margin-bottom: 30px; }
.about-list { display: grid; gap: 20px; margin-bottom: 40px; }
.about-item { display: flex; align-items: flex-start; gap: 16px; }
.about-item-icon {
  background: var(--terracotta-light); color: var(--terracotta);
  font-size: 24px; padding: 14px; border-radius: var(--radius-md);
  margin-top: 4px; flex-shrink: 0;
}
.about-item-title { color: var(--gray-700); font-weight: var(--fw-600); margin-bottom: 4px; font-size: 1.5rem; }

/*-----------------------------------*\
  #CTA SECTION
\*-----------------------------------*/

.cta-banner {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, rgba(26,24,19,0.85), rgba(107,68,35,0.85)),
              url('../images/serengeti2.jpg') center/cover no-repeat;
  color: var(--white); text-align: center;
}
.cta-banner h2 {
  font-family: var(--ff-display); font-size: var(--fs-5xl);
  margin-bottom: 20px; font-weight: var(--fw-700);
  line-height: 1.15;
}
.cta-banner p {
  font-size: 1.6rem; max-width: 640px; margin: 0 auto 30px;
  opacity: 0.92; line-height: 1.7;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background: var(--baobab-dark); color: rgba(255,255,255,0.7);
  padding: 80px 0 0; position: relative;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--sunset), var(--sunset-gold));
}
.footer a:not(.logo) { color: inherit; transition: var(--transition-fast); }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-list-title {
  color: var(--white); font-size: 1.5rem; font-weight: var(--fw-700);
  margin-bottom: 20px; font-family: var(--ff-display);
  position: relative; padding-bottom: 12px;
}
.footer-list-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 2px; background: var(--terracotta);
}
.footer-link {
  font-size: 1.3rem; padding-block: 6px; opacity: 0.8;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer .footer-link:is(:hover, :focus) {
  color: var(--sunset); opacity: 1; padding-left: 4px;
}
.newsletter-text {
  font-size: 1.3rem; margin-bottom: 20px; line-height: 1.7; opacity: 0.85;
}
.newsletter-form { position: relative; display: flex; gap: 8px; }
.newsletter-input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full); padding: 12px 20px;
  color: var(--white); font-size: 1.2rem; flex: 1;
  transition: var(--transition-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { outline: none; border-color: var(--terracotta); background: rgba(255,255,255,0.12); }
.newsletter-form .btn-primary { padding: 12px 22px; flex-shrink: 0; font-size: 1.1rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 30px;
}
.footer-bottom .logo { font-size: 1.8rem; }
.copyright { font-size: 1.2rem; opacity: 0.7; }
.copyright-link {
  display: inline-block; color: var(--sunset) !important;
  font-weight: var(--fw-600);
}
.copyright-link:is(:hover, :focus) { text-decoration: underline; }
.social-list { display: flex; align-items: center; gap: 12px; }
.social-link {
  font-size: 16px; background: rgba(255,255,255,0.08);
  padding: 10px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px; transition: var(--transition-base);
  color: rgba(255,255,255,0.7);
}
.social-link:is(:hover, :focus) {
  background: var(--terracotta); color: var(--white);
  transform: translateY(-3px);
}
.footer-map iframe {
  width: 100%; height: 160px; border: 0;
  border-radius: var(--radius-md); margin-top: 16px;
}

/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed; bottom: 90px; right: 24px;
  background: var(--terracotta); color: var(--white);
  font-size: 20px; padding: 12px; border-radius: 50%;
  visibility: hidden; opacity: 0; transition: var(--transition-base);
  box-shadow: 0 6px 20px rgba(199,93,58,0.4); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
}
.go-top.active { visibility: visible; opacity: 1; transform: translateY(0); }
.go-top:is(:hover, :focus) {
  transform: translateY(-4px); box-shadow: 0 10px 30px rgba(199,93,58,0.5);
}

/*-----------------------------------*\
  #WHATSAPP FLOAT BUTTON
\*-----------------------------------*/

.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px;
  background: #25D366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999; transition: var(--transition-base);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #20bd5a; transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5); color: var(--white);
}
.whatsapp-float ion-icon { --ionicon-stroke-width: 40px; }
.whatsapp-tooltip {
  position: absolute; left: 66px; background: var(--gray-800);
  color: var(--white); padding: 8px 16px; border-radius: var(--radius-md);
  font-size: 1.2rem; font-weight: var(--fw-500);
  white-space: nowrap; opacity: 0; visibility: hidden;
  transition: var(--transition-base); pointer-events: none;
  box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::before {
  content: ''; position: absolute; top: 50%; left: -6px;
  transform: translateY(-50%); border: 6px solid transparent;
  border-right-color: var(--gray-800);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float { animation: whatsapp-pulse 2s infinite; }
.whatsapp-float:hover { animation: none; }

@media (max-width: 575px) {
  .whatsapp-float { width: 48px; height: 48px; font-size: 24px; bottom: 16px; left: 16px; }
  .whatsapp-tooltip { display: none; }
}

/*-----------------------------------*\
  #CONTACT PAGE
\*-----------------------------------*/

.page-header {
  position: relative; padding: 180px 0 100px; text-align: center;
  background: linear-gradient(135deg, rgba(26,24,19,0.7), rgba(107,68,35,0.6)),
              url('../images/safari2.jpg') center/cover no-repeat;
  color: var(--white);
}
.page-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px;
  background: var(--white-soft);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.page-header h1 {
  font-family: var(--ff-display); font-size: var(--fs-6xl);
  color: var(--white); margin-bottom: 16px; font-weight: var(--fw-700);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.page-header .breadcrumb {
  color: rgba(255,255,255,0.85); font-size: 1.3rem;
  display: flex; gap: 8px; align-items: center; justify-content: center;
}
.page-header .breadcrumb a { color: var(--sunset); }
.page-header .breadcrumb a:hover { text-decoration: underline; }

.contact-page { padding: 80px 0; background: var(--white-soft); }
.contact-page .section-title { text-align: center; margin-bottom: 12px; }
.contact-page .subtitle { color: var(--gray-400); font-size: 1.5rem; max-width: 600px; margin: 0 auto 50px; text-align: center; }
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.contact-form {
  background: var(--white); padding: 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.form-row { display: flex; gap: 16px; margin-bottom: 0; }
.form-group { flex: 1; margin-bottom: 20px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md); font-size: 1.3rem;
  font-family: var(--ff-primary); transition: var(--transition-fast);
  background: var(--white-soft); color: var(--gray-700);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--terracotta); outline: none;
  box-shadow: 0 0 0 4px rgba(199,93,58,0.08); background: var(--white);
}
.form-group textarea { min-height: 150px; resize: vertical; }
.contact-form .btn-primary { width: 100%; padding: 16px; font-size: 1.3rem; margin-top: 8px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.info-card h3 {
  font-family: var(--ff-display); font-size: 1.9rem;
  color: var(--gray-800); margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-50);
}
.info-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  color: var(--terracotta); font-size: 20px; display: flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--terracotta-light);
  border-radius: var(--radius-md); flex-shrink: 0;
}
.info-icon ion-icon { font-size: 20px; --ionicon-stroke-width: 32px; }
.info-content strong { display: block; color: var(--gray-800); font-size: 1.3rem; margin-bottom: 4px; font-weight: var(--fw-600); }
.info-content p { margin: 0; color: var(--gray-400); font-size: 1.3rem; line-height: 1.6; }
.info-content a { color: var(--terracotta); text-decoration: none; transition: var(--transition-fast); }
.info-content a:hover { color: var(--terracotta-dark); text-decoration: underline; }
.social-links { margin-top: 24px; padding-top: 24px; border-top: 2px solid var(--gray-50); }
.social-links strong { display: block; margin-bottom: 16px; color: var(--gray-800); font-size: 1.3rem; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--terracotta-light);
  color: var(--terracotta); border-radius: var(--radius-md);
  font-size: 20px; transition: var(--transition-base);
}
.social-icons a:hover { background: var(--terracotta); color: var(--white); transform: translateY(-3px); }

/*-----------------------------------*\
  #ABOUT PAGE
\*-----------------------------------*/

.about-page { padding: 0; color: var(--gray-700); line-height: 1.6; }
.about-hero {
  display: flex; min-height: 60vh; align-items: stretch;
  background: linear-gradient(135deg, var(--terracotta-light) 0%, var(--sand-light) 100%);
  margin-top: 0;
}
.about-hero .hero-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px;
}
.about-hero h1 {
  font-family: var(--ff-display); font-size: var(--fs-5xl);
  margin-bottom: 16px; color: var(--gray-800);
  font-weight: var(--fw-700); line-height: 1.1;
}
.about-hero .hero-subtitle { font-size: 1.6rem; color: var(--gray-500); max-width: 500px; }
.about-hero .hero-image { flex: 1; }
.about-hero .hero-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

.about-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 80px; padding-top: 60px;
}
.about-text h2 {
  font-family: var(--ff-display); font-size: var(--fs-4xl);
  margin-bottom: 20px; color: var(--gray-800); position: relative;
  display: inline-block;
}
.about-text h2::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 60px; height: 3px; background: var(--terracotta); border-radius: 2px;
}
.about-text p { margin-bottom: 20px; font-size: 1.5rem; color: var(--gray-500); line-height: 1.7; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.values-section { margin-bottom: 80px; text-align: center; }
.values-section h2 { font-family: var(--ff-display); font-size: var(--fs-4xl); margin-bottom: 50px; color: var(--gray-800); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.value-card {
  background: var(--white); padding: 36px 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition-base);
  border: 1px solid var(--gray-100); text-align: center;
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--terracotta-light); }
.value-icon {
  font-size: 2.5rem; color: var(--terracotta); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; background: var(--terracotta-light);
  border-radius: var(--radius-md); margin-inline: auto;
}
.value-card h3 { font-family: var(--ff-display); margin-bottom: 12px; font-size: 1.7rem; color: var(--gray-800); }
.value-card p { color: var(--gray-400); font-size: 1.3rem; line-height: 1.6; }

.team-section { margin-bottom: 80px; text-align: center; }
.team-section h2 { font-family: var(--ff-display); font-size: var(--fs-4xl); margin-bottom: 12px; color: var(--gray-800); }
.team-subtitle { color: var(--gray-400); margin-bottom: 50px; font-size: 1.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.team-member {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition-base);
  border: 1px solid var(--gray-100);
}
.team-member:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.member-image { height: 300px; overflow: hidden; }
.member-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-member:hover .member-image img { transform: scale(1.05); }
.member-info { padding: 24px; text-align: left; }
.member-info h3 { font-family: var(--ff-display); margin-bottom: 4px; color: var(--gray-800); }
.position { color: var(--terracotta); font-weight: var(--fw-500); margin-bottom: 12px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bio { color: var(--gray-400); font-size: 1.3rem; line-height: 1.6; }

.about-cta {
  text-align: center; padding: 60px 40px;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--baobab) 100%);
  color: var(--white); border-radius: var(--radius-xl); margin-bottom: 80px;
}
.about-cta h2 { font-family: var(--ff-display); color: var(--white); margin-bottom: 12px; font-size: var(--fs-4xl); }
.about-cta p { max-width: 600px; margin: 0 auto 30px; font-size: 1.5rem; opacity: 0.95; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.about-cta .btn-primary { background: var(--white); color: var(--terracotta); border-color: var(--white); }
.about-cta .btn-primary:hover { background: var(--baobab); color: var(--white); border-color: var(--white); transform: translateY(-3px); }
.about-cta .btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.about-cta .btn-ghost:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); border-color: var(--white); }

/*-----------------------------------*\
  #TOUR LISTING / SAFARI LISTING PAGES
\*-----------------------------------*/

.tour-listing-section { padding: 80px 0; background: var(--white-soft); }
.tour-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tour-filters {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 24px; border-radius: var(--radius-full);
  background: var(--white); color: var(--gray-500);
  border: 1.5px solid var(--gray-100);
  font-size: 1.3rem; font-weight: var(--fw-500);
  cursor: pointer; transition: var(--transition-fast);
}
.filter-btn:is(:hover, :focus), .filter-btn.active {
  background: var(--terracotta); color: var(--white);
  border-color: var(--terracotta);
}

/*-----------------------------------*\
  #INDIVIDUAL TOUR PAGE
\*-----------------------------------*/

.tour-detail-hero {
  position: relative; min-height: 70vh; display: flex; align-items: flex-end;
  padding: 0; color: var(--white); overflow: hidden;
  padding-top: 80px;
}
.tour-detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,19,0.85) 0%, rgba(26,24,19,0.3) 50%, rgba(26,24,19,0.3) 100%);
  z-index: 1;
}
.tour-detail-hero .hero-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.tour-detail-hero .container {
  position: relative; z-index: 2;
  padding-block: 60px 40px; width: 100%;
}
.tour-detail-hero .tour-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 1.2rem; font-weight: var(--fw-500);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.tour-detail-hero h1 {
  font-family: var(--ff-display); font-size: var(--fs-6xl);
  font-weight: var(--fw-700); line-height: 1.05;
  margin-bottom: 16px; text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  max-width: 800px;
}
.tour-detail-hero .tour-subtitle {
  font-size: 1.6rem; opacity: 0.9; max-width: 700px; line-height: 1.6;
}
.tour-quick-info {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2);
}
.quick-info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; color: rgba(255,255,255,0.9);
}
.quick-info-item ion-icon {
  font-size: 22px; color: var(--sunset);
}

.tour-detail-body { padding: 80px 0; background: var(--white-soft); }
.tour-detail-grid {
  display: grid; grid-template-columns: 1fr 380px; gap: 50px;
  align-items: flex-start;
}
.tour-content { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.tour-content h2 {
  font-family: var(--ff-display); font-size: var(--fs-3xl);
  color: var(--gray-800); margin-bottom: 16px; margin-top: 32px;
}
.tour-content h2:first-child { margin-top: 0; }
.tour-content p {
  color: var(--gray-500); font-size: 1.4rem; line-height: 1.8;
  margin-bottom: 16px;
}
.tour-content ul { margin: 16px 0; padding-left: 0; }
.tour-content ul li {
  position: relative; padding-left: 30px; margin-bottom: 12px;
  color: var(--gray-500); font-size: 1.4rem; line-height: 1.6;
}
.tour-content ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--safari-green);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: var(--fw-700);
}

.tour-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 30px 0;
}
.tour-gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-md); transition: var(--transition-base);
  cursor: pointer;
}
.tour-gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

.tour-itinerary { margin-top: 30px; }
.itinerary-day {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  margin-bottom: 30px; padding-bottom: 30px;
  border-bottom: 1px solid var(--gray-100);
}
.itinerary-day:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.itinerary-day .day-label {
  background: var(--terracotta); color: var(--white);
  width: 80px; height: 80px; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.itinerary-day .day-label .day-text { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; }
.itinerary-day .day-label .day-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: var(--fw-700); line-height: 1; }
.itinerary-day .day-content h3 {
  font-family: var(--ff-display); font-size: 1.7rem;
  color: var(--gray-800); margin-bottom: 8px;
}
.itinerary-day .day-content p { color: var(--gray-500); font-size: 1.3rem; line-height: 1.7; }

.tour-sidebar {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 24px;
}
.booking-card {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-100);
}
.booking-card .price-tag {
  text-align: center; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--gray-100);
}
.booking-card .price-label {
  display: block; color: var(--gray-400); font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
}
.booking-card .price-value {
  font-family: var(--ff-display); font-size: var(--fs-5xl);
  color: var(--terracotta); font-weight: var(--fw-700);
  line-height: 1; margin-bottom: 4px;
}
.booking-card .price-value small {
  font-size: 1.3rem; color: var(--gray-400);
  font-family: var(--ff-primary); font-weight: 500;
}
.booking-card .price-note {
  color: var(--gray-400); font-size: 1.2rem; font-style: italic;
}
.booking-card .price-per-person {
  color: var(--gray-500); font-size: 1.2rem; margin-top: 8px;
}
.booking-card .price-per-person strong { color: var(--gray-800); font-weight: var(--fw-600); }

.booking-features {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.booking-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; color: var(--gray-500); font-size: 1.3rem;
  border-bottom: 1px solid var(--gray-50);
}
.booking-features li:last-child { border-bottom: none; }
.booking-features li ion-icon {
  color: var(--safari-green); font-size: 18px; flex-shrink: 0;
}
.booking-card .btn { width: 100%; }
.booking-card .btn-whatsapp {
  background: #25D366; color: var(--white); border-color: #25D366;
  margin-top: 12px;
}
.booking-card .btn-whatsapp:hover { background: #20bd5a; border-color: #20bd5a; }

.help-card {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--baobab) 100%);
  color: var(--white); padding: 28px; border-radius: var(--radius-lg);
  text-align: center;
}
.help-card ion-icon { font-size: 36px; margin-bottom: 12px; }
.help-card h3 { font-family: var(--ff-display); font-size: 1.6rem; margin-bottom: 8px; }
.help-card p { font-size: 1.2rem; opacity: 0.92; margin-bottom: 16px; }
.help-card a {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); color: var(--terracotta);
  padding: 10px 20px; border-radius: var(--radius-full);
  font-weight: var(--fw-600); font-size: 1.3rem;
  transition: var(--transition-base);
}
.help-card a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/*-----------------------------------*\
  #FEATURES STRIP
\*-----------------------------------*/

.features-strip {
  padding: 60px 0; background: var(--cream);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
}
.feature-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--terracotta-light); color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.feature-text strong {
  display: block; color: var(--gray-800); font-size: 1.4rem;
  font-weight: var(--fw-600); margin-bottom: 2px;
}
.feature-text span { color: var(--gray-400); font-size: 1.2rem; }

/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testimonials { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card {
  background: var(--white-soft); padding: 36px;
  border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  position: relative; transition: var(--transition-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"'; position: absolute; top: 10px; right: 24px;
  font-family: var(--ff-display); font-size: 6rem;
  color: var(--terracotta-light); line-height: 1;
}
.testimonial-card .stars {
  color: var(--sunset-gold); font-size: 1.4rem; margin-bottom: 16px;
  display: flex; gap: 2px;
}
.testimonial-card .testimonial-text {
  color: var(--gray-500); font-size: 1.4rem; line-height: 1.7;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-card .testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--gray-100);
}
.testimonial-card .author-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--terracotta); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: var(--fw-700); font-size: 1.6rem;
  font-family: var(--ff-display);
}
.testimonial-card .author-name {
  color: var(--gray-800); font-weight: var(--fw-600);
  font-size: 1.4rem; margin-bottom: 2px;
}
.testimonial-card .author-meta { color: var(--gray-400); font-size: 1.1rem; }

/*-----------------------------------*\
  #ANIMATIONS
\*-----------------------------------*/

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.stagger-children > * { opacity: 0; animation: fadeInUp 0.5s ease forwards; }
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

@media (min-width: 575px) {
  :root { --fs-4xl: 3.5rem; --fs-5xl: 4.5rem; --fs-6xl: 5.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .container { max-width: 750px; }
  .tours-grid, .tour-listing-grid { grid-template-columns: 1fr 1fr; }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 550px; }
  .destination-list > li { width: calc(33.33% - 16px); }
  .destination-list .w-50 { width: calc(50% - 12px); }
  .footer { font-size: var(--fs-sm); }
}

@media (min-width: 992px) {
  :root { --fs-2xl: 2.2rem; --fs-4xl: 3.8rem; --section-padding: 100px; }
  .container { max-width: 980px; }
  .tours-grid, .tour-listing-grid { grid-template-columns: repeat(3, 1fr); }
  .tour-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-toggle-btn { display: none; }
  .navbar { all: unset; display: flex; align-items: center; flex-grow: 1; gap: 36px; }
  .navbar-list { margin-inline: auto; display: flex; align-items: center; gap: 36px; }
  .navbar-link { font-weight: var(--fw-500); }
  .destination { --fs-2xl: 2.2rem; --fs-3xl: 2.5rem; }
  .about .container { display: grid; grid-template-columns: 0.8fr 1fr; align-items: center; gap: 30px; }
  .about-content { margin-bottom: 0; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  :root { --fs-6xl: 6rem; --fs-7xl: 6.5rem; }
  .container { max-width: 1200px; }
  .navbar-list { gap: 40px; }
  .about .container { grid-template-columns: 0.7fr 1fr; }
  .hero-split .container { grid-template-columns: 1.2fr 1fr; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/*-----------------------------------*\
  #MOBILE RESPONSIVE OVERRIDES
\*-----------------------------------*/

@media (max-width: 991px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: var(--fs-5xl); }
  .destination-list > li, .destination-list .w-50 { width: calc(50% - 12px); }
  .about-hero { flex-direction: column-reverse; min-height: auto; }
  .about-hero .hero-content { padding: 40px 24px; }
  .about-hero h1 { font-size: var(--fs-4xl); }
  .about-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; gap: 0; }
  .tours-grid, .tour-listing-grid, .tour-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tour-detail-hero h1 { font-size: var(--fs-5xl); }
  .tour-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .tour-listing-grid, .tour-grid { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  :root { --section-padding: 60px; }
  .section { --section-padding: 60px; }
  .section-title { font-size: 2.8rem; }
  .hero-title { font-size: 3.2rem; }
  .hero-text { font-size: 1.4rem; }
  .hero-search { flex-direction: column; }
  .hero-search .btn { width: 100%; }
  .destination-list > li, .destination-list .w-50 { width: 100%; }
  .tours-grid, .tour-listing-grid, .tour-grid { grid-template-columns: 1fr; padding: 0 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .about-cta { padding: 40px 24px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .contact-form, .info-card { padding: 24px; }
  .about-hero h1 { font-size: var(--fs-3xl); }
  .about-text h2, .values-section h2, .team-section h2 { font-size: var(--fs-3xl); }
  .page-header { padding: 130px 0 70px; }
  .page-header h1 { font-size: 3.4rem; }
  .tour-detail-hero { min-height: 60vh; }
  .tour-detail-hero h1 { font-size: 2.8rem; }
  .tour-content { padding: 24px; }
  .tour-content h2 { font-size: 2rem; }
  .booking-card { padding: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .itinerary-day { grid-template-columns: 60px 1fr; gap: 16px; }
  .itinerary-day .day-label { width: 60px; height: 60px; }
  .itinerary-day .day-label .day-num { font-size: 1.8rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { padding: 14px 24px; }
  .form-row { flex-direction: column; }
}
