/* ============================================
   Kashmir Package — Serene & Immersive Design
   Color palette inspired by Kashmir:
   - Deep lake blue: #1a365d
   - Soft sky: #ebf4ff
   - Pine green: #276749
   - Warm gold: #d69e2e
   - Snow white: #ffffff
   ============================================ */

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

:root {
  --lake: #1a365d;
  --lake-light: #2b6cb0;
  --sky: #ebf4ff;
  --pine: #276749;
  --gold: #d69e2e;
  --snow: #ffffff;
  --mist: #f7fafc;
  --stone: #4a5568;
  --stone-light: #718096;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

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

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

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

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

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

.k-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;
}

.k-header.scrolled .k-logo { color: var(--lake); }

.k-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: contain;
}

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

.k-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;
}

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

.k-header.scrolled .k-nav-links a {
  color: var(--stone);
}

.k-header.scrolled .k-nav-links a:hover {
  background: var(--sky);
  color: var(--lake);
}

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

.k-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--snow);
  border-radius: 2px;
  transition: all 0.3s;
}

.k-header.scrolled .k-mobile-toggle span { background: var(--lake); }

.k-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.k-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.k-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.k-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/kashmir-hero-hd.jpg') center/cover no-repeat;
  transform: scale(1.05);
  will-change: transform;
}

.k-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 54, 93, 0.3) 0%,
    rgba(26, 54, 93, 0.5) 50%,
    rgba(26, 54, 93, 0.85) 100%
  );
}

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

.k-hero-pre {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.2s both;
}

.k-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -2px;
  animation: fadeUp 1s ease 0.4s both;
}

.k-hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.6s both;
}

.k-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.8s both;
}

.k-hero-meta 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.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.k-hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  animation: fadeUp 1s ease 1s both;
  transition: color 0.3s;
}

.k-hero-scroll:hover { color: var(--snow); }

.k-hero-scroll i {
  animation: bounce 2s infinite;
}

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

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

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

.k-section-header.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

.k-section-header.light h2 { color: var(--snow); }

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

.k-section-header.light p { color: rgba(255,255,255,0.75); }

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

.k-section-header.light .k-tag { color: rgba(255,255,255,0.6); }

/* ===== Journey / Features ===== */
.k-journey {
  padding: 7rem 0 5rem;
  background: var(--mist);
}

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

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

.k-feature.revealed {
  opacity: 1;
  transform: translateY(0);
}

.k-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(26, 54, 93, 0.1);
  border-color: transparent;
}

.k-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--sky), #bee3f8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--lake);
  transition: all 0.4s;
}

.k-feature:hover .k-feature-icon {
  background: linear-gradient(135deg, var(--lake), var(--lake-light));
  color: var(--snow);
  transform: scale(1.1) rotate(5deg);
}

.k-feature h3 {
  font-size: 1.1rem;
  color: var(--lake);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.k-feature p {
  font-size: 0.9rem;
  color: var(--stone-light);
  line-height: 1.6;
}

/* ===== Route Visual ===== */
.k-route {
  padding: 3rem 0;
  background: var(--lake);
  overflow: hidden;
}

.k-route-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.k-route-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.k-route-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 15px rgba(214, 158, 46, 0.4);
}

.k-route-stop span {
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.k-route-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

/* ===== Itinerary ===== */
.k-itinerary {
  padding: 7rem 0;
}

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

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

.k-day.revealed {
  opacity: 1;
  transform: translateX(0);
}

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

.k-day-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--lake), var(--lake-light));
  color: var(--snow);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 20px rgba(26, 54, 93, 0.2);
}

.k-day-content {
  flex: 1;
  background: var(--snow);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: all 0.3s;
}

.k-day-content:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: #bee3f8;
}

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

.k-day-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--lake);
  font-weight: 600;
}

.k-day-location {
  font-size: 0.8rem;
  color: var(--lake-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.k-day-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 1rem;
}

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

.k-day-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: var(--sky);
  color: var(--lake);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ===== Gallery ===== */
.k-gallery {
  padding: 7rem 0;
  background: var(--lake);
}

.k-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.k-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.k-gallery-item.revealed {
  opacity: 1;
  transform: scale(1);
}

.k-gallery-wide {
  grid-column: span 2;
}

.k-gallery-tall {
  grid-row: span 2;
}

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

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

.k-gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26, 54, 93, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.k-gallery-item:hover .k-gallery-caption {
  opacity: 1;
}

.k-gallery-caption h3 {
  color: var(--snow);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.k-gallery-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

/* ===== Map ===== */
.k-map-section {
  padding: 7rem 0;
  background: var(--mist);
}

.k-map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 500px;
}

#kashmir-map {
  width: 100%;
  height: 100%;
}

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

.k-pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--snow);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 54, 93, 0.12);
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease;
}

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

.k-pricing-left {
  padding: 3.5rem;
  background: linear-gradient(135deg, var(--lake), #2c5282);
  color: var(--snow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.k-pricing-left .k-tag {
  color: rgba(255,255,255,0.6);
}

.k-pricing-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.k-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.k-price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.8;
}

.k-price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.k-price-per {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-left: 0.5rem;
}

.k-pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.k-btn-primary,
.k-btn-secondary,
.k-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.k-btn-primary {
  background: var(--gold);
  color: var(--lake);
}

.k-btn-primary:hover {
  background: #ecc94b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 158, 46, 0.4);
}

.k-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--snow);
  border: 1px solid rgba(255,255,255,0.25);
}

.k-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

.k-btn-whatsapp {
  background: #25D366;
  color: var(--snow);
}

.k-btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

.k-pricing-right {
  padding: 3.5rem;
}

.k-pricing-right h4 {
  font-size: 1.1rem;
  color: var(--lake);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.k-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.k-inclusions li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: var(--stone);
  border-bottom: 1px solid #f0f0f0;
}

.k-inclusions li:last-child { border-bottom: none; }

.k-inclusions li i {
  color: var(--pine);
  font-size: 0.8rem;
  flex-shrink: 0;
}

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

.k-guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: var(--sky);
  color: var(--lake);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ===== Footer ===== */
.k-footer {
  background: linear-gradient(135deg, #0f172a, var(--lake));
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.k-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 0.8fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.k-footer h3 {
  color: var(--snow);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.k-footer h4 {
  color: var(--snow);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.k-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.k-footer p i {
  color: var(--lake-light);
  width: 18px;
  margin-right: 0.4rem;
}

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

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

.k-social {
  display: flex;
  gap: 0.75rem;
}

.k-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);
  transition: all 0.3s;
}

.k-social a:hover {
  background: var(--lake-light);
  transform: translateY(-3px);
}

.k-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}

.k-footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

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

@media (max-width: 768px) {
  .k-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);
  }

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

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

  .k-nav-links a:hover {
    background: var(--sky);
    color: var(--lake);
  }

  .k-mobile-toggle { display: flex; }

  .k-hero-title { letter-spacing: -1px; }

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

  .k-route-flow { gap: 0.25rem; }
  .k-route-line { width: 40px; }

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

  .k-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    padding: 0 1rem;
  }

  .k-gallery-wide { grid-column: span 1; }
  .k-gallery-tall { grid-row: span 1; }

  .k-map-wrapper { height: 350px; }

  .k-pricing-left,
  .k-pricing-right { padding: 2.5rem 2rem; }

  .k-price-amount { font-size: 2.8rem; }

  .k-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .k-hero-meta { flex-direction: column; align-items: center; }
  .k-hero-meta span { width: 100%; justify-content: center; }
  .k-pricing-actions { flex-direction: column; }
  .k-btn-primary, .k-btn-secondary, .k-btn-whatsapp { justify-content: center; }
}
