/* ==========================================
   Mounty Explorers — Homepage Sections CSS
   Brand: Navy #0A1628 | Gold #FFB800 | White
   Font: Poppins
   ========================================== */

/* ── Section Shared Utilities ─────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #0A1628;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: #FFB800;
}

.section-subtitle {
  font-size: 17px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0A1628, #FFB800);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ── Stats Bar ────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #0A1628 0%, #0a3080 100%);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #FFB800;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Destinations Grid ────────────────────── */
.destinations-section {
  padding: 96px 0;
  background: #f8f9fc;
}

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

.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Individual destination gradients */
.dest-himachal { background: linear-gradient(160deg, #1e3a5f 0%, #2d6a4f 50%, #74c69d 100%); }
.dest-kashmir  { background: linear-gradient(160deg, #1a1a2e 0%, #16213e 40%, #5c9bd6 100%); }
.dest-kerala   { background: linear-gradient(160deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%); }
.dest-ladakh   { background: linear-gradient(160deg, #4a4e69 0%, #9a8c98 50%, #c9ada7 100%); }
.dest-rajasthan{ background: linear-gradient(160deg, #7f4f24 0%, #bc6c25 50%, #dda15e 100%); }
.dest-goa      { background: linear-gradient(160deg, #023e8a 0%, #0077b6 50%, #48cae4 100%); }
.dest-meghalaya{ background: linear-gradient(160deg, #1b4332 0%, #386641 50%, #6a994e 100%); }

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  transition: background 0.4s ease;
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(to top, rgba(11, 61, 145, 0.9) 0%, rgba(11, 61, 145, 0.3) 60%, transparent 100%);
}

.destination-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 64px;
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
  filter: blur(1px);
}

.destination-card:hover .destination-emoji {
  opacity: 0.5;
  transform: translate(-50%, -70%) scale(1.1);
  filter: blur(0);
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.destination-name {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.destination-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
  line-height: 1.5;
}

.destination-price {
  display: inline-block;
  background: rgba(255,184,0,0.15);
  color: #FFB800;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,184,0,0.4);
}

.destination-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: #FFB800;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.destination-explore-btn:hover {
  background: #b8952f;
  transform: translateX(4px);
}

/* Wide card (spans 2 cols) */
.destination-card.wide {
  grid-column: span 2;
}

/* ── Why Choose Us ───────────────────────── */
.why-choose-section {
  padding: 96px 0;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-card {
  background: #fff;
  border: 1.5px solid #e8ecf5;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0A1628, #FFB800);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}

.why-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(11, 61, 145, 0.12);
  transform: translateY(-6px);
}

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

.why-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #eef2ff 0%, #dde5ff 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  transition: background 0.35s ease, transform 0.35s ease;
}

.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, #0A1628, #1a5bbf);
  transform: scale(1.08) rotate(-3deg);
}

.why-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
}

/* ── Featured Packages ───────────────────── */
.packages-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf8f3 100%);
}

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

.package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(11, 61, 145, 0.15);
}

.package-img-area {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-himachal { background: linear-gradient(160deg, #1a3a5c 0%, #2d6a4f 100%); }
.pkg-kashmir  { background: linear-gradient(160deg, #0a1628 0%, #1565c0 100%); }
.pkg-kerala   { background: linear-gradient(160deg, #1b4332 0%, #2d6a4f 100%); }
.pkg-goa      { background: linear-gradient(160deg, #0a3d62 0%, #0097b2 100%); }

.package-img-emoji {
  font-size: 72px;
  opacity: 0.4;
  position: absolute;
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFB800;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.package-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

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

.package-name {
  font-size: 21px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 10px;
}

.package-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-highlights li {
  font-size: 13.5px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-highlights li::before {
  content: '✓';
  color: #FFB800;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.package-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  gap: 12px;
}

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

.price-from {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #0A1628;
  line-height: 1;
}

.price-per {
  font-size: 12px;
  color: #888;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #25D366, #128c4e);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.package-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ── How It Works ────────────────────────── */
.how-it-works-section {
  padding: 96px 0;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #FFB800 0, #FFB800 10px, transparent 10px, transparent 22px);
  z-index: 0;
}

.step-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-number-wrap {
  width: 96px;
  height: 96px;
  background: #fff;
  border: 2.5px solid #FFB800;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
  transition: all 0.35s ease;
}

.step-item:hover .step-number-wrap {
  background: linear-gradient(135deg, #0A1628, #1a5bbf);
  border-color: #0A1628;
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(11, 61, 145, 0.25);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: #FFB800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.35s ease;
}

.step-item:hover .step-num {
  color: rgba(255,255,255,0.7);
}

.step-icon {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.35s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.15);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* ── Destination Card — Photo Version ────── */
.customized-tag {
  display: inline-block;
  background: rgba(255, 184, 0, 0.9);
  color: #0A1628;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* ── Google Reviews Section ───────────────── */
.reviews-section {
  padding: 96px 0;
  background: #0A1628;
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 40px;
  font-size: 300px;
  color: rgba(255,255,255,0.03);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.reviews-section .section-title {
  color: #fff;
}

.reviews-section .section-divider {
  background: linear-gradient(90deg, #FFB800, #fff);
}

.google-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 10px 22px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.review-stars {
  font-size: 20px;
  color: #FFB800;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.read-more-link {
  color: #4285F4;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
}

.read-more-link:hover {
  text-decoration: underline;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 18px;
  margin-top: auto;
}

.reviewer-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0A1628, #1a5bbf);
  color: #FFB800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 4px;
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #666;
  font-weight: 500;
}

.reviews-view-all {
  text-align: center;
  margin-top: 44px;
}

.view-all-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #fff;
  color: #0A1628;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.view-all-reviews-btn:hover {
  background: #FFB800;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,184,0,0.4);
}

/* ── Footer Rating Badge ─────────────────── */
.footer-rating-badge {
  margin-top: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ── Final CTA Banner ────────────────────── */
.cta-banner-section {
  padding: 96px 0;
  background: #fff;
  text-align: center;
}

.cta-banner-inner {
  background: linear-gradient(135deg, #0A1628 0%, #1a5bbf 100%);
  border-radius: 28px;
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 16px;
  display: block;
}

.cta-banner-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-banner-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #25D366, #128c4e);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

.btn-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.btn-call-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFB800;
  color: #FFB800;
  transform: translateY(-2px);
}

/* ── Floating WhatsApp Button ────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.floating-wa-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128c4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transition: all 0.35s ease;
  position: relative;
}

.floating-wa-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: waPulse 2.5s ease-out infinite;
}

.floating-wa-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  animation: waPulse 2.5s ease-out infinite 0.5s;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.floating-whatsapp:hover .floating-wa-btn {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.65);
}

.floating-wa-label {
  background: #fff;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-whatsapp:hover .floating-wa-label {
  opacity: 1;
  transform: translateX(0);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 1100px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination-card.wide {
    grid-column: span 1;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .section-title { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
  
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid .package-card:last-child {
    grid-column: span 2;
  }

  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 18px; }

  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }

  .cta-banner-title { font-size: 34px; }
  .cta-banner-inner { padding: 56px 32px; }
}

@media (max-width: 768px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr 1fr; }

  .packages-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid .package-card:last-child {
    grid-column: span 1;
  }

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

  .cta-banner-title { font-size: 26px; }
  .cta-banner-subtitle { font-size: 15px; }
  .cta-banner-inner { padding: 48px 24px; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .btn-whatsapp-cta, .btn-call-cta { width: 100%; max-width: 340px; justify-content: center; }

  .floating-whatsapp { bottom: 24px; right: 20px; }
  .floating-wa-label { display: none; }
}

@media (max-width: 540px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .destination-card { height: 220px; }
  .destination-name { font-size: 15px; }
  .destination-tagline { font-size: 12px; display: none; }

  .why-choose-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 28px; }

  .section-title { font-size: 26px; }

  .destinations-section,
  .why-choose-section,
  .packages-section,
  .how-it-works-section,
  .reviews-section,
  .cta-banner-section {
    padding: 64px 0;
  }
}


/* ══════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL FADE-IN
   ══════════════════════════════════════════════════════════ */

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

/* ══════════════════════════════════════════════════════════
   FEATURED TRIPS SECTION
   ══════════════════════════════════════════════════════════ */

.featured-trips-section {
  padding: 96px 0;
  background: #f8f9fb;
}

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

/* Trip Card */
.trip-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,184,0,0.2);
}

/* Trip Card Image Area */
.trip-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.trip-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.trip-card:hover .trip-card-img img {
  transform: scale(1.05);
}

/* Trip Type Badge */
.trip-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 22, 40, 0.85);
  color: #FFB800;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,184,0,0.3);
}
.trip-type-badge.trek {
  background: rgba(34, 100, 50, 0.85);
  color: #7fff7f;
  border-color: rgba(127,255,127,0.3);
}
.trip-type-badge.bestseller {
  background: rgba(255, 80, 0, 0.85);
  color: #fff;
  border-color: rgba(255,140,0,0.3);
}

/* Trip Card Body */
.trip-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trip-name {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #0A1628;
  margin-bottom: 14px;
}
.trip-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.trip-highlights li {
  font-size: 13.5px;
  color: #444;
  padding: 4px 0;
  line-height: 1.5;
}

/* Trip Card Footer */
.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.trip-price {
  display: flex;
  flex-direction: column;
}
.trip-price .price-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.trip-price .price-amount {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: #0A1628;
  line-height: 1.1;
}

/* Trip WhatsApp Button */
.trip-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
}
.trip-wa-btn:hover {
  background: #128C7E;
  transform: scale(1.03);
}

/* ══════════════════════════════════════════════════════════
   STATS BAR — COUNT-UP ANIMATION SUPPORT
   ══════════════════════════════════════════════════════════ */
.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  color: #FFB800;
  line-height: 1;
}
.stat-static {
  font-size: 36px;
}

/* ══════════════════════════════════════════════════════════
   REVIEWS — SCROLL SNAP ON MOBILE
   ══════════════════════════════════════════════════════════ */
.reviews-scroll-container {
  width: 100%;
  overflow: visible;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Full review text — no truncation */
.review-text {
  font-size: 14px;
  color: #ccd;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   HERO SLIDESHOW — 4s interval (handled in JS)
   ══════════════════════════════════════════════════════════ */
/* Ensure crossfade transition */
.hero-slide {
  transition: opacity 1s ease !important;
}

/* ══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — FEATURED TRIPS & REVIEWS
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .trips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .featured-trips-section {
    padding: 64px 0;
  }
  .trip-card-img {
    height: 200px;
  }

  /* Reviews: horizontal scroll snap on mobile */
  .reviews-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }
  .reviews-grid {
    grid-template-columns: repeat(10, 85vw);
    gap: 16px;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: row;
    width: max-content;
  }
  .review-card {
    scroll-snap-align: start;
    min-width: 85vw;
    max-width: 85vw;
  }
}

@media (max-width: 480px) {
  .trips-grid {
    grid-template-columns: 1fr;
  }
  .trip-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .trip-wa-btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero CTAs stack on mobile */
  .hero-premium-cta {
    flex-direction: column !important;
  }
  .btn-primary-premium,
  .btn-secondary-premium {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Section titles responsive */
  .section-title {
    font-size: clamp(24px, 6vw, 36px);
  }
}

/* ══════════════════════════════════════════════════════════
   TOUCH-FRIENDLY BUTTONS — 44px minimum
   ══════════════════════════════════════════════════════════ */
.trip-wa-btn,
.btn-primary-premium,
.btn-secondary-premium,
.btn-whatsapp-cta,
.btn-call-cta,
.destination-explore-btn,
.package-cta,
.whatsapp-btn,
.cta-btn {
  min-height: 44px;
}

