/* ═══════════════════════════════════════════════════
   LANKA·ESCAPES — Main Stylesheet
   Fully responsive · Mobile-first
═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #faf8f5;
  color: #1d2b22;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0ede8; }
::-webkit-scrollbar-thumb { background: #1b4f37; border-radius: 3px; }

/* ─── CSS VARIABLES ─── */
:root {
  --green-dark:  #1b4f37;
  --green-mid:   #2e6b4e;
  --green-light: #e9f1ec;
  --terracotta:  #b45f3a;
  --terra-light: #fbe6c5;
  --cream:       #faf8f5;
  --white:       #ffffff;
  --text:        #1d2b22;
  --text-muted:  #4a6656;
  --border:      #d8e8de;
  --shadow-sm:   0 4px 12px rgba(27,79,55,0.08);
  --shadow-md:   0 12px 30px rgba(27,79,55,0.14);
  --shadow-lg:   0 24px 50px rgba(27,79,55,0.20);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── NAVIGATION ─── */
/* ─── NAVIGATION - FIXED MOBILE MENU ─── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(27,79,55,0.12);
  background: rgba(255,255,255,0.98);
}

/* Logo */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 901;
  position: relative;
}

.logo-img-large {
  height: 75px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text-large {
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  background: linear-gradient(130deg, var(--green-dark), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Links - Desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; 
  left: 0;
  width: 0; 
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { 
  opacity: 1; 
  color: var(--green-dark); 
}

.nav-links a:hover::after { 
  width: 100%; 
}

.user-greeting {
  background: var(--green-light);
  padding: 0.45rem 1.2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  border: 1px solid rgba(27,79,55,0.1);
  white-space: nowrap;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  border-radius: 8px;
  transition: background 0.3s;
}

.hamburger:hover {
  background: rgba(0,0,0,0.05);
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    padding: 2rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem;
    width: 100%;
    text-align: center;
  }

  .nav-links a::after {
    bottom: 0;
  }

  .user-greeting {
    margin-top: 1rem;
    width: auto;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  /* Adjust logo size for mobile */
  .logo-img-large {
    height: 50px;
  }
  
  .logo-text-large {
    font-size: 1.3rem;
  }
  
  .logo-wrapper {
    gap: 0.6rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .logo-img-large {
    height: 40px;
  }
  
  .logo-text-large {
    font-size: 1.1rem;
  }
  
  .nav-links {
    width: 100%;
    max-width: none;
  }
}

/* ─── HERO SLIDER ─── */
.hero-section {
  min-height: 88vh;
  margin: 1rem 3%;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 6vw, 5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Slide backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1),
              transform 1.1s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient overlays */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,30,20,0.68) 0%, rgba(0,0,0,0.08) 55%),
    linear-gradient(to top, rgba(10,30,20,0.60) 0%, transparent 55%);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.slider-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: scale(1.08);
}

/* Dot indicators */
.slider-dots {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.slider-dot.active {
  width: 28px;
  border-radius: 4px;
  background: white;
}

/* Slide caption (top-right corner) */
.slide-caption {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 3.5rem);
  z-index: 10;
  text-align: right;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  transition: opacity 0.5s;
}
.slide-caption .cap-num {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: block;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), white);
  width: 0%;
  transition: width linear;
  border-radius: 0 2px 2px 0;
}

.hero-text {
  position: relative;
  max-width: 680px;
  color: var(--white);
  z-index: 5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1.1rem;
  border-radius: 60px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.4rem;
}

.hero-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-text h1 span {
  font-weight: 300;
  color: var(--terra-light);
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  max-width: 480px;
  opacity: 0.88;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--white);
  color: var(--green-dark);
  border: none;
  padding: 0.95rem 2.5rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 14px 28px rgba(0,0,0,0.2);
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--terra-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.25);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

/* hero stats strip */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--terra-light);
}
.hero-stat .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
  margin-top: 2px;
}

/* ─── SECTION HEADERS ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, var(--green-dark), #735e4b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-head-right {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ─── PACKAGES SECTION ─── */
.packages-section {
  padding: 5rem 5%;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180,95,58,0.2);
}

.pkg-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.package-card:hover .pkg-img-wrap img {
  transform: scale(1.07);
}

.pkg-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 60px;
  backdrop-filter: blur(4px);
}

.pkg-price-tag {
  position: absolute;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.8);
}

.pkg-content {
  padding: 1.5rem 1.6rem 1.8rem;
}

.pkg-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.pkg-content .pkg-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pkg-content .pkg-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pkg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  font-weight: 700;
  font-size: 0.85rem;
  transition: gap var(--transition), color var(--transition);
}
.package-card:hover .pkg-link { gap: 0.8rem; }

/* ─── WHY CHOOSE US ─── */
.why-section {
  background: var(--green-light);
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,55,0.06), transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card .icon-circle {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(27,79,55,0.08), rgba(180,95,58,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--terracotta);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--green-dark);
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ABOUT + CONTACT SECTION ─── */
.about-section {
  padding: 5rem 5%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.about-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-card blockquote {
  border-left: 3px solid var(--terracotta);
  padding-left: 1rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.contact-card {
  background: linear-gradient(135deg, var(--green-dark) 0%, #2e6b4e 100%);
  border-radius: var(--radius-md);
  padding: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.contact-item i {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terra-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   PACKAGE DETAIL PAGE
═══════════════════════════════════════════════════ */

.detail-hero {
  background: linear-gradient(115deg, #18382b 0%, #2f5542 100%);
  padding: clamp(3rem, 6vw, 5rem) 5% clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.detail-hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: var(--transition);
  text-decoration: none;
}
.back-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(-3px);
}

.detail-hero-content {
  max-width: 760px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.detail-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.detail-hero .pkg-tagline {
  font-size: 1.05rem;
  opacity: 0.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.detail-hero .pkg-long-desc {
  font-size: 0.95rem;
  opacity: 0.75;
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

.detail-hero .pkg-price-hero {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--terra-light);
}
.detail-hero .pkg-price-hero small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.65;
}

/* ─── CITIES SECTION ─── */
.cities-section {
  padding: 3rem 5% 2rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.2rem;
}

.city-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180,95,58,0.4);
  box-shadow: var(--shadow-md);
}
.city-card.active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.city-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  transition: transform 0.4s;
}
.city-card:hover .city-thumb { transform: scale(1.05); }
.city-card.active .city-thumb { filter: brightness(0.7); }

.city-body {
  padding: 0.8rem 0.6rem;
}
.city-body .city-region {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}
.city-card.active .city-body .city-region { color: rgba(251,230,197,0.85); }

.city-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ─── PLACES SECTION ─── */
.places-section {
  padding: 2rem 5% 4rem;
}

.places-heading {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.places-heading .city-chip {
  font-size: 0.7rem;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.25rem 0.8rem;
  border-radius: 60px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(27,79,55,0.15);
}
.places-subheading {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.place-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.place-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.place-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.place-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.place-card:hover .place-img-wrap img { transform: scale(1.07); }

.place-type-tag {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  background: rgba(27,79,55,0.82);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 60px;
}

.place-rating {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.7rem;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.place-rating i { color: #f4a823; font-size: 0.65rem; }

.place-info {
  padding: 1.3rem 1.4rem 1.6rem;
}
.place-info h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.place-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  gap: 0.4rem;
}
.place-info p i { color: var(--terracotta); flex-shrink: 0; margin-top: 3px; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: #0f2118;
  color: rgba(255,255,255,0.65);
  padding-top: 4rem;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding: 0 5% 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(130deg, #a8e6c3, var(--terra-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.6;
}

.footer-links-col h5,
.footer-contact-col h5 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}

.footer-links-col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.footer-links-col a:hover { opacity: 1; }

.footer-contact-col p {
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.65;
}
.footer-contact-col p i { color: var(--terra-light); width: 14px; }

.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 1.4rem 5%;
  font-size: 0.78rem;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════
   LOADING / TRANSITIONS
═══════════════════════════════════════════════════ */
.fade-in {
  animation: fadeIn 0.4s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* stagger children */
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.10s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.20s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.30s; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ── Small Tablet (≤ 768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 800;
    padding: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .user-greeting { font-size: 1rem; }

  /* Hero */
  .hero-section {
    margin: 0.5rem 2%;
    border-radius: var(--radius-md);
    padding: 2rem;
    min-height: 80vh;
  }
  .hero-stats { gap: 1.5rem; }

  /* Grids */
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .places-grid { grid-template-columns: 1fr; }

  /* Detail hero */
  .detail-hero { padding: 2.5rem 5% 2rem; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── Mobile (≤ 520px) ── */
@media (max-width: 520px) {
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .places-grid { grid-template-columns: 1fr; }

  .hero-section {
    margin: 0.5rem 1%;
    border-radius: var(--radius-sm);
    padding: 1.5rem;
  }

  .btn-primary, .btn-ghost { font-size: 0.9rem; padding: 0.85rem 1.6rem; }

  .hero-stats { display: none; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .about-grid { grid-template-columns: 1fr; }
}




/* ─── LOGO WITH IMAGE (LARGE VERSION) ─── */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

/* Large logo image */
.logo-img-large {
  height: 75px;
  width: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* Large logo text */
.logo-text-large {
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  background: linear-gradient(130deg, var(--green-dark), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text-large span { 
  color: var(--terracotta);
  -webkit-text-fill-color: var(--terracotta);
}

/* Responsive adjustments - slightly smaller on tablets */
@media (max-width: 768px) {
  .logo-img-large {
    height: 52px;
  }
  .logo-text-large {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }
}

/* Responsive adjustments - smaller on mobile */
@media (max-width: 560px) {
  .logo-img-large {
    height: 44px;
  }
  .logo-text-large {
    font-size: 1.3rem;
  }
  .logo-wrapper {
    gap: 0.6rem;
  }
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  color: #fff; /* Text color for better contrast */
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(135deg, #1b4f37 0%, #2e6b4e 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.gallery-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
}

.gallery-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.gallery-section {
    padding: 60px 5%;
    background: #faf8f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #1b4f37;
    color: #1b4f37;
}

.filter-btn.active {
    background: #1b4f37;
    border-color: #1b4f37;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrapper img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay-content p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.4;
}

.gallery-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.no-images {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-images i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-images p {
    font-size: 18px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 20px;
    background: rgba(0,0,0,0.6);
    margin: 0 20px;
    border-radius: 12px;
}

.lightbox-caption h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.lightbox-caption p {
    font-size: 14px;
    opacity: 0.8;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .gallery-overlay-content h3 {
        font-size: 16px;
    }
    
    .gallery-overlay-content p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-hero {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b4f37;
}

.hero-full-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 60vh;
}

/* =====================================================
   ALTERNATING ITINERARY TIMELINE
===================================================== */

.alternate-itinerary {
    position: relative;
    padding: 120px 0;
    background: #f8faf7;
    overflow: hidden;
}

.alternate-itinerary::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.08), transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(30, 75, 59, 0.07), transparent 25%);
    pointer-events: none;
}

.alternate-heading {
    position: relative;
    max-width: 720px;
    margin: 0 auto 90px;
    text-align: center;
    z-index: 2;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #c9a227;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 3px;
}

.alternate-heading h2 {
    margin: 0 0 20px;
    color: #10251e;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -1px;
}

.alternate-heading h2 em {
    display: block;
    color: #1e4b3b;
    font-family: "Playfair Display", serif;
    font-weight: 500;
}

.alternate-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #718078;
    font-size: 0.9rem;
    line-height: 1.9;
}

/* Main timeline */

.alternate-timeline {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
     padding-left: 1.1rem;
        padding-right: 1.1rem;
}

/* Central line */

.alternate-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        #c9a227 7%,
        #c9a227 93%,
        transparent
    );
    transform: translateX(-50%);
    border-radius: 20px;
}

/* Timeline item */

.alternate-item {
    position: relative;
    width: 50%;
    padding-bottom: 70px;
    z-index: 2;
}

.alternate-item:last-child {
    padding-bottom: 0;
}

.alternate-left {
    padding-right: 72px;
}

.alternate-right {
    margin-left: 50%;
    padding-left: 72px;
}

/* Connector line */

.alternate-item::after {
    content: "";
    position: absolute;
    top: 68px;
    width: 72px;
    height: 2px;
    background: #c9a227;
    opacity: 0.75;
}

.alternate-left::after {
    right: 0;
}

.alternate-right::after {
    left: 0;
}

/* Connector dot */

.alternate-item::before {
    content: "";
    position: absolute;
    top: 59px;
    width: 20px;
    height: 20px;
    border: 5px solid #f8faf7;
    border-radius: 50%;
    background: #c9a227;
    box-shadow: 0 0 0 1px #c9a227, 0 0 0 8px rgba(201, 162, 39, 0.12);
    z-index: 5;
}

.alternate-left::before {
    right: -10px;
}

.alternate-right::before {
    left: -10px;
}

/* Card */

.alternate-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5ebe4;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 38px rgba(20, 50, 35, 0.07);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.alternate-card:hover {
    transform: translateY(-9px);
    border-color: rgba(201, 162, 39, 0.6);
    box-shadow: 0 25px 55px rgba(20, 50, 35, 0.15);
}

/* Image */

.alternate-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #dce7dd;
}

.alternate-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.75s ease;
}

.alternate-card:hover .alternate-card-image img {
    transform: scale(1.1);
}

.alternate-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.55),
        transparent 65%
    );
    pointer-events: none;
}

.alternate-day {
    position: absolute;
    left: 20px;
    bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    backdrop-filter: blur(10px);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 2px;
}

/* Content */

.alternate-card-content {
    padding: 28px 29px 30px;
}

.alternate-small-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #c9a227;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.alternate-small-title i {
    font-size: 0.85rem;
}

.alternate-card-content h3 {
    margin: 0 0 15px;
    color: #10251e;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.alternate-card-content h3 em {
    display: block;
    color: #1e4b3b;
    font-family: "Playfair Display", serif;
    font-size: 1.08em;
    font-weight: 500;
}

.alternate-card-content p {
    margin: 0 0 21px;
    color: #718078;
    font-size: 0.82rem;
    line-height: 1.8;
}

.alternate-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.alternate-tags span {
    padding: 7px 10px;
    border: 1px solid #e4ebe2;
    border-radius: 7px;
    background: #f7faf5;
    color: #53675b;
    font-size: 0.62rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.alternate-card:hover .alternate-tags span {
    background: #f8f1d9;
    border-color: #e8d99d;
    color: #80691c;
}

/* Bottom note */

.alternate-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
    margin: 55px auto 0;
    padding: 15px 20px;
    border: 1px solid #e3eae1;
    border-radius: 12px;
    background: #ffffff;
    color: #78867d;
    font-size: 0.72rem;
    text-align: center;
}

.alternate-note i {
    color: #c9a227;
}

/* Scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

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

.alternate-left.reveal.active,
.alternate-right.reveal.active {
    transform: translateX(0);
}

.alternate-item:nth-child(1) {
    transition-delay: 0.05s;
}

.alternate-item:nth-child(2) {
    transition-delay: 0.15s;
}

.alternate-item:nth-child(3) {
    transition-delay: 0.25s;
}

.alternate-item:nth-child(4) {
    transition-delay: 0.35s;
}

/* Tablet */

@media (max-width: 900px) {
    .alternate-left {
        padding-right: 45px;
    }

    .alternate-right {
        padding-left: 45px;
    }

    .alternate-item::after {
        width: 45px;
    }

    .alternate-card-content {
        padding: 24px;
    }

    .alternate-card-content h3 {
        font-size: 1.3rem;
    }
}

/* Mobile */

@media (max-width: 700px) {
    .alternate-itinerary {
        padding: 85px 0;
    }

    .alternate-heading {
        margin-bottom: 55px;
    }

    .alternate-heading h2 {
        font-size: 2.2rem;
    }

    .alternate-heading p {
        font-size: 0.82rem;
    }

    .alternate-timeline::before {
        left: 18px;
        width: 2px;
    }

    .alternate-item,
    .alternate-left,
    .alternate-right {
        width: 100%;
        margin-left: 0;
        padding-left: 55px;
        padding-right: 0;
        padding-bottom: 35px;
    }

    .alternate-item::before,
    .alternate-left::before,
    .alternate-right::before {
        left: 9px;
        right: auto;
        top: 35px;
        width: 18px;
        height: 18px;
        border-width: 4px;
    }

    .alternate-item::after,
    .alternate-left::after,
    .alternate-right::after {
        left: 27px;
        right: auto;
        top: 43px;
        width: 28px;
        height: 2px;
    }

    .alternate-card {
        border-radius: 18px;
    }

    .alternate-card-image {
        height: 210px;
    }

    .alternate-card-content {
        padding: 24px 21px 25px;
    }

    .alternate-card-content h3 {
        font-size: 1.35rem;
    }

    .alternate-card-content p {
        font-size: 0.8rem;
        line-height: 1.75;
    }

    .alternate-note {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        font-size: 0.68rem;
        line-height: 1.6;
        margin-left: 1rem;
        margin-right: 1rem;    
      }

    .alternate-left.reveal,
    .alternate-right.reveal {
        transform: translateY(45px);
    }

    .alternate-left.reveal.active,
    .alternate-right.reveal.active {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .alternate-card,
    .alternate-card-image img,
    .alternate-tags span {
        transition: none !important;
    }

    .reveal,
    .alternate-left.reveal,
    .alternate-right.reveal {
        opacity: 1;
        transform: none !important;
    }
}

