/* =============================================
   OLIFANT SAFARIS — SCANDINAVIAN EDITION
   Nordic Minimalism meets Kenyan Wilderness
   ============================================= */

/* === DESIGN TOKENS (Scandi Palette) === */
:root {
  /* Muted, nature-inspired palette instead of flashy gold */
  --sand:       #C8A96E;
  --sand-light: #DCC28A;
  --sand-dark:  #A08040;
  --forest:     #2D4A38;
  --forest-2:   #3A5C48;
  --forest-3:   #1E3228;
  --sage:       #7A9E8A;
  --bark:       #5C4A2A;

  /* Neutral Scandi tones */
  --white:      #FFFFFF;
  --off-white:  #F8F6F1;
  --linen:      #EFE9DC;
  --linen-2:    #E5DDD0;
  --stone:      #BDB5A8;
  --charcoal:   #2A2622;
  --mid-grey:   #6B6560;
  --light-grey: #9A9490;

  /* Dark section tones */
  --dark:       #1A2018;
  --dark-2:     #212820;
  --dark-3:     #2A332A;

  /* Functional */
  --text-body:  #3A3530;
  --text-muted: #7A7268;
  --radius:     4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === UTILITIES === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section--dark { background: var(--dark-2); color: #E8E4DC; }
.section--linen { background: var(--linen); }

.section-header {
  max-width: 580px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-tag--light { color: var(--sage); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.section--dark .section-title { color: #F0EDE6; }
.section-title.left { text-align: left; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.section--dark .section-subtitle { color: #9A9590; }

/* === VISIBILITY & INTERACTION === */
.hidden-card {
  display: none !important;
}
.load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
  width: 100%;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 74, 56, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-sand {
  background: var(--sand);
  color: var(--charcoal);
  border-color: var(--sand);
  font-weight: 600;
}
.btn-sand:hover {
  background: var(--sand-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover {
  background: var(--forest);
  color: white;
}
.btn-warm {
  background: var(--sand);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 0.7rem 1.6rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-warm:hover {
  background: var(--sand-light);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; padding: 0.95rem; font-size: 0.95rem; }

/* === TOPBAR === */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--forest-3);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0.55rem 0;
}
.topbar-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.topbar-left { display: none; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.topbar-left a,
.topbar-right a {
  color: rgba(255,255,255,0.62);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.topbar-left a:hover,
.topbar-right a:hover { color: var(--sage); }
.topbar-divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .topbar-container { justify-content: space-between; }
  .topbar-left { display: flex; align-items: center; gap: 1.1rem; }
  .topbar-right { gap: 1.3rem; }
}
.topbar-social {
  font-size: 0.88rem;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 2.6rem; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(26, 32, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--sand);
  filter: brightness(1.05) contrast(1.05);
}
.logo-text {
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  color: var(--sand-light);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo-ta {
  color: var(--sage);
  font-weight: 700;
}
@media (max-width: 400px) {
  .logo-text {
    font-size: 0.85rem;
  }
  .logo-text strong {
    font-size: 1rem;
  }
  .logo-img {
    width: 45px;
    height: 45px;
  }
}
.nav-links {
  position: fixed;
  top: 0; right: -100%;
  height: 100vh; width: 260px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  gap: 1.6rem;
  transition: right 0.35s ease;
  z-index: 999;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.nav-links.open { right: 0; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
@media (min-width: 992px) {
  .nav-links {
    position: static;
    height: auto; width: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2.2rem;
    border-left: none;
  }
}

.nav-welcome {
  color: var(--sand-light);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .nav-welcome {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    width: 100%;
  }
}
.nav-cta {
  color: var(--white) !important;
  background: var(--forest);
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  border: 1px solid var(--forest-2);
}
.nav-cta:hover { background: var(--forest-2) !important; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
@media (min-width: 992px) {
  .hamburger { display: none; }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Scandi: cooler, more subdued overlay vs flashy warm */
  background: linear-gradient(
    170deg,
    rgba(18, 26, 20, 0.72) 0%,
    rgba(18, 26, 20, 0.42) 55%,
    rgba(18, 26, 20, 0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10.5rem 1.5rem 8rem;
  max-width: 860px;
  animation: heroFadeUp 0.9s ease 0.1s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(45, 74, 56, 0.18);
  border: 1px solid rgba(45, 74, 56, 0.4);
  color: var(--sage);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}
.hero-title-highlight {
  color: var(--sand-light);
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 2.8rem;
  line-height: 1.75;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--forest-2);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-arrow { font-size: 1rem; color: var(--sage); }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--forest-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.9rem 0;
}
.trust-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-item {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === SEASONAL BANNER === */
.seasonal-banner {
  padding: 2.5rem 0;
  background: var(--forest-3);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.seasonal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.seasonal-left { display: flex; align-items: center; gap: 1.5rem; }
.seasonal-icon { font-size: 2.5rem; flex-shrink: 0; color: var(--sand); }
.seasonal-card h3 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.seasonal-card p { color: rgba(255,255,255,0.62); font-size: 0.88rem; }
.seasonal-card strong { color: var(--sand-light); }

/* === DESTINATIONS === */
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-auto-flow: dense;
  }
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  grid-row: auto !important;
  grid-column: auto !important;
}
.dest-card--large {
  grid-column: auto;
  min-height: 260px;
}
@media (min-width: 768px) {
  .dest-card--large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 340px;
  }
}
@media (min-width: 992px) {
  /* Disabled row span for now to ensure symmetry as requested */
  .dest-card--large {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
    min-height: auto;
  }
}
.dest-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(0.9);
}
.dest-card:hover .dest-img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,32,24,0.88) 30%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.dest-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--forest);
  color: rgba(255,255,255,0.9);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dest-name {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.dest-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 0.6rem;
  display: none;
}
.dest-card--large .dest-desc { display: block; }
.dest-card:hover .dest-desc { display: block; }
.dest-link {
  color: var(--sage);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* === PACKAGES === */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}
.package-card {
  background: var(--dark-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.package-card--featured {
  border-color: rgba(200,169,110,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.package-image { position: relative; height: 220px; flex-shrink: 0; overflow: hidden; }
.package-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.88);
}
.package-card:hover .package-image img {
  transform: scale(1.06);
  filter: saturate(1);
}
.package-duration {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: rgba(26,32,24,0.8);
  color: rgba(255,255,255,0.9);
  font-size: 0.74rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  letter-spacing: 0.04em;
}
.package-body { 
  padding: 1.5rem; 
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.package-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.featured-tag { color: #E8D085; }
.package-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.package-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.package-includes { margin-bottom: 1.2rem; }
.package-includes li {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.package-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}
.package-price { display: flex; flex-direction: column; }
.price-from { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-2);
  font-family: 'Playfair Display', serif;
}
.price-per { font-size: 0.7rem; color: rgba(255,255,255,0.4); }

/* === WILDLIFE === */
.wildlife-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--linen-2);
  border: 1px solid var(--linen-2);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 576px) {
  .wildlife-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .wildlife-grid { grid-template-columns: repeat(4, 1fr); }
}
.wildlife-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  border-top: 4px solid var(--clr);
}
.wildlife-card:hover {
  background: var(--off-white);
  z-index: 1;
}
.wildlife-icon { font-size: 2.5rem; margin-bottom: 0.9rem; }
.wildlife-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.wildlife-card p { color: var(--mid-grey); font-size: 0.95rem; line-height: 1.6; }

/* === WHY KENYA === */
.why-section { background: var(--off-white); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 992px) {
  .why-layout { gap: 5rem; }
}
.why-image-col { position: relative; }
.why-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  filter: saturate(0.9);
}
@media (min-width: 768px) {
  .why-img { height: 400px; }
}
@media (min-width: 992px) {
  .why-img { height: 540px; }
}
.why-img-badge {
  position: absolute;
  bottom: -0.8rem;
  right: 0.5rem;
  background: var(--forest);
  color: white;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
@media (min-width: 769px) {
  .why-img-badge { right: -1.2rem; bottom: -1.2rem; }
}
.badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.badge-label {
  font-size: 0.68rem;
  opacity: 0.8;
  max-width: 130px;
  display: block;
  line-height: 1.4;
}
.why-intro {
  color: var(--mid-grey);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.why-points { display: flex; flex-direction: column; gap: 1.6rem; }
.why-point { display: flex; gap: 1.1rem; align-items: flex-start; }
.why-point-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.why-point h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}
.why-point p { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.65; }

/* === CALENDAR === */
.calendar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--linen-2);
  border: 1px solid var(--linen-2);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 768px) {
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .calendar-grid { grid-template-columns: repeat(4, 1fr); }
}
.cal-month {
  background: var(--white);
  padding: 1.8rem 1.4rem;
  transition: var(--transition);
}
.cal-month:hover { background: var(--off-white); }
.cal-great { background: #FAFAF5; }
.cal-peak { background: linear-gradient(135deg, #FAFAF0, #F5F0E0); }
.cal-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 0.7rem;
}
.cal-event {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 0.8rem;
}
.cal-event small { font-weight: 400; color: var(--mid-grey); font-size: 0.78rem; display: block; margin-top: 0.15rem; }
.cal-scandi {
  font-size: 0.75rem;
  color: var(--sage);
  border-top: 1px solid var(--linen-2);
  padding-top: 0.6rem;
}

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,169,110,0.2);
}
.testi-card--featured {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.3);
}
@media (min-width: 768px) {
  .testi-card--featured { transform: translateY(-6px); }
}
.testi-stars {
  color: var(--sage);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}
.testi-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.5rem;
  font-style: italic;
  font-weight: 300;
}
.testi-translation {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest-2);
  border: 1px solid rgba(200,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.8rem; color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.testi-author strong { display: block; color: rgba(255,255,255,0.88); font-size: 0.88rem; font-weight: 500; }
.testi-author span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* === CONTACT === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}
@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
  }
}
.contact-info { padding-top: 0.5rem; }
.contact-info > p {
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 0.92rem;
}
.contact-details { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: center; gap: 0.9rem; color: var(--text-body); font-size: 0.88rem; }
.contact-icon { font-size: 1.1rem; }
.contact-langs { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-langs > span {
  font-size: 0.7rem; font-weight: 600;
  color: var(--light-grey); text-transform: uppercase; letter-spacing: 0.1em;
}
.lang-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.lang-badges span {
  background: var(--linen);
  border: 1px solid var(--linen-2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: var(--text-body);
}

/* === FORM === */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #807d77;
}
@media (min-width: 481px) {
  .contact-form { padding: 2.5rem; }
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 481px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #807d77;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #9a9490;
  opacity: 1;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(45, 74, 56, 0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  margin-top: 0.8rem;
  font-size: 0.74rem;
  color: var(--light-grey);
  text-align: center;
}

/* === FOOTER === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 260px;
  color: rgba(255,255,255,0.45);
}
.footer-socials { display: flex; gap: 0.7rem; margin-top: 0.25rem; }
.social-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  border-radius: 50%;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--forest-2); color: white; border-color: var(--forest-2); }
.footer-links-col h4 {
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}
.footer-links-col a:hover { color: var(--sand-light); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* === CHILDREN FORM SECTION === */
.children-section {
  background: var(--linen);
  border: 1px solid var(--linen-2);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
}

.children-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--linen-2);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
  color: var(--forest);
  font-weight: 500;
  line-height: 1.5;
}

.children-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.05rem; }

.child-ages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--forest);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.88rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* === FADE-IN === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === COMPREHENSIVE RESPONSIVE DESIGN === */

/* --- VERY LARGE SCREENS (1440px and up) --- */
@media (min-width: 1440px) {
  html {
    font-size: 20px;
  }
  .container, .topbar-container, .nav-container, .trust-container {
    max-width: 1400px;
  }
  .section {
    padding: 7.5rem 0;
  }
  .hero-content {
    max-width: 1000px;
  }
}

/* --- LARGE SCREENS / DESKTOPS (992px to 1199px) --- */
@media (max-width: 1199px) {
  html {
    font-size: 17px;
  }
}

/* --- TABLETS / IPAD (768px to 991px) --- */
@media (max-width: 991px) {
  .section {
    padding: 5rem 0;
  }
  .topbar-right {
    gap: 0.8rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
  .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }
  .hero-content {
    padding-top: 8.5rem;
  }
  /* Shorten footer on tablets and mobile */
  .footer-brand,
  .footer-links-col:nth-child(2),
  .footer-links-col:nth-child(3) {
    display: none;
  }
}

/* --- MOBILE LANDSCAPE / SMALL TABLET (576px to 767px) --- */
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
  .section { 
    padding: 4rem 0; 
  }
  .container, .topbar-container, .nav-container, .trust-container {
    padding: 0 1.5rem;
  }
  .hero-stats { 
    gap: 1.5rem; 
  }
  .stat-divider { 
    display: none; 
  }
  .footer-bottom { 
    flex-direction: column; 
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  .seasonal-card { 
    flex-direction: column; 
    align-items: flex-start; 
  }
  .trust-container {
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
  }
}

/* --- MOBILE PORTRAIT (max-width: 480px) --- */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .container, .topbar-container, .nav-container, .trust-container {
    padding: 0 1rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .hero-content {
    padding-top: 7.5rem;
  }
  .hero-title { 
    font-size: 2.2rem; 
  }
  .hero-buttons { 
    flex-direction: column; 
    align-items: stretch; 
    gap: 1rem; 
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .btn-sm {
      padding: 0.7rem 1.5rem;
      width: 100%;
      text-align: center;
  }
  .packages-grid {
      gap: 2rem;
  }
  .contact-details {
      align-items: flex-start;
  }
  .form-row {
      grid-template-columns: 1fr;
  }
  .child-ages-grid {
      grid-template-columns: 1fr;
  }
  .footer-grid {
      gap: 2.5rem;
  }
}

/* === CAROUSEL SECTION === */
.carousel-section {
    margin-top: 4rem;
    padding-bottom: 2rem;
}
.carousel-section h3 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
}
.section--dark .carousel-section h3 {
    color: var(--cream);
}
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}
.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0 2rem 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    width: 100%;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-track > * {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    height: auto;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark-green);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.carousel-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}
.carousel-btn.prev {
    left: -20px;
}
.carousel-btn.next {
    right: -20px;
}
@media (max-width: 768px) {
    .carousel-btn.prev { left: 5px; }
    .carousel-btn.next { right: 5px; }
    .carousel-track > * { width: 280px; }
}

/* === CAROUSEL ADDITIONS === */
.carousel-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.carousel-section h3 {
  font-family: 'Playfair Display', serif;
  color: #c9a760; /* Using brand gold for better contrast on light backgrounds if applicable */
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2.2rem;
}
.carousel-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 2.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .dest-card, 
.carousel-track .package-card {
  flex: 0 0 300px;
  max-width: 300px;
}
@media (max-width: 576px) {
  .carousel-track .dest-card, 
  .carousel-track .package-card {
    flex: 0 0 260px;
  }
}
.carousel-btn {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  flex-shrink: 0;
}
.carousel-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  transform: scale(1.1);
}

/* === TESTIMONIAL CAROUSEL === */
.testimonials-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonials-track .testi-card {
  flex: 0 0 100%;
  max-width: 100%;
  opacity: 0.5;
  transform: scale(0.92);
  transition: opacity 0.6s, transform 0.6s;
  padding: 2.5rem;
}

@media (min-width: 768px) {
  .testimonials-track .testi-card {
    flex: 0 0 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    margin: 0 0.75rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-track .testi-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
  }
}

@media (min-width: 1440px) {
  .testimonials-track .testi-card {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
  }
}

.testimonials-track .testi-card.active {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--sand);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* === PAGINATION === */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-bottom: 2rem;
}

.page-btn, .page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.page-btn {
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  gap: 0.5rem;
}

.page-btn:hover:not(.disabled) {
  background: var(--forest);
  color: var(--white);
}

.page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--mid-grey);
  color: var(--mid-grey);
}

.page-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--charcoal);
  border: 1px solid transparent;
}

.page-num:hover:not(.active) {
  background: var(--linen-2);
}

.page-num.active {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(44, 76, 59, 0.2);
}

.page-dots {
  color: var(--mid-grey);
  letter-spacing: 2px;
  font-weight: bold;
}

.dot.active {
  background: var(--forest-2);
  transform: scale(1.3);
  border-color: var(--forest-2);
}

/* === DARK THEME PAGINATION === */
.section--dark .page-btn {
  color: var(--forest-light, #a3b899);
  border-color: rgba(255,255,255,0.2);
}

.section--dark .page-btn:hover:not(.disabled) {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.section--dark .page-btn.disabled {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
}

.section--dark .page-num {
  color: #E8E4DC;
}

.section--dark .page-num:hover:not(.active) {
  background: rgba(255,255,255,0.1);
}

.section--dark .page-num.active {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.section--dark .page-dots {
  color: rgba(255,255,255,0.4);
}

@media (max-width: 576px) {
  .pagination-container {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  .page-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  .page-numbers {
    gap: 0.25rem;
  }
  .page-num {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}/* ===== FORM VALIDATION STYLES ===== */
.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  font-weight: 500;
}

.req {
  color: #c0392b;
  margin-left: 2px;
}

.form-msg {
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-msg--success {
  background: #eafaf1;
  border: 1.5px solid #27ae60;
  color: #1e8449;
}

.form-msg--error {
  background: #fdf2f0;
  border: 1.5px solid #c0392b;
  color: #922b21;
}


