:root {
  --primary: #fba311;
  --primary-hover: #e59005;
  --text-dark: #0b1528;
  --text-gray: #505c6d;
  --white: #ffffff;
  --bg-white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* Navbar */
header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 0.2rem;
}

nav a:hover, nav a.active {
  color: var(--text-dark);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: color 0.3s;
}

.search-btn:hover {
  color: var(--text-dark);
}

.btn-primary {
  background-color: var(--primary);
  color: #1a1000;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 163, 17, 0.3);
}

/* Hero Section */
.hero {
  height: calc(100vh - 84px);
  min-height: 650px;
  /* Dark teal/blue gradient overlay */
  background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 45%, transparent 70%), url('muktinath-darshan/muktinath-01-temple-courtyard-sunrise.png') 30% 80%/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 6%;
  position: relative;
}

.hero-content {
  max-width: 700px;
  color: var(--white);
}

.tag {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border: 1px solid rgba(251, 163, 17, 0.5);
  color: #fba311;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  background-color: transparent;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  color: #e2e8f0;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
}

.btn-explore {
  background-color: var(--primary);
  color: #1a1000;
  padding: 1rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-explore i {
  transition: transform 0.3s ease;
}

.btn-explore:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(251, 163, 17, 0.25);
}

.btn-explore:hover i {
  transform: translateX(5px);
}

.btn-outline {
  /* Dark glassmorphism */
  background-color: rgba(15, 23, 42, 0.4);
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.btn-outline:hover {
  background-color: rgba(15, 23, 42, 0.6);
}



.footer-contact a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--primary);
}

/* Responsive constraints for larger screens */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  .btn-explore, .btn-outline {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
  .chat-fab {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Story Section */
.story {
  display: flex;
  background-color: #f9f8f4;
  min-height: 500px;
}

.story-image {
  flex: 0 0 50%;
  width: 50%;
  padding: 5rem 0 5rem 3%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-image:hover img {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.story-content {
  flex: 0 0 50%;
  width: 50%;
  background-color: #f9f8f4;
  padding: 5rem 3% 5rem 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.story-tag {
  font-family: 'Inter', sans-serif;
  color: #b89868;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #111111;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.story-divider {
  width: 60px;
  height: 2px;
  background-color: #b89868;
  margin: 1.5rem 0 2.5rem 0;
}

.story-content p {
  font-family: 'Inter', sans-serif;
  color: #555555;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.story-content .highlight {
  color: #b89868;
  font-weight: 500;
}

.story-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #b89868;
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 550px;
}

@media (max-width: 900px) {
  .story {
    flex-direction: column;
  }
  .story-image {
    flex: none;
    width: 100%;
    padding: 3rem 6% 0 6%;
  }
  .story-image img {
    height: 300px;
  }
  .story-content {
    width: 100%;
    padding: 4rem 6%;
  }
}

/* Featured Trek Section */
.featured-trek {
  display: flex;
  justify-content: space-between;
  padding: 6rem 2%;
  background-color: #ffffff;
  max-width: 1850px;
  width: 98%;
  margin: 0 auto;
  gap: 5rem;
}

.trek-left {
  flex: 0 0 50%;
  width: 50%;
}

.trek-tag {
  font-family: 'Inter', sans-serif;
  color: #b89868;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.trek-left h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d40;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.trek-left p {
  font-family: 'Lora', serif;
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.trek-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trek-image:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.trek-right {
  flex: 0 0 44%;
  width: 44%;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
}

.marker-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9a826;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(249, 168, 38, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover .marker-circle {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(249, 168, 38, 0.6);
  background-color: var(--primary);
}

.marker-line {
  width: 0;
  flex-grow: 1;
  border-left: 2px dashed #bbbbbb;
  margin-top: 10px;
  margin-bottom: 10px;
}

.timeline-content {
  padding-bottom: 3rem;
}

.timeline-content h3 {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d40;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content h3 {
  transform: translateX(8px);
  color: var(--primary-hover);
}

.timeline-tag {
  font-family: 'Inter', sans-serif;
  color: #f9a826;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.timeline-content p {
  font-family: 'Lora', serif;
  color: #666666;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .featured-trek {
    flex-direction: column;
    padding: 5rem 4%;
    gap: 4rem;
  }
  .trek-left, .trek-right {
    width: 100%;
    flex: 0 0 100%;
  }
  .trek-image {
    height: 300px !important;
    object-fit: cover !important;
  }
}

/* Expeditions Section */
.expeditions {
  background-color: #f4f6fc;
  padding: 6rem 2%;
}

.expeditions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.expeditions-header h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d40;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.expeditions-header p {
  font-family: 'Lora', serif;
  color: #666666;
  font-size: 1.1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

/* Immersive Cards */
.immersive-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.immersive-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.immersive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.immersive-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.immersive-card:hover .immersive-bg img {
  transform: scale(1.05);
}

.immersive-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  z-index: 2;
}

.immersive-content {
  position: relative;
  z-index: 3;
  padding: 2rem;
  color: #ffffff;
}

.immersive-tag {
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.immersive-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.immersive-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.immersive-duration {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.immersive-price-box {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.price-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: #94a3b8;
  margin-bottom: 0.2rem;
}

.price-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Reviews Section */
.reviews-section {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #fdfcf9 0%, #f3efe6 100%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-header .tag {
  display: inline-block;
  background-color: rgba(251, 163, 17, 0.15);
  color: #d97706;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.reviews-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  color: #0b1d40;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
}

.rating-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.google-rating .stars, .review-stars {
  color: #fba311;
  font-size: 1.1rem;
}

.rating-count {
  color: #64748b;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.review-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

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

.reviewer-avatar {
  width: 45px;
  height: 45px;
  background-color: #f43f5e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.review-date {
  font-size: 0.85rem;
  color: #94a3b8;
}

.google-icon {
  color: #4285f4;
  font-size: 1.5rem;
}

.review-stars {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.review-text {
  font-family: 'Inter', sans-serif;
  color: #475569;
  line-height: 1.6;
  font-size: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 0;
  background-color: #ffffff;
}

.contact-grid {
  display: flex;
  min-height: 750px;
}

.contact-image-side {
  flex: 1;
  background: url('upper-mustang/upper-mustang-08-blue-hour-settlement.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 10%;
}

.contact-image-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(11, 21, 40, 0.92) 0%, rgba(11, 21, 40, 0.75) 100%);
}

.contact-image-overlay {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 500px;
  width: 100%;
}

.contact-image-overlay h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.contact-image-overlay p {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

.contact-methods-dark {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.method-dark {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.icon-box-dark {
  width: 55px;
  height: 55px;
  background-color: rgba(251, 163, 17, 0.15);
  border: 1px solid rgba(251, 163, 17, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.method-dark:hover .icon-box-dark {
  background-color: var(--primary);
  color: #1a1000;
}

.method-details-dark h4 {
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.method-details-dark a, .method-details-dark p {
  font-family: 'Inter', sans-serif;
  color: #94a3b8;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.2rem;
}

.method-details-dark a:hover {
  color: var(--primary);
}

.contact-form-side {
  flex: 1;
  background-color: #ffffff;
  padding: 6rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.clean-form-wrapper {
  width: 100%;
  max-width: 550px;
}

.contact-form-side h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  color: #0b1528;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  align-self: flex-start;
}

.clean-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #0f172a;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(251, 163, 17, 0.15);
}

.btn-submit {
  background-color: var(--primary);
  color: #1a1000;
  padding: 1.2rem;
  border-radius: 10px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 163, 17, 0.3);
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 1.8rem;
  }
  .contact-form-block {
    padding: 2rem;
  }
}

/* CTA Section */
.cta-section {
  background-color: #1c2b4b;
  padding: 6rem 4%;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-family: 'Lora', serif;
  color: #e2e8f0;
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-cta {
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-cta-primary {
  background-color: var(--primary);
  color: #1a1000;
}

.btn-cta-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 163, 17, 0.3);
}

.btn-cta-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Community Section */
.community {
  background: linear-gradient(135deg, #fffdf8 0%, #fff4e5 100%);
  padding: 6rem 4%;
  text-align: center;
}

.community-content h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d40;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.community-content p {
  font-family: 'Lora', serif;
  color: #666666;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.community-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-social i {
  font-size: 1.3rem;
}

.btn-facebook {
  background-color: #1877F2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
}

.btn-instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

/* Photo Gallery Section */
.photo-gallery-section {
  padding: 6rem 5%;
  background-color: #ffffff;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  aspect-ratio: 1 / 1;
}

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

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

/* Transportation Section */
.transportation-section {
  padding: 6rem 5%;
  background-color: #0b1528;
  color: #ffffff;
  text-align: center;
}

.transportation-section h2 {
  color: #ffffff;
}

.transportation-section p {
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.transportation-video {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.transportation-video video {
  width: 100%;
  display: block;
}

/* Video Gallery Section */
.video-gallery-section {
  padding: 6rem 5%;
  background-color: #f4f6fc;
}

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

.video-gallery-header .tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  color: #f9a826;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.video-gallery-header h2 {
  font-family: 'Montserrat', sans-serif;
  color: #0b1d40;
  font-size: 2.5rem;
  font-weight: 700;
}

.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.video-wrapper {
  width: 100%;
  background: #0b1528;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrapper video {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #0b1d40;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-info p {
  font-family: 'Lora', serif;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  background-color: #0b1528;
  color: #ffffff;
  padding: 6rem 5% 0;
  font-family: 'Inter', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  max-width: 1700px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.footer-brand p {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 400px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.1);
}

.footer-links h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #a0aec0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 1rem;
}

.contact-info a, .contact-info .location-text {
  color: #a0aec0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-info i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  color: #718096;
  font-size: 0.85rem;
}

/* WhatsApp Floating Widget */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: translateY(-5px);
  box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }
  .footer-brand, .footer-contact {
    grid-column: span 2;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
  }
}

@media (max-width: 1024px) {
  .contact-grid {
    flex-direction: column;
  }
  .contact-image-side {
    padding: 3rem 2rem;
  }
  .contact-form-side {
    padding: 4rem 2rem;
  }
}

/* Muktinath Page Hero */
.muktinath-hero {
  padding: 40px 20px 40px;
  background-color: #f6f7fb;
}

.muktinath-hero-grid {
  display: flex;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-img-wrapper {
  flex: 1;
  height: 550px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(11, 21, 40, 0.12);
}

.hero-img-wrapper:first-child {
  flex: 1.25;
}

.hero-img-wrapper:nth-child(2) {
  flex: 0.85;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .muktinath-hero {
    padding: 20px 10px 20px;
  }
  .muktinath-hero-grid {
    flex-direction: column;
  }
  .hero-img-wrapper,
  .hero-img-wrapper:first-child,
  .hero-img-wrapper:nth-child(2) {
    flex: none;
    height: 320px;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 5%;
  background-color: #f4f7f9;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 3rem;
  gap: 2rem;
}

.gallery-title {
  flex: 1;
}

.gallery-tag {
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.gallery-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b2b54;
  margin: 0;
}

.gallery-desc {
  flex: 1;
}

.gallery-desc p {
  color: #555;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-img-wrapper {
  border-radius: 8px;
  overflow: hidden;
  height: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-img-wrapper:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-img-wrapper:nth-child(6) {
  grid-column: span 2;
}

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

.gallery-img-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-img-wrapper:first-child,
  .gallery-img-wrapper:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-img-wrapper:first-child,
  .gallery-img-wrapper:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Tour Details Section */
.tour-details-section {
  padding: 5rem 5%;
  background-color: #fdfaf6;
}

.tour-details-container {
  display: flex;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tour-description {
  flex: 1.8;
}

.desc-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.desc-icon {
  width: 60px;
  height: 60px;
  background-color: #faeed9;
  color: #d4a373;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 2px solid #f2e1c3;
}

.desc-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3e3328;
  margin: 0 0 0.5rem 0;
}

.heading-line {
  width: 50px;
  height: 3px;
  background-color: #d4a373;
}

.desc-content p {
  color: #4a4a4a;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tour-booking-sidebar {
  flex: 1;
  position: relative;
}

.booking-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: sticky;
  top: 100px;
}

.booking-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  color: #0b2b54;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.booking-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.booking-form .form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #374151;
  transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  border-color: #f59e0b;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-group.half {
  flex: 1;
}

.btn-book-now {
  width: 100%;
  padding: 1rem;
  background-color: #f59e0b;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.btn-book-now:hover {
  background-color: #d97706;
}

.no-payment-note {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .tour-details-container {
    flex-direction: column;
  }
  .tour-booking-sidebar {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .booking-card {
    position: static;
  }
}

/* Itinerary Section */
.itinerary-section {
  padding: 6rem 5%;
  background-color: #f4f7f9;
  position: relative;
}

.itinerary-container {
  max-width: 1000px;
  margin: 0 auto;
}

.itinerary-header {
  text-align: center;
  margin-bottom: 4rem;
}

.itinerary-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #1a2332;
  margin-bottom: 0.5rem;
}

.itinerary-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #d4a373;
}

.itinerary-divider span {
  width: 40px;
  height: 1px;
  background-color: #d4a373;
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.itinerary-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #f2e1c3;
  display: flex;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.day-badge {
  background-color: #cda45e;
  color: white;
  width: 80px;
  height: 100px;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  box-shadow: 0 5px 15px rgba(205, 164, 94, 0.4);
  position: relative;
  top: -1px;
}

.day-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

.day-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.itinerary-content {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.itinerary-info {
  flex: 1;
}

.itinerary-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a2332;
  margin-bottom: 1rem;
}

.heading-line-sm {
  width: 40px;
  height: 3px;
  background-color: #cda45e;
  margin-bottom: 1.5rem;
}

.itinerary-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itinerary-bullets li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.5;
}

.itinerary-bullets i {
  color: #cda45e;
  font-size: 1.1rem;
  margin-top: 3px;
}

.itinerary-image {
  width: 350px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.itinerary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #cda45e;
  background: white;
  color: #cda45e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  align-self: flex-start;
  flex-shrink: 0;
}

.toggle-btn:hover {
  background: #cda45e;
  color: white;
}

@media (max-width: 992px) {
  .itinerary-content {
    flex-direction: column;
  }
  .itinerary-image {
    width: 100%;
  }
  .day-badge {
    height: 80px;
  }
}

/* Highlights Section */
.highlights-section {
  padding: 6rem 5%;
  background-color: #faf9f6;
  position: relative;
  overflow: hidden;
}

.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.highlight-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.highlight-row.reverse {
  flex-direction: row-reverse;
}

.highlight-img {
  width: 55%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  position: relative;
}

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

.highlight-row:hover .highlight-img img {
  transform: scale(1.05);
}

.highlight-text-card {
  width: 45%;
  padding: 1rem 0;
}

.highlight-tag {
  display: inline-block;
  color: #cda45e;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  position: relative;
}

.highlight-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 40px;
  height: 2px;
  background-color: #cda45e;
}

.highlight-text-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: #1a2332;
  margin-bottom: 1.8rem;
  line-height: 1.2;
}

.highlight-text-card p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 992px) {
  .highlight-row, .highlight-row.reverse {
    flex-direction: column;
    gap: 3rem;
  }
  .highlight-img {
    width: 100%;
    height: 350px;
  }
  .highlight-text-card {
    width: 100%;
  }
}

/* Cost Details Section */
.cost-details-section {
  padding: 6rem 5%;
  background-color: #fdfaf6;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 L 20 80 L 40 90 L 60 70 L 80 85 L 100 60 L 100 100 Z" fill="rgba(205, 164, 94, 0.03)"/></svg>');
  background-size: cover;
  background-position: bottom;
}

.cost-details-container {
  max-width: 1100px;
  margin: 0 auto;
}

.cost-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cost-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #1a2332;
  margin-bottom: 0.5rem;
}

.cost-header p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cost-split-card {
  display: flex;
  gap: 3rem;
}

.cost-column {
  flex: 1;
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.cost-column:hover {
  transform: translateY(-8px);
}

.includes-col {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid #d1fae5;
  box-shadow: 0 20px 40px rgba(52, 138, 88, 0.08);
}

.excludes-col {
  background: linear-gradient(145deg, #ffffff 0%, #fff1f2 100%);
  border: 1px solid #ffe4e6;
  box-shadow: 0 20px 40px rgba(209, 86, 86, 0.08);
}

.cost-divider {
  display: none;
}

.cost-col-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed rgba(0,0,0,0.08);
}

.cost-col-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.includes-col h3 {
  color: #166534;
}

.excludes-col h3 {
  color: #9f1239;
}

.includes-icon {
  font-size: 2.2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}

.excludes-icon {
  font-size: 2.2rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
  flex-shrink: 0;
}

.cost-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cost-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.6);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: background 0.3s ease;
}

.includes-col .cost-list li:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(52, 138, 88, 0.05);
}

.excludes-col .cost-list li:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(209, 86, 86, 0.05);
}

.includes-list li i {
  color: #ffffff;
  background: #22c55e;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(34, 197, 94, 0.4);
}

.excludes-list li i {
  color: #ffffff;
  background: #ef4444;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(239, 68, 68, 0.4);
}

@media (max-width: 992px) {
  .cost-split-card {
    flex-direction: column;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .cost-column {
    padding: 2.5rem 1.5rem;
  }
}

/* Hero Title Stats */
.hero-title-header {
  max-width: 1400px;
  margin: 3rem auto 0;
  text-align: center;
}

.hero-title-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  color: #1a2332;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-badge {
  background: white;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-size: 0.95rem;
  color: #4b5563;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-badge i {
  color: #cda45e;
}

.stat-badge.price-badge {
  background: #cda45e;
  color: white;
  font-weight: 700;
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(11, 21, 40, 0.95);
  align-items: center; 
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active { 
  display: flex; 
  opacity: 1;
}

.lightbox-img { 
  max-width: 90%; 
  max-height: 90%; 
  border-radius: 12px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.lightbox-close { 
  position: absolute; 
  top: 20px; 
  right: 40px; 
  color: white; 
  font-size: 40px; 
  cursor: pointer; 
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #cda45e;
}

.gallery-grid img { 
  cursor: pointer; 
}

/* Itinerary Accordion State */
.itinerary-main {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.itinerary-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.itinerary-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #1a2332;
  margin: 0;
}

.itinerary-body {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out, margin-top 0.4s ease-out;
  max-height: 1000px;
  opacity: 1;
  margin-top: 1.5rem;
}

.itinerary-card.collapsed .itinerary-body {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

@media (max-width: 992px) {
  .itinerary-body {
    flex-direction: column;
  }
}

/* Mobile Menu & Success Modal */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1.5rem 5%;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  #nav-menu.active {
    display: flex;
  }

  .nav-actions {
    gap: 0.8rem;
  }

  .nav-actions .btn-primary {
    display: none;
  }
}

/* ===== Search Overlay ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay .search-close-btn {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
}

.search-overlay .search-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

.search-overlay .search-container {
  width: 90%;
  max-width: 640px;
  text-align: center;
}

.search-overlay .search-container h2 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.search-overlay .search-input-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.search-overlay .search-input-wrapper input {
  width: 100%;
  padding: 1.1rem 1.5rem 1.1rem 3.2rem;
  border-radius: 60px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.search-overlay .search-input-wrapper input::placeholder {
  color: rgba(255,255,255,0.4);
}

.search-overlay .search-input-wrapper input:focus {
  border-color: var(--primary-color, #c8a45a);
  background: rgba(255,255,255,0.12);
}

.search-overlay .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
}

.search-results-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.search-results-list li {
  opacity: 0;
  transform: translateY(10px);
  animation: searchFadeIn 0.3s ease forwards;
}

.search-results-list li:nth-child(1) { animation-delay: 0.05s; }
.search-results-list li:nth-child(2) { animation-delay: 0.1s; }
.search-results-list li:nth-child(3) { animation-delay: 0.15s; }
.search-results-list li:nth-child(4) { animation-delay: 0.2s; }

@keyframes searchFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-results-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}

.search-results-list li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.search-results-list li a .result-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200, 164, 90, 0.2);
  color: var(--primary-color, #c8a45a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.search-results-list li a .result-info h4 {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 600;
}

.search-results-list li a .result-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.search-no-results {
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 1.5rem 0;
}

/* ===== Contact Form Success State ===== */
.form-success-message {
  text-align: center;
  padding: 2rem 1rem;
  animation: successFadeIn 0.5s ease;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success-message .success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2rem;
  color: white;
}

.form-success-message h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark, #1a1a2e);
  margin-bottom: 0.5rem;
}

.form-success-message p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.form-success-message .btn-reset {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 30px;
  border: 2px solid var(--primary-color, #c8a45a);
  background: transparent;
  color: var(--primary-color, #c8a45a);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.form-success-message .btn-reset:hover {
  background: var(--primary-color, #c8a45a);
  color: white;
}

/* ===== Super Mobile-Friendly Overrides ===== */
@media (max-width: 768px) {
  /* Global Resets */
  .hero-content h1, .hero-title-header h1 { font-size: 2.2rem; }
  .hero-title-header { margin-top: 1.5rem; }
  .hero { min-height: 500px; padding: 0 4%; }
  .hero-stats .stat-badge { padding: 0.5rem 1rem; font-size: 0.85rem; }
  
  /* Section Spacing */
  .story-content { padding: 3rem 6%; }
  .featured-trek { padding: 3rem 6%; gap: 2rem; }
  .expeditions { padding: 3rem 6%; }
  .gallery-section { padding: 3rem 6%; }
  .tour-details-section { padding: 3rem 6%; }
  .itinerary-section { padding: 3rem 6%; }
  .cost-details-section { padding: 3rem 6%; }
  .cta-section { padding: 3rem 6%; }
  .cta-buttons { flex-direction: column; width: 100%; gap: 1rem; }
  .btn-cta { width: 100%; display: flex; justify-content: center; box-sizing: border-box; }
  
  .community { padding: 3rem 6%; }
  .community-buttons { flex-direction: column; width: 100%; gap: 1rem; }
  .btn-social { width: 100%; display: flex; justify-content: center; box-sizing: border-box; }
  
  .reviews-section { padding: 3rem 6%; }
  
  /* Typography */
  h2 { font-size: 2rem !important; }
  .story-content h2 { font-size: 2rem !important; }
  .trek-left h2 { font-size: 2rem !important; }
  .desc-header h2 { font-size: 2rem !important; }
  .reviews-header h2 { font-size: 1.7rem !important; line-height: 1.3; }
  .expeditions-header h2 { font-size: 2rem !important; }
  .itinerary-header h2 { font-size: 2rem !important; }
  .contact-image-overlay h2 { font-size: 2rem !important; }
  
  p { font-size: 0.95rem; line-height: 1.6; }
  
  /* Immersive Card */
  .immersive-card { height: 400px; }
  
  /* Images */
  .trek-image { height: 300px; object-fit: cover; }
  
  /* Review Card */
  .review-card { padding: 1.5rem; }
  
  /* Booking Card */
  .booking-card { padding: 1.5rem 1.2rem; }
  
  /* Cost Column */
  .cost-column { padding: 1.5rem 1.2rem; }
  
  /* Itinerary Card */
  .itinerary-card { display: block; }
  .itinerary-main { padding: 1.2rem 1rem; display: block; }
  .day-badge { position: absolute; top: -1px; left: 0; margin-left: 10px; width: 60px; height: 80px; z-index: 2; }
  .day-number { font-size: 1.5rem; }
  .itinerary-card-header { padding-left: 70px; min-height: 70px; gap: 10px; }
  .itinerary-card-header h3 { font-size: 1.3rem; line-height: 1.4; margin: 0; }
  .toggle-btn { flex-shrink: 0; width: 35px; height: 35px; font-size: 1rem; margin: 0; }
  
  /* Google Rating */
  .google-rating { flex-direction: column; gap: 0.5rem; text-align: center; }
  .google-rating .stars { white-space: nowrap; }
  
  /* Highlight Row */
  .highlight-row { flex-direction: column !important; gap: 2rem; margin-bottom: 3rem; }
  .highlight-row.reverse { flex-direction: column !important; }
  .highlight-text-card { padding: 1.5rem; }
  .highlight-text-card h3 { font-size: 1.6rem; margin-bottom: 1rem; }
  .itinerary-info h3 { font-size: 1.4rem; }
  
  /* Footer */
  .site-footer { padding-top: 3rem; }
}

@media (max-width: 480px) {
  .hero-content h1, .hero-title-header h1 { font-size: 1.8rem; }
  .gallery-grid { grid-auto-rows: 200px; }
  .contact-image-side { padding: 3rem 5%; }
  .hero-img-wrapper { height: 250px; }
}
