/* ============ Departures.pk — Editorial Premium ============ */
:root {
  --brand-orange: #FF6B35;
  --brand-orange-ink: #E85A26;
  --brand-navy: #15305C;
  --brand-navy-deep: #0B1E3F;
  --brand-sky: #0EA5E9;
  --success: #0F9D6B;
  --ink: #0F172A;
  --ink-2: #334155;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --border: #E6E8EC;
  --border-strong: #D6D9E0;
  --bg: #FDFCFA;        /* slightly warm off-white */
  --bg-alt: #F6F4EF;    /* warm cream for alt sections */
  --paper: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 8px rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, .06);
  --shadow-lg: 0 16px 40px -8px rgba(15, 23, 42, .16);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --serif: 'Playfair Display', 'Source Serif Pro', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ============ Typography ============ */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--brand-navy-deep); letter-spacing: -0.01em; margin: 0; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); letter-spacing: -0.025em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.02em; line-height: 1.08; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.uppercase-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 500;
}

/* ============ Top utility bar ============ */
.topbar {
  background: var(--brand-navy-deep);
  color: #D6DEEC;
  font-size: 13px;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 10px; color: #B9C3D6; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { transition: color 160ms; display: inline-flex; align-items: center; gap: 6px; }
.topbar-right a:hover { color: #fff; }
.topbar-sep { color: #2A3C5E; }
@media (max-width: 820px) { .topbar-left { display: none; } }
@media (max-width: 900px) { .topbar-right { margin-left: auto; gap: 12px; } }
@media (max-width: 700px) {
  .topbar-right .hide-sm, .topbar-right .topbar-sep { display: none; }
}

/* ============ Nav ============ */
.nav-wrap { position: sticky; top: 0; z-index: 60; background: transparent; transition: background 240ms, box-shadow 240ms, border-color 240ms; border-bottom: 1px solid transparent; }
.nav-wrap.solid { background: rgba(255,255,255,0.94); backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px); box-shadow: var(--shadow-sm); border-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; flex-wrap: nowrap; }
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.logo-dark { color: #fff; }
.logo-light { color: #15305C; }
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-dark .logo-mark { background: rgba(255,255,255,0.12); }
.logo-light .logo-mark { background: var(--brand-navy-deep); box-shadow: 0 4px 10px -2px rgba(15, 30, 63, 0.3); }
.logo-copy { display: inline-flex; flex-direction: column; line-height: 1; min-width: 0; }
.logo-wordmark { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; white-space: nowrap; }
.logo-sub { font-family: var(--mono); font-size: 9px; letter-spacing: 0.24em; margin-top: 3px; text-transform: uppercase; white-space: nowrap; }
.logo-dark .logo-sub { color: rgba(255,255,255,0.6); }
.logo-light .logo-sub { color: var(--muted); }
.nav-center { display: flex; align-items: center; gap: 2px; flex-shrink: 1; min-width: 0; }
.nav-link { position: relative; padding: 10px 12px; font-size: 14px; color: var(--ink); font-weight: 500; display: inline-flex; align-items: center; gap: 5px; border-radius: 8px; transition: background 160ms, color 160ms; white-space: nowrap; }
.nav-link:hover { color: var(--brand-navy); background: rgba(21, 48, 92, 0.05); }
.nav-link.active { color: var(--brand-navy); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-social { display: flex; align-items: center; gap: 4px; margin-right: 8px; padding-right: 10px; border-right: 1px solid var(--border); }
.social-btn { width: 32px; height: 32px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: background 160ms, color 160ms, transform 160ms; }
.social-btn:hover { background: var(--brand-navy); color: #fff; transform: translateY(-1px); }
.nav-wrap:not(.solid) .nav-link { color: #fff; }
.nav-wrap:not(.solid) .nav-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-wrap:not(.solid) .social-btn { color: rgba(255,255,255,0.8); }
.nav-wrap:not(.solid) .social-btn:hover { background: rgba(255,255,255,0.18); color: #fff; }
.nav-wrap:not(.solid) .nav-social { border-color: rgba(255,255,255,0.2); }

/* dropdown */
.has-drop { position: relative; }
.drop-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 160ms ease;
  z-index: 10;
}
.has-drop:hover > .drop-panel, .has-drop:focus-within > .drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-item { display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: 10px; transition: background 120ms; }
.drop-item:hover { background: var(--bg-alt); }
.drop-item-title { color: var(--brand-navy-deep); font-weight: 500; font-size: 14px; }
.drop-item-sub { font-size: 12px; color: var(--muted); }
.drop-flag { display: inline-block; width: 22px; height: 16px; margin-right: 8px; vertical-align: middle; border-radius: 2px; background: var(--bg-alt); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 15px; font-weight: 500; padding: 13px 22px; border-radius: 999px;
  transition: transform 180ms, box-shadow 180ms, background 180ms, color 180ms, border-color 180ms;
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--brand-orange); color: #fff; box-shadow: 0 6px 16px -4px rgba(255,107,53,0.5); }
.btn-primary:hover { background: var(--brand-orange-ink); transform: translateY(-2px); box-shadow: 0 10px 20px -4px rgba(255,107,53,0.55); }
.btn-primary:active { transform: translateY(0); }
.btn-dark { background: var(--brand-navy-deep); color: #fff; }
.btn-dark:hover { background: var(--brand-navy); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.7); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline { background: #fff; color: var(--brand-navy-deep); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--brand-navy); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============ Ticket / boarding-pass motif ============ */
.ticket-rule { display: flex; align-items: center; gap: 14px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.ticket-rule::before, .ticket-rule::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }
.ticket-dash { border-top: 1.5px dashed var(--border-strong); }
.ticket-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted);
}
.ticket-chip .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--brand-orange); }
.punch-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.punch-card::before, .punch-card::after {
  content: '';
  position: absolute;
  width: 16px; height: 16px; border-radius: 999px; background: var(--bg);
  top: 50%; transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px var(--border);
}
.punch-card::before { left: -8px; }
.punch-card::after { right: -8px; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 92vh; color: #fff; overflow: hidden; margin-top: -72px; padding-top: 72px; display: flex; flex-direction: column; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media .hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-img { background-size: cover; background-position: center; width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(11,30,63,0.45) 0%, rgba(11,30,63,0.55) 55%, rgba(11,30,63,0.88) 100%),
  linear-gradient(90deg, rgba(11,30,63,0.65) 0%, rgba(11,30,63,0.35) 55%, rgba(11,30,63,0.15) 100%);
  z-index: 1; }
.hero-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 60px 0 80px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; padding: 8px 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; color: #fff; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; backdrop-filter: blur(10px); }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 999px; background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.25); }
.hero-title { color: #fff; max-width: 880px; margin: 24px 0 20px; text-shadow: 0 2px 24px rgba(5, 15, 35, 0.45); }
.hero-title em { font-style: italic; color: #FFC7AA; font-weight: 400; }
.hero-sub { max-width: 620px; font-size: 18px; color: rgba(255,255,255,0.92); line-height: 1.55; margin-bottom: 32px; text-shadow: 0 1px 12px rgba(5, 15, 35, 0.5); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.18); }
.trust-stat .k { font-family: var(--serif); font-size: 28px; color: #fff; font-weight: 500; }
.trust-stat .l { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 0.05em; }
@media (max-width: 820px) { .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 18px; } .hero { min-height: 82vh; } }

/* hero mode — editorial collage */
.hero-collage { position: absolute; inset: 0; z-index: 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; background: var(--brand-navy-deep); }
.hero-collage .tile { position: relative; overflow: hidden; }
.hero-collage .tile-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1); transition: transform 8s ease; }
.hero-collage .tile:hover .tile-img { transform: scale(1.06); }
.hero-collage .tile:nth-child(1) { grid-row: 1 / span 2; }
.hero-collage .tile .tile-label { position: absolute; left: 16px; bottom: 16px; color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; background: rgba(11,30,63,0.5); padding: 6px 10px; border-radius: 6px; backdrop-filter: blur(6px); }

/* hero mode — map */
.hero-map { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 30% 40%, #1E3A66 0%, #0B1E3F 60%, #05112A 100%); overflow: hidden; }
.hero-map svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.hero-map .pin { position: absolute; transform: translate(-50%, -100%); color: #fff; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-map .pin .dot { width: 12px; height: 12px; border-radius: 999px; background: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.25), 0 0 0 10px rgba(255,107,53,0.1); }

/* ============ Sections ============ */
section { padding: 96px 0; }
@media (max-width: 820px) { section { padding: 64px 0; } }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .uppercase-label { color: var(--brand-orange); letter-spacing: 0.24em; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 14px; color: var(--ink-2); font-size: 18px; }

/* ============ Trust row ============ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: transform 240ms, box-shadow 240ms, border-color 240ms; }
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.trust-stamp { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1.5px dashed var(--border-strong); }
.trust-num { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--brand-orange); letter-spacing: 0.06em; }
.trust-num-tot { color: var(--muted-2); font-weight: 500; }
.trust-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--border-strong), transparent); }
.trust-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--brand-navy-deep); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.trust-kicker {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand-orange); font-weight: 500;
  margin-bottom: 10px;
}
.trust-card h3 { font-size: 22px; margin-bottom: 12px; }
.trust-card p { color: var(--ink-2); font-size: 15.5px; }

/* ============ Destination cards ============ */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--brand-navy-deep); cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 280ms, box-shadow 280ms; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-card .img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 600ms ease; }
.dest-card:hover .img { transform: scale(1.06); }
.dest-card .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,30,63,0) 40%, rgba(11,30,63,0.85) 100%); }
.dest-card .meta-top { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.dest-card .ix { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.85); text-transform: uppercase; }
.dest-card .stamp { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; backdrop-filter: blur(8px); }
.dest-card .body { position: absolute; left: 20px; right: 20px; bottom: 20px; color: #fff; }
.dest-card .body h3 { color: #fff; font-size: 26px; line-height: 1.1; margin-bottom: 4px; }
.dest-card .body .tag { font-size: 13.5px; color: rgba(255,255,255,0.85); }
.dest-card .price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px dashed rgba(255,255,255,0.3); }
.dest-card .price-row .p-l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.dest-card .price-row .p-v { font-family: var(--mono); font-size: 15px; color: #fff; font-weight: 500; }
.dest-card .cta-slide { display: none; }
@media (max-width: 640px) {
  .dest-card .cta-slide {
    display: flex;
    position: static;
    margin: 14px 0 0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    padding: 11px 16px;
    border-radius: 999px;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
  }
}

/* image fallback placeholder */
.img-fallback {
  background: repeating-linear-gradient(135deg, #2a3a5a 0 12px, #1e2c48 12px 24px);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* ============ Calculator ============ */
.calc-wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 1000px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 36px; }
.calc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px dashed var(--border-strong); }
.calc-header h3 { font-size: 24px; margin-bottom: 4px; }
.calc-header .sub { color: var(--muted); font-size: 14px; }
.calc-seal { width: 64px; height: 64px; border-radius: 999px; border: 2px dashed var(--border-strong); display: flex; align-items: center; justify-content: center; transform: rotate(-8deg); color: var(--brand-orange); font-family: var(--mono); font-size: 9px; text-align: center; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; padding: 8px; }
.calc-field { margin-bottom: 22px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 12px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-weight: 500; }
.calc-field label .val { color: var(--brand-navy-deep); font-weight: 600; }
.calc-select, .calc-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--bg); font-size: 15px; color: var(--ink); transition: border-color 160ms, box-shadow 160ms, background 160ms; appearance: none; -webkit-appearance: none; }
.calc-select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.calc-select:focus, .calc-input:focus { outline: none; border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.15); background: #fff; }
.calc-counter { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--border-strong); border-radius: 10px; overflow: hidden; background: var(--bg); }
.calc-counter button { width: 44px; height: 48px; display: inline-flex; align-items: center; justify-content: center; color: var(--brand-navy-deep); transition: background 160ms; }
.calc-counter button:hover { background: var(--bg-alt); }
.calc-counter button:disabled { color: var(--muted-2); cursor: not-allowed; }
.calc-counter .val { min-width: 56px; text-align: center; font-family: var(--mono); font-weight: 600; font-size: 16px; color: var(--brand-navy-deep); }
.calc-range { -webkit-appearance: none; width: 100%; height: 4px; background: var(--border-strong); border-radius: 999px; outline: none; }
.calc-range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 999px; background: var(--brand-orange); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(255,107,53,0.4); }
.calc-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 999px; background: var(--brand-orange); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(255,107,53,0.4); }
.calc-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.calc-pill { padding: 14px 10px; border-radius: 10px; border: 1.5px solid var(--border-strong); background: var(--bg); text-align: center; cursor: pointer; transition: all 160ms; font-size: 14px; color: var(--ink-2); }
.calc-pill .small { font-size: 11px; color: var(--muted); display: block; margin-top: 2px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.calc-pill:hover { border-color: var(--brand-navy); }
.calc-pill.active { border-color: var(--brand-orange); background: #FFF4ED; color: var(--brand-navy-deep); font-weight: 500; box-shadow: inset 0 0 0 1px var(--brand-orange); }
.calc-pill.active .small { color: var(--brand-orange); }
.calc-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .calc-row-2 { grid-template-columns: 1fr; } }

/* price panel (boarding pass) */
.price-pass { position: sticky; top: 100px; }
.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.price-card .pp-head { background: var(--brand-navy-deep); color: #fff; padding: 22px 28px; position: relative; }
.price-card .pp-head::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -12px; height: 24px;
  background:
    radial-gradient(circle at 12px 12px, transparent 9px, #fff 9.5px) 0 0 / 24px 24px repeat-x;
}
.pp-head-row { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.pp-head-row strong { color: #fff; font-weight: 600; }
.pp-head h4 { color: #fff; font-family: var(--serif); font-size: 22px; margin-top: 6px; font-weight: 500; }
.pp-body { padding: 30px 28px 0; }
.pp-route { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 0 22px; }
.pp-node { text-align: left; }
.pp-node.r { text-align: right; }
.pp-node .code { font-family: var(--mono); font-size: 28px; font-weight: 600; color: var(--brand-navy-deep); letter-spacing: 0.02em; }
.pp-node .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.pp-line { flex: 1; position: relative; height: 2px; background: linear-gradient(90deg, var(--border-strong) 50%, transparent 50%) 0 0 / 8px 2px repeat-x; }
.pp-line .plane { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 28px; height: 28px; border-radius: 999px; background: #fff; border: 1.5px solid var(--brand-orange); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-orange); }
.pp-dash { border-top: 1.5px dashed var(--border-strong); margin: 0 -28px; }
.pp-items { padding: 20px 0; }
.pp-item { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14px; color: var(--ink-2); }
.pp-item .k { display: flex; align-items: center; gap: 10px; }
.pp-item .v { font-family: var(--mono); color: var(--brand-navy-deep); font-weight: 500; }
.pp-total { padding: 24px 0; display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: baseline; border-top: 1.5px dashed var(--border-strong); }
.pp-total .pp { font-size: 13px; color: var(--muted); }
.pp-total .pp-val { font-family: var(--mono); font-size: 15px; color: var(--ink-2); text-align: right; font-weight: 500; }
.pp-total .tt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-orange); }
.pp-total .tt-val { font-family: var(--serif); font-size: 40px; font-weight: 500; color: var(--brand-navy-deep); letter-spacing: -0.02em; line-height: 1; text-align: right; }
.pp-foot { padding: 0 28px 28px; }
.pp-note { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.5; }
.pp-barcode { margin: 12px -28px -28px; padding: 16px 28px; background: var(--bg); display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--border-strong); }
.pp-barcode .bars { display: flex; gap: 2px; align-items: center; height: 24px; }
.pp-barcode .bars span { display: block; background: var(--brand-navy-deep); width: 2px; height: 100%; }
.pp-barcode .ref { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--muted); text-transform: uppercase; }

/* skeleton */
.shimmer { background: linear-gradient(90deg, #F1F5F9 0%, #E2E8F0 50%, #F1F5F9 100%); background-size: 200% 100%; animation: shimmer 1.2s infinite linear; border-radius: 6px; color: transparent; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============ Editorial promo band ============ */
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .editorial { grid-template-columns: 1fr; gap: 40px; } }
.editorial-img { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; background: var(--brand-navy-deep); }
.editorial-img .img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.editorial-img .stamp { position: absolute; bottom: 20px; left: 20px; background: #fff; padding: 14px 18px; border-radius: var(--radius); display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow-md); }
.editorial-img .stamp .k { font-family: var(--serif); font-size: 28px; color: var(--brand-navy-deep); line-height: 1; }
.editorial-img .stamp .l { font-size: 11px; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 4px; display: block; }
.editorial-copy .uppercase-label { color: var(--brand-orange); }
.editorial-copy h2 { margin: 14px 0 20px; }
.editorial-copy p { color: var(--ink-2); font-size: 17px; margin-bottom: 16px; }
.editorial-copy .highlights { list-style: none; padding: 24px 0 0; margin: 0; border-top: 1px solid var(--border); margin-top: 28px; }
.editorial-copy .highlights li { padding: 10px 0; display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.editorial-copy .highlights li svg { color: var(--brand-orange); flex-shrink: 0; margin-top: 3px; }
.editorial-copy .cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ Tours grid ============ */
.tours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .tours-grid { grid-template-columns: 1fr; } }
.tour-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 240ms, box-shadow 240ms, border-color 240ms; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.tour-card .img { aspect-ratio: 5/4; background-size: cover; background-position: center; position: relative; }
.tour-card .dur { position: absolute; top: 12px; left: 12px; background: rgba(11,30,63,0.85); color: #fff; padding: 6px 10px; border-radius: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; backdrop-filter: blur(8px); }
.tour-card .fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,0.9); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-navy-deep); backdrop-filter: blur(8px); transition: background 160ms, transform 160ms; }
.tour-card .fav:hover { background: #fff; transform: scale(1.05); color: var(--brand-orange); }
.tour-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tour-card .rating { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.tour-card .rating .stars { color: #F59E0B; }
.tour-card h4 { font-family: var(--serif); font-size: 19px; color: var(--brand-navy-deep); margin-bottom: 10px; line-height: 1.2; font-weight: 500; }
.tour-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tour-card .tag { font-size: 11.5px; color: var(--muted); padding: 3px 9px; background: var(--bg); border-radius: 999px; border: 1px solid var(--border); }
.tour-card .foot { margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--border); display: flex; justify-content: space-between; align-items: center; }
.tour-card .foot .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.tour-card .foot .price { font-family: var(--mono); font-size: 17px; color: var(--brand-navy-deep); font-weight: 600; margin-top: 2px; }
.tour-card .foot .arrow { width: 36px; height: 36px; border-radius: 999px; background: var(--brand-navy-deep); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background 160ms, transform 160ms; }
.tour-card .foot .arrow:hover { background: var(--brand-orange); transform: translateX(2px); }

/* ============ Logos marquee ============ */
.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track { display: flex; gap: 56px; animation: marquee 40s linear infinite; width: max-content; align-items: center; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo {
  font-family: var(--serif); font-size: 28px; color: var(--brand-navy-deep); font-weight: 500;
  opacity: 0.45; filter: grayscale(1); transition: opacity 240ms, filter 240ms;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.client-logo.alt { font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; text-transform: uppercase; font-size: 20px; }
.client-logo.mono { font-family: var(--mono); font-weight: 500; font-size: 20px; letter-spacing: 0.04em; }
.logo-marquee:hover .client-logo:hover { opacity: 1; filter: grayscale(0); color: var(--brand-orange); }

@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* ============ Reviews ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; position: relative; display: flex; flex-direction: column; }
.review-card .g-badge { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; border-radius: 999px; background: #fff; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; }
.review-card .stars { display: flex; gap: 2px; margin-bottom: 16px; color: #F59E0B; }
.review-card .body { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; margin-bottom: 20px; flex: 1; }
.review-card .body::before { content: '\201C'; font-family: var(--serif); font-size: 60px; color: var(--brand-orange); line-height: 0; vertical-align: -0.6em; margin-right: 4px; display: inline-block; }
.review-card .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px dashed var(--border); }
.review-card .ava { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(135deg, var(--brand-navy), var(--brand-orange)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 17px; font-weight: 500; }
.review-card .who .n { font-weight: 600; color: var(--brand-navy-deep); font-size: 14.5px; }
.review-card .who .d { font-size: 12.5px; color: var(--muted); font-family: var(--mono); margin-top: 2px; letter-spacing: 0.04em; }

/* ============ Trust badges ============ */
.badges-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
@media (max-width: 900px) { .badges-row { grid-template-columns: repeat(2, 1fr); } }
.badge-seal { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; opacity: 0.8; transition: opacity 200ms, transform 200ms; }
.badge-seal:hover { opacity: 1; transform: translateY(-2px); }
.badge-seal .crest { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 999px; border: 2px solid var(--brand-navy); display: flex; align-items: center; justify-content: center; color: var(--brand-navy-deep); font-family: var(--serif); font-weight: 500; font-size: 18px; position: relative; }
.badge-seal .crest::before { content: ''; position: absolute; inset: -6px; border: 1px dashed var(--border-strong); border-radius: 999px; }
.badge-seal .t { font-family: var(--serif); font-size: 16px; color: var(--brand-navy-deep); font-weight: 500; }
.badge-seal .s { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; }

/* ============ Sikh Yatra section ============ */
.sikh-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(ellipse at top, rgba(228, 169, 60, 0.08), transparent 50%),
    linear-gradient(180deg, #0B1E3F 0%, #0A1A37 100%);
  color: #fff;
  overflow: hidden;
}
.sikh-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1' fill='%23ffffff' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  pointer-events: none;
}
.sikh-section > .container { position: relative; z-index: 1; }

.sikh-head { max-width: 880px; margin: 0 auto; text-align: center; }
.sikh-h2 { color: #fff; font-size: clamp(2.4rem, 4.4vw, 3.6rem); margin: 24px 0 24px; line-height: 1.1; }
.sikh-h2 em { font-style: italic; color: #F0C26C; font-weight: 400; }
.sikh-lede { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 760px; margin: 0 auto; line-height: 1.65; }

.sikh-subhead { margin-bottom: 36px; text-align: center; }

/* Sacred sites grid */
.sikh-sites { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 1024px) { .sikh-sites { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .sikh-sites { grid-template-columns: 1fr; } }

.sikh-site {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 240ms, border-color 240ms, background 240ms;
}
.sikh-site:hover { transform: translateY(-3px); border-color: rgba(240, 194, 108, 0.4); background: rgba(255, 255, 255, 0.06); }
.sikh-site-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #0B1E3F; }
.sikh-site-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; z-index: 1; }
.sikh-site:hover .sikh-site-photo { transform: scale(1.05); }
.sikh-site-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
  background:
    radial-gradient(ellipse at center, rgba(240, 194, 108, 0.10), transparent 70%),
    linear-gradient(180deg, #122B57 0%, #0B1E3F 100%);
  z-index: 0;
}
.sikh-site-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.6' fill='%23F0C26C' opacity='0.16'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.6;
}
.sikh-dome { width: 70%; max-width: 200px; height: auto; opacity: 0.85; position: relative; z-index: 1; }
.sikh-fb-name {
  font-family: var(--serif); color: #F0C26C; font-size: 16px;
  letter-spacing: 0.02em; margin-top: 10px; opacity: 0.92; position: relative; z-index: 1;
  font-weight: 500; line-height: 1.2;
}
.sikh-fb-city {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(240, 194, 108, 0.55);
  margin-top: 6px; position: relative; z-index: 1;
}
.sikh-site-code {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; color: #F0C26C;
  background: rgba(11,30,63,0.7); padding: 5px 10px;
  border-radius: 999px; backdrop-filter: blur(6px); z-index: 3;
}
.sikh-site-body { padding: 22px 22px 24px; }
.sikh-site-city {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #F0C26C; margin-bottom: 8px;
}
.sikh-site-body h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 10px; line-height: 1.15; }
.sikh-site-body p { color: rgba(255,255,255,0.72); font-size: 14.5px; line-height: 1.55; }

/* Packages */
.sikh-pkgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 1024px) { .sikh-pkgs { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.sikh-pkg {
  position: relative;
  background: #FBF6EC;
  color: var(--brand-navy-deep);
  border-radius: 18px;
  padding: 28px 28px 26px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(228, 169, 60, 0.25);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.45);
  transition: transform 240ms, box-shadow 240ms;
}
.sikh-pkg:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.55); }
.sikh-pkg.is-primary {
  background: linear-gradient(180deg, #FFF8E8 0%, #FBEFD3 100%);
  border-color: rgba(228, 169, 60, 0.55);
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -12px rgba(0, 0, 0, 0.55);
}
.sikh-pkg.is-primary:hover { transform: translateY(-12px); }
.sikh-pkg-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand-orange); color: #fff;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; font-weight: 600;
  box-shadow: 0 6px 14px -2px rgba(255,107,53,0.5);
}
.sikh-pkg-top { padding-bottom: 20px; border-bottom: 1.5px dashed rgba(11,30,63,0.18); margin-bottom: 18px; }
.sikh-pkg-route { display: flex; align-items: flex-start; gap: 16px; }
.sikh-pkg-code {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-navy-deep); color: #F0C26C;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 600; font-size: 16px; letter-spacing: 0.02em;
  flex-shrink: 0;
}
.sikh-pkg-from {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.sikh-pkg h3 { font-family: var(--serif); font-size: 22px; color: var(--brand-navy-deep); line-height: 1.1; margin-bottom: 6px; font-weight: 500; }
.sikh-pkg-dur { font-size: 13.5px; color: var(--ink-2); }
.sikh-pkg-list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.sikh-pkg-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.sikh-pkg-list li svg { color: var(--brand-orange); flex-shrink: 0; margin-top: 3px; }
.sikh-pkg-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 14px;
  padding-top: 18px; border-top: 1.5px dashed rgba(11,30,63,0.18);
}
.sikh-pkg-price {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  color: var(--brand-navy-deep); line-height: 1; letter-spacing: -0.01em;
}
.sikh-pkg-note { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* Itinerary timeline */
.sikh-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 900px)  { .sikh-timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .sikh-timeline { grid-template-columns: 1fr; } }
.sikh-day {
  background: #0E2349;
  padding: 22px 22px 24px;
  position: relative;
  transition: background 200ms;
}
.sikh-day:hover { background: #122B57; }
.sikh-day-tag {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin-bottom: 14px;
}
.sikh-day-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: #F0C26C; font-weight: 600;
}
.sikh-day-city {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
}
.sikh-day-title {
  font-family: var(--serif); font-size: 17px; color: #fff;
  margin-bottom: 8px; line-height: 1.25; font-weight: 500;
}
.sikh-day-note { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.55; }

/* Info row */
.sikh-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) { .sikh-info { grid-template-columns: 1fr; } }
.sikh-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 32px;
}
.sikh-info-card h3 {
  color: #fff; font-family: var(--serif); font-size: 22px;
  font-weight: 500; margin: 10px 0 22px;
}
.sikh-info-list { list-style: none; padding: 0; margin: 0; }
.sikh-info-list li {
  padding: 14px 0;
  border-top: 1px dashed rgba(255,255,255,0.10);
  display: flex; flex-direction: column; gap: 4px;
}
.sikh-info-list li:first-child { border-top: 0; padding-top: 0; }
.sikh-info-list strong {
  color: #F0C26C; font-family: var(--sans);
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
}
.sikh-info-list span { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.55; }

.sikh-calendar { list-style: none; padding: 0; margin: 0; }
.sikh-calendar li {
  display: flex; gap: 18px;
  padding: 16px 0;
  border-top: 1px dashed rgba(255,255,255,0.10);
  align-items: flex-start;
}
.sikh-calendar li:first-child { border-top: 0; padding-top: 0; }
.sikh-cal-date {
  flex-shrink: 0; width: 64px; height: 64px;
  border: 1.5px solid rgba(240, 194, 108, 0.4);
  border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.sikh-cal-date .d { font-family: var(--serif); font-size: 24px; color: #fff; line-height: 1; font-weight: 500; }
.sikh-cal-date .m { font-family: var(--mono); font-size: 10px; color: #F0C26C; letter-spacing: 0.18em; margin-top: 3px; }
.sikh-cal-title { font-family: var(--serif); font-size: 17px; color: #fff; margin-bottom: 4px; font-weight: 500; }
.sikh-cal-note { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.55; }
.cta-band { position: relative; padding: 120px 0; overflow: hidden; color: #fff; text-align: center; }
.cta-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.cta-band .bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,30,63,0.7), rgba(11,30,63,0.85)); }
.cta-band .inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-band h2 { color: #fff; margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 18px; margin-bottom: 32px; }
.cta-band .cta-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============ SEO content pages ============ */
.seo-page section { padding: 72px 0; }
.seo-hero {
  background: linear-gradient(135deg, #0B1E3F 0%, #15305C 55%, #0F3A6A 100%);
  color: #fff;
  padding-top: 110px !important;
  padding-bottom: 70px !important;
}
.seo-hero h1 {
  color: #fff;
  max-width: 980px;
  line-height: 1.08;
}
.seo-hero h2 {
  color: rgba(255,255,255,0.9);
  margin-top: 16px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}
.seo-section { background: var(--bg); }
.seo-section.seo-alt { background: var(--bg-alt); }
.seo-body {
  max-width: 920px;
  margin: 0 auto;
}
.seo-body p {
  color: var(--ink-2);
  margin-bottom: 16px;
}
.seo-body h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.seo-body h3 {
  margin: 18px 0 10px;
}
.seo-body ul {
  margin: 10px 0 18px;
  padding-left: 22px;
  color: var(--ink-2);
}
.seo-body li { margin-bottom: 8px; }
.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) {
  .seo-grid { grid-template-columns: 1fr; }
}
.seo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.seo-card h3 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.4rem;
  line-height: 1.2;
}
.seo-card h3 span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brand-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.seo-card ul { margin-top: 14px; }
.seo-card p {
  margin-top: 14px;
  margin-bottom: 0;
}
.seo-includes {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.seo-faq-list {
  display: grid;
  gap: 12px;
}
.seo-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.seo-faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.seo-faq-item p {
  margin: 0;
}
.seo-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.seo-links a {
  color: var(--brand-navy);
  font-weight: 600;
}
.seo-links a:hover { color: var(--brand-orange); }

/* contact page */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-details h3 {
  margin: 18px 0 8px;
  font-size: 1.12rem;
}
.contact-side {
  display: grid;
  gap: 16px;
}
.contact-map-frame,
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.contact-map-frame h3,
.contact-form h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
}
.contact-map-frame iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 10px;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--bg);
}
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.14);
  background: #fff;
}

/* ============ Footer ============ */
footer { background: var(--brand-navy-deep); color: #C5CCDB; padding: 80px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { padding: 7px 0; }
footer ul a { color: #B4BCCE; font-size: 14.5px; transition: color 160ms; }
footer ul a:hover { color: #fff; }
footer .about-logo { font-family: var(--serif); font-size: 26px; color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-weight: 500; }
footer .about-copy { font-size: 14.5px; color: #9BA5BB; margin-bottom: 22px; line-height: 1.6; max-width: 320px; }
footer .social-row { display: flex; gap: 8px; }
footer .social-row a { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background 160ms, transform 160ms; }
footer .social-row a:hover { background: var(--brand-orange); transform: translateY(-2px); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14px; color: #B4BCCE; }
.footer-contact-item svg { flex-shrink: 0; color: #7A88A3; margin-top: 3px; }
.footer-certs {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-certs span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #DFE6F4;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 56px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7A88A3; font-family: var(--mono); letter-spacing: 0.06em; }
.footer-bottom a { color: #B4BCCE; margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }

/* floating WA */
.wa-float { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 999px; background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -4px rgba(37,211,102,0.45); z-index: 70; transition: transform 200ms; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: 999px; border: 2px solid #25D366; opacity: 0.5; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.6; } 100% { transform: scale(1.3); opacity: 0; } }

/* ============ Modal ============ */
.modal-backdrop { position: fixed; inset: 0; background: rgba(11,30,63,0.55); backdrop-filter: blur(6px); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 200ms; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal { background: #fff; border-radius: var(--radius-xl); max-width: 480px; width: 100%; box-shadow: var(--shadow-lg); overflow: hidden; animation: popIn 240ms cubic-bezier(.2,.7,.3,1.2); }
@keyframes popIn { from { transform: scale(0.95) translateY(10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-head { padding: 24px 28px 18px; border-bottom: 1px dashed var(--border-strong); display: flex; justify-content: space-between; align-items: flex-start; }
.modal-head h3 { font-size: 22px; margin-bottom: 4px; }
.modal-head .sub { font-size: 13px; color: var(--muted); }
.modal-close { width: 34px; height: 34px; border-radius: 999px; background: var(--bg); color: var(--muted); display: inline-flex; align-items: center; justify-content: center; transition: background 160ms, color 160ms; }
.modal-close:hover { background: var(--border); color: var(--ink); }
.modal-body { padding: 24px 28px 28px; }
.modal-summary { background: var(--bg-alt); border-radius: var(--radius); padding: 16px; margin-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.modal-summary .it { font-size: 13px; }
.modal-summary .k { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.modal-summary .v { color: var(--brand-navy-deep); font-weight: 500; margin-top: 2px; }
.modal-field { margin-bottom: 14px; }
.modal-field input, .modal-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--bg); font-size: 15px; transition: border-color 160ms, box-shadow 160ms, background 160ms; }
.modal-field input:focus, .modal-field textarea:focus { outline: none; border-color: var(--brand-orange); box-shadow: 0 0 0 4px rgba(255,107,53,0.15); background: #fff; }
.modal-field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.modal-err { color: #DC2626; font-size: 12px; margin-top: 4px; }

/* toast */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: #0F172A; color: #fff; padding: 14px 22px; border-radius: 999px; z-index: 120; box-shadow: var(--shadow-lg); font-size: 14.5px; display: flex; align-items: center; gap: 10px; animation: toastIn 300ms cubic-bezier(.2,.7,.3,1.2); }
.toast svg { color: #10B981; }
@keyframes toastIn { from { transform: translate(-50%, 20px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

/* ============ Tweaks panel ============ */
.tweaks { position: fixed; right: 20px; bottom: 90px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: var(--shadow-lg); z-index: 80; min-width: 240px; font-family: var(--sans); }
.tweaks h6 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; font-weight: 500; }
.tweaks-row { display: flex; flex-direction: column; gap: 6px; }
.tweak-opt { padding: 10px 12px; border-radius: 8px; border: 1px solid var(--border); font-size: 13.5px; color: var(--ink-2); text-align: left; transition: all 160ms; cursor: pointer; background: #fff; }
.tweak-opt:hover { border-color: var(--brand-navy); }
.tweak-opt.active { background: var(--brand-navy-deep); color: #fff; border-color: var(--brand-navy-deep); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.6,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* mobile nav toggle */
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center; color: currentColor; }
@media (max-width: 1240px) {
  .nav-social { display: none; }
}
@media (max-width: 1100px) {
  .nav-center { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-right { margin-left: auto; gap: 6px; flex-shrink: 0; }
  .nav-cta { display: none; }
  .nav { height: 64px; }
  .hero { margin-top: -64px; padding-top: 64px; }
  .logo-wordmark { font-size: 20px; }
  .logo-sub { display: none; }
}
@media (max-width: 560px) {
  .logo-wordmark { font-size: 17px; }
  .logo-mark { width: 36px; height: 36px; border-radius: 10px; }
}
.mobile-nav { display: none; position: fixed; inset: 0; background: #fff; z-index: 90; padding: 24px; overflow-y: auto; }
.mobile-nav.open { display: block; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav-brand .logo {
  gap: 12px;
  align-items: center;
}
.mobile-nav-brand .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  transform: rotate(-3deg);
}
.mobile-nav-brand .logo-copy {
  justify-content: center;
  transform: translateY(-1px);
}
.mobile-nav-brand .logo-wordmark {
  font-size: 16px;
  letter-spacing: -0.01em;
}
.mobile-nav-brand .logo-sub { display: none; }
.mobile-nav-brand .logo-mark svg {
  width: 20px;
  height: 20px;
}
.mobile-nav a {
  display: flex;
  padding: 14px 0;
  font-size: 17px;
  color: var(--brand-navy-deep);
  font-weight: 500;
  min-width: 100%;
}

/* utilities */
.hide-sm { display: initial; }
@media (max-width: 640px) { .hide-sm { display: none; } }

@media (max-width: 820px) {
  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 0.14em;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }
}
