/* ==========================================================================
   Paragliding in Manali — Design System
   ========================================================================== */

:root {
  --sky-50:  #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-900: #0c4a6e;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow-md: 0 4px 12px rgba(15,23,42,.08);
  --shadow-lg: 0 10px 30px rgba(15,23,42,.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-w: 1200px;
  --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--sky-600); text-decoration: none; }
a:hover { color: var(--sky-700); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--slate-900); line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: .25rem; }

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

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem;
}
.site-header .logo { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.site-header .logo img {
  height: 64px; width: auto; display: block;
  /* logo file has heavy transparent padding — negative margin trims it visually */
  margin: -8px 0;
}
/* Hide the text label — the logo image already contains the site name */
.site-header .logo-text { display: none; }
@media (max-width: 480px) {
  .site-header .logo img { height: 52px; margin: -6px 0; }
}

.main-nav { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a { color: var(--slate-700); font-weight: 500; font-size: .95rem; }
.main-nav a:hover { color: var(--sky-600); }
.main-nav .call-btn {
  background: var(--sky-600); color: var(--white); padding: .5rem 1rem;
  border-radius: var(--radius-sm); font-weight: 600;
}
.main-nav .call-btn:hover { background: var(--sky-700); color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--slate-900); margin: 5px 0; transition: .2s; }

@media (max-width: 768px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1rem; gap: .75rem; align-items: stretch;
    border-bottom: 1px solid var(--slate-200);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .site-header .logo-text { font-size: .9rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--sky-900);
  color: var(--white);
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,74,110,.55) 0%, rgba(12,74,110,.75) 100%);
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem; align-items: center;
  padding: 3rem 1rem;
  width: 100%;
}
.hero__copy h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__copy .tagline {
  font-size: 1.15rem; opacity: .95; margin-bottom: 1.5rem;
}
.hero__price {
  display: inline-flex; align-items: baseline; gap: .5rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(10px);
  padding: .75rem 1.25rem; border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.hero__price .old { text-decoration: line-through; opacity: .7; font-size: 1rem; }
.hero__price .new { font-size: 1.75rem; font-weight: 700; color: var(--white); }
.hero__price .off { background: var(--orange-500); color: var(--white); padding: .15rem .5rem; border-radius: var(--radius-sm); font-size: .8rem; font-weight: 600; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; padding: 2rem 1rem; gap: 1.5rem; }
}

/* ==========================================================================
   Lead Form Card
   ========================================================================== */
.lead-card {
  background: var(--white); color: var(--slate-900);
  padding: 1.75rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lead-card h2 {
  font-size: 1.35rem; margin-bottom: .35rem; color: var(--slate-900);
}
.lead-card .subtitle {
  font-size: .9rem; color: var(--slate-600); margin-bottom: 1.25rem;
}
.lead-form { display: flex; flex-direction: column; gap: .85rem; }
.lead-form label {
  font-size: .85rem; font-weight: 600; color: var(--slate-700);
  display: block; margin-bottom: .25rem;
}
.lead-form input {
  width: 100%; padding: .8rem .95rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.lead-form input:focus {
  outline: none; border-color: var(--sky-500);
  box-shadow: 0 0 0 3px rgba(14,165,233,.15);
}
.lead-form .submit-btn {
  width: 100%; padding: .95rem;
  background: var(--orange-500); color: var(--white);
  border: 0; border-radius: var(--radius-sm);
  font-size: 1.05rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background .15s, transform .1s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.lead-form .submit-btn:hover { background: var(--orange-600); }
.lead-form .submit-btn:active { transform: scale(.98); }
.lead-form .submit-btn:disabled { opacity: .7; cursor: not-allowed; }
.lead-form .form-note {
  font-size: .78rem; color: var(--slate-600); text-align: center; margin-top: .25rem;
}
.lead-form .form-msg { font-size: .9rem; padding: .75rem; border-radius: var(--radius-sm); display: none; }
.lead-form .form-msg.error { display: block; background: #fef2f2; color: #b91c1c; }
.lead-form .form-msg.success { display: block; background: #f0fdf4; color: #15803d; }

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: 3.5rem 0; }
@media (max-width: 768px) { section { padding: 2.5rem 0; } }

.section-title { text-align: center; margin-bottom: 2rem; }
.section-title h2 { margin-bottom: .5rem; }
.section-title p { color: var(--slate-600); max-width: 640px; margin: 0 auto; }

.section-alt { background: var(--slate-50); }

/* Quick facts */
.quick-facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.fact {
  background: var(--white); border: 1px solid var(--slate-200);
  padding: 1.25rem; border-radius: var(--radius-md);
  text-align: center; box-shadow: var(--shadow-sm);
}
.fact .icon {
  width: 40px; height: 40px; margin: 0 auto .5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--sky-100); border-radius: 50%; font-size: 1.25rem;
}
.fact .label { font-size: .8rem; color: var(--slate-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; }
.fact .value { font-size: .95rem; color: var(--slate-900); font-weight: 600; }

/* Package cards */
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.package-card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--slate-100); }
.package-card__img img { width: 100%; height: 100%; object-fit: cover; }
.package-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.package-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.package-card .location { font-size: .85rem; color: var(--slate-600); margin-bottom: .75rem; }
.package-card .price { margin: .5rem 0 1rem; }
.package-card .price .old { text-decoration: line-through; color: var(--slate-400); font-size: .9rem; margin-right: .35rem; }
.package-card .price .new { color: var(--orange-600); font-weight: 700; font-size: 1.35rem; }
.package-card .price .off { color: var(--orange-500); font-size: .85rem; margin-left: .35rem; }
.package-card .btn { margin-top: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .35rem;
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem; font-family: inherit;
  cursor: pointer; border: 0; transition: background .15s;
  text-align: center;
}
.btn--primary { background: var(--sky-600); color: var(--white); }
.btn--primary:hover { background: var(--sky-700); color: var(--white); }
.btn--accent { background: var(--orange-500); color: var(--white); }
.btn--accent:hover { background: var(--orange-600); color: var(--white); }
.btn--ghost { background: var(--white); color: var(--sky-700); border: 1.5px solid var(--sky-600); }
.btn--ghost:hover { background: var(--sky-50); }
.btn--full { width: 100%; }

/* Highlights / bullets */
.check-list { list-style: none; padding: 0; }
.check-list li {
  padding-left: 1.75rem; position: relative; margin-bottom: .75rem;
  color: var(--slate-700);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; background: var(--sky-100);
  color: var(--sky-700); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .8rem;
}

.x-list li::before { content: '×'; background: #fee2e2; color: #b91c1c; }

/* Two-column layout */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 1rem; color: var(--slate-900); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq {
  background: var(--white); border: 1px solid var(--slate-200);
  border-radius: var(--radius-md); margin-bottom: .75rem;
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq summary {
  padding: 1.15rem 1.25rem; cursor: pointer; font-weight: 600;
  color: var(--slate-900); list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: background .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; color: var(--sky-600); font-weight: 300; transition: transform .2s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--slate-50); }
.faq__body { padding: 0 1.25rem 1.25rem; color: var(--slate-700); }

/* Itinerary */
.itinerary { counter-reset: step; list-style: none; padding: 0; max-width: 800px; margin: 0 auto; }
.itinerary li {
  counter-increment: step; position: relative;
  padding: 1rem 1rem 1rem 3.5rem; margin-bottom: .75rem;
  background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
}
.itinerary li::before {
  content: counter(step);
  position: absolute; left: 1rem; top: 1rem;
  width: 32px; height: 32px; background: var(--sky-600); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading);
}

/* Why choose us */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.why-item {
  background: var(--white); padding: 1.5rem;
  border-radius: var(--radius-md); border: 1px solid var(--slate-200);
  text-align: center; box-shadow: var(--shadow-sm);
}
.why-item .icon {
  width: 48px; height: 48px; margin: 0 auto .75rem;
  background: var(--sky-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.why-item h3 { font-size: 1rem; margin-bottom: .35rem; }
.why-item p { font-size: .9rem; color: var(--slate-600); margin: 0; }

/* Overview / prose */
.prose { max-width: 800px; margin: 0 auto; }
.prose p { font-size: 1.05rem; margin-bottom: 1rem; }

/* Final CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-600), var(--sky-900));
  color: var(--white); text-align: center; padding: 3rem 1rem;
  border-radius: var(--radius-lg);
}
.cta-banner h2 { color: var(--white); margin-bottom: .5rem; }
.cta-banner p { opacity: .95; margin-bottom: 1.5rem; }

/* Footer */
.site-footer {
  background: var(--slate-900); color: var(--slate-200);
  padding: 3rem 0 1.5rem;
}
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: var(--slate-200); font-size: .9rem; }
.site-footer a:hover { color: var(--sky-500); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--slate-400); font-size: .9rem; }
.footer-brand img {
  height: 88px; width: auto; display: block; margin: -12px 0 .5rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: .35rem .5rem;
}
.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .85rem; color: var(--slate-400);
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white); padding: .75rem 1rem;
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 12px rgba(0,0,0,.08);
  gap: .5rem;
}
.sticky-cta a { flex: 1; }
@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 1rem; right: 1rem; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .15s;
}
.wa-float:hover { transform: scale(1.05); color: var(--white); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 768px) { .wa-float { bottom: 80px; } }

/* Page hero (smaller, for location subpages) */
.page-hero {
  background: var(--sky-900); color: var(--white);
  padding: 2.5rem 0 4rem;
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: .35;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 2rem; align-items: end;
}
.page-hero h1 { color: var(--white); }
.page-hero .location { font-size: 1rem; opacity: .9; margin-bottom: .75rem; }
@media (max-width: 900px) {
  .page-hero .container { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
