/* ==========================================================================
   Umbrella Trip — Adi Kailash & Om Parvat Flagship Landing Stylesheet
   Color Palette: Navy #1A2B5E | Blue #1565C8 | Green #2E9E3E | Gold #EAB308
   Font: Inter, sans-serif | STRICT MAX font-weight: 600
   ========================================================================== */

:root {
  --ak-primary: #1a2b5e;
  --ak-primary-dark: #121d42;
  --ak-accent-blue: #1565c8;
  --ak-accent-blue-light: #e8f1fd;
  --ak-accent-green: #2e9e3e;
  --ak-accent-green-light: #eef8ef;
  --ak-gold: #d97706;
  --ak-gold-light: #fef3c7;
  --ak-gold-border: #fcd34d;
  --ak-text-main: #1e293b;
  --ak-text-muted: #64748b;
  --ak-bg-light: #f8fafc;
  --ak-bg-card: #ffffff;
  --ak-border: #e2e8f0;
  --ak-border-subtle: #edf2f7;
  --ak-radius: 12px;
  --ak-radius-lg: 18px;
  --ak-shadow-sm: 0 2px 8px rgba(26, 43, 94, 0.05);
  --ak-shadow-md: 0 8px 24px rgba(26, 43, 94, 0.08);
  --ak-shadow-lg: 0 16px 36px rgba(26, 43, 94, 0.12);
  --ak-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base resets & typography safety */
.ak-page-wrapper {
  font-family: var(--ak-font);
  color: var(--ak-text-main);
  background-color: var(--ak-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.ak-page-wrapper b,
.ak-page-wrapper strong,
.ak-page-wrapper h1,
.ak-page-wrapper h2,
.ak-page-wrapper h3,
.ak-page-wrapper h4,
.ak-page-wrapper h5,
.ak-page-wrapper h6 {
  font-weight: 600 !important;
}

/* ── Hero Section ───────────────────────────────────────────────────────── */
.ak-hero-section {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.ak-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 29, 66, 0.92) 0%, rgba(26, 43, 94, 0.82) 50%, rgba(21, 101, 200, 0.65) 100%);
}

.ak-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.ak-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 243, 199, 0.18);
  border: 1px solid rgba(252, 211, 77, 0.4);
  color: #fef08a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.ak-hero-title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.ak-hero-title span {
  color: #facc15;
}

.ak-hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 640px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.ak-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.ak-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ak-accent-green);
  color: #ffffff;
  padding: 12px 26px;
  border-radius: var(--ak-radius);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(46, 158, 62, 0.35);
}

.ak-btn-primary:hover {
  background-color: #258332;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 158, 62, 0.45);
}

.ak-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: var(--ak-radius);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.ak-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.ak-hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.ak-trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1f5f9;
  font-size: 0.9rem;
}

.ak-trust-point i {
  color: #facc15;
  font-size: 1.1rem;
}

/* Hero Consultation Card */
.ak-hero-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--ak-radius-lg);
  padding: 28px;
  box-shadow: var(--ak-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--ak-text-main);
}

.ak-hero-card-head {
  border-bottom: 1px solid var(--ak-border);
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.ak-hero-card-badge {
  display: inline-block;
  background: var(--ak-gold-light);
  color: var(--ak-gold);
  border: 1px solid var(--ak-gold-border);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.ak-hero-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ak-primary);
  margin-bottom: 4px;
}

.ak-hero-card-desc {
  font-size: 0.85rem;
  color: var(--ak-text-muted);
  margin-bottom: 0;
}

.ak-form-group {
  margin-bottom: 14px;
}

.ak-form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 5px;
}

.ak-form-input,
.ak-form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--ak-border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--ak-text-main);
  transition: all 0.2s ease;
}

.ak-form-input:focus,
.ak-form-select:focus {
  border-color: var(--ak-accent-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 101, 200, 0.15);
}

.ak-btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--ak-primary);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ak-btn-submit:hover {
  background: var(--ak-accent-blue);
  box-shadow: 0 4px 12px rgba(21, 101, 200, 0.25);
}

/* ── Seasons / Travel Window Strip ──────────────────────────────────────── */
.ak-season-section {
  background: #ffffff;
  border-bottom: 1px solid var(--ak-border);
  padding: 24px 0;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: var(--ak-shadow-sm);
  border-radius: var(--ak-radius-lg);
}

.ak-season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.ak-season-card {
  padding: 14px 18px;
  background: var(--ak-bg-light);
  border: 1px solid var(--ak-border-subtle);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}

.ak-season-card:hover {
  border-color: var(--ak-accent-blue);
  background: #ffffff;
  box-shadow: var(--ak-shadow-sm);
}

.ak-season-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ak-accent-blue-light);
  color: var(--ak-accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ak-season-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ak-primary);
  margin: 0 0 2px;
}

.ak-season-info .ak-season-sub {
  font-size: 0.8rem;
  color: var(--ak-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.ak-season-info p {
  font-size: 0.82rem;
  color: var(--ak-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ── Section Header Standard ────────────────────────────────────────────── */
.ak-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.ak-pill-tag {
  display: inline-block;
  background: var(--ak-accent-blue-light);
  color: var(--ak-accent-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ak-section-title {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--ak-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

.ak-section-desc {
  font-size: 1rem;
  color: var(--ak-text-muted);
  line-height: 1.6;
}

/* ── 9 Packages Grid & Cards ────────────────────────────────────────────── */
.ak-packages-section {
  padding: 60px 0 80px;
}

.ak-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 1024px) {
  .ak-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ak-pkg-grid {
    grid-template-columns: 1fr;
  }
}

.ak-pkg-card {
  background: #ffffff;
  border-radius: var(--ak-radius-lg);
  border: 1px solid var(--ak-border);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--ak-shadow-sm);
}

.ak-pkg-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 101, 200, 0.4);
  box-shadow: var(--ak-shadow-lg);
}

.ak-pkg-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.ak-pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.ak-pkg-badge-float {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(26, 43, 94, 0.92);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
}

.ak-pkg-rating-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ffffff;
  color: #d97706;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: var(--ak-shadow-sm);
}

.ak-pkg-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ak-pkg-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--ak-text-muted);
  margin-bottom: 10px;
}

.ak-pkg-meta-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ak-pkg-meta-row i {
  color: var(--ak-accent-blue);
}

.ak-pkg-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ak-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.ak-pkg-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ak-pkg-title a:hover {
  color: var(--ak-accent-blue);
}

.ak-pkg-desc {
  font-size: 0.86rem;
  color: var(--ak-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.ak-pkg-route {
  background: var(--ak-bg-light);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #475569;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ak-pkg-route i {
  color: var(--ak-accent-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.ak-pkg-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.ak-pill {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.ak-pkg-footer {
  border-top: 1px solid var(--ak-border-subtle);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ak-price-block {
  display: flex;
  flex-direction: column;
}

.ak-price-label {
  font-size: 0.72rem;
  color: var(--ak-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.ak-price-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ak-primary);
}

.ak-price-val del {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-right: 4px;
  font-weight: normal;
}

.ak-btn-view {
  background: var(--ak-accent-blue-light);
  color: var(--ak-accent-blue);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ak-btn-view:hover {
  background: var(--ak-accent-blue);
  color: #ffffff;
}

/* ── Sacred Sites Guide Section ─────────────────────────────────────────── */
.ak-sites-section {
  background: #ffffff;
  padding: 70px 0;
  border-top: 1px solid var(--ak-border);
  border-bottom: 1px solid var(--ak-border);
}

.ak-site-card {
  display: flex;
  background: var(--ak-bg-light);
  border-radius: var(--ak-radius-lg);
  border: 1px solid var(--ak-border);
  overflow: hidden;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.ak-site-card:hover {
  box-shadow: var(--ak-shadow-md);
  border-color: rgba(21, 101, 200, 0.35);
}

.ak-site-img-col {
  width: 35%;
  min-height: 240px;
  position: relative;
}

.ak-site-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ak-site-content-col {
  width: 65%;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ak-site-meta-strip {
  display: flex;
  gap: 16px;
  font-size: 0.84rem;
  color: var(--ak-text-muted);
  margin-bottom: 8px;
}

.ak-site-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ak-site-meta-strip i {
  color: var(--ak-gold);
}

.ak-site-title {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ak-primary);
  margin-bottom: 4px;
}

.ak-site-sub {
  font-size: 0.88rem;
  color: var(--ak-accent-blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.ak-site-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 14px;
}

.ak-site-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ak-site-hl-item {
  font-size: 0.84rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ak-site-hl-item i {
  color: var(--ak-accent-green);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .ak-site-card {
    flex-direction: column;
  }
  .ak-site-img-col,
  .ak-site-content-col {
    width: 100%;
  }
  .ak-site-img-col {
    height: 200px;
  }
  .ak-site-highlights-list {
    grid-template-columns: 1fr;
  }
}

/* ── Circuit Steps & Elevation ──────────────────────────────────────────── */
.ak-circuit-section {
  padding: 70px 0;
  background: var(--ak-bg-light);
}

.ak-circuit-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.ak-circuit-step {
  background: #ffffff;
  border-radius: var(--ak-radius);
  border: 1px solid var(--ak-border);
  padding: 20px;
  position: relative;
  box-shadow: var(--ak-shadow-sm);
  transition: all 0.2s ease;
}

.ak-circuit-step:hover {
  border-color: var(--ak-accent-blue);
  transform: translateY(-3px);
  box-shadow: var(--ak-shadow-md);
}

.ak-step-num {
  width: 32px;
  height: 32px;
  background: var(--ak-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.ak-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ak-primary);
  margin-bottom: 4px;
}

.ak-step-elev {
  font-size: 0.8rem;
  color: var(--ak-gold);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ak-step-note {
  font-size: 0.84rem;
  color: var(--ak-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ── Comparison Section ─────────────────────────────────────────────────── */
.ak-compare-section {
  padding: 70px 0;
  background: #ffffff;
}

.ak-compare-card {
  border-radius: var(--ak-radius-lg);
  border: 1px solid var(--ak-border);
  padding: 30px;
  background: #ffffff;
  box-shadow: var(--ak-shadow-md);
}

.ak-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.ak-compare-table th {
  background: var(--ak-bg-light);
  color: var(--ak-primary);
  font-weight: 600;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ak-border);
  text-align: left;
}

.ak-compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--ak-border);
  color: #334155;
  vertical-align: top;
}

.ak-compare-table tr:hover td {
  background: rgba(241, 245, 249, 0.4);
}

.ak-check-icon {
  color: var(--ak-accent-green);
  font-size: 1rem;
}

/* ── ILP Advisory Section ───────────────────────────────────────────────── */
.ak-prep-section {
  background: linear-gradient(135deg, #1a2b5e 0%, #1565c8 100%);
  color: #ffffff;
  padding: 60px 0;
  border-radius: var(--ak-radius-lg);
  margin: 40px auto;
}

.ak-prep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.ak-prep-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ak-radius);
  padding: 22px;
  backdrop-filter: blur(4px);
}

.ak-prep-icon {
  font-size: 1.8rem;
  color: #facc15;
  margin-bottom: 14px;
}

.ak-prep-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.ak-prep-desc {
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin: 0;
}

/* ── FAQ Section Accordion ──────────────────────────────────────────────── */
.ak-faq-section {
  padding: 70px 0;
  background: var(--ak-bg-light);
}

.ak-faq-wrapper {
  max-width: 840px;
  margin: 0 auto;
}

.ak-faq-item {
  background: #ffffff;
  border: 1px solid var(--ak-border);
  border-radius: var(--ak-radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--ak-shadow-sm);
  transition: border-color 0.2s ease;
}

.ak-faq-item:hover {
  border-color: rgba(21, 101, 200, 0.4);
}

.ak-faq-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ak-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ak-faq-btn i {
  color: var(--ak-accent-blue);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ak-faq-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.ak-faq-panel {
  padding: 0 22px 20px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}

/* ── Bottom CTA Banner ──────────────────────────────────────────────────── */
.ak-cta-banner {
  background: #ffffff;
  border-radius: var(--ak-radius-lg);
  border: 1px solid var(--ak-border);
  padding: 36px 40px;
  box-shadow: var(--ak-shadow-md);
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ak-cta-text h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ak-primary);
  margin-bottom: 6px;
}

.ak-cta-text p {
  font-size: 0.95rem;
  color: var(--ak-text-muted);
  margin: 0;
}

.ak-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ak-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .ak-cta-btns {
    width: 100%;
    flex-direction: column;
  }
  .ak-cta-btns a {
    width: 100%;
    justify-content: center;
  }
}
