/* =============================================
   MOHIT TRAVELS & TOURS PVT. LTD.
   Main Stylesheet
   Brand Colors: Green #058B1E, Red #f51720
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #058B1E;
  --green-dark: #046818;
  --green-light: #07b025;
  --green-pale: #e8f5eb;
  --red: #f51720;
  --red-dark: #c9101a;
  --red-light: #ff3d45;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light: #f2f4f3;
  --dark: #1a1a1a;
  --dark-2: #2c2c2c;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --text: #1d1d1d;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Cabin', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

/* === TOP BAR === */
.topbar {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  padding: 7px 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.topbar-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar-social a {
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition);
}

.topbar-social a:hover { opacity: 1; transform: translateY(-1px); }

/* === HEADER === */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

.logo-tagline {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
  background: var(--green-pale);
}

.nav-link.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 25px;
}

.nav-link.nav-cta:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 23, 32, 0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.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;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 60%, rgba(5,139,30,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 750px;
  animation: fadeInUp 0.8s ease;
}

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-content h1,
.hero-content .hero-h2 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 75px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.text-accent { color: #7fdc97; }

.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
}

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

.hero-arrow {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: var(--green);
  border-color: var(--green);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 139, 30, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}

.btn-ghost:hover {
  background: var(--green);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #20b858;
  border-color: #20b858;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* === STATS BAR === */
.stats-bar {
  background: var(--green);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item { color: var(--white); }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.85;
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }

.section-tag {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
}

.section-tag::before { right: 100%; margin-right: -20px; }
.section-tag::after { left: 100%; margin-left: -20px; }

.section-header.light .section-tag { color: #7fdc97; }
.section-header.light .section-tag::before,
.section-header.light .section-tag::after { background: #7fdc97; }

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Service card image */
.service-card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-pale);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover { color: var(--green-dark); }

/* === PACKAGES === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(5,139,30,0.15);
}

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

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.package-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-red { background: var(--red); }

.package-body {
  padding: 24px;
}

.package-body h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

/* Duration badge below package title */
.pkg-duration {
  display: inline-block;
  background: linear-gradient(135deg, #058B1E, #2ecc71);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  margin-top: 0;
}

.package-body p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.package-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Package card fills its grid cell fully */
.packages-grid .package-card {
  width: 100%;
}

/* === ABOUT SNIPPET === */
.about-snippet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-snippet-img {
  position: relative;
}

.about-snippet-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 500px;
  object-fit: cover;
}

.about-badge-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-snippet-content .section-tag { text-align: left; margin-left: 0; }
.about-snippet-content .section-tag::before { display: none; }

.about-snippet-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-snippet-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  margin: 24px 0 32px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === WHO WE ARE / GALLERY VISUAL SEPARATION === */
.about-snippet {
  background: #f8f9fa;
}

.gallery-teaser {
  background: var(--white);
  border-top: 3px solid var(--green);
}

/* === GALLERY === */
.gallery-teaser .container {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 0 auto;
  justify-content: center;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}

.gallery-item.tall { grid-row: span 2; height: 100%; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

/* === TESTIMONIALS / GOOGLE REVIEWS === */
.testimonials-section {
  background: #fffbf0 !important;
}

.testimonials-section .section-header h2 {
  color: var(--dark) !important;
}

.testimonials-section .section-header p {
  color: var(--gray) !important;
}

.testimonials-section .section-header.light .section-tag {
  color: var(--green);
}

.testimonials-section .section-header.light .section-tag::before,
.testimonials-section .section-header.light .section-tag::after {
  background: var(--green);
}

.google-reviews-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid #dadce0;
  border-radius: 20px;
  padding: 4px 14px 4px 8px;
  font-size: 13px;
  font-weight: 600;
  color: #3c4043;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-4px);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer {
  display: flex;
  flex-direction: column;
}

.reviewer strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
}

.reviewer span {
  color: var(--gray);
  font-size: 12px;
}

.stars {
  color: #FBBC05;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #3c4043;
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

.google-logo-inline {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 2px;
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  background: url('../images/khaptad.webp') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 60, 10, 0.82);
}

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

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: #111;
  color: var(--white);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-name { color: #7fdc97; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
}

.footer-links h5,
.footer-services h5,
.footer-contact h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 10px;
}

.footer-links ul a,
.footer-services ul a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
  color: var(--green-light);
  padding-left: 6px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.contact-list svg { flex-shrink: 0; color: var(--green-light); margin-top: 2px; }

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

.contact-list a:hover {
  color: var(--green-light);
  text-decoration: underline;
}

/* Topbar clickable links */
.topbar-item a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.topbar-item a:hover {
  text-decoration: underline;
  opacity: 1;
}

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.3);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

/* === FLOATING WHATSAPP === */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: var(--transition);
}

.float-whatsapp:hover {
  background: #20b858;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 40px 0 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/shuklaphanta-bg.jpg') center/cover;
  opacity: 0.15;
}

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

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--green);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-info-card > p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-light);
}

.contact-detail-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-item p, .contact-detail-item a {
  color: var(--gray);
  font-size: 14px;
  display: block;
  line-height: 1.5;
}

.contact-detail-item a:hover { color: var(--green); }

/* === FORM === */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5, 139, 30, 0.1);
}

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

/* === MAP === */
.map-section {
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%);
}

/* === DESTINATIONS PAGE === */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
}

.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.destination-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.destination-region {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.destination-body {
  padding: 22px;
}

.destination-body h4 {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 8px;
}

.destination-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* === SERVICES PAGE === */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--gray-light);
  /* Offset anchor scroll so the sticky header (≈79px) doesn't cover the heading.
     Desktop: logo 55px + top/bottom padding 12px each = 79px + 16px breathing room = 95px */
  scroll-margin-top: 95px;
}

@media (max-width: 768px) {
  /* Header height stays the same on mobile (hamburger, same logo/padding).
     Keep the same offset so anchor links from index.html work on mobile too. */
  .service-detail-card {
    scroll-margin-top: 95px;
  }
}

.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }

.service-detail-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f4f6f4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  display: block;
}

.service-detail-content .section-tag { margin-left: 0; }
.service-detail-content .section-tag::before { display: none; }

.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--dark);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.service-highlights {
  margin: 20px 0 28px;
}

.service-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text);
}

/* === ABOUT PAGE === */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--green);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  gap: 16px;
}

.faq-question:hover { background: var(--green-pale); color: var(--green); }

.faq-question.active {
  background: var(--green);
  color: var(--white);
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}

.faq-answer.open { display: block; }

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === MOBILE — Services horizontal scroll only === */
@media (max-width: 768px) {
  .packages-section .package-card {
    scroll-snap-align: unset;
  }

  .services-overview .service-card {
    scroll-snap-align: unset;
  }
}

/* === RESPONSIVE === */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-detail-card { gap: 36px; }
  .service-detail-img { aspect-ratio: 3 / 4; max-width: 340px; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; justify-content: center; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-snippet-inner { gap: 40px; }
  .service-detail-card { gap: 36px; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .package-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .package-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .section { padding: 56px 0; }

  /* ---- TOPBAR: mobile — hotline left, social icons right, one line ---- */
  .topbar { padding: 8px 0; font-size: 11px; }
  .topbar-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  /* Hide email item on mobile to give hotline + social enough room */
  .topbar-item:nth-child(2) { display: none; }
  /* Hotline item: left-aligned, shrinks/truncates before wrapping */
  .topbar-item:nth-child(1) {
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
  }
  .topbar-item:nth-child(1) svg { width: 14px; height: 14px; flex-shrink: 0; }
  /* Make the phone link visible */
  .topbar-item:nth-child(1) a {
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-decoration: none;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
  /* Social icons: pinned to the right, never shrink */
  .topbar-social {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 16px;
    gap: 4px;
    z-index: 100;
  }

  .nav.open { display: flex; }

  .nav-link { width: 100%; text-align: center; border-radius: 0; }

  .hamburger { display: flex; }

  .hero-content { padding: 0 24px; }
  .hero-content h1, .hero-content .hero-h2 { font-size: 36px; }
  .hero-content p { font-size: 15px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .about-snippet-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-box { right: 16px; bottom: -20px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.tall { grid-row: span 1; height: 220px; }
  .gallery-item.wide { grid-column: span 1; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .service-detail-card { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-card.reverse { direction: ltr; }
  .service-detail-img { aspect-ratio: 3 / 4; max-width: 420px; margin: 0 auto; }

  .about-hero-split { grid-template-columns: 1fr; gap: 36px; }
  .about-values { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; height: 220px; }
  .hero-content h1, .hero-content .hero-h2 { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

/* === PAGE LOAD ANIMATIONS === */
@keyframes slideDownFade {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

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

.topbar {
  animation: slideDownFade 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.header {
  animation: slideDownFade 0.55s 0.07s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

main, .hero-section, .hero, .shuk-hero,
.section, .about-snippet, .packages-section,
.services-section, .testimonials-section,
.gallery-section, .news-section, .contact-section,
.footer {
  animation: pageFadeIn 0.6s 0.15s ease both;
}

/* === SCROLL ANIMATION SYSTEM === */

/* Base: elements start hidden, transition to visible */
[data-anim] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
[data-anim].anim-visible {
  opacity: 1;
  transform: none !important;
}

/* Animation variants — initial transform states */
[data-anim="fade-up"]    { transform: translateY(40px); }
[data-anim="fade-down"]  { transform: translateY(-30px); }
[data-anim="fade-left"]  { transform: translateX(50px); }
[data-anim="fade-right"] { transform: translateX(-50px); }
[data-anim="fade-in"]    { transform: none; }
[data-anim="zoom-in"]    { transform: scale(0.9); }
[data-anim="zoom-up"]    { transform: scale(0.92) translateY(30px); }

/* Stagger delay for child items */
[data-anim-delay="100"] { transition-delay: 0.1s; }
[data-anim-delay="200"] { transition-delay: 0.2s; }
[data-anim-delay="300"] { transition-delay: 0.3s; }
[data-anim-delay="400"] { transition-delay: 0.4s; }
[data-anim-delay="500"] { transition-delay: 0.5s; }
[data-anim-delay="600"] { transition-delay: 0.6s; }

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-anim] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
