@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Telugu:wght@500;600;700&display=swap');

:root {
  --ink: #102a2a;
  --muted: #58706f;
  --teal-950: #063f3c;
  --teal-800: #087d75;
  --teal-700: #0b8e84;
  --teal-500: #22c7b8;
  --teal-100: #ccfbf1;
  --teal-50: #effcf9;
  --kraft-700: #a86536;
  --kraft: #b77a43;
  --kraft-light: #d8a16b;
  --sand: #f6e8d2;
  --sand-50: #fff9f1;
  --warm: #e5a85b;
  --warm-soft: #fff3df;
  --white: #fff;
  --line: #d9eeea;
  --app-grouped: #f5f5f2;
  --app-card: #ffffff;
  --app-control: #f7f8f7;
  --app-border: #e2e8e6;
  --app-secondary: #657674;
  --shadow-sm: 0 12px 32px rgba(8, 75, 70, .08);
  --shadow-lg: 0 28px 70px rgba(6, 63, 60, .16);
  --radius: 22px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--app-grouped);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.te {
  font-family: 'Noto Sans Telugu', sans-serif;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 42, 42, .08);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 650;
  color: #465c59;
}

.nav-links > a:not(.button):hover {
  color: var(--teal-700);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal-700);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(11, 142, 132, .2);
}

.button-primary:hover {
  background: var(--teal-800);
  box-shadow: 0 10px 22px rgba(11, 142, 132, .24);
}

.button-dark {
  background: var(--teal-950);
  color: var(--white);
}

.button-light {
  border-color: var(--app-border);
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(16, 42, 42, .05);
}

.button svg {
  width: 18px;
  height: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal-500);
  content: '';
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 88% 4%, rgba(11, 142, 132, .1), transparent 29rem),
    radial-gradient(circle at 4% 92%, rgba(183, 122, 67, .06), transparent 25rem),
    var(--app-grouped);
}

.hero::after {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: 84px;
}

.hero-copy h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(46px, 5.5vw, 76px);
  font-weight: 780;
  letter-spacing: -.06em;
  line-height: 1;
}

.hero-copy h1 span {
  position: relative;
  color: var(--teal-700);
  white-space: nowrap;
}

.hero-copy h1 span::after {
  display: none;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 14px;
  color: var(--app-secondary);
  font-size: 19px;
  line-height: 1.55;
}

.hero-telugu {
  margin: 0 0 28px;
  color: var(--teal-700);
  font-size: 16px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: #506d6b;
  font-size: 13px;
  font-weight: 700;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid rgba(16, 42, 42, .07);
  border-radius: 999px;
  background: rgba(255, 255, 255, .66);
}

.trust-item::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #d9f7f1;
  color: var(--teal-700);
  content: '✓';
  font-size: 12px;
  font-weight: 900;
}

.promise-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(16, 42, 42, .09);
  border-radius: 30px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 54px rgba(16, 42, 42, .1);
  backdrop-filter: blur(18px);
}

.promise-card::before {
  position: absolute;
  top: -14px;
  right: 28px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(183, 122, 67, .16);
  background: #f7eee5;
  color: var(--kraft-700);
  content: 'SAME DAY';
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.promise-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.promise-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: rgba(11, 142, 132, .1);
  color: var(--teal-700);
}

.promise-icon svg {
  width: 26px;
}

.promise-top strong {
  display: block;
  font-size: 17px;
}

.promise-top span {
  color: var(--muted);
  font-size: 13px;
}

.slot-list {
  display: grid;
  gap: 12px;
}

.slot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--app-border);
  border-radius: 18px;
  background: var(--app-control);
}

.slot small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.slot strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.02em;
}

.slot-arrow {
  color: var(--teal-500);
  font-size: 23px;
  font-weight: 700;
}

.slot > div:last-child {
  text-align: right;
}

.promise-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.promise-note span {
  color: var(--teal-700);
}

.price-calculator-section {
  padding: 78px 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(183, 122, 67, .06), transparent 25rem),
    var(--app-grouped);
}

.price-calculator-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 30px;
  border: 1px solid rgba(16, 42, 42, .08);
  border-radius: 30px;
  background: rgba(249, 250, 248, .94);
  box-shadow: 0 18px 48px rgba(16, 42, 42, .09);
}

.price-calculator-copy h2 {
  max-width: 440px;
  margin: 0 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.045em;
  line-height: 1.1;
}

.price-calculator-copy p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.calculator-share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.calculator-share-actions a,
.calculator-share-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  background: var(--app-card);
  color: var(--teal-800);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 1px 3px rgba(16, 42, 42, .05);
  text-decoration: none;
}

.calculator-share-actions button {
  box-shadow: none;
}

.calculator-share-actions a:hover,
.calculator-share-actions button:hover {
  border-color: rgba(11, 142, 132, .38);
  background: var(--white);
}

.calculator-share-actions button.copied {
  border-color: rgba(34, 199, 184, .48);
  background: rgba(34, 199, 184, .14);
}

.calculator-speed-notes {
  grid-column: 1 / -1;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 13px 16px 13px 32px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--app-control);
  color: var(--app-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.calculator-speed-notes li::marker {
  color: var(--teal-700);
}

.calculator-speed-notes strong {
  color: var(--teal-800);
}

.price-calculator {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--app-border);
  border-radius: 24px;
  background: var(--app-card);
  box-shadow: 0 1px 2px rgba(16, 42, 42, .035);
}

.price-calculator label {
  display: grid;
  gap: 7px;
  color: #536663;
  font-size: 13px;
  font-weight: 700;
}

.price-calculator input,
.price-calculator select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--app-border);
  border-radius: 14px;
  background: var(--app-control);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  outline: none;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.price-calculator input:hover,
.price-calculator select:hover {
  border-color: #cbd7d4;
}

.price-calculator input:focus,
.price-calculator select:focus {
  border-color: rgba(11, 142, 132, .62);
  background: var(--app-card);
  box-shadow: 0 0 0 3px rgba(11, 142, 132, .11);
}

.calculator-input-affix {
  position: relative;
  display: block;
}

.calculator-input-affix input {
  padding-right: 42px;
}

.calculator-input-affix small {
  position: absolute;
  right: 12px;
  top: 50%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-50%);
}

.calculator-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 2px;
  min-height: 94px;
  align-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(11, 142, 132, .2);
  border-radius: 19px;
  background: #f0faf8;
  color: var(--ink);
}

.calculator-result.manual-review {
  border-color: rgba(183, 122, 67, .24);
  background: #fbf5ed;
}

.calculator-result.manual-review span {
  color: var(--kraft-700);
}

.calculator-result span {
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.calculator-result strong {
  font-size: 30px;
  letter-spacing: -.04em;
  line-height: 1;
}

.calculator-result small {
  color: var(--app-secondary);
  font-size: 12px;
  font-weight: 700;
}

.calculator-rate-guide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 9px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--app-control);
}

.calculator-rate-item {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(16, 42, 42, .06);
  border-radius: 11px;
  background: var(--app-card);
}

.calculator-rate-item small {
  color: var(--app-secondary);
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.calculator-rate-item strong {
  color: var(--teal-800);
  font-size: 13px;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.calculator-rate-guide p {
  grid-column: 1 / -1;
  margin: 2px 3px 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.calculator-rate-guide p strong {
  color: var(--kraft-700);
}

.calculator-book-link {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 13px;
  box-shadow: 0 5px 12px rgba(11, 142, 132, .16);
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--app-grouped);
}

#how-it-works {
  background: var(--white);
}

#why-us,
#faq {
  background: var(--app-grouped);
}

.section-dark {
  overflow: visible;
  background: var(--white);
  color: var(--white);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow::before {
  display: none;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--app-border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 42, 42, .055);
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 13px;
  background: rgba(11, 142, 132, .1);
  color: var(--teal-800);
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 28px;
  border: 1px solid var(--app-border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(16, 42, 42, .045);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 15px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 22px;
}

.feature:nth-child(odd) .feature-icon {
  background: var(--sand);
  color: var(--kraft-700);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.business-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.business-simple {
  display: block;
  padding: 68px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 10%, rgba(34, 199, 184, .2), transparent 26rem),
    var(--teal-950);
  box-shadow: 0 24px 60px rgba(6, 63, 60, .2);
}

.business-simple .business-copy {
  max-width: 760px;
}

.business-copy .eyebrow {
  color: #74e4d9;
}

.business-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -.045em;
  line-height: 1.1;
}

.business-copy > p {
  margin: 0 0 28px;
  color: #bad7d4;
  font-size: 17px;
}

.business-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  list-style: none;
}

.business-points li {
  position: relative;
  padding-left: 26px;
  color: #e5f5f3;
  font-size: 14px;
  font-weight: 600;
}

.business-points li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #74e4d9;
  content: '✓';
  font-weight: 900;
}

.dashboard {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}

.dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
}

.dashboard-label {
  color: #bad7d4;
  font-size: 11px;
  font-weight: 700;
}

.dashboard-body {
  padding: 18px;
  border-radius: 18px;
  background: #f8fffd;
  color: var(--ink);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.metric small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 20px;
}

.orders-mini {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.order-mini {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border-radius: 11px;
  background: #eaf8f5;
  font-size: 11px;
  font-weight: 700;
}

.order-mini::before {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
  content: '';
}

.status {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-700);
  font-size: 9px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--app-border);
  border-radius: 24px;
  background: var(--app-card);
  box-shadow: 0 8px 28px rgba(16, 42, 42, .045);
}

.faq-item {
  padding-inline: 22px;
  border-bottom: 1px solid var(--app-border);
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--teal-700);
  font-size: 23px;
  font-weight: 400;
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 38px 22px 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-wrap {
  padding: 0 0 104px;
  background: var(--app-grouped);
}

.cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 52px 58px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 0, rgba(34, 199, 184, .18), transparent 21rem),
    var(--teal-800);
  color: var(--white);
  box-shadow: 0 22px 52px rgba(11, 142, 132, .18);
}

.cta::before {
  display: none;
}

.cta-copy {
  position: relative;
}

.cta h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.04em;
  line-height: 1.1;
}

.cta p {
  margin: 0;
  color: #d8fffb;
}

.cta .button {
  position: relative;
  min-width: 178px;
  background: var(--white);
  color: var(--teal-800);
}

.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid rgba(16, 42, 42, .08);
  background: var(--app-grouped);
  color: var(--app-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .7fr;
  gap: 60px;
}

.footer-brand img {
  width: 232px;
}

.footer-brand > img {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  font-size: 13px;
}

.footer-column h3 {
  margin: 7px 0 17px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}

.footer-column a:hover {
  color: var(--teal-800);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 42, 42, .09);
  font-size: 12px;
}

.footer-made-in {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-love {
  color: var(--teal-700);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.legal-page {
  min-height: 65vh;
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 92% 3%, rgba(11, 142, 132, .07), transparent 24rem),
    var(--app-grouped);
}

.legal-content {
  max-width: 820px;
  padding: 46px;
  border: 1px solid var(--app-border);
  border-radius: 28px;
  background: var(--app-card);
  box-shadow: 0 18px 48px rgba(16, 42, 42, .08);
}

.legal-content h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 50px);
  letter-spacing: -.045em;
}

.track-page {
  background:
    radial-gradient(circle at 92% 4%, rgba(11, 142, 132, .08), transparent 26rem),
    radial-gradient(circle at 8% 12%, rgba(183, 122, 67, .06), transparent 24rem),
    var(--app-grouped);
}

.track-hero {
  min-height: calc(100vh - 76px);
  padding: 90px 0;
}

.track-grid {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: .9fr 1fr;
}

.track-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(16, 42, 42, .08);
  border-radius: 28px;
  background: rgba(249, 250, 248, .94);
  box-shadow: 0 18px 48px rgba(16, 42, 42, .1);
}

.track-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 28px;
  letter-spacing: -.035em;
}

.track-card h2::before {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(11, 142, 132, .11);
  color: var(--teal-800);
  content: '⌖';
  font-size: 17px;
}

.track-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--app-border);
  border-radius: 22px;
  background: var(--app-card);
  box-shadow: 0 1px 2px rgba(16, 42, 42, .035);
}

.track-form label {
  color: #536663;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
}

.track-form input {
  min-width: 0;
  min-height: 48px;
  background: var(--app-control);
  border: 1px solid var(--app-border);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.track-form input:hover {
  border-color: #cbd7d4;
}

.track-form input:focus {
  border-color: rgba(11, 142, 132, .62);
  background: var(--app-card);
  box-shadow: 0 0 0 3px rgba(11, 142, 132, .11);
}

.track-message {
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  padding: 13px 15px;
}

.track-message:empty {
  display: none;
}

.track-message.info {
  border-color: rgba(11, 142, 132, .16);
  background: #f0faf8;
  color: var(--teal-800);
}

.track-message.success {
  border-color: rgba(8, 116, 67, .16);
  background: #e8f8ed;
  color: #087443;
}

.track-message.error {
  border-color: rgba(180, 35, 24, .14);
  background: #fee4e2;
  color: #b42318;
}

.tracking-result {
  background: var(--app-card);
  border: 1px solid var(--app-border);
  border-radius: 22px;
  margin-top: 18px;
  padding: 18px;
  box-shadow: 0 1px 2px rgba(16, 42, 42, .035);
}

.tracking-status {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tracking-status span {
  border: 1px solid rgba(11, 142, 132, .16);
  background: #f0faf8;
  border-radius: 999px;
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  text-transform: uppercase;
}

.tracking-status strong {
  font-size: 20px;
  overflow-wrap: anywhere;
  text-align: right;
}

.tracking-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.tracking-details div {
  background: var(--app-control);
  border: 1px solid var(--app-border);
  border-radius: 15px;
  padding: 13px 14px;
}

.tracking-details dt {
  color: var(--app-secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tracking-details dd {
  font-weight: 800;
  margin: 3px 0 0;
}

.legal-content .updated {
  margin: 7px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content h2 {
  margin: 36px 0 10px;
  color: var(--teal-800);
  font-size: 20px;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  color: #405b59;
  font-size: 14px;
}

.legal-content ul {
  padding-left: 22px;
}

.notice {
  padding: 14px 16px;
  border: 1px solid rgba(183, 122, 67, .18);
  border-left: 4px solid var(--kraft);
  border-radius: 14px;
  background: #fbf5ed;
  color: #674619;
  font-size: 13px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 76px);
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 85% 8%, rgba(11, 142, 132, .08), transparent 24rem),
    var(--app-grouped);
  text-align: center;
}

.not-found > div {
  width: min(100%, 540px);
  padding: 48px 34px;
  border: 1px solid var(--app-border);
  border-radius: 28px;
  background: var(--app-card);
  box-shadow: 0 18px 48px rgba(16, 42, 42, .08);
}

.not-found-mark {
  margin: 0;
  color: var(--teal-700);
  font-size: clamp(90px, 22vw, 180px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  opacity: .16;
}

.not-found h1 {
  margin: -15px 0 8px;
  font-size: 32px;
}

.not-found p {
  max-width: 460px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.booking-page {
  background:
    radial-gradient(circle at 94% 2%, rgba(11, 142, 132, .08), transparent 25%),
    var(--app-grouped);
}

.booking-hero {
  padding: 56px 0 86px;
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: 48px;
  align-items: start;
}

.booking-grid > *,
.booking-card,
.booking-form,
.booking-form fieldset {
  min-width: 0;
}

.booking-grid h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -.055em;
  line-height: 1.04;
}

.booking-card {
  padding: 24px;
  border: 1px solid rgba(16, 42, 42, .08);
  border-radius: 28px;
  background: rgba(249, 250, 248, .94);
  box-shadow: 0 18px 48px rgba(16, 42, 42, .1);
}

.booking-card-head {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 18px;
}

.booking-card-head h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -.04em;
}

.booking-mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin: 0 0 20px;
  padding: 4px;
  border: 1px solid rgba(16, 42, 42, .06);
  border-radius: 15px;
  background: #e9edeb;
}

.mode-tab {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--app-secondary);
  font-size: 13px;
  font-weight: 750;
  padding: 10px 12px;
  text-align: center;
  transition: color .16s ease, background .16s ease, box-shadow .16s ease;
}

.mode-tab small {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
}

.mode-tab.active {
  background: var(--app-card);
  color: var(--teal-800);
  box-shadow: 0 1px 4px rgba(16, 42, 42, .14);
}

.booking-pill {
  white-space: nowrap;
  padding: 7px 11px;
  border: 1px solid rgba(183, 122, 67, .14);
  border-radius: 999px;
  background: #f7efe6;
  color: var(--kraft-700);
  font-size: 12px;
  font-weight: 750;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form fieldset {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 62px 18px 18px;
  border: 1px solid var(--app-border);
  border-radius: 22px;
  background: var(--app-card);
  box-shadow: 0 1px 2px rgba(16, 42, 42, .035);
}

.booking-form legend {
  position: absolute;
  top: 16px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  padding: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.015em;
  line-height: 28px;
  text-transform: none;
}

.booking-form fieldset > legend::before {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: rgba(11, 142, 132, .11);
  color: var(--teal-800);
  content: '↑';
  font-size: 15px;
  font-weight: 800;
}

#drop-fieldset > legend::before {
  background: #f7eee5;
  color: var(--kraft-700);
  content: '↓';
}

#package-fieldset > legend::before {
  background: #f2eee8;
  color: #86613f;
  content: '◇';
}

#payment-fieldset > legend::before {
  content: '₹';
}

.bulk-panel fieldset > legend::before {
  content: '+';
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #536663;
  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--app-border);
  border-radius: 14px;
  background: var(--app-control);
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 12px;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.booking-form input:hover,
.booking-form select:hover,
.booking-form textarea:hover {
  border-color: #cbd7d4;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(11, 142, 132, .62);
  background: var(--app-card);
  box-shadow: 0 0 0 3px rgba(11, 142, 132, .11);
}

.booking-form select:required:invalid,
.booking-form label.field-warning select {
  border-color: #b85c38;
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.12);
}

.booking-form label.field-warning {
  color: #8f3f24;
}

.booking-form input[readonly] {
  background: #f1f3f2;
  color: var(--muted);
  cursor: not-allowed;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.booking-form small.attention {
  color: var(--kraft-700);
  font-weight: 800;
}

.booking-form small:empty {
  display: none;
}

.booking-form .span-2 {
  grid-column: span 2;
}

.location-button {
  width: 100%;
}

.saved-pickup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(11, 142, 132, .28);
  border-radius: 16px;
  background: #eef9f7;
}

.saved-pickup-card > div:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.saved-pickup-card small {
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.saved-pickup-card strong,
.saved-pickup-card span {
  overflow-wrap: anywhere;
}

.saved-pickup-card strong {
  color: var(--teal-800);
  font-size: 14px;
}

.saved-pickup-card span {
  color: var(--app-secondary);
  font-size: 12px;
  line-height: 1.4;
}

.saved-pickup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.saved-pickup-actions .button {
  min-height: 40px;
  padding: 9px 12px;
  font-size: 12px;
}

.booking-form label.save-profile-option,
label.save-profile-option {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--app-control);
  cursor: pointer;
}

.booking-form .save-profile-option input[type="checkbox"] {
  flex: none;
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--teal-700);
}

.save-profile-option span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.save-profile-option strong {
  color: var(--ink);
  font-size: 13px;
}

.location-swap-row {
  position: relative;
  display: grid;
  min-height: 18px;
  place-items: center;
  margin: -9px 0;
}

.location-swap-row::before {
  position: absolute;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 42, 42, .13), transparent);
  content: '';
}

.location-swap-button {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--app-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--teal-800);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 4px 14px rgba(16, 42, 42, .08);
  backdrop-filter: blur(12px);
}

.location-swap-button:hover {
  border-color: rgba(11, 142, 132, .34);
  background: var(--teal-50);
}

.location-swap-button svg {
  width: 18px;
  height: 18px;
}

.location-swap-button.is-swapping svg {
  transform: rotate(180deg);
  transition: transform .2s ease;
}

.bulk-panel {
  display: grid;
  gap: 14px;
}

.bulk-panel[hidden] {
  display: none;
}

#bulk-slot-holder {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.whatsapp-form-handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 142, 132, .2);
  border-radius: 16px;
  background: var(--teal-50);
}

.whatsapp-form-handoff[hidden] {
  display: none;
}

.whatsapp-form-handoff > div {
  display: grid;
  gap: 3px;
}

.whatsapp-form-handoff strong {
  color: var(--teal-800);
  font-size: 13px;
}

.whatsapp-form-handoff span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.whatsapp-form-handoff .button,
.booking-return-whatsapp {
  flex: none;
  min-height: 40px;
  padding: 9px 12px;
  font-size: 12px;
}

.bulk-drops {
  display: grid;
  gap: 14px;
}

.bulk-drop-card {
  border: 1px solid rgba(11, 142, 132, .18);
  border-radius: 18px;
  background: #fbfffe;
  padding: 14px;
}

.bulk-drop-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.bulk-drop-head strong {
  color: var(--teal-800);
  font-size: 14px;
}

.bulk-remove {
  min-height: 38px;
  padding: 9px 12px;
}

.bulk-drop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bulk-drop-grid .span-2 {
  grid-column: span 2;
}

.booking-form .paired-package-control {
  align-content: start;
  grid-template-rows: auto 48px minmax(34px, auto);
  min-width: 0;
}

.booking-form .paired-package-control select {
  height: 48px;
  min-width: 0;
}

.booking-form .paired-package-control > small {
  line-height: 1.4;
  margin: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-row {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfffe;
}

.check-row input {
  width: auto;
}

.quote-result {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(11, 142, 132, .2);
  border-radius: 20px;
  background: var(--teal-50);
}

.quote-result.manual-review {
  border-color: rgba(168, 101, 54, .28);
  background: var(--warm-soft);
}

.quote-result.coupon-applied {
  border-color: rgba(11, 142, 132, .38);
  box-shadow: inset 0 0 0 1px rgba(11, 142, 132, .08);
}

.quote-result del {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  margin-left: 8px;
}

.coupon-entry {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.coupon-entry .button {
  min-height: 48px;
}

#coupon-status.coupon-applied {
  color: var(--teal-800);
}

#coupon-status.coupon-error {
  color: #a14335;
}

.quote-result span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-result strong {
  font-size: 30px;
  letter-spacing: -.04em;
}

.quote-result small {
  color: var(--muted);
  font-weight: 700;
}

.booking-submit-result {
  display: none;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
}

.booking-submit-result:not(:empty) {
  display: grid;
}

.booking-submit-result.info {
  border: 1px solid rgba(11, 142, 132, .2);
  background: var(--teal-50);
  color: var(--teal-800);
}

.booking-submit-result.success {
  border: 1px solid rgba(8, 116, 67, .22);
  background: #e8f8ed;
  color: #087443;
}

.booking-submit-result.error {
  border: 1px solid rgba(180, 35, 24, .18);
  background: #fee4e2;
  color: #b42318;
}

.booking-submit-result a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-complete-modal {
  align-items: center;
  background: rgba(20, 28, 27, .56);
  display: grid;
  inset: 0;
  padding: 20px;
  position: fixed;
  z-index: 100;
}

.booking-complete-modal[hidden] {
  display: none;
}

.booking-complete-card {
  background: var(--white);
  border: 1px solid rgba(217, 238, 234, .95);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  justify-self: center;
  max-width: 480px;
  padding: 30px;
  position: relative;
  text-align: left;
  width: min(100%, 480px);
}

.booking-complete-card h2 {
  font-size: 30px;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin: 16px 0 12px;
}

.booking-complete-card p {
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 20px;
}

.booking-complete-card p strong {
  color: var(--ink);
}

.booking-complete-card .tracking-line {
  margin-top: -8px;
}

.booking-complete-card .button.is-disabled {
  cursor: wait;
  opacity: .58;
  pointer-events: none;
}

.booking-complete-card > .button {
  margin: 4px 8px 0 0;
}

@media (max-width: 760px) {
  #bulk-slot-holder {
    grid-template-columns: 1fr;
  }

  .whatsapp-form-handoff {
    align-items: stretch;
    flex-direction: column;
  }

  .whatsapp-form-handoff .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .coupon-entry {
    grid-template-columns: 1fr;
  }
}

.modal-close {
  align-items: center;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  height: 38px;
  line-height: 1;
  place-items: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
}

body.modal-open {
  overflow: hidden;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 18px;
  }

  .hero-grid,
  .business-grid,
  .price-calculator-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .promise-card {
    max-width: 620px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid {
    gap: 50px;
  }

  .dashboard {
    max-width: 640px;
  }

  .price-calculator-card {
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 184px;
  }

  .footer-brand img {
    width: 184px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(8, 47, 45, .1);
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links > a {
    padding: 13px 8px;
  }

  .nav-links .button {
    margin-top: 8px;
  }

  .hero {
    padding: 52px 0 68px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .promise-card {
    padding: 23px 18px;
    border-radius: 24px;
  }

  .slot {
    padding: 15px 13px;
  }

  .slot strong {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .price-calculator-section {
    padding: 58px 0;
  }

  .price-calculator-card {
    padding: 20px;
    border-radius: 24px;
  }

  .price-calculator {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .calculator-result,
  .calculator-speed-notes,
  .calculator-rate-guide,
  .calculator-book-link {
    grid-column: 1 / -1;
  }

  .calculator-speed-notes {
    grid-column: 1 / -1;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .business-points,
  .metric-row,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .metric strong {
    margin: 0;
  }

  .cta-wrap {
    padding-bottom: 72px;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }

  .cta .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page {
    padding: 34px 0 64px;
  }

.legal-content {
  padding: 28px 20px;
}

.booking-hero {
  padding: 34px 0 64px;
}

.booking-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

.booking-card {
  padding: 18px;
  border-radius: 24px;
}

.booking-card-head {
  display: grid;
}

.booking-form fieldset,
.check-grid,
.bulk-drop-grid {
  grid-template-columns: 1fr;
}

.booking-form .span-2,
.bulk-drop-grid .span-2 {
  grid-column: span 1;
}

.booking-actions {
  justify-content: flex-start;
}

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* The hidden attribute must always win over layout display rules. */
.booking-form [hidden],
.booking-form fieldset[hidden],
.booking-form label[hidden] {
  display: none !important;
}

.backend-only-field {
  display: none !important;
}

.bulk-drop-section {
  margin: 6px 0 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--app-border);
  color: var(--app-secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pay-chips {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pay-chip {
  align-items: flex-start;
  min-width: 0;
  background: var(--app-control);
  border: 1px solid var(--app-border);
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 14px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.pay-chip:hover {
  border-color: var(--teal-500);
}

.pay-chip input {
  accent-color: var(--teal-700);
  flex: none;
  margin-top: 3px;
}

.pay-chip span strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.pay-chip span {
  min-width: 0;
}

.pay-chip span small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 2px;
}

.pay-chip:has(input:checked) {
  background: #f0faf8;
  border-color: rgba(11, 142, 132, .52);
  box-shadow: 0 0 0 3px rgba(11, 142, 132, .09);
}

.bulk-drop-card {
  background: var(--app-control);
  border: 1px solid var(--app-border);
  border-radius: 18px;
  box-shadow: none;
  padding: 16px;
}

.bulk-drop-head strong {
  color: var(--ink);
  font-size: 14px;
  padding: 0;
}

/* Radios inside payment chips must not stretch to full width (mobile fix). */
.booking-form .pay-chip input,
.pay-chip input[type="radio"] {
  width: auto;
  flex: none;
  margin-top: 3px;
}

.pay-chip {
  flex-direction: row;
  align-items: flex-start;
}

/* .booking-form label sets display:grid, which outranks .pay-chip's flex.
   Match its specificity so chips lay out radio-beside-text everywhere. */
.booking-form label.pay-chip,
label.pay-chip {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 460px) {
  .saved-pickup-card {
    grid-template-columns: 1fr;
  }

  .saved-pickup-actions {
    justify-content: stretch;
  }

  .saved-pickup-actions .button {
    flex: 1 1 150px;
  }

  .price-calculator {
    grid-template-columns: 1fr;
  }

  .calculator-result,
  .calculator-rate-guide,
  .calculator-book-link {
    grid-column: auto;
  }
}

/* Public installable app shell. Desktop keeps the existing website layout. */
.mobile-app-nav,
.app-install-button {
  display: none;
}

.app-install-sheet[hidden] {
  display: none;
}

.app-install-sheet {
  position: fixed;
  z-index: 220;
  inset: 0;
  display: grid;
  align-items: end;
}

.app-install-sheet__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 32, 30, .58);
  backdrop-filter: blur(4px);
}

.app-install-sheet__card {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 22px 22px calc(22px + env(safe-area-inset-bottom));
  border: 1px solid var(--line);
  border-radius: 28px 28px 0 0;
  background: var(--white);
  box-shadow: 0 -22px 60px rgba(4, 32, 30, .24);
  animation: install-sheet-in .24s ease-out;
}

.app-install-sheet__card > img {
  width: 76px;
  border: 1px solid #eadfce;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.app-install-sheet__card .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.app-install-sheet__card h2 {
  margin: 0 34px 8px 0;
  font-size: 21px;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.app-install-sheet__card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.app-install-sheet__card .app-install-sheet__hint {
  margin-top: 9px;
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 700;
}

.app-install-sheet__handle {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #cbdad7;
  transform: translateX(-50%);
}

.app-install-sheet__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--sand-50);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
}

.app-install-sheet__done {
  grid-column: 1 / -1;
  width: 100%;
}

body.install-guide-open {
  overflow: hidden;
}

.pwa-update-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 210;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 44px), 480px);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: var(--teal-950);
  color: var(--white);
  box-shadow: 0 22px 50px rgba(4, 32, 30, .28);
}

.pwa-update-toast div {
  display: grid;
  min-width: 0;
}

.pwa-update-toast strong {
  font-size: 14px;
}

.pwa-update-toast span {
  color: #bfe4df;
  font-size: 11px;
}

.pwa-update-refresh,
.pwa-update-close {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.pwa-update-refresh {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 11px;
  background: var(--white);
  color: var(--teal-800);
}

.pwa-update-close {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 20px;
}

@keyframes install-sheet-in {
  from {
    transform: translateY(26px);
    opacity: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
    background: #f8f5ee;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
    border-bottom-color: rgba(217, 238, 234, .92);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 24px rgba(8, 75, 70, .06);
  }

  .nav {
    min-height: 62px;
    gap: 8px;
  }

  .brand {
    margin-right: auto;
  }

  .brand img {
    width: 164px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .nav-links {
    top: calc(62px + env(safe-area-inset-top));
    max-height: calc(100svh - 62px - env(safe-area-inset-top));
    overflow-y: auto;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .app-install-button.is-visible {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 5px;
    padding: 8px 10px;
    border: 1px solid rgba(11, 142, 132, .24);
    border-radius: 12px;
    background: var(--teal-50);
    color: var(--teal-800);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
  }

  .app-install-button svg {
    width: 16px;
    height: 16px;
  }

  .mobile-app-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding: 7px 5px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(200, 224, 220, .94);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 32px rgba(6, 63, 60, .1);
    backdrop-filter: blur(18px);
  }

  .mobile-app-nav > a {
    display: grid;
    min-width: 0;
    place-items: center;
    gap: 2px;
    padding: 3px 1px;
    color: #66807d;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.15;
  }

  .mobile-app-nav > a.active {
    color: var(--teal-800);
  }

  .mobile-app-nav__icon {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 11px;
  }

  .mobile-app-nav__icon svg {
    width: 21px;
    height: 21px;
  }

  .mobile-app-nav > a.active:not(.mobile-app-nav__book) .mobile-app-nav__icon {
    background: var(--teal-50);
  }

  .mobile-app-nav .mobile-app-nav__book {
    position: relative;
    color: var(--teal-800);
    transform: translateY(-9px);
  }

  .mobile-app-nav__book .mobile-app-nav__icon {
    width: 48px;
    height: 48px;
    border: 4px solid var(--white);
    border-radius: 17px;
    background: var(--teal-700);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(11, 142, 132, .32);
  }

  .mobile-app-nav__book .mobile-app-nav__icon svg {
    width: 24px;
    height: 24px;
  }

  .mobile-app-nav__book > span:last-child {
    margin-top: 1px;
  }

  .hero {
    padding: 34px 0 44px;
    background:
      radial-gradient(circle at 94% 2%, rgba(11, 142, 132, .1), transparent 18rem),
      var(--app-grouped);
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 20px;
    line-height: 1.55;
  }

  .hero-telugu {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 52px;
    padding-inline: 14px;
    border-radius: 16px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 22px;
  }

  .trust-item {
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 9px 4px;
    border: 1px solid rgba(217, 238, 234, .9);
    border-radius: 13px;
    background: rgba(255, 255, 255, .72);
    font-size: 9px;
    text-align: center;
  }

  .promise-card {
    padding: 22px 16px 17px;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(6, 63, 60, .13);
  }

  .promise-card::before {
    top: -11px;
    right: 18px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .promise-top {
    margin-bottom: 15px;
  }

  .price-calculator-section {
    padding: 38px 0;
    background:
      radial-gradient(circle at 8% 5%, rgba(183, 122, 67, .06), transparent 25rem),
      var(--app-grouped);
  }

  .price-calculator-card {
    gap: 20px;
    padding: 18px;
    border-radius: 25px;
    background: rgba(249, 250, 248, .94);
    box-shadow: 0 14px 38px rgba(16, 42, 42, .08);
  }

  .price-calculator-copy h2 {
    font-size: 30px;
  }

  .price-calculator {
    padding: 13px;
    border-radius: 20px;
  }

  .section {
    padding: 56px 0;
  }

  .section:not(.section-dark):not(.price-calculator-section) {
    background-color: transparent;
  }

  #how-it-works {
    background-color: var(--white);
  }

  #why-us,
  #faq {
    background-color: var(--app-grouped);
  }

  .steps,
  .feature-grid {
    gap: 12px;
  }

  .step,
  .feature {
    padding: 21px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(6, 63, 60, .06);
  }

  .step {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
  }

  .step-number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step h3 {
    align-self: end;
  }

  .step p {
    grid-column: 2;
  }

  .cta-wrap {
    padding-bottom: 42px;
  }

  .cta {
    border-radius: 24px;
  }

  .business-simple {
    padding: 34px 26px;
    border-radius: 25px;
  }

  .booking-hero {
    min-height: calc(100svh - 62px);
    padding: 22px 0 42px;
  }

  .booking-card,
  .track-card,
  .legal-content {
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(6, 63, 60, .1);
  }

  .track-hero {
    min-height: calc(100svh - 62px);
    padding: 34px 0 46px;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .pwa-update-toast {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border-radius: 16px;
  }

  .pwa-update-close {
    position: absolute;
    top: -9px;
    right: -5px;
    border: 2px solid var(--white);
    background: var(--teal-950);
  }
}

@media (max-width: 390px) {
  .brand img {
    width: 148px;
  }

  .app-install-button.is-visible {
    padding-inline: 8px;
  }

  .app-install-button span {
    display: none;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .app-install-sheet__card {
    grid-template-columns: 62px 1fr;
    padding-inline: 18px;
  }

  .app-install-sheet__card > img {
    width: 62px;
    border-radius: 17px;
  }
}

/* Bottom app-nav press feedback: instant, intentional response instead of a bare flash. */
@media (max-width: 760px) {
  .mobile-app-nav > a {
    touch-action: manipulation;
  }

  .mobile-app-nav__icon {
    transition: transform .12s ease, background-color .12s ease;
  }

  .mobile-app-nav > a:active:not(.mobile-app-nav__book) .mobile-app-nav__icon {
    background: var(--teal-50);
    transform: scale(.9);
  }

  .mobile-app-nav__book:active .mobile-app-nav__icon {
    transform: scale(.92);
    box-shadow: 0 5px 12px rgba(11, 142, 132, .3);
  }
}
