:root {
  --primary: #033f57;
  --primary-dark: #022f41;
  --primary-soft: #0b5b78;
  --accent: #f5a623;
  --accent-dark: #d88d12;
  --accent-light: #ffd27a;
  --secondary-gradient: linear-gradient(90deg, #f5a623, #d88d12);
  --text-dark: #10202b;
  --text-muted: #6b7b88;
  --bg-light: #f6f8fa;
  --white: #ffffff;
  --off-white: #fdfcf9;
  --border: rgba(3, 63, 87, 0.1);
  --shadow: 0 20px 60px rgba(3, 63, 87, 0.1);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif !important;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  padding-top: 78px;
}

* {
  font-family: "Outfit", sans-serif !important;
}

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

a {
  text-decoration: none;
}

.section-padding {
  padding: 80px 0;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.section-tag {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-tag-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.custom-navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(3, 63, 87, 0.06);
  transition: all 0.3s ease;
}

.custom-navbar.scrolled {
  box-shadow: 0 12px 30px rgba(3, 63, 87, 0.1);
}

.navbar-brand {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
}

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

.btn-brand {
  background: var(--secondary-gradient);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(245, 166, 35, 0.35);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(3, 63, 87, 0.72), rgba(2, 47, 65, 0.72)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(245, 166, 35, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at left bottom,
      rgba(11, 91, 120, 0.28),
      transparent 34%
    );
}

.hero-badge {
  background: rgba(245, 166, 35, 0.16);
  color: #fff;
  border: 1px solid rgba(245, 166, 35, 0.28);
  backdrop-filter: blur(8px);
}

.glass-card,
.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(2, 47, 65, 0.18);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-stat h3 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.92rem;
}

.info-card,
.benefit-card,
.step-card,
.testimonial-card,
.form-card,
.mini-benefit {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.info-card {
  padding: 28px 22px;
}

.icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(245, 166, 35, 0.12);
  margin-bottom: 18px;
}

.icon-wrap i {
  font-size: 1.4rem;
  color: var(--accent);
}

.info-card h5,
.step-card h5 {
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.info-card p,
.benefit-card p,
.step-card p,
.testimonial-card p,
.card-text,
.mini-benefit p {
  color: var(--text-muted);
}

.benefit-card {
  padding: 24px;
  height: 100%;
}

.benefit-card i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
}

.benefit-card h6 {
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.resort-card {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(3, 63, 87, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(3, 63, 87, 0.16);
}

.resort-image {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.resort-darjeeling {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
}

.resort-gangtok {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1200&q=80");
}

.resort-pelling {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1510798831971-661eb04b3739?auto=format&fit=crop&w=1200&q=80");
}

.resort-lachung {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1200&q=80");
}

.resort-kalimpong {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1200&q=80");
}

.resort-siliguri {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80");
}

.mini-benefit {
  padding: 26px 16px;
  height: 100%;
}

.mini-benefit i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.mini-benefit p {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.step-card {
  padding: 28px 22px;
  position: relative;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--secondary-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px rgba(245, 166, 35, 0.22);
}

.beta-banner {
  background: linear-gradient(135deg, #033f57, #0b5b78);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(3, 63, 87, 0.2);
}

.beta-point {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.beta-point i {
  font-size: 1.1rem;
  color: var(--accent-light);
}

.form-card {
  padding: 30px;
}

.form-control,
.form-select {
  border-radius: 14px;
  min-height: 52px;
  border: 1px solid rgba(3, 63, 87, 0.14);
  padding-left: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-soft);
  box-shadow: 0 0 0 0.25rem rgba(3, 63, 87, 0.12);
}

.lead-points {
  display: grid;
  gap: 12px;
}

.lead-points div {
  color: var(--text-dark);
  font-weight: 600;
}

.lead-points i {
  color: var(--primary);
  margin-right: 8px;
}

.testimonial-card {
  padding: 28px 24px;
}

.testimonial-card h6 {
  color: var(--primary-dark);
  font-weight: 700;
}

.stars i {
  color: var(--accent);
  margin-right: 4px;
}

.custom-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  padding: 20px 22px;
  background: #fff;
  color: var(--primary-dark);
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(245, 166, 35, 0.08);
  box-shadow: none;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.final-cta {
  background: linear-gradient(rgba(3, 63, 87, 0.82), rgba(2, 47, 65, 0.82)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-text {
  max-width: 700px;
  margin-bottom: 24px;
}

.footer-section {
  padding: 70px 0 100px;
  background: #fff;
}

.footer-logo {
  color: var(--primary);
  font-weight: 800;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 0.25s ease;
}

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

.footer-divider {
  margin: 32px 0 20px;
  border-color: rgba(3, 63, 87, 0.08);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(3, 63, 87, 0.08);
  z-index: 1050;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .navbar-collapse {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(3, 63, 87, 0.08);
  }

  .hero-section {
    min-height: auto;
  }

  .beta-banner {
    padding: 28px;
  }

  .footer-section {
    padding-bottom: 120px;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-top: 74px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-section .display-4 {
    font-size: 2.4rem;
  }

  .hero-card {
    margin-top: 10px;
  }

  .resort-image {
    height: 210px;
  }

  .form-card {
    padding: 22px;
  }

  .beta-banner {
    border-radius: 22px;
  }
}

@media (max-width: 575.98px) {
  .hero-section .display-4 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .btn-lg {
    font-size: 1rem;
  }

  .hero-stat {
    padding: 14px 12px;
  }
}
