:root {
  --bg-dark: #0b0f14;
  --card-dark: #121826;
  --gold: #f5b942;
  --text-light: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(0,0,0,0.6);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 700;
}

.logo span {
  color: var(--gold);
}

.navbar nav a {
  margin-left: 16px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
}

/* HERO */
.hero {
  min-height: 85vh;
  background-image:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.9)),
    url('../images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding: 120px 20px 60px; /* top padding fixes navbar overlap */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Poppins';
  font-size: 36px;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  margin: 16px 0;
  color: #cbd5e1;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
}

/* WHY SECTION */
.why {
  padding: 60px 20px;
  text-align: center;
}

.why h2 {
  font-family: 'Poppins';
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-dark);
  padding: 30px;
  border-radius: 16px;
}

.card i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #25D366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 22px;
    cursor: pointer;
    color: white;
  }

  .navbar nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: none;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    z-index: 99;
  }

  .navbar nav.active {
    display: flex;
  }

  .navbar nav a {
    padding: 12px 0;
    font-size: 16px;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar nav {
    position: absolute;
    top: 60px;
    left: 0;
    background: #0b0f14;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .navbar nav a {
    margin: 12px 0;
    font-size: 16px;
  }

  .navbar nav.active {
    display: flex;
  }

  /* HERO TEXT */
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* WHY SECTION */
  .why {
    padding: 40px 16px;
  }
}
.hero-content {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.enquiry {
  padding: 60px 20px;
  text-align: center;
}

.enquiry h2 {
  font-family: 'Poppins';
  margin-bottom: 20px;
}

.enquiry form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry input {
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}
.call-float {
  position: fixed;
  bottom: 90px;
  right: 16px;
  background: var(--gold);
  color: #000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 98;
}
.enquiry {
  background: linear-gradient(180deg, #0b0f14, #05070a);
}

.enquiry form {
  background: rgba(18, 24, 38, 0.85);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}
.enquiry h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.enquiry input {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #1f2937;
  background: #0b0f14;
  color: #fff;
  font-size: 14px;
}

.enquiry input:focus {
  border-color: var(--gold);
  outline: none;
}
.enquiry button {
  margin-top: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enquiry button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(245,185,66,0.5);
}
.map {
  padding: 40px 0 0;
  background: #05070a;
}

.map h3 {
  text-align: center;
  font-family: 'Poppins';
  margin-bottom: 15px;
  color: var(--text-light);
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh; /* NEW mobile-safe unit */
    background-position: center top;
  }
}
.assam-text {
  opacity: 0.35; /* instead of too low */
  letter-spacing: 4px;
}
.hero-content {
  animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}
section {
  scroll-margin-top: 80px; /* height of navbar */
}
#about,
#packages,
#services,
#contact {
  scroll-margin-top: 80px;
}
/* PACKAGES SECTION */
.packages {
  background: #05070a;
  text-align: center;
}

.packages h2 {
  font-family: 'Poppins';
  font-size: 28px;
  margin-bottom: 8px;
}

.packages-sub {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 30px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* PACKAGE CARD */
.package-card {
  background: #0b0f14;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
}

.package-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.package-content {
  padding: 20px;
  text-align: left;
}

.package-content h3 {
  font-family: 'Poppins';
  font-size: 18px;
  margin-bottom: 6px;
}

.package-content p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 12px;
}

.price {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* CTA BUTTON */
.package-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(245,185,66,0.5);
}
/* Popular Routes Box */
.routes-box {
  margin-top: 28px;
  max-width: 520px;
}

.routes-title {
  font-size: 14px;
  color: #f6c453;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.routes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.routes-list span {
  padding: 8px 14px;
  font-size: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.routes-list span:hover {
  background: #f6c453;
  color: #000;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .hero {
    min-height: 65vh;
    padding: 90px 16px 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }
}
.footer {
  background: #0b0f14;
  color: #cbd5e1;
  padding: 40px 20px;
  text-align: center;
}

.footer h3 {
  color: #fbbf24;
  margin-bottom: 8px;
}

.footer-links {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fbbf24;
}

.footer p {
  font-size: 13px;
  opacity: 0.8;
}
