/* ==========================================================================
   Kashmir Tours and Travels — Design System
   Snow-tone premium: glacier blue, frost, saffron accent
   ========================================================================== */

:root {
  /* Palette */
  --glacier: #0E3A5F;   /* deep lake blue — primary */
  --glacier-dark: #0A2A45;
  --frost: #5B8FB0;     /* mid sky */
  --frost-light: #E8F1F7;
  --snow: #F4F8FB;      /* off-white background */
  --snow-warm: #FBFCFD;
  --saffron: #E8A33D;   /* the one warm accent */
  --saffron-dark: #C8851F;
  --pine: #1B4D3E;      /* deep evergreen */
  --ink: #0A1A28;       /* text */
  --ink-soft: #41566A;  /* muted text */
  --line: #DCE7EF;      /* borders */
  --white: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(14, 58, 95, 0.08);
  --shadow-lg: 0 12px 40px rgba(14, 58, 95, 0.14);
  --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--snow);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--glacier); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

a { color: var(--glacier); text-decoration: none; transition: color .2s; }
a:hover { color: var(--saffron-dark); }

img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 600; font-size: .98rem;
  cursor: pointer; border: none; transition: all .2s; text-align: center;
}
.btn-primary { background: var(--saffron); color: var(--glacier-dark); }
.btn-primary:hover { background: var(--saffron-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1.5px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--glacier); }
.btn-glacier { background: var(--glacier); color: var(--white); }
.btn-glacier:hover { background: var(--glacier-dark); color: var(--white); transform: translateY(-2px); }

/* Chinar-leaf saffron divider motif */
.divider { display: flex; align-items: center; justify-content: center; gap: .75rem; margin: 1rem 0; }
.divider::before, .divider::after { content: ''; height: 1px; width: 48px; background: var(--saffron); opacity: .5; }
.divider span { color: var(--saffron); font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--saffron-dark);
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--glacier); }
.logo-mark { width: 38px; height: 38px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; }
.nav-links a:hover { color: var(--glacier); }
.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone { font-weight: 600; color: var(--glacier); white-space: nowrap; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--glacier); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(10,26,40,.78) 0%, rgba(14,58,95,.55) 45%, rgba(14,58,95,.2) 100%);
}
.hero-content { max-width: 640px; padding: 3rem 0; }
.hero .eyebrow { color: var(--saffron); }
.hero h1 { color: var(--white); margin: 1rem 0; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,.92); margin-bottom: 2rem; max-width: 540px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-trust div { font-size: .92rem; color: rgba(255,255,255,.9); }
.hero-trust strong { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--saffron); }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-head p { color: var(--ink-soft); margin-top: .75rem; }

/* ===== Package cards ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.75rem; }
.pkg-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 1rem; left: 1rem; background: var(--saffron);
  color: var(--glacier-dark); font-weight: 700; font-size: .8rem;
  padding: .35rem .8rem; border-radius: 6px;
}
.pkg-duration {
  position: absolute; bottom: 1rem; right: 1rem; background: rgba(10,26,40,.82);
  color: var(--white); font-size: .82rem; font-weight: 600;
  padding: .35rem .8rem; border-radius: 6px; backdrop-filter: blur(4px);
}
.pkg-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pkg-route { font-size: .85rem; color: var(--frost); font-weight: 600; margin-bottom: .4rem; }
.pkg-title { font-size: 1.25rem; margin-bottom: .6rem; }
.pkg-features { display: flex; gap: 1rem; font-size: .82rem; color: var(--ink-soft); margin-bottom: 1rem; flex-wrap: wrap; }
.pkg-features span { display: flex; align-items: center; gap: .3rem; }
.pkg-price { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; align-items: end; justify-content: space-between; }
.pkg-price .from { font-size: .78rem; color: var(--ink-soft); }
.pkg-price .amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--glacier); }
.pkg-price .per { font-size: .75rem; color: var(--ink-soft); }

/* ===== Tier table ===== */
.tier-table { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.tier { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; text-align: center; transition: all .25s; }
.tier:hover { border-color: var(--saffron); box-shadow: var(--shadow); }
.tier.featured { border: 2px solid var(--saffron); position: relative; }
.tier.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--saffron); color: var(--glacier-dark); font-size: .72rem; font-weight: 700; padding: .25rem .9rem; border-radius: 20px; }
.tier-name { font-family: var(--font-display); font-size: 1.4rem; color: var(--glacier); }
.tier-price { font-size: 2rem; font-weight: 700; color: var(--glacier); margin: .5rem 0; }
.tier-price span { font-size: .85rem; font-weight: 400; color: var(--ink-soft); }
.tier ul { list-style: none; text-align: left; margin: 1.25rem 0; }
.tier li { padding: .45rem 0; font-size: .9rem; border-bottom: 1px solid var(--snow); display: flex; gap: .5rem; }
.tier li::before { content: '✓'; color: var(--pine); font-weight: 700; }

/* ===== Why us / features ===== */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.75rem; }
.feature { text-align: center; padding: 1.5rem; }
.feature-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: var(--frost-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); }

/* ===== Destinations strip ===== */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.dest-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,40,.85), transparent 60%); }
.dest-label { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 2; color: var(--white); }
.dest-label h3 { color: var(--white); font-size: 1.3rem; }
.dest-label span { font-size: .82rem; opacity: .9; }

/* ===== Bands ===== */
.band-glacier { background: var(--glacier); color: var(--white); }
.band-glacier h2 { color: var(--white); }
.band-frost { background: var(--frost-light); }

/* ===== Inquiry CTA band ===== */
.cta-band { text-align: center; padding: 4.5rem 0; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 2rem; }

/* ===== Footer ===== */
.site-footer { background: var(--glacier-dark); color: rgba(255,255,255,.8); padding: 3.5rem 0 1.5rem; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .95rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: .6rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--saffron); }
.footer-brand p { margin-top: 1rem; max-width: 320px; line-height: 1.7; }
.footer-contact div { margin-bottom: .7rem; display: flex; gap: .6rem; align-items: start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ===== Floating WhatsApp ===== */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tier-table { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--white); padding: 1rem 1.5rem; gap: 1rem; align-items: start;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-phone { display: none; }
  .hero { min-height: 78vh; }
  .hero-trust { gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}

/* ===== Package detail page ===== */
.itinerary { margin-top: 1rem; }
.day { display: flex; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.day:last-child { border-bottom: none; }
.day-num {
  flex: none; width: 70px; height: 70px; border-radius: 12px;
  background: var(--frost-light); color: var(--glacier);
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.day-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.day-body p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.list-inc, .list-exc { list-style: none; margin-top: 1rem; }
.list-inc li, .list-exc li { padding: .5rem 0 .5rem 1.8rem; position: relative; font-size: .95rem; color: var(--ink-soft); border-bottom: 1px solid var(--snow); }
.list-inc li::before { content: '✓'; position: absolute; left: 0; color: var(--pine); font-weight: 700; }
.list-exc li::before { content: '✕'; position: absolute; left: 0; color: #C0524B; font-weight: 700; }

.faq { margin-top: 1rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: .75rem; background: var(--white); overflow: hidden; }
.faq summary { padding: 1rem 1.25rem; font-weight: 600; cursor: pointer; color: var(--glacier); list-style: none; position: relative; }
.faq summary::after { content: '+'; position: absolute; right: 1.25rem; font-size: 1.3rem; color: var(--saffron); }
.faq details[open] summary::after { content: '−'; }
.faq details p { padding: 0 1.25rem 1.1rem; color: var(--ink-soft); font-size: .95rem; margin: 0; }

@media (max-width: 768px) {
  .inc-exc { grid-template-columns: 1fr; gap: 2rem; }
  .day-num { width: 56px; height: 56px; font-size: .82rem; }
}

/* ===== Overflow safeguards — keep everything inside the screen ===== */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }
* { word-wrap: break-word; overflow-wrap: break-word; }

/* quick-facts bar: wrap cleanly on phones instead of spilling */
@media (max-width: 600px) {
  section[style*="--glacier"] .container { gap: 1rem !important; row-gap: .75rem !important; }
  .hero-trust { gap: 1rem; }
  .hero-trust strong { font-size: 1.5rem; }
  .pkg-features { gap: .6rem; }
  .pkg-features span { font-size: .78rem; }
  .tier-price { font-size: 1.7rem; }
  h1 { font-size: 1.9rem; }
  .day { gap: .9rem; }
}

/* tier buttons & cards never push past their box */
.tier .btn, .pkg-price .btn { white-space: nowrap; }
.pkg-route { word-break: break-word; }
.container { width: 100%; }

/* ===== Contact / enquiry form ===== */
.enquiry-form { margin-top: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--glacier); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem;
  background: var(--white); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 3px rgba(232,163,61,.15); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-cards { display: flex; flex-direction: column; gap: .9rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: all .2s; color: var(--ink); }
.contact-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-2px); }
.cc-icon { font-size: 1.6rem; flex: none; }
.contact-card strong { color: var(--glacier); }

@media (max-width: 768px) {
  .contact-cards { margin-top: 1.5rem; }
  section .container[style*="grid-template-columns:1.3fr"] { grid-template-columns: 1fr !important; }
  .dest-block { grid-template-columns: 1fr !important; }
  .dest-block-img { order: 0 !important; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
/* ===== Footer social icons ===== */
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); transition: all .2s;
}
.footer-social a:hover { background: var(--saffron); color: var(--glacier-dark); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom a:hover { text-decoration: underline; }