/* Ghumante Travel - Luxury Travel Theme */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0B1D35;
  --primary-light: #132D50;
  --secondary: #C9A84C;
  --secondary-light: #D4B96A;
  --accent-green: #2D5A3D;
  --accent-green-light: #3D7A52;
  --bg-light: #FAFAF8;
  --bg-card: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-muted: #6B6B6B;
  --gold: #C9A84C;
  --gold-light: #E0C878;
  --gold-dark: #A68A3A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-light); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(15, 44, 89, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--primary);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.mobile-menu .nav-link:last-child {
  border-bottom: none;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  z-index: 2001;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 44, 89, 0.85) 0%, rgba(15, 44, 89, 0.6) 50%, rgba(255, 96, 0, 0.15) 100%);
  z-index: 1;
}

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

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--gold);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a6b3a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #1a6b3a;
  cursor: pointer;
}

.btn-green:hover {
  background: #14553a;
  border-color: #14553a;
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(26, 107, 58, 0.25);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ===== CARDS ===== */
.tour-card {
  background: var(--bg-card);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.08);
}

.tour-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 14px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  z-index: 2;
}

.badge-orange {
  background: var(--gold);
  color: var(--primary);
}

.badge-green {
  background: var(--accent-green);
  color: #fff;
}

.badge-blue {
  background: var(--primary);
  color: var(--gold);
}

.tour-card-price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 29, 53, 0.92);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.tour-card-body {
  padding: 20px;
}

.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.tour-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  color: #374151;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.1);
}

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

.form-error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #dc2626;
  background: #fef2f2;
}

.form-group.error .form-error {
  display: block;
}

/* ===== SUCCESS STATE ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: scaleIn 0.5s ease 0.2s both;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #1a6b3a;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(26, 107, 58, 0.3);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

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

/* ===== SECTION PADDING ===== */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--primary);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ===== WHY CHOOSE US ICON ===== */
.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* ===== COUNTER ===== */
.counter-section {
  background: var(--primary);
}

.counter-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.counter-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ===== LOADING SHIMMER ===== */
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none !important;
  }

  .hero {
    min-height: 100svh;
  }

  .tour-card-image {
    height: 200px;
  }

  .counter-item h3 {
    font-size: 32px;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

/* Hero vignette overlay */
.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 10s ease-out;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 29, 53, 0.55) 0%, rgba(11, 29, 53, 0.3) 40%, rgba(11, 29, 53, 0.6) 80%, rgba(11, 29, 53, 0.9) 100%);
}

/* Hero mountain silhouettes */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  pointer-events: none;
}

.mountain-layer {
  width: 100%;
  display: block;
}

.mountain-far { height: 120px; }
.mountain-mid { height: 100px; margin-top: -40px; }
.mountain-near { height: 80px; margin-top: -30px; }

/* Hero clouds */
.cloud {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.cloud svg {
  width: 100%;
  height: auto;
}

.cloud-1 {
  width: 300px;
  top: 20%;
  animation: cloudDrift 40s linear infinite;
}

.cloud-2 {
  width: 220px;
  top: 35%;
  animation: cloudDrift 55s linear infinite;
  animation-delay: -15s;
}

@keyframes cloudDrift {
  0% { transform: translateX(-300px); }
  100% { transform: translateX(calc(100vw + 300px)); }
}

/* Hero text reveal animation */
.hero-text-reveal {
  display: inline-block;
  animation: heroTextReveal 1s ease-out 0.3s both;
}

@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(30px) rotateX(20deg); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) rotateX(0deg); filter: blur(0); }
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.hero-arrow:hover {
  background: rgba(201, 168, 76, 0.8);
  border-color: rgba(201, 168, 76, 0.8);
  transform: scale(1.1);
}

/* ===== REALISTIC ANIMATIONS ===== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 1001;
  transition: width 0.1s linear;
  width: 0%;
}

/* Snow canvas overlay */
.snow-canvas {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

/* Sun flare */
.sun-flare {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 6;
  pointer-events: none;
  animation: sunPulse 8s ease-in-out infinite alternate;
}

@keyframes sunPulse {
  0% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  50% { opacity: 1; transform: scale(1.15) translate(-20px, 10px); }
  100% { opacity: 0.7; transform: scale(0.95) translate(10px, -5px); }
}

/* Light rays from sun */
.light-rays {
  position: absolute;
  top: -20%;
  right: 0;
  width: 100%;
  height: 120%;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.light-ray {
  position: absolute;
  top: 0;
  right: 15%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0) 80%);
  transform-origin: top center;
  animation: rayShimmer 6s ease-in-out infinite;
}

.light-ray:nth-child(1) { right: 10%; transform: rotate(-8deg); animation-delay: 0s; width: 3px; }
.light-ray:nth-child(2) { right: 18%; transform: rotate(-3deg); animation-delay: 1s; opacity: 0.7; }
.light-ray:nth-child(3) { right: 25%; transform: rotate(2deg); animation-delay: 2s; opacity: 0.5; width: 4px; }
.light-ray:nth-child(4) { right: 32%; transform: rotate(7deg); animation-delay: 0.5s; opacity: 0.6; }

@keyframes rayShimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Fog layers */
.fog-layer {
  position: absolute;
  bottom: 0;
  left: -10%;
  right: -10%;
  height: 180px;
  z-index: 12;
  pointer-events: none;
  opacity: 0.5;
}

.fog-layer-1 {
  background: linear-gradient(180deg, transparent 0%, rgba(248, 249, 250, 0.4) 40%, rgba(248, 249, 250, 0.8) 70%, rgba(248, 249, 250, 1) 100%);
  animation: fogDrift1 20s ease-in-out infinite alternate;
}

.fog-layer-2 {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.7) 80%, rgba(248, 249, 250, 1) 100%);
  animation: fogDrift2 25s ease-in-out infinite alternate;
  height: 140px;
  bottom: 0;
}

@keyframes fogDrift1 {
  0% { transform: translateX(-3%); opacity: 0.4; }
  100% { transform: translateX(3%); opacity: 0.6; }
}

@keyframes fogDrift2 {
  0% { transform: translateX(2%); opacity: 0.3; }
  100% { transform: translateX(-4%); opacity: 0.55; }
}

/* Card hover effects */
.tour-card {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.06);
}

/* Smooth link underline */
.link-underline {
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* Mountain silhouette fade-in */
.mountain-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Page load fade-in */
.page-load-fade {
  animation: pageLoadFade 0.6s ease-out both;
}

@keyframes pageLoadFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle hover glow on CTA */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gold);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
  opacity: 0.25;
}

/* Why Choose Us card hover */
.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}

/* Hero content stagger entrance */
.hero-content .hero-text-reveal {
  animation: heroTextReveal 0.8s ease-out 0.3s both;
}

.hero-content .hero-sub {
  animation: heroTextReveal 0.8s ease-out 0.5s both;
}

.hero-content .hero-cta {
  animation: heroTextReveal 0.8s ease-out 0.7s both;
}

@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(25px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Hero slide text animation */
.hero-slide.active ~ .hero-content .hero-text-reveal,
.hero-slide.active ~ .hero-content .hero-sub,
.hero-slide.active ~ .hero-content .hero-cta {
  animation: heroTextReveal 0.8s ease-out both;
}

/* Subtle shimmer on badges */
@keyframes badgeShimmer {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.tour-card-badge {
  background-size: 200% 100%;
  animation: badgeShimmer 3s ease-in-out infinite;
}

/* Smooth counter count-up */
.counter-item h3 {
  font-variant-numeric: tabular-nums;
}

/* Footer social icon hover */
.footer a svg {
  transition: transform 0.2s ease;
}

.footer a:hover svg {
  transform: scale(1.15);
}

/* Image hover zoom */
.tour-card-image {
  overflow: hidden;
}

.tour-card-image img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal backdrop blur */
.modal-overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease, backdrop-filter 0.3s ease;
}

/* Button press effect */
.btn-primary:active,
.btn-green:active,
.btn-outline:active {
  transform: translateY(1px) scale(0.98);
}
