/* ==========================================================================
   GULMARG SKI CENTRE - MAIN STYLESHEET
   Aesthetics: Luxury Alpine Glassmorphism, Glacial Cyan, Deep Mountain Midnight
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --bg-dark: #070b14;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);
  --bg-light-glass: rgba(255, 255, 255, 0.08);
  
  --primary-blue: #0284c7;
  --primary-hover: #0369a1;
  --cyan-ice: #38bdf8;
  --cyan-glow: rgba(56, 189, 248, 0.25);
  
  --gold-accent: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.2);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #cbd5e1;
  
  --border-ice: rgba(56, 189, 248, 0.18);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(245, 158, 11, 0.3);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.5);
  --shadow-cyan: 0 0 25px rgba(56, 189, 248, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Strict Viewport Containment */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  line-height: 1.6;
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(56, 189, 248, 0.07) 0%, transparent 50%);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

/* Snowfall Canvas */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

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

ul {
  list-style: none;
}

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

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section-spacing {
  padding: 80px 0;
  position: relative;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
  padding: 0 10px;
}

.sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--cyan-ice);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 40%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.45);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.65);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
  border: 1px solid rgba(251, 191, 36, 0.5);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--cyan-ice);
  transform: translateY(-2px);
  color: var(--cyan-ice);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (Single-Line Alpine Telemetry Bar)
   ========================================================================== */
.top-bar {
  background: rgba(7, 11, 20, 0.96);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  padding: 6px 0;
  font-size: 0.78rem;
  color: var(--text-light);
  position: relative;
  z-index: 101;
  overflow: hidden;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.top-bar-content::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.snow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: var(--cyan-ice);
  font-weight: 600;
  white-space: nowrap;
}

.live-indicator {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.top-link {
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.top-link:hover {
  color: var(--cyan-ice);
}

.currency-selector {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
select {
  background: rgba(15, 23, 42, 0.85);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.76rem;
  cursor: pointer;
  outline: none;
}

/* ==========================================================================
   STICKY NAVBAR - PRECISE DESKTOP & MOBILE MENU
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 11, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 11, 20, 0.98);
  border-bottom-color: rgba(56, 189, 248, 0.25);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--cyan-ice);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-ice);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--cyan-ice);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(56, 189, 248, 0.2);
  color: var(--cyan-ice);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
  overflow: hidden;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.03);
  animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 20, 0.45) 0%,
    rgba(7, 11, 20, 0.8) 75%,
    var(--bg-dark) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 960px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cyan-ice);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-title .highlight-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: #e2e8f0;
  max-width: 820px;
  margin-bottom: 30px;
  line-height: 1.65;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* ==========================================================================
   HERO SEARCH / TRIP PLANNING PANEL (FIXED WIDTH OVERFLOW)
   ========================================================================== */
.booking-search-bar {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.35);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--shadow-cyan);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.search-form {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 10px;
  min-width: 0; /* Prevents flex/grid overflow from long select options */
  width: 100%;
  box-sizing: border-box;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--cyan-ice);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-field select, .search-field input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  color-scheme: dark;
}

.search-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.8;
}

.search-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.search-field select option {
  background: #0f172a;
  color: #fff;
  padding: 6px;
}

/* Trust Badges Strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-ice);
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}

.trust-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LIVE MOUNTAIN & OPEN-METEO WEATHER WIDGET
   ========================================================================== */
.weather-section {
  padding: 30px 0 60px 0;
}

.weather-widget {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.85));
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
  backdrop-filter: blur(16px);
  width: 100%;
  box-sizing: border-box;
}

.weather-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-location {
  display: flex;
  align-items: center;
  gap: 14px;
}

.station-pill {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 4px;
}

.station-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.station-btn.active {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.5);
}

.weather-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.weather-card {
  background: rgba(11, 19, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  min-width: 0;
}

.weather-card:hover {
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-2px);
}

.weather-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan-ice);
  flex-shrink: 0;
}

.weather-val {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
}

.weather-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Weather Advisory & Real-Time WhatsApp Quick Connect */
.weather-disclaimer-box {
  margin-top: 20px;
  background: rgba(7, 11, 20, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 260px;
}

.disclaimer-icon {
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.82rem;
  color: #e2e8f0;
  line-height: 1.55;
}

.disclaimer-text strong {
  color: var(--gold-light);
}

.disclaimer-text em {
  color: var(--cyan-ice);
  font-style: normal;
  font-weight: 600;
}

.disclaimer-wa-btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 8px 18px;
  flex-shrink: 0;
}

/* ==========================================================================
   PACKAGES SECTION
   ========================================================================== */
.package-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(15, 23, 42, 0.8);
  color: var(--text-light);
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  border-color: var(--cyan-ice);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(12px);
  box-sizing: border-box;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-ice);
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
}

.package-card.featured {
  border-color: rgba(245, 158, 11, 0.4);
}

.ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.package-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .package-thumb img {
  transform: scale(1.06);
}

.package-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-level {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan-ice);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.package-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #ffffff;
}

.package-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.package-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.highlight-item i {
  color: #22c55e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  gap: 10px;
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.price-amount {
  font-size: 1.35rem;
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #ffffff;
}

.price-amount.gold {
  color: var(--gold-light);
}

.price-unit {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GONDOLA & ELEVATION GUIDE
   ========================================================================== */
.gondola-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.gondola-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: var(--shadow-lg);
}

.gondola-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.elevation-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(7, 11, 20, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.elev-stat {
  text-align: center;
}

.elev-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cyan-ice);
}

.elev-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.phase-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.phase-card:hover {
  border-color: var(--cyan-ice);
  background: var(--bg-card-hover);
}

.phase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.phase-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.phase-tag-p1 {
  background: rgba(56, 189, 248, 0.2);
  color: var(--cyan-ice);
  border: 1px solid rgba(56, 189, 248, 0.4);
}

.phase-tag-p2 {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.phase-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.phase-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 12px;
}

.phase-meta-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-muted);
}

/* ==========================================================================
   RENTAL & SKI SHOP
   ========================================================================== */
.rental-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gear-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
}

.gear-card:hover {
  border-color: var(--cyan-ice);
  transform: translateY(-3px);
}

.gear-icon {
  font-size: 1.5rem;
  color: var(--cyan-ice);
  margin-bottom: 8px;
}

.gear-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gear-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.gear-price {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold-light);
}

.rental-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.3);
  box-shadow: var(--shadow-lg);
}

.rental-image-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ==========================================================================
   ACTIVITIES & HOTELS GRID
   ========================================================================== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan-ice);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.5);
}

.activity-thumb {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.activity-card:hover .activity-thumb img {
  transform: scale(1.06);
}

.activity-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.activity-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.activity-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

/* ==========================================================================
   INTERACTIVE TRIP ESTIMATOR & COST CALCULATOR (FIXED OVERFLOW)
   ========================================================================== */
.calculator-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(7, 11, 20, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.calc-group {
  min-width: 0;
}

.calc-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.calc-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.calc-option-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  max-width: 100%;
  text-align: left;
  box-sizing: border-box;
}

.calc-option-btn.selected, .calc-option-btn:hover {
  background: rgba(2, 132, 199, 0.35);
  border-color: var(--cyan-ice);
  color: #fff;
}

.calc-summary-card {
  background: rgba(11, 19, 38, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  box-sizing: border-box;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  margin-bottom: 12px;
  color: var(--text-light);
  gap: 8px;
}

.summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.total-label {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.total-val {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   FAQS ACCORDION
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--cyan-ice);
  background: rgba(15, 23, 42, 0.9);
}

.faq-question {
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--cyan-ice);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* ==========================================================================
   MODAL ITINERARY
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal-backdrop.open {
  display: flex;
}

.modal-container {
  background: #0f172a;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
  position: relative;
  padding: 30px;
  color: #fff;
  box-sizing: border-box;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--cyan-ice);
  color: #0f172a;
}

.timeline {
  position: relative;
  margin: 20px 0;
  padding-left: 24px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(56, 189, 248, 0.3);
}

.timeline-item {
  position: relative;
  margin-bottom: 18px;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0f172a;
  border: 2px solid var(--cyan-ice);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--cyan-ice);
}

.timeline-title {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #050811;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.brand-text-link {
  color: var(--cyan-ice);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(56, 189, 248, 0.4);
  transition: var(--transition-fast);
}

.brand-text-link:hover {
  color: #ffffff;
  border-bottom-color: var(--cyan-ice);
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
}

/* Footer Social Media Buttons */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: #e2e8f0;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.footer-social-btn.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.footer-social-btn.fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.footer-social-btn.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.4);
}

.footer-social-btn.map:hover {
  background: #ea4335;
  border-color: #ea4335;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(234, 67, 53, 0.4);
}

.footer-social-btn.yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--cyan-ice);
  padding-left: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1120px) {
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .search-form {
    grid-template-columns: repeat(2, 1fr) auto;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: rgba(7, 11, 20, 0.98);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
  .gondola-wrapper, .rental-wrapper, .calc-grid {
    grid-template-columns: 1fr;
  }
  .search-form {
    grid-template-columns: 1fr 1fr;
  }
  .search-form button {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .section-spacing {
    padding: 55px 0;
  }
  .search-form {
    grid-template-columns: 1fr;
  }
  .search-form button {
    grid-column: span 1;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
  }
  .rental-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .calculator-section {
    padding: 24px 16px;
  }
  .weather-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-bar-right {
    justify-content: flex-start;
  }
}
