@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #001259;
  --primary-hover: #001000;
  --accent-color: #10b981;
  --accent-hover: #059669;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --text-dark: #1f2937;
  --text-gray: #4b5563;
  --font-family: 'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-white);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

/* Desktop Nav Links */
.nav-links {
  display: none;
  list-style: none;
  gap: 2.25rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
  white-space: nowrap;
}

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

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

/* Nav Right (CTA + Hamburger) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-contact {
  background-color: var(--accent-color);
  color: white;
  padding: 0.55rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: none;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 10px rgba(16,185,129,0.3);
}

.btn-contact:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16,185,129,0.4);
}

@media (min-width: 768px) {
  .btn-contact {
    display: inline-flex;
    align-items: center;
  }
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 2rem;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger open → X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Menu Dropdown */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu ul {
  list-style: none;
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu ul li a:hover {
  background-color: var(--bg-light);
  color: var(--accent-color);
}

.mobile-contact {
  color: var(--accent-color) !important;
  font-weight: 700 !important;
  border: 1px solid var(--accent-color);
  margin-top: 0.5rem;
}



/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
  background-image: url('https://www.nepalprivatetours.com/_next/image?url=%2Fimages%2Fnewcover.jpg&w=1920&q=75');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  padding: 2rem;
  max-width: 800px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn-book {
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-book:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-outline {
  background-color: transparent;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-outline:hover {
  background-color: white;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.farmers-avatars {
  display: flex;
}

.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--accent-color);
  margin-left: -0.75rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.avatar:first-child {
  margin-left: 0;
}

.stats-text {
  text-align: left;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.stats-text strong {
  font-size: 1.25rem;
  color: white;
}

/* About Section */
.about-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left: Image wrap with floating stat card */
.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.about-stat-card {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  gap: 2rem;
  align-items: center;
  min-width: 280px;
}

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

.about-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
}

.about-stat span {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-weight: 500;
}

.about-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: #e5e7eb;
}

/* Right: Content */
.about-content {
  padding-top: 1rem;
}

.about-tag {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-desc {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-icon {
  font-size: 1.1rem;
  color: var(--accent-color);
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: #f0fdf4;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbf7d0;
}

.about-list li div strong {
  display: block;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.about-list li div p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.about-quote {
  border-left: 4px solid var(--accent-color);
  padding: 0.75rem 1.25rem;
  background: #f0fdf4;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 0.975rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-join {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 0.85rem 2.25rem;
  border-radius: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

.btn-join:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}


/* Packages Section */
.packages {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-gray);
}

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

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.package-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  bottom: -1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card-content {
  padding: 2rem 1.5rem 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.card-price span {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 400;
}

/* Timeline / Journey Section */
.journey-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.85rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e5e7eb;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -3rem;
  top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 0 6px var(--bg-white);
  z-index: 1;
}

.timeline-content {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.timeline-desc {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0,0,0,0.02);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.stars {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-role {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.2rem;
}

/* Footer */
.footer {
  background: #0d2137;
  color: white;
  padding: 4rem 0 0;
  border-top: 4px solid var(--accent-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
}

/* Brand */
.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 320px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: background 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Headings */
.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

/* Quick links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75) !important;
  transition: color 0.2s, padding-left 0.2s;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent-color) !important;
  padding-left: 4px;
}

.footer-links a i {
  font-size: 0.65rem;
  opacity: 0.7;
}

/* Contact list */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.75) !important;
}

.footer-contact-icon {
  color: var(--accent-color);
  margin-top: 3px;
  width: 1rem;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}

.footer .card-desc {
  color: rgba(255, 255, 255, 0.8) !important;
}

.newsletter-form {
  display: flex;
  margin-top: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem 0 0 0.5rem;
  outline: none;
  font-family: inherit;
}

.newsletter-input:focus {
  border-color: var(--accent-color);
}

.newsletter-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.2s;
}

.newsletter-btn:hover {
  background-color: var(--accent-hover);
}


/* Brand Text Responsive Control */
@media (max-width: 640px) {
    .brand-text {
        font-size: 0.85rem !important;
    }
    .brand-name img {
        height: 35px !important;
    }
}

/* Notification Bell Hover Effect */
#notification-bell {
    transition: transform 0.2s ease, color 0.2s ease !important;
}

#notification-bell:hover {
    color: var(--accent-color) !important;
    transform: scale(1.15) rotate(5deg);
}
