/* ============================================
   Manali Volvo Tour — Adventure Mountain Theme
   Palette:
   - Deep indigo: #1e2a4a
   - Mountain blue: #3b6cb0
   - Ice: #e8f1fb
   - Sunset orange: #e87b35
   - Snow: #ffffff
   - Mist: #f4f7fb
   ============================================ */

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

:root {
  --indigo: #1e2a4a;
  --blue: #3b6cb0;
  --blue-light: #5a8fd4;
  --ice: #e8f1fb;
  --orange: #e87b35;
  --snow: #ffffff;
  --mist: #f4f7fb;
  --stone: #4a5568;
  --stone-light: #718096;
  --text: #2d3748;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--snow);
  line-height: 1.7;
  overflow-x: hidden;
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Header ===== */
.mv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
}

.mv-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  padding: 0.6rem 2rem;
}

.mv-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mv-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--snow);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.mv-header.scrolled .mv-logo { color: var(--indigo); }

.mv-logo-img {
  width: 38px; height: 38px;
  border-radius: 6px;
  object-fit: contain;
}

.mv-nav-links {
  display: flex;
  gap: 0.5rem;
}

.mv-nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.mv-nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--snow);
}

.mv-header.scrolled .mv-nav-links a { color: var(--stone); }
.mv-header.scrolled .mv-nav-links a:hover { background: var(--ice); color: var(--indigo); }

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

.mv-menu-btn span {
  width: 24px; height: 2px;
  background: var(--snow);
  border-radius: 2px;
  transition: all 0.3s;
}

.mv-header.scrolled .mv-menu-btn span { background: var(--indigo); }
.mv-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mv-menu-btn.active span:nth-child(2) { opacity: 0; }
.mv-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== Hero ===== */
.mv-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mv-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/manali-volvo-tour-package.jpg') center/cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
}

.mv-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30,42,74,0.25) 0%,
    rgba(30,42,74,0.4) 40%,
    rgba(30,42,74,0.8) 80%,
    rgba(30,42,74,0.95) 100%
  );
}

.mv-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--snow);
  padding: 2rem;
  max-width: 900px;
}

.mv-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 1rem;
  animation: mvFadeUp 1s ease 0.2s both;
}

.mv-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 0.75rem;
  letter-spacing: -2px;
  animation: mvFadeUp 1s ease 0.4s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.mv-hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.85;
  margin: 0 0 2rem;
  animation: mvFadeUp 1s ease 0.6s both;
}

.mv-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
  animation: mvFadeUp 1s ease 0.8s both;
}

.mv-hero-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

.mv-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.85rem 2rem;
  background: var(--orange);
  color: var(--snow);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s;
  animation: mvFadeUp 1s ease 1s both;
  box-shadow: 0 6px 25px rgba(232,123,53,0.35);
}

.mv-hero-cta:hover {
  background: #f08a48;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(232,123,53,0.45);
}

.mv-hero-cta i { animation: mvBounce 2s infinite; }

.mv-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  animation: mvFadeUp 1s ease 1.2s both;
}

.mv-hero-scroll i { animation: mvBounce 2s infinite; }

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

@keyframes mvBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== Section Headers ===== */
.mv-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.mv-section-head.revealed { opacity: 1; transform: translateY(0); }

.mv-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--indigo);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mv-section-head.light h2 { color: var(--snow); }

.mv-section-head p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--stone-light);
  font-size: 1.05rem;
}

.mv-section-head.light p { color: rgba(255,255,255,0.7); }

.mv-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.mv-section-head.light .mv-tag { color: rgba(255,255,255,0.5); }

/* ===== Overview / Features ===== */
.mv-overview {
  padding: 7rem 0 5rem;
  background: var(--mist);
}

.mv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mv-feat {
  background: var(--snow);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.mv-feat.revealed { opacity: 1; transform: translateY(0); }

.mv-feat:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30,42,74,0.1);
  border-color: transparent;
}

.mv-feat-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--ice), #c3ddf7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--indigo);
  transition: all 0.4s;
}

.mv-feat:hover .mv-feat-icon {
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: var(--snow);
  transform: scale(1.1) rotate(5deg);
}

.mv-feat h3 {
  font-size: 1.05rem;
  color: var(--indigo);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.mv-feat p {
  font-size: 0.88rem;
  color: var(--stone-light);
  line-height: 1.6;
}

/* ===== Itinerary ===== */
.mv-itinerary {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--indigo), #2a3f6e);
}

.mv-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mv-day {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.mv-day.revealed { opacity: 1; transform: translateX(0); }
.mv-day:nth-child(even) { transform: translateX(20px); }
.mv-day:nth-child(even).revealed { transform: translateX(0); }

.mv-day-num {
  flex-shrink: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), #f09050);
  color: var(--snow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 20px rgba(232,123,53,0.3);
}

.mv-day-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: all 0.3s;
  color: var(--snow);
}

.mv-day-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mv-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mv-day-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.mv-day-loc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.mv-day-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.mv-day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mv-day-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

/* ===== Pricing ===== */
.mv-pricing {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--snow) 0%, var(--mist) 100%);
}

.mv-pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--snow);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(30,42,74,0.12);
  border: 1px solid rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

.mv-pricing-card.revealed { opacity: 1; transform: translateY(0); }

.mv-pricing-left {
  position: relative;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.mv-pricing-left-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo), #2a3f6e, var(--blue));
  z-index: 0;
}

.mv-pricing-left-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/manali-volvo-tour-package.jpg') center/cover no-repeat;
  opacity: 0.1;
}

.mv-pricing-left-content {
  position: relative;
  z-index: 1;
  color: var(--snow);
}

.mv-pricing-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--snow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.mv-pricing-left-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.mv-pricing-left-content > p {
  font-size: 0.92rem;
  opacity: 0.8;
  line-height: 1.6;
  margin: 0 0 2rem;
}

.mv-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 2.5rem;
}

.mv-price-rs { font-size: 1.6rem; font-weight: 700; opacity: 0.8; }
.mv-price-num { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 800; line-height: 1; }
.mv-price-per { font-size: 0.95rem; opacity: 0.65; margin-left: 0.4rem; }

.mv-pricing-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mv-btn-pay, .mv-btn-wa, .mv-btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: inherit;
}

.mv-btn-pay {
  background: var(--orange);
  color: var(--snow);
  box-shadow: 0 4px 15px rgba(232,123,53,0.35);
}

.mv-btn-pay:hover {
  background: #f08a48;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,123,53,0.45);
}

.mv-btn-wa { background: #25D366; color: var(--snow); }
.mv-btn-wa:hover { background: #1fb855; transform: translateY(-2px); }

.mv-btn-contact {
  background: rgba(255,255,255,0.12);
  color: var(--snow);
  border: 1px solid rgba(255,255,255,0.2);
}

.mv-btn-contact:hover { background: rgba(255,255,255,0.2); }

/* Right — inclusions */
.mv-pricing-right { padding: 3.5rem; }

.mv-pricing-right h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--indigo);
  margin: 0 0 1.5rem;
  font-weight: 700;
}

.mv-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.mv-inclusions li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}

.mv-inclusions li:last-child { border-bottom: none; }
.mv-inclusions li i { color: var(--blue); font-size: 0.85rem; flex-shrink: 0; }

.mv-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mv-guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--ice);
  color: var(--blue);
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 600;
}

.mv-guarantees span i { font-size: 0.7rem; }

/* ===== Footer ===== */
.mv-footer {
  background: linear-gradient(135deg, #0d1526, var(--indigo), #1a2d50);
  color: rgba(255,255,255,0.8);
}

.mv-footer-top {
  padding: 4.5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.mv-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  opacity: 0.75;
}

.mv-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.mv-footer-logo img {
  width: 42px; height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.mv-footer-logo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--snow);
  margin: 0;
  font-weight: 700;
}

.mv-footer-social {
  display: flex;
  gap: 0.6rem;
}

.mv-footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--snow);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.mv-footer-social a:hover {
  background: var(--blue);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.mv-footer-col h4 {
  color: var(--snow);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.mv-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.mv-footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  transition: all 0.3s;
}

.mv-footer-col a:hover { color: var(--snow); padding-left: 0.5rem; }

.mv-footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.mv-footer-contact p i {
  color: var(--orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 16px;
}

.mv-footer-contact a {
  display: inline;
  padding: 0;
  color: rgba(255,255,255,0.65);
}

.mv-footer-contact a:hover { color: var(--snow); padding-left: 0; }

.mv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.mv-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.mv-footer-bottom-links { display: flex; gap: 1.5rem; }

.mv-footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

.mv-footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===== Back to Top ===== */
.mv-back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--indigo);
  color: var(--snow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(30,42,74,0.3);
}

.mv-back-top:hover { background: var(--blue); transform: translateY(-3px); }
.mv-back-top.visible { opacity: 1; visibility: visible; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .mv-features { grid-template-columns: repeat(2, 1fr); }
  .mv-pricing-card { grid-template-columns: 1fr; }
  .mv-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .mv-nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--snow);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .mv-nav-links.active { right: 0; }

  .mv-nav-links a {
    color: var(--stone);
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .mv-nav-links a:hover { background: var(--ice); color: var(--indigo); }
  .mv-menu-btn { display: flex; }

  .mv-hero { min-height: 600px; }
  .mv-hero-title { letter-spacing: -1px; }
  .mv-hero-chips span { font-size: 0.75rem; padding: 0.4rem 0.8rem; }

  .mv-features { grid-template-columns: 1fr; }

  .mv-day { flex-direction: column; gap: 1rem; }

  .mv-pricing-left, .mv-pricing-right { padding: 2.5rem 2rem; }
  .mv-price-num { font-size: 3rem; }
  .mv-pricing-btns { flex-direction: column; }
  .mv-btn-pay, .mv-btn-wa, .mv-btn-contact { justify-content: center; }

  .mv-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mv-footer-bottom { flex-direction: column; text-align: center; }
  .mv-footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .mv-hero-chips { flex-direction: column; align-items: center; }
  .mv-hero-chips span { width: 100%; justify-content: center; }
  .mv-hero-cta { width: 100%; justify-content: center; }
}
