:root {
  --green: #0b5d3b;
  --green-2: #087443;
  --green-3: #dff2e4;
  --ink: #17221b;
  --muted: #66736a;
  --yellow: #ffc928;
  --cream: #fff9ec;
  --off: #f5f7f3;
  --line: #dde5de;
  --white: #fff;
  --red: #b42318;
  --shadow: 0 18px 50px rgba(15, 61, 39, 0.11);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button,
a {
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 201, 40, 0.75);
  outline-offset: 2px;
}

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

.eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.9px;
  color: var(--green-2);
}

.on-dark {
  color: #a9df83;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--yellow);
  color: #17221b;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 201, 40, 0.2);
  transition: 0.2s;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #ffd451;
}

.primary-button:disabled {
  opacity: 0.45;
  transform: none;
  cursor: not-allowed;
}

.outline-button {
  border: 1px solid var(--green);
  background: white;
  color: var(--green);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 750;
}

.wide {
  width: 100%;
}

.text-link {
  border: 0;
  background: none;
  color: var(--green);
  font-weight: 750;
  padding: 8px;
}

.back-link {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 24px;
}

.inline-error,
.form-message {
  background: #fff0ee;
  border: 1px solid #ffc7c2;
  color: #8f1f17;
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 12px;
  margin: 12px 0;
}

.soft-note {
  background: #eaf5ec;
  border-radius: 13px;
  padding: 15px;
}

.soft-note p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 0;
}

.loading-page,
.error-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}

.loading-card {
  width: 60%;
  height: 300px;
  border-radius: 22px;
  background: linear-gradient(90deg, #eef2ee, #fafcf9, #eef2ee);
  background-size: 200%;
  animation: shimmer 1.6s infinite;
}

.error-page {
  display: flex;
  flex-direction: column;
}

.error-page h1 {
  font:
    500 44px Georgia,
    serif;
  margin-bottom: 5px;
}

.error-page p {
  color: var(--muted);
}

@keyframes shimmer {
  to {
    background-position: -200%;
  }
}

.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11, 93, 59, 0.1);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.brand-mark,
.ticket-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--yellow);
  font:
    italic 26px Georgia,
    serif;
  border-radius: 13px;
  box-shadow: inset -7px -7px rgba(0, 0, 0, 0.06);
}

.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.6px;
  color: #789184;
}

.site-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 650;
  color: #455349;
  border-radius: 9px;
}

.site-nav a:hover {
  background: #edf7ef;
  color: var(--green);
}

.menu-trigger {
  display: none;
  border: 0;
  background: none;
  font-weight: 800;
}

.mobile-nav {
  display: none;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a563;
  color: white;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(4, 90, 49, 0.3);
}

.hero {
  background: var(--cream);
  padding: 70px 0 95px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 365px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1,
.tour-hero h1 {
  font:
    500 64px/1.01 Georgia,
    serif;
  letter-spacing: -3px;
  margin: 16px 0 20px;
}

.hero-copy h1 em {
  color: var(--green);
  font-weight: 500;
}

.hero-copy > p {
  font-size: 18px;
  line-height: 1.65;
  color: #536058;
  max-width: 620px;
}

.trust-row {
  display: flex;
  gap: 22px;
  margin-top: 27px;
  font-size: 13px;
  font-weight: 750;
  color: #46564c;
}

.hero-visual {
  height: 360px;
  position: relative;
}

.hero-sun {
  position: absolute;
  width: 255px;
  height: 255px;
  border-radius: 50%;
  background: #ffdc70;
  right: 45px;
  top: 0;
  opacity: 0.75;
}

.gateway-shape {
  position: absolute;
  right: -20px;
  top: 45px;
  color: rgba(11, 93, 59, 0.14);
  font: 900 80px Arial;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
}

.hero-road {
  position: absolute;
  width: 450px;
  height: 150px;
  right: -25px;
  bottom: 15px;
  border: 25px solid var(--green);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.bus-shape {
  position: absolute;
  z-index: 2;
  width: 310px;
  height: 135px;
  right: 70px;
  top: 128px;
  background: white;
  border: 4px solid var(--green);
  border-radius: 28px 45px 14px 14px;
  box-shadow: 0 22px 35px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.bus-shape:before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 47px;
  background: #18352a;
  border-radius: 16px 25px 4px 4px;
  box-shadow: inset 92px 0 #6a8e7a;
}

.bus-shape > b {
  position: absolute;
  top: 76px;
  left: 92px;
  color: var(--green);
  letter-spacing: 3px;
}

.bus-shape > span {
  position: absolute;
  top: 98px;
  left: 100px;
  font-size: 7px;
  letter-spacing: 1px;
}

.bus-shape > i {
  position: absolute;
  bottom: -10px;
  left: 45px;
  font-size: 42px;
  font-style: normal;
}

.search-wrap {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 36px 1fr 1fr 0.8fr auto;
  align-items: center;
  background: white;
  border: 1px solid rgba(11, 93, 59, 0.09);
  border-radius: 18px;
  padding: 11px;
  box-shadow: var(--shadow);
}

.search-form label {
  display: flex;
  flex-direction: column;
  padding: 5px 14px;
  border-right: 1px solid var(--line);
}

.search-form label span {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--muted);
  margin-bottom: 5px;
}

.search-form input,
.search-form select {
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
  font-weight: 750;
}

.search-submit {
  white-space: nowrap;
  margin-left: 8px;
}

.search-error {
  grid-column: 1/-1;
  color: var(--red);
  background: #fff0ee;
  border-radius: 8px;
  padding: 9px 12px;
  margin: 8px 0 0;
  font-size: 12px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.quick-links a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  grid-template-rows: 23px 22px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: 0.2s;
}

.quick-links a:hover {
  border-color: #99c7a8;
  box-shadow: 0 12px 30px rgba(13, 73, 46, 0.09);
  transform: translateY(-2px);
}

.quick-links span {
  grid-row: 1/3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e7f4e9;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.quick-links b {
  font-size: 15px;
}

.quick-links small {
  color: var(--muted);
}

.quick-links i {
  grid-column: 3;
  grid-row: 1/3;
  align-self: center;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.section {
  padding: 88px 0;
}

.muted-section {
  background: var(--off);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.tour-promo h2,
.review-section h2,
.faq h2,
.tour-content h2 {
  font:
    500 43px Georgia,
    serif;
  letter-spacing: -1.4px;
  margin: 10px 0 0;
}

.section-heading > p {
  color: var(--muted);
}

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

.offer-card {
  min-height: 245px;
  padding: 26px;
  border-radius: 21px;
  position: relative;
  overflow: hidden;
}

.offer-card:after {
  content: "%";
  position: absolute;
  right: -2px;
  bottom: -43px;
  font:
    170px Georgia,
    serif;
  opacity: 0.06;
}

.offer-0 {
  background: #dff3e0;
}

.offer-1 {
  background: #fff1b9;
}

.offer-2 {
  background: #e7eee9;
}

.offer-card > span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.offer-card h3 {
  font:
    500 26px Georgia,
    serif;
  max-width: 260px;
  margin: 18px 0 10px;
}

.offer-card p {
  color: #5d685f;
  font-size: 14px;
}

.offer-card button {
  position: absolute;
  z-index: 2;
  bottom: 23px;
  left: 26px;
  border: 1px dashed rgba(11, 93, 59, 0.45);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 13px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}

.offer-card code {
  font: 800 12px Arial;
  color: var(--green);
  margin-right: 16px;
}

.tour-promo {
  background: var(--green);
  color: white;
  padding: 88px 0;
  overflow: hidden;
}

.tour-promo-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.tour-promo p {
  color: #c7dcd0;
  line-height: 1.65;
  max-width: 560px;
}

.metric-row {
  display: flex;
  gap: 42px;
  margin: 32px 0;
}

.metric-row span {
  font-size: 11px;
  color: #bad0c4;
}

.metric-row b {
  display: block;
  font:
    500 24px Georgia,
    serif;
  color: white;
  margin-bottom: 4px;
}

.day-card {
  background: white;
  color: var(--ink);
  padding: 24px;
  border-radius: 23px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.day-card > span {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  font-weight: 900;
  color: var(--muted);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.day-card > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  padding: 13px 4px;
  border-bottom: 1px solid #edf0ed;
}

.day-card i {
  font-style: normal;
  font-size: 10px;
  color: var(--green);
  font-weight: 900;
}

.day-card small {
  color: var(--muted);
  font-size: 10px;
}

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

.route-grid a {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.route-grid a:hover {
  border-color: var(--green);
}

.route-grid span {
  font-weight: 800;
}

.route-grid i {
  color: var(--green);
  font-style: normal;
}

.route-grid small {
  color: var(--muted);
  margin: 10px 0;
}

.route-grid b {
  color: var(--green);
  font-size: 13px;
}

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

.benefit-grid article {
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 17px;
}

.benefit-grid i {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green);
  color: var(--yellow);
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}

.benefit-grid h3 {
  margin: 18px 0 7px;
}

.benefit-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.review-section {
  background: #132a20;
  color: white;
  padding: 88px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 23px;
}

.big-rating {
  font:
    500 56px Georgia,
    serif;
  margin-top: 31px;
  display: flex;
  gap: 16px;
}

.big-rating span {
  font: 15px Arial;
  color: var(--yellow);
  letter-spacing: 3px;
}

.big-rating small {
  display: block;
  color: #aebdb5;
  letter-spacing: 0;
  font-size: 10px;
  margin-top: 7px;
}

.review-section blockquote {
  margin: 0;
  background: #1c382b;
  border: 1px solid #315342;
  border-radius: 19px;
  padding: 29px;
  font:
    italic 21px/1.5 Georgia,
    serif;
  color: #e9f1ec;
}

.review-section blockquote footer {
  border-top: 1px solid #315342;
  margin-top: 26px;
  padding-top: 17px;
  display: flex;
  flex-direction: column;
  font: normal 13px Arial;
}

.review-section blockquote footer span {
  color: #a4b8ad;
  margin-top: 4px;
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 80px;
}

.faq > div:first-child p {
  color: var(--muted);
}

.faq article {
  border-bottom: 1px solid var(--line);
}

.faq article button {
  width: 100%;
  border: 0;
  background: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.faq article button span {
  color: var(--green);
  font-size: 20px;
}

.faq article p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  transition: 0.25s;
}

.faq article.open p {
  max-height: 110px;
  padding-bottom: 20px;
}

.site-footer {
  background: #10271d;
  color: white;
  padding: 58px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 45px;
}

.site-footer .brand {
  color: white;
}

.footer-grid > div:first-child p {
  max-width: 310px;
  color: #a8bbb0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid > div:first-child > span {
  font-size: 12px;
  color: #cbd8d0;
  line-height: 1.7;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-grid > div > b {
  color: #a8db80;
  font-size: 12px;
  margin-bottom: 5px;
}

.footer-grid a {
  color: #b8c8bf;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid #294237;
  margin-top: 38px;
  padding-top: 19px;
  display: flex;
  justify-content: space-between;
  color: #81988b;
  font-size: 10px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(7, 25, 16, 0.68);
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-modal,
.confirm-dialog,
.ticket-modal,
.admin-modal {
  width: min(440px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: white;
  border-radius: 22px;
  padding: 29px;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: none;
  font-size: 25px;
}

.auth-modal > .eyebrow {
  display: block;
  margin-top: 25px;
}

.auth-modal h2,
.confirm-dialog h2,
.admin-modal h2 {
  font:
    500 30px Georgia,
    serif;
  margin: 8px 0;
}

.auth-modal > p,
.confirm-dialog p,
.admin-modal > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.auth-modal label,
.payment-form label,
.passenger-card label,
.contact-card label,
.admin-modal label,
.form-section label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 800;
  margin: 12px 0;
}

.auth-modal input,
.payment-form input,
.payment-form select,
.passenger-card input,
.passenger-card select,
.contact-card input,
.contact-card select,
.admin-modal input,
.admin-modal select,
.form-section input,
.form-section select,
.form-section textarea,
.admin-filters input,
.admin-filters select {
  display: block;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  margin-top: 7px;
  text-transform: none;
  letter-spacing: 0;
}

.phone-input {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 9px;
  margin-top: 7px;
  align-items: center;
}

.phone-input span {
  padding: 0 12px;
  border-right: 1px solid var(--line);
}

.phone-input input {
  border: 0;
  margin: 0;
}

.auth-switches {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.auth-switches button {
  border: 0;
  background: none;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
}

.route-toolbar {
  background: #f0f6f1;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.route-toolbar > .container {
  display: flex;
  align-items: center;
  gap: 17px;
}

.route-toolbar > .container > a {
  font-size: 20px;
}

.route-toolbar .container > div {
  display: flex;
  flex-direction: column;
}

.route-toolbar b {
  font-size: 18px;
}

.route-toolbar b span {
  color: var(--green);
  margin: 0 7px;
}

.route-toolbar small {
  color: var(--muted);
  margin-top: 3px;
}

.route-toolbar .outline-button {
  margin-left: auto;
}

.modify-search {
  margin-top: 14px;
}

.modify-search .search-form {
  box-shadow: none;
}

.results-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 27px;
  padding-top: 28px;
  padding-bottom: 75px;
}

.filter-panel {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  height: max-content;
  overflow: hidden;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-header button {
  border: 0;
  background: none;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.filter-group {
  border-top: 1px solid var(--line);
  padding: 17px 0;
}

.filter-group > b {
  display: flex;
  justify-content: space-between;
  padding: 0 18px 8px;
  font-size: 13px;
}

.filter-group strong {
  color: var(--green);
}

.filter-group > input {
  width: calc(100% - 36px);
  margin: 12px 18px;
  accent-color: var(--green);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  font-size: 12px;
}

.check-row input {
  display: none;
}

.check-row span {
  width: 17px;
  height: 17px;
  border: 1px solid #a7b4aa;
  border-radius: 5px;
}

.check-row input:checked + span {
  background: var(--green);
  box-shadow: inset 0 0 0 4px white;
}

.filter-apply {
  display: none;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.results-header > div {
  display: flex;
  flex-direction: column;
}

.results-header span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}

.results-header label {
  font-size: 10px;
  color: var(--muted);
}

.results-header select {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
}

.mobile-filter {
  display: none;
}

.bus-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 15px;
  background: white;
  overflow: hidden;
  transition: 0.2s;
}

.bus-card:hover {
  border-color: #b6d0be;
  box-shadow: 0 14px 35px rgba(18, 66, 42, 0.08);
}

.bus-card-top {
  display: flex;
  justify-content: space-between;
  padding: 21px 21px 11px;
}

.operator-label {
  font-size: 10px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.bus-card h2 {
  font-size: 20px;
  margin: 6px 0 4px;
}

.bus-card p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.rating-badge {
  background: #e9f6eb;
  color: var(--green);
  font-weight: 850;
  border-radius: 9px;
  padding: 8px 9px;
  height: max-content;
}

.rating-badge small {
  display: block;
  font-size: 8px;
  color: var(--muted);
  margin-top: 4px;
}

.journey-line {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  padding: 16px 21px;
}

.journey-line > div {
  display: flex;
  flex-direction: column;
}

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

.journey-line b {
  font-size: 21px;
}

.journey-line span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

.journey-line i {
  height: 1px;
  background: #a6b3a9;
  position: relative;
}

.journey-line i:before,
.journey-line i:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: white;
  top: -4px;
}

.journey-line i:after {
  right: 0;
}

.journey-line small {
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
  font-style: normal;
  color: var(--muted);
  white-space: nowrap;
}

.amenity-list {
  display: flex;
  gap: 9px;
  padding: 0 21px 17px;
  overflow: auto;
}

.amenity-list span {
  white-space: nowrap;
  background: #f1f5f2;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 9px;
  color: #536158;
}

.bus-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #fbfcfb;
  padding: 13px 21px;
}

.bus-card-bottom > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.offer-badge {
  background: #fff0bb;
  color: #8b5800;
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 9px;
  font-weight: 900;
}

.bus-card-bottom small {
  font-size: 9px;
  color: var(--muted);
}

.fare-block {
  display: flex;
  align-items: center;
  gap: 11px;
}

.fare-block > small {
  display: flex;
  flex-direction: column;
}

.fare-block > b {
  font-size: 22px;
}

.fare-block .primary-button {
  padding: 11px 16px;
  font-size: 12px;
}

.empty-state {
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 70px 20px;
}

.empty-state > span {
  font-size: 45px;
  color: #9bae9f;
}

.empty-state h2 {
  font:
    500 28px Georgia,
    serif;
  margin-bottom: 5px;
}

.empty-state p {
  color: var(--muted);
}

.booking-toolbar {
  background: #f1f7f3;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.booking-toolbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.booking-toolbar a {
  font-size: 12px;
  color: var(--green);
  font-weight: 750;
}

.booking-toolbar .container > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.booking-toolbar span {
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}

.stepper {
  display: flex;
  gap: 38px;
  margin-left: auto;
  position: relative;
}

.stepper:before {
  content: "";
  position: absolute;
  height: 1px;
  background: #b8c6bc;
  left: 13px;
  right: 13px;
  top: 13px;
}

.stepper > span {
  position: relative;
  z-index: 2;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #dbe4dd;
  display: grid;
  place-items: center;
}

.stepper > span.active {
  background: var(--green);
  color: white;
}

.stepper b {
  font-size: 11px;
}

.stepper i {
  position: absolute;
  top: 31px;
  color: var(--muted);
  font-style: normal;
  font-size: 9px;
  white-space: nowrap;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 335px;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 75px;
}

.page-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 19px;
}

.page-title h1 {
  font:
    500 34px Georgia,
    serif;
  margin: 7px 0 0;
}

.page-title > span {
  background: #e4f3e6;
  color: var(--green);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
}

.seat-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8faf7;
  padding: 27px;
  display: grid;
  grid-template-columns: minmax(300px, 450px) 1fr;
  gap: 30px;
}

.seat-map-wrap {
  display: grid;
  gap: 18px;
}

.coach {
  background: white;
  border: 2px solid #b9c5bc;
  border-radius: 36px 36px 17px 17px;
  padding: 18px 22px 23px;
}

.coach-front {
  display: flex;
  justify-content: space-between;
  height: 45px;
  border-bottom: 1px dashed #cbd4cd;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1px;
}

.coach-front b {
  font-size: 27px;
  color: var(--ink);
}

.seat-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

.coach.\32 x1-sleeper .seat-map {
  grid-template-columns: repeat(4, 1fr);
}

.seat {
  height: 49px;
  border: 1.5px solid var(--green);
  background: white;
  border-radius: 8px 8px 5px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.seat:after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 3px;
  background: #dce8df;
  border-radius: 3px;
}

.seat span {
  font-weight: 850;
  font-size: 12px;
}

.seat small {
  font-size: 7px;
  color: var(--muted);
  margin-top: 3px;
}

.seat:hover:not(:disabled) {
  background: #fff3b8;
  transform: scale(1.03);
}

.seat.selected {
  background: var(--green);
  color: white;
}

.seat.selected small {
  color: #d5e8dc;
}

.seat.booked,
.seat.disabled {
  background: #e5e8e6;
  border-color: #c4cbc6;
  color: #929a94;
  cursor: not-allowed;
}

.seat.ladies {
  background: #fff0f6;
  border-color: #df5c98;
}

.seat.reserved {
  background: #e7f7fd;
  border-color: #44a3c4;
}

.emergency-label {
  width: 125px;
  margin: 16px auto 0;
  background: #bd392f;
  color: white;
  padding: 6px;
  border-radius: 5px;
  text-align: center;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.seat-guide h3 {
  margin-top: 4px;
}

.seat-guide > span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
}

.seat-guide > span i,
.seat-builder-legend i {
  width: 24px;
  height: 17px;
  border: 1px solid var(--green);
  border-radius: 4px;
}

.seat-guide i.selected {
  background: var(--green);
}

.seat-guide i.booked,
.seat-builder-legend i.disabled {
  background: #e5e8e6;
  border-color: #c4cbc6;
}

.seat-guide i.ladies,
.seat-builder-legend i.ladies {
  background: #fff0f6;
  border-color: #df5c98;
}

.seat-guide i.reserved,
.seat-builder-legend i.reserved {
  background: #e7f7fd;
  border-color: #44a3c4;
}

.stop-search {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 850;
  color: var(--muted);
  margin-bottom: 15px;
}

.stop-search input {
  display: block;
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-top: 7px;
}

.stop-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stop-columns > div {
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
}

.stop-columns h3 {
  padding: 17px;
  margin: 0;
  background: #f6f8f5;
}

.stop-row {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-top: 1px solid #edf0ed;
}

.stop-row.selected {
  background: #eff8f0;
}

.stop-row input {
  accent-color: var(--green);
}

.stop-row span {
  display: flex;
  flex-direction: column;
}

.stop-row small {
  font-size: 9px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

.stop-row strong {
  font-size: 11px;
  color: var(--green);
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.passenger-card,
.contact-card {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr 0.8fr;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 19px;
  margin-bottom: 13px;
}

.passenger-card > div {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
}

.passenger-card > div span {
  background: #e5f3e7;
  color: var(--green);
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 900;
}

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

.contact-card h3 {
  grid-column: 1/-1;
  margin: 0;
}

.passenger-submit {
  float: right;
  margin-top: 10px;
}

.booking-summary {
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 22px;
  height: max-content;
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 30px rgba(19, 61, 41, 0.06);
}

.booking-summary h3 {
  margin: 8px 0 4px;
}

.booking-summary > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 0;
}

.booking-summary dl {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.booking-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0;
}

.booking-summary dt {
  font-size: 10px;
  color: var(--muted);
}

.booking-summary dd {
  margin: 0;
  text-align: right;
  font-size: 10px;
  max-width: 180px;
}

.booking-summary > label {
  display: block;
  font-size: 10px;
  font-weight: 850;
  margin-top: 15px;
}

.booking-summary > label > div {
  display: flex;
  margin-top: 6px;
}

.booking-summary input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 8px 0 0 8px;
}

.booking-summary label button {
  border: 1px solid var(--green);
  background: white;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  border-radius: 0 8px 8px 0;
}

.promo-success,
.promo-error {
  font-size: 9px;
  margin: 7px 0;
}

.promo-success {
  color: var(--green);
}

.promo-error {
  color: var(--red);
}

.remove-promo {
  border: 0;
  background: none;
  color: var(--red);
  font-size: 9px;
  padding: 0;
}

.price-lines {
  border-top: 1px solid var(--line);
  margin-top: 13px;
  padding: 10px 0;
}

.price-lines span {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin: 8px 0;
}

.price-lines .discount {
  color: var(--green);
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.total-row b {
  font-size: 23px;
}

.secure-note {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 8px;
  margin-top: 12px;
}

.darshan-route-card {
  border-color: #cfe3d4;
}

.darshan-route-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #e6f4e9;
  color: var(--green);
  font-size: 9px;
  line-height: 1.25;
  text-align: center;
  font-weight: 900;
  letter-spacing: 1px;
}

.darshan-route-facts {
  display: grid;
  grid-template-columns: 1fr 1.45fr 0.8fr;
  gap: 1px;
  margin: 6px 21px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
  background: var(--line);
}

.darshan-route-facts span {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px;
  background: #fbfdfb;
}

.darshan-route-facts small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.darshan-route-facts b {
  font-size: 13px;
}

.darshan-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: #fbfcfb;
  padding: 13px 21px;
}

.darshan-actions button {
  font-size: 11px;
  padding: 10px 14px;
}

.pickup-details,
.darshan-seat-panel {
  border-top: 1px solid var(--line);
  padding: 22px;
  background: #f8fbf8;
}

.pickup-details h3 {
  margin: 0 0 17px;
  font-size: 15px;
}

.pickup-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
}

.pickup-timeline > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 13px;
  position: relative;
  padding: 0 0 16px 18px;
  min-width: 0;
}

.pickup-timeline > div:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: white;
}

.pickup-timeline > div:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 15px;
  bottom: 1px;
  width: 1px;
  background: #b9d4c0;
}

.pickup-timeline > div.destination:before {
  background: var(--yellow);
  border-color: var(--green);
}

.pickup-timeline time {
  font-size: 10px;
  font-weight: 850;
  color: var(--green);
  white-space: nowrap;
}

.pickup-timeline span {
  font-size: 11px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.darshan-seat-panel {
  background: #f4f8f4;
}

.seat-map-wrapper {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 3px 12px;
}

.darshan-coach {
  width: 430px;
  min-width: 430px;
  margin: auto;
  background: white;
  border: 2px solid #a9c3b0;
  border-radius: 34px 34px 18px 18px;
  padding: 17px 24px 22px;
  box-shadow: 0 8px 22px rgba(20, 72, 45, 0.07);
}

.darshan-coach-front {
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dashed #b9c9bd;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
}

.darshan-coach-front span {
  font-size: 27px;
  color: var(--ink);
}

.darshan-seat-section {
  display: grid;
  grid-template-columns: repeat(2, 64px) 38px repeat(2, 64px);
  grid-auto-rows: 56px;
  gap: 7px;
  justify-content: center;
  margin-bottom: 12px;
}

.darshan-seat-section.front {
  border-bottom: 1px dashed #d3ddd5;
  padding-bottom: 15px;
}

.darshan-seat-section.lower {
  grid-template-columns: repeat(5, 64px);
  border-top: 1px dashed #d3ddd5;
  padding-top: 14px;
}

.darshan-seat {
  width: 64px;
  height: 50px;
  border: 2px solid #2d8b55;
  background: #dff3e5;
  color: #174a30;
  border-radius: 9px 9px 6px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.15s;
  position: relative;
}

.darshan-seat:after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.18;
}

.darshan-seat span {
  font-size: 11px;
  font-weight: 900;
}

.darshan-seat small {
  font-size: 8px;
  margin-top: 2px;
}

.darshan-seat:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(13, 93, 57, 0.18);
}

.darshan-seat.selected {
  background: white;
  color: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.8);
}

.darshan-seat.booked {
  background: #fff4f2;
  color: #9e2a22;
  border-color: #d25b51;
  cursor: not-allowed;
  opacity: 0.72;
}

.darshan-seat.lower-price:not(.selected) {
  background: #e3f3fb;
  color: #246f91;
  border-color: #52a1c5;
}

.darshan-seat.female:not(.selected):not(.booked) {
  background: #fff0f6;
  color: #a63f70;
  border-color: #dc72a2;
}

.darshan-emergency {
  width: 130px;
  margin: 7px auto 0;
  padding: 6px;
  border-radius: 5px;
  background: #b83a31;
  color: white;
  text-align: center;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.darshan-seat-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 17px;
  margin: 18px 0;
}

.darshan-seat-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 9px;
}

.darshan-seat-legend i {
  width: 19px;
  height: 14px;
  border: 2px solid #2d8b55;
  border-radius: 4px;
  background: #dff3e5;
}

.darshan-seat-legend i.selected {
  background: white;
  box-shadow: 0 0 0 2px rgba(255, 201, 40, 0.8);
}

.darshan-seat-legend i.booked {
  background: #fff4f2;
  border-color: #d25b51;
}

.darshan-seat-legend i.lower-price {
  background: #e3f3fb;
  border-color: #52a1c5;
}

.darshan-seat-legend i.female {
  background: #fff0f6;
  border-color: #dc72a2;
}

.seat-selection-summary {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr auto;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px;
}

.seat-selection-summary p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.seat-selection-summary b {
  color: var(--ink);
  font-size: 12px;
}

.seat-selection-summary button {
  font-size: 11px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .darshan-route-facts {
    grid-template-columns: 1fr 1fr;
    margin-inline: 15px;
  }
  .darshan-route-facts span:last-child {
    grid-column: 1/-1;
  }
  .darshan-actions {
    padding-inline: 15px;
    justify-content: stretch;
  }
  .darshan-actions button {
    flex: 1;
  }
  .pickup-timeline {
    grid-template-columns: 1fr;
  }
  .pickup-timeline > div {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .pickup-details,
  .darshan-seat-panel {
    padding: 17px 14px;
  }
  .darshan-coach {
    margin-left: 0;
  }
  .seat-selection-summary {
    grid-template-columns: 1fr 1fr;
  }
  .seat-selection-summary p:first-child,
  .seat-selection-summary button {
    grid-column: 1/-1;
  }
  .seat-selection-summary button {
    width: 100%;
  }
}

.payment-page {
  background: #f6f8f5;
  padding: 34px 0 75px;
}

.payment-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
}

.payment-layout h1 {
  font:
    500 40px Georgia,
    serif;
  margin: 8px 0 23px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.payment-methods button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
  text-align: left;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.payment-methods button.active {
  border: 2px solid var(--green);
  background: #f1f8f2;
}

.payment-methods i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #edf3ee;
  color: var(--green);
  font-style: normal;
  font-size: 8px;
  font-weight: 900;
}

.payment-methods span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 800;
}

.payment-methods small {
  font-size: 8px;
  color: var(--muted);
  margin-top: 3px;
}

.payment-form {
  background: white;
  border: 1px solid var(--line);
  padding: 21px;
  border-radius: 15px;
  margin-top: 14px;
}

.payment-form h2 {
  font-size: 18px;
}

.form-row,
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.demo-notice {
  font-size: 9px;
  color: var(--muted);
  background: #f3f6f3;
  padding: 9px;
  border-radius: 7px;
}

.payment-summary {
  background: #153a29;
  color: white;
  border-radius: 21px;
  padding: 25px;
  height: max-content;
  position: sticky;
  top: 100px;
}

.payment-summary h2 {
  margin-top: 28px;
}

.payment-summary > p {
  color: #aec3b8;
}

.payment-summary dl {
  border-top: 1px solid #406150;
  border-bottom: 1px solid #406150;
  padding: 10px 0;
}

.payment-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  margin: 10px 0;
}

.payment-summary dt {
  color: #9db4a8;
}

.payment-summary dd {
  text-align: right;
  margin: 0;
}

.payment-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
}

.payment-total b {
  font-size: 24px;
  color: var(--yellow);
}

.confirmation-page {
  min-height: 820px;
  background: #edf7ef;
  padding: 65px 20px;
  text-align: center;
}

.confirmation-wrap {
  max-width: 690px;
  margin: auto;
}

.success-icon {
  width: 61px;
  height: 61px;
  margin: auto;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 0 0 10px rgba(11, 93, 59, 0.1);
}

.confirmation-page h1 {
  font:
    500 44px Georgia,
    serif;
  margin: 23px 0 7px;
}

.confirmation-page > div > p {
  color: var(--muted);
}

.ticket {
  background: white;
  border-radius: 21px;
  margin: 28px 0 16px;
  text-align: left;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ticket header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px dashed #bcc8bf;
}

.ticket header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ticket header > div:last-child {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.ticket header small {
  font-size: 8px;
  color: var(--muted);
}

.ticket header strong {
  letter-spacing: 2px;
  color: var(--green);
}

.ticket-route {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  padding: 22px 24px;
}

.ticket-route > div {
  display: flex;
  flex-direction: column;
}

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

.ticket-route span,
.ticket-route small {
  font-size: 9px;
  color: var(--muted);
  margin: 3px 0;
}

.ticket-route i {
  text-align: center;
  color: var(--green);
  font-style: normal;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f5f8f5;
  padding: 17px 24px;
  gap: 15px;
}

.ticket-grid span {
  display: flex;
  flex-direction: column;
  font-size: 8px;
  color: var(--muted);
  text-transform: uppercase;
}

.ticket-grid b {
  font-size: 11px;
  color: var(--ink);
  text-transform: none;
  margin-top: 4px;
}

.ticket footer {
  padding: 12px 24px;
  font-size: 8px;
  color: var(--muted);
}

.ticket-actions {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-bottom: 17px;
}

.ticket-actions button {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}

.confirmation-wrap > .text-link {
  display: block;
  margin-top: 8px;
}

.my-bookings-page {
  background: #f7f9f6;
  min-height: 700px;
  padding: 65px 0 95px;
}

.my-bookings-page h1 {
  font:
    500 44px Georgia,
    serif;
  margin: 8px 0 22px;
}

.booking-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 23px;
}

.booking-tabs button {
  border: 0;
  background: none;
  padding: 12px 20px;
  font-weight: 800;
  border-bottom: 3px solid transparent;
  text-transform: capitalize;
}

.booking-tabs button.active {
  color: var(--green);
  border-color: var(--green);
}

.booking-tabs span {
  background: #e3eae5;
  border-radius: 7px;
  padding: 2px 6px;
  margin-left: 6px;
  font-size: 9px;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 21px;
  margin-bottom: 12px;
}

.status-badge {
  display: inline-block;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  background: #e5f4e7;
  color: var(--green);
}

.status-badge.cancelled,
.status-badge.inactive {
  background: #f3e8e7;
  color: #9a342d;
}

.status-badge.completed,
.status-badge.paid {
  background: #e8f1f5;
  color: #27657b;
}

.status-badge.maintenance,
.status-badge.boarding {
  background: #fff2c8;
  color: #8a6500;
}

.booking-card small {
  margin-left: 7px;
  color: var(--muted);
}

.booking-card h2 {
  margin: 12px 0 5px;
  font-size: 18px;
}

.booking-card p {
  font-size: 11px;
  color: var(--muted);
  margin: 5px 0;
}

.booking-card > div:last-child {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.booking-card button,
.small-button {
  border: 1px solid var(--green);
  background: white;
  color: var(--green);
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 800;
  margin-right: 6px;
}

.booking-card button.danger,
.table-actions button.danger {
  border-color: #c4433b;
  color: #c4433b;
}

.ticket-modal {
  width: min(720px, 100%);
}

.ticket-modal .ticket {
  box-shadow: none;
  border: 1px solid var(--line);
}

.confirm-dialog > div {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.confirm-dialog button {
  border: 1px solid var(--line);
  background: white;
  padding: 10px 13px;
  border-radius: 8px;
  font-weight: 800;
}

.danger-button {
  border: 0 !important;
  background: #b42318 !important;
  color: white !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-weight: 800;
}

.tour-hero {
  background: var(--green);
  color: white;
  padding: 85px 0 55px;
  overflow: hidden;
}

.tour-hero p {
  max-width: 650px;
  color: #c4d8cd;
  line-height: 1.7;
}

.tour-hero > .container > .primary-button {
  margin: 14px 0 42px;
}

.tour-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 23px;
}

.tour-metrics span {
  font-size: 10px;
  color: #b6cdbf;
}

.tour-metrics b {
  display: block;
  color: white;
  font:
    500 19px Georgia,
    serif;
  margin-bottom: 4px;
}

.tour-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 90px;
}

.tour-content > div > p {
  color: var(--muted);
}

.timeline {
  margin-top: 35px;
}

.timeline article {
  display: grid;
  grid-template-columns: 52px 1fr;
  position: relative;
  padding-bottom: 24px;
}

.timeline article:before {
  content: "";
  position: absolute;
  left: 19px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: #b9cbbf;
}

.timeline article:last-child:before {
  display: none;
}

.timeline article > i {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf7ef;
  color: var(--green);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.timeline article > div {
  padding: 1px 0 0 13px;
}

.timeline article span {
  font-size: 9px;
  color: var(--muted);
}

.timeline article h3 {
  margin: 4px 0 6px;
}

.timeline article b {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 4px 6px;
  border-radius: 5px;
  background: #e7f4e8;
  color: var(--green);
}

.timeline article b.running-view {
  background: #e9f3f7;
  color: #27718b;
}

.timeline article b.photo-stop {
  background: #fff2c5;
  color: #8b6500;
}

.timeline article b.optional {
  background: #f6eaf5;
  color: #8b3a80;
}

.timeline article p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}

.tour-info {
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 23px;
  height: max-content;
  position: sticky;
  top: 100px;
}

.tour-info h3 {
  font:
    500 24px Georgia,
    serif;
}

.tour-info dl > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #edf0ed;
  padding: 10px 0;
  font-size: 10px;
}

.tour-info dt {
  color: var(--muted);
}

.tour-info dd {
  margin: 0;
  font-weight: 750;
  text-align: right;
  max-width: 180px;
}

.pickup-zone-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pickup-zone-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 22px;
}

.pickup-zone-grid article > p {
  color: var(--muted);
  font-size: 11px;
}

.pickup-zone-grid article > span {
  display: grid;
  grid-template-columns: 70px 1fr;
  border-top: 1px solid var(--line);
  padding: 9px 0;
  font-size: 10px;
}

.pickup-zone-grid article > span b {
  color: var(--green);
}

.pickup-zone-grid article > a {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 11px;
  margin-top: 12px;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  background: #f5f7f3;
}

.admin-login-page > section {
  width: min(450px, calc(100% - 40px));
  margin: auto;
}

.admin-login-page .brand {
  margin-bottom: 40px;
}

.admin-login-page h1 {
  font:
    500 48px Georgia,
    serif;
  margin: 10px 0;
}

.admin-login-page > section > p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-login-page form label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 850;
  color: var(--muted);
  margin: 14px 0;
}

.admin-login-page form input {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px;
  margin-top: 7px;
  background: white;
}

.remember {
  display: flex !important;
  align-items: center;
  gap: 7px;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.remember input {
  width: auto !important;
  margin: 0 !important;
}

.demo-credentials {
  display: flex;
  flex-direction: column;
  background: #e7f3e9;
  border-radius: 10px;
  padding: 13px;
  margin: 14px 0;
  font-size: 11px;
}

.admin-login-page > section > a {
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.admin-login-page > aside {
  background: var(--green);
  color: white;
  display: grid;
  place-items: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.admin-login-page > aside:after {
  content: "K";
  position: absolute;
  right: -20px;
  bottom: -100px;
  font:
    500 400px Georgia,
    serif;
  color: rgba(255, 255, 255, 0.05);
}

.admin-login-page > aside > div {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.admin-login-page > aside span {
  font-size: 10px;
  letter-spacing: 2px;
  color: #a9db85;
  font-weight: 900;
}

.admin-login-page > aside h2 {
  font:
    500 50px Georgia,
    serif;
  line-height: 1.05;
}

.admin-login-page > aside p {
  color: #c2d6cb;
  line-height: 1.7;
}

.admin-layout {
  min-height: 100vh;
  background: #f2f5f2;
  display: grid;
  grid-template-columns: 252px 1fr;
  transition: 0.2s;
}

.admin-layout.collapsed {
  grid-template-columns: 78px 1fr;
}

.admin-sidebar {
  background: #102a1e;
  color: white;
  min-height: 100vh;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 90;
}

.admin-brand {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #294438;
}

.admin-brand .brand {
  color: white;
}

.admin-brand button {
  border: 1px solid #3f5c4d;
  background: none;
  color: white;
  border-radius: 7px;
  width: 27px;
  height: 27px;
}

.admin-sidebar nav {
  padding: 14px 10px;
  overflow: auto;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 9px;
  color: #acc0b4;
  font-size: 12px;
  margin: 2px 0;
}

.admin-sidebar nav a i {
  font-style: normal;
  font-size: 8px;
  color: #6f8d7d;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
  background: #1d4230;
  color: white;
}

.admin-sidebar nav a.active i {
  color: var(--yellow);
}

.admin-sidebar-bottom {
  margin-top: auto;
  border-top: 1px solid #294438;
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.admin-sidebar-bottom a,
.admin-sidebar-bottom button {
  font-size: 10px;
  color: #aac0b4;
  border: 0;
  background: none;
  padding: 0;
}

.admin-layout.collapsed .admin-sidebar nav span,
.admin-layout.collapsed .admin-sidebar-bottom,
.admin-layout.collapsed .admin-brand > button {
  display: none;
}

.admin-layout.collapsed .admin-brand {
  justify-content: center;
  padding: 0;
}

.admin-workspace {
  min-width: 0;
}

.admin-topbar {
  height: 74px;
  background: white;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 70;
}

.admin-topbar > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.admin-topbar > div > span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.admin-topbar > div > b {
  font-size: 16px;
  margin-top: 2px;
}

.admin-user {
  margin-left: auto;
  display: flex;
  align-items: center !important;
  gap: 9px;
}

.admin-user i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green);
  color: var(--yellow);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
}

.admin-user span {
  display: flex;
  flex-direction: column;
}

.admin-user small {
  font-size: 8px;
  color: var(--muted);
}

.admin-menu {
  display: none;
}

.admin-page {
  padding: 28px;
}

.admin-page-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 23px;
}

.admin-page-header h1 {
  font:
    500 36px Georgia,
    serif;
  margin: 7px 0 3px;
}

.admin-page-header p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.admin-page-header > div > a {
  font-size: 10px;
  color: var(--green);
  font-weight: 800;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 11px;
  margin-bottom: 21px;
}

.stat-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.stat-grid article > span {
  font-size: 8px;
  color: var(--green);
  font-weight: 900;
}

.stat-grid article > b {
  font:
    500 24px Georgia,
    serif;
  margin: 12px 0 3px;
}

.stat-grid article > small {
  color: var(--muted);
  font-size: 9px;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 18px;
}

.admin-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 19px;
}

.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.card-heading h2,
.admin-card > h2 {
  font-size: 16px;
  margin: 0;
}

.card-heading p {
  font-size: 9px;
  color: var(--muted);
  margin: 4px 0;
}

.card-heading a {
  font-size: 9px;
  color: var(--green);
  font-weight: 850;
}

.admin-table-wrap {
  width: 100%;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  white-space: nowrap;
}

.admin-table th {
  text-align: left;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.admin-table td {
  padding: 11px 10px;
  border-bottom: 1px solid #edf0ed;
  vertical-align: middle;
}

.admin-table td > small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  margin-top: 3px;
}

.table-tags {
  color: var(--muted);
  font-size: 8px;
}

.table-actions {
  display: flex;
  gap: 4px;
}

.table-actions button,
.small-button {
  border: 1px solid var(--line);
  background: white;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 800;
  margin: 0;
}

.admin-empty {
  text-align: center;
  padding: 35px;
  display: flex;
  flex-direction: column;
  color: var(--muted);
}

.admin-empty b {
  color: var(--ink);
  margin-bottom: 4px;
}

.upcoming-list article {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.upcoming-list article > span {
  color: var(--green);
  font-weight: 850;
  font-size: 10px;
}

.upcoming-list article > div {
  display: flex;
  flex-direction: column;
}

.upcoming-list small {
  font-size: 8px;
  color: var(--muted);
  margin-top: 3px;
}

.admin-modal {
  width: min(650px, 100%);
}

.admin-modal .primary-button {
  margin-top: 15px;
}

.detail-list > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 11px;
}

.detail-list dt {
  color: var(--muted);
}

.detail-list dd {
  text-align: right;
  margin: 0;
}

.admin-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-filters input {
  max-width: 300px;
}

.admin-filters select {
  width: 180px;
}

.admin-form-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 19px;
}

.form-section {
  margin-bottom: 17px;
}

.form-section h2 {
  font-size: 16px;
  margin: 0 0 16px;
}

.form-section textarea {
  min-height: 80px;
  resize: vertical;
}

.span-2 {
  grid-column: 1/-1;
}

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

.amenity-checks label {
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

.amenity-checks input {
  width: auto;
  margin: 0;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.form-actions > a {
  font-size: 11px;
  color: var(--muted);
}

.seat-builder {
  height: max-content;
  position: sticky;
  top: 96px;
}

.seat-builder h2 {
  text-transform: capitalize;
  margin: 8px 0;
}

.seat-builder > p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.mini-seat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  background: #f5f7f4;
  border: 1px solid var(--line);
  border-radius: 20px 20px 10px 10px;
  padding: 16px;
}

.mini-seat-grid.\32 x1-sleeper {
  grid-template-columns: repeat(4, 1fr);
}

.mini-seat-grid button {
  height: 34px;
  border: 1px solid var(--green);
  background: white;
  border-radius: 6px;
  font-size: 8px;
}

.mini-seat-grid button.ladies {
  background: #fff0f6;
  border-color: #df5c98;
}

.mini-seat-grid button.reserved {
  background: #e7f7fd;
  border-color: #44a3c4;
}

.mini-seat-grid button.disabled {
  background: #e5e8e6;
  border-color: #c4cbc6;
  color: #999;
}

.seat-builder-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.seat-builder-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
}

.seat-builder-legend i.available {
  background: white;
}

.landmark-editor {
  display: grid;
  grid-template-columns: 28px 1fr 90px 120px;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 9px 0;
}

.landmark-editor span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
}

.landmark-editor input,
.landmark-editor select {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 10px;
}

.report-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 18px;
}

.bar-chart {
  margin-top: 20px;
}

.bar-chart > div {
  display: grid;
  grid-template-columns: 140px 1fr 70px;
  gap: 10px;
  align-items: center;
  margin: 13px 0;
  font-size: 9px;
}

.bar-chart i {
  display: block;
  height: 8px;
  border-radius: 8px;
  background: var(--green);
}

.bar-chart b {
  text-align: right;
}

.report-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.report-numbers span {
  background: #f1f6f2;
  border-radius: 10px;
  padding: 13px;
  font-size: 9px;
  color: var(--muted);
}

.report-numbers b {
  display: block;
  font:
    500 25px Georgia,
    serif;
  color: var(--ink);
}

.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.settings-actions {
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.settings-actions span {
  margin-right: auto;
  color: var(--green);
  font-size: 11px;
}

.logo-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f6f2;
  border-radius: 10px;
  padding: 12px;
}

.logo-preview i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--yellow);
  border-radius: 9px;
  font:
    italic 22px Georgia,
    serif;
}

.logo-preview span {
  font-weight: 850;
}

.admin-loading {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f3f6f3;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 20px;
  top: 90px;
  z-index: 120;
  background: var(--green);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-size: 11px;
}

.toast.error {
  background: var(--red);
}

@media (max-width: 1050px) {
  .site-nav {
    display: none;
  }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 12px 20px;
    box-shadow: var(--shadow);
  }
  .menu-trigger {
    display: block;
  }
  .login-trigger {
    margin-left: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .search-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 28px;
  }
  .hero {
    padding-bottom: 40px;
  }
  .search-form {
    grid-template-columns: 1fr 36px 1fr;
  }
  .search-form label:nth-of-type(3),
  .search-form label:nth-of-type(4) {
    grid-column: span 3;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .search-submit {
    grid-column: 1/-1;
    margin: 8px 0 0;
  }
  .tour-promo-grid {
    gap: 35px;
  }
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid > div {
    grid-column: 1/-1;
  }
  .results-layout {
    grid-template-columns: 1fr;
  }
  .filter-panel {
    display: none;
  }
  .filter-panel.open {
    display: block;
    position: fixed;
    inset: 75px 12px 65px;
    z-index: 100;
    overflow: auto;
    box-shadow: var(--shadow);
  }
  .filter-apply {
    display: flex;
    width: calc(100% - 32px);
    margin: 16px;
  }
  .mobile-filter {
    display: block;
    border: 1px solid var(--line);
    background: white;
    border-radius: 8px;
    padding: 8px;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    position: relative;
    top: auto;
  }
  .payment-layout {
    grid-template-columns: 1fr;
  }
  .payment-summary {
    position: relative;
    top: auto;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    display: none;
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
  }
  .admin-sidebar.open {
    display: flex;
  }
  .admin-menu {
    display: block;
    border: 1px solid var(--line);
    background: white;
    border-radius: 8px;
    padding: 8px;
    margin-right: 12px;
  }
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .admin-form-layout {
    grid-template-columns: 1fr;
  }
  .seat-builder {
    position: relative;
    top: auto;
  }
  .admin-login-page {
    grid-template-columns: 1fr;
  }
  .admin-login-page > aside {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 66px;
  }
  .site-nav.open {
    top: 66px;
  }
  .login-trigger {
    display: none;
  }
  .hero {
    padding: 42px 0 35px;
  }
  .hero-copy h1,
  .tour-hero h1 {
    font-size: 41px;
    letter-spacing: -1.7px;
  }
  .hero-copy > p {
    font-size: 15px;
  }
  .trust-row {
    gap: 11px;
    overflow: auto;
    white-space: nowrap;
    font-size: 10px;
  }
  .search-form {
    grid-template-columns: 1fr 30px 1fr;
    padding: 8px;
  }
  .search-form label {
    padding: 7px;
  }
  .search-form label:nth-of-type(3),
  .search-form label:nth-of-type(4) {
    grid-column: span 3;
  }
  .search-form label span {
    font-size: 7px;
  }
  .quick-links {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
  .section {
    padding: 62px 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-heading h2,
  .tour-promo h2,
  .review-section h2,
  .faq h2,
  .tour-content h2 {
    font-size: 34px;
  }
  .offer-grid,
  .benefit-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .offer-card,
  .benefit-grid article {
    min-width: 84vw;
    scroll-snap-align: start;
  }
  .tour-promo {
    padding: 62px 0;
  }
  .tour-promo-grid {
    grid-template-columns: 1fr;
  }
  .metric-row {
    justify-content: space-between;
    gap: 8px;
  }
  .route-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-grid {
    display: flex;
    overflow-x: auto;
  }
  .review-grid > div,
  .review-section blockquote {
    min-width: 84vw;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .site-footer {
    padding-bottom: 88px;
  }
  .mobile-nav {
    position: fixed;
    z-index: 55;
    left: 0;
    right: 0;
    bottom: 0;
    height: 62px;
    display: flex;
    justify-content: space-around;
    background: white;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    display: grid;
    place-items: center;
    font-size: 9px;
    font-weight: 750;
  }
  .whatsapp {
    bottom: 75px;
    right: 13px;
  }
  .route-toolbar > .container {
    display: grid;
    grid-template-columns: 25px 1fr auto;
  }
  .route-toolbar .outline-button {
    grid-column: 3;
    grid-row: 1/3;
    font-size: 9px;
  }
  .results-header label {
    display: none;
  }
  .bus-card-top {
    padding: 17px 15px 8px;
  }
  .bus-card h2 {
    font-size: 17px;
  }
  .journey-line {
    padding: 13px 15px;
  }
  .journey-line b {
    font-size: 16px;
  }
  .amenity-list {
    padding: 0 15px 13px;
  }
  .bus-card-bottom {
    padding: 12px 15px;
  }
  .fare-block {
    gap: 6px;
  }
  .fare-block > b {
    font-size: 18px;
  }
  .fare-block .primary-button {
    padding: 9px;
    font-size: 10px;
  }
  .booking-toolbar .container > div:nth-child(2) {
    max-width: 65%;
  }
  .stepper {
    display: none;
  }
  .booking-layout {
    padding-top: 21px;
  }
  .page-title h1 {
    font-size: 28px;
  }
  .seat-panel {
    grid-template-columns: 1fr;
    padding: 12px;
    border: 0;
  }
  .coach {
    padding: 15px 11px;
  }
  .seat {
    height: 46px;
  }
  .seat-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .seat-guide h3,
  .seat-guide .soft-note {
    grid-column: 1/-1;
  }
  .stop-columns {
    grid-template-columns: 1fr;
  }
  .passenger-card,
  .contact-card {
    grid-template-columns: 1fr 1fr;
    padding: 15px;
  }
  .passenger-card label:first-of-type,
  .contact-card h3 {
    grid-column: 1/-1;
  }
  .payment-layout h1 {
    font-size: 31px;
  }
  .payment-methods {
    grid-template-columns: 1fr;
  }
  .confirmation-page {
    padding: 50px 12px 95px;
  }
  .confirmation-page h1 {
    font-size: 35px;
  }
  .ticket-route,
  .ticket-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .tour-hero {
    padding: 62px 0 42px;
  }
  .tour-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .tour-content {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }
  .tour-info {
    position: relative;
    top: auto;
  }
  .pickup-zone-grid {
    grid-template-columns: 1fr;
  }
  .booking-tabs {
    overflow: auto;
  }
  .booking-tabs button {
    padding: 10px;
  }
  .booking-card {
    grid-template-columns: 1fr;
  }
  .booking-card > strong {
    grid-row: 1;
    grid-column: 2;
  }
  .admin-page {
    padding: 18px 12px 85px;
  }
  .admin-topbar {
    padding: 0 12px;
  }
  .admin-user span {
    display: none;
  }
  .admin-page-header {
    align-items: flex-start;
    gap: 12px;
  }
  .admin-page-header h1 {
    font-size: 30px;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-card {
    padding: 13px;
  }
  .form-grid,
  .settings-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }
  .span-2,
  .settings-actions {
    grid-column: 1;
  }
  .amenity-checks {
    grid-template-columns: 1fr 1fr;
  }
  .admin-form-layout {
    grid-template-columns: 1fr;
  }
  .landmark-editor {
    grid-template-columns: 25px 1fr;
  }
  .landmark-editor input:nth-of-type(2),
  .landmark-editor select {
    grid-column: 2;
  }
  .bar-chart > div {
    grid-template-columns: 90px 1fr 60px;
  }
  .admin-login-page > section {
    padding: 35px 0;
  }
  .admin-login-page h1 {
    font-size: 39px;
  }
  .modal-overlay {
    align-items: end;
    padding: 0;
  }
  .auth-modal,
  .confirm-dialog,
  .ticket-modal,
  .admin-modal {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
  }
  .admin-filters {
    flex-direction: column;
  }
  .admin-filters input,
  .admin-filters select {
    max-width: none;
    width: 100%;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-nav,
  .whatsapp,
  .ticket-actions,
  .confirmation-wrap > .primary-button,
  .confirmation-wrap > .text-link,
  .admin-sidebar,
  .admin-topbar {
    display: none !important;
  }
  .confirmation-page {
    background: white;
    padding: 0;
  }
  .ticket {
    box-shadow: none;
    border: 1px solid #bbb;
  }
  .admin-layout {
    display: block;
  }
  .admin-page {
    padding: 0;
  }
}

/* Static migration safeguard: allow scrollable tables to shrink inside CSS grid tracks. */
.admin-card,
.admin-dashboard-grid > * {
  min-width: 0;
}

/* Premium public homepage redesign */
.site-nav {
  flex: 1;
  margin-left: 12px;
}

.site-nav .nav-spacer {
  flex: 1;
}

.home-page {
  background: #fff;
}

.home-hero {
  height: 390px;
  position: relative;
  overflow: visible;
  background: linear-gradient(110deg, #0a3728 0%, #0d5d3d 46%, #a7d4b7 100%);
  color: white;
}

.home-hero-inner {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.home-hero-copy {
  position: relative;
  z-index: 8;
  max-width: 620px;
  padding-bottom: 45px;
}

.home-hero-copy h1 {
  font:
    500 55px/1.02 Georgia,
    serif;
  letter-spacing: -2.4px;
  margin: 15px 0 17px;
}

.home-hero-copy h1 em {
  color: #ffe08a;
  font-weight: 500;
}

.home-hero-copy > p {
  font-size: 17px;
  line-height: 1.55;
  max-width: 580px;
  color: #e0eee5;
}

.hero-proof {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 800;
  color: #d4e8dc;
}

.home-sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-sky:before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  right: 16%;
  top: -85px;
  background: rgba(255, 214, 100, 0.72);
  box-shadow: 0 0 90px rgba(255, 223, 131, 0.28);
}

.home-hills {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -95px;
  height: 225px;
  border-radius: 50% 52% 0 0;
}

.hill-one {
  background: #77b292;
  transform: rotate(-2deg);
  opacity: 0.8;
}

.hill-two {
  bottom: -130px;
  left: 34%;
  background: #d9eadc;
  transform: rotate(3deg);
  opacity: 0.85;
}

.mumbai-skyline {
  position: absolute;
  right: 1%;
  bottom: 98px;
  width: 48%;
  height: 175px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0.23;
}

.mumbai-skyline i {
  display: block;
  width: 9%;
  background: #092e22;
  border-radius: 5px 5px 0 0;
  box-shadow: inset 0 18px rgba(255, 255, 255, 0.12);
}

.mumbai-skyline .tower-0 {
  height: 48%;
}

.mumbai-skyline .tower-1 {
  height: 80%;
}

.mumbai-skyline .tower-2 {
  height: 62%;
}

.mumbai-skyline .tower-3 {
  height: 100%;
}

.mumbai-skyline .tower-4 {
  height: 71%;
}

.home-road {
  position: absolute;
  width: 78%;
  height: 145px;
  right: -9%;
  bottom: -72px;
  border: 32px solid #153d31;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-4deg);
  box-shadow: 0 3px 0 #f6cd50;
}

.home-coach {
  right: 8%;
  top: 128px;
  transform: scale(0.82);
  transform-origin: right center;
}

.home-search-panel {
  bottom: -66px;
  width: min(1220px, calc(100% - 40px));
}

.home-search-form {
  grid-template-columns: 1.08fr 44px 1.08fr 1.35fr 0.82fr auto;
  min-height: 106px;
  border-radius: 24px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 93, 59, 0.12);
  box-shadow: 0 24px 55px rgba(8, 45, 30, 0.2);
}

.home-search-form label {
  min-height: 72px;
  justify-content: center;
  padding: 7px 16px;
}

.home-search-form label span:first-child {
  font-size: 9px;
}

.home-search-form input,
.home-search-form select {
  font-size: 15px;
}

.home-search-form .home-search-form .search-submit {
  min-height: 58px;
  border-radius: 15px;
  padding: 0 24px;
  font-size: 14px;
}

.date-shortcuts {
  display: flex !important;
  gap: 5px;
  margin: 7px 0 0 !important;
}

.date-shortcuts button {
  border: 0;
  background: #eef5ef;
  color: var(--green);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 850;
}

.date-shortcuts button:hover,
.date-shortcuts button.active {
  background: var(--green);
  color: white;
}

.home-shortcuts {
  margin-top: 94px;
}

.home-shortcuts a {
  padding: 16px 18px;
}

.home-shortcuts span {
  background: #edf7ef;
}

.home-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.compact-heading h2 {
  font:
    500 38px Georgia,
    serif;
  letter-spacing: -1px;
  margin: 7px 0 0;
}

.compact-heading > button {
  border: 0;
  background: none;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  padding: 8px;
}

.offer-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 15px;
}

.offer-tabs button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 10px;
  font-weight: 750;
  color: #536158;
}

.offer-tabs button.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.home-offer-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-offer {
  height: 170px;
  border-radius: 16px;
  padding: 17px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 93, 59, 0.08);
  display: flex;
  flex-direction: column;
}

.home-offer > span {
  font-size: 8px;
  letter-spacing: 1px;
  font-weight: 900;
  color: var(--green);
}

.home-offer h3 {
  font-size: 14px;
  line-height: 1.25;
  margin: 11px 0 6px;
  max-width: 170px;
}

.home-offer p {
  font-size: 9px;
  line-height: 1.45;
  color: #58675e;
  margin: 0;
  max-width: 175px;
}

.home-offer > div:last-child {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  position: relative;
  z-index: 3;
}

.home-offer code {
  background: white;
  border: 1px dashed rgba(11, 93, 59, 0.35);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--green);
  font: 800 9px Arial;
}

.home-offer button {
  border: 0;
  background: var(--green);
  color: white;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 8px;
  font-weight: 850;
}

.offer-decoration {
  position: absolute;
  right: -25px;
  bottom: -30px;
  width: 110px;
  height: 110px;
  border: 18px solid rgba(11, 93, 59, 0.08);
  border-radius: 50%;
}

.offer-decoration i:first-child {
  position: absolute;
  width: 35px;
  height: 17px;
  background: rgba(11, 93, 59, 0.15);
  border-radius: 8px;
  left: 18px;
  top: 26px;
}

.offer-tone-0 {
  background: #dff3e0;
}

.offer-tone-1 {
  background: #fff0b9;
}

.offer-tone-2 {
  background: #f5e6dd;
}

.offer-tone-3 {
  background: #e4f0ec;
}

.offer-tone-4 {
  background: #f3e8f0;
}

.whats-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.new-card {
  min-height: 155px;
  border-radius: 16px;
  padding: 17px;
  display: flex;
  gap: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.new-card > i {
  flex: 0 0 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: white;
  color: var(--green);
  font-style: normal;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(14, 63, 40, 0.08);
}

.new-card h3 {
  font-size: 14px;
  margin: 4px 0 7px;
}

.new-card p {
  font-size: 10px;
  color: #5f6e64;
  line-height: 1.45;
  margin: 0 0 15px;
}

.new-card b {
  font-size: 9px;
  color: var(--green);
}

.new-tone-0 {
  background: #f7e8db;
}

.new-tone-1 {
  background: #e7f2e9;
}

.new-tone-2 {
  background: #eaf2f6;
}

.new-tone-3 {
  background: #fff1bd;
}

.home-tour-promo {
  padding: 72px 0;
}

.home-tour-promo .tour-promo-grid {
  gap: 65px;
}

.home-tour-promo .day-card > div {
  padding: 10px 4px;
}

.home-route-grid {
  grid-template-columns: repeat(3, 1fr);
}

.home-route-grid a {
  min-height: 122px;
  justify-content: center;
  background: linear-gradient(135deg, #fff, #f7faf7);
}

.home-route-grid a:hover {
  box-shadow: 0 12px 28px rgba(11, 93, 59, 0.08);
  transform: translateY(-2px);
}

.home-why {
  background: #f4f7f4;
}

.home-benefits article {
  box-shadow: 0 10px 28px rgba(11, 70, 43, 0.05);
}

.home-benefits i {
  font-size: 17px;
}

.home-reviews {
  padding: 74px 0;
}

.home-reviews blockquote {
  font-size: 18px;
}

.home-page .faq {
  padding-top: 72px;
  padding-bottom: 72px;
}

.site-footer {
  border-top: 1px solid #294237;
}

@media (max-width: 1050px) {
  .site-nav .nav-spacer {
    display: none;
  }
  .site-nav {
    margin-left: auto;
    flex: 0;
  }
  .home-hero {
    height: auto;
    padding-bottom: 28px;
  }
  .home-hero-inner {
    height: 340px;
  }
  .home-hero-copy {
    max-width: 520px;
    padding-bottom: 20px;
  }
  .home-hero-copy h1 {
    font-size: 48px;
  }
  .home-coach {
    right: -30px;
    top: 125px;
    transform: scale(0.64);
  }
  .home-search-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 0;
    width: min(100% - 40px, 1180px);
  }
  .home-search-form {
    grid-template-columns: 1fr 44px 1fr;
    min-height: auto;
  }
  .home-search-form .date-field {
    grid-column: 1/3;
    border-top: 1px solid var(--line);
  }
  .home-search-form .passenger-field {
    grid-column: 3;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .home-search-form .search-submit {
    grid-column: 1/-1;
    margin: 7px 0 0;
  }
  .home-shortcuts {
    margin-top: 28px;
  }
  .home-offer-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .home-offer {
    min-width: 225px;
    scroll-snap-align: start;
  }
  .whats-new-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-route-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav .nav-spacer {
    display: none;
  }
  .home-hero {
    padding-bottom: 18px;
  }
  .home-hero-inner {
    height: 300px;
    align-items: flex-start;
    padding-top: 46px;
  }
  .home-hero-copy {
    max-width: 100%;
    padding: 0;
  }
  .home-hero-copy h1 {
    font-size: 39px;
    letter-spacing: -1.5px;
    margin: 12px 0;
  }
  .home-hero-copy > p {
    font-size: 14px;
    max-width: 330px;
  }
  .hero-proof {
    gap: 9px;
    overflow: auto;
    white-space: nowrap;
    font-size: 8px;
    margin-top: 17px;
  }
  .home-coach {
    display: none;
  }
  .home-sky:before {
    width: 190px;
    height: 190px;
    right: -50px;
  }
  .mumbai-skyline {
    width: 80%;
    height: 105px;
    right: -15%;
    bottom: 35px;
  }
  .home-road {
    width: 110%;
    height: 85px;
    bottom: -43px;
    border-width: 18px;
  }
  .home-search-panel {
    width: min(100% - 28px, 1180px);
  }
  .home-search-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 20px;
    gap: 0;
  }
  .home-search-form label,
  .home-search-form .date-field,
  .home-search-form .passenger-field {
    width: 100%;
    min-height: 60px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding: 9px 10px;
  }
  .home-search-form .home-search-form .search-submit {
    width: 100%;
    min-height: 50px;
    margin: 10px 0 0;
  }
  .date-shortcuts {
    margin-top: 6px !important;
  }
  .home-shortcuts {
    margin-top: 20px;
  }
  .home-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .compact-heading {
    align-items: center;
  }
  .compact-heading h2 {
    font-size: 31px;
  }
  .offer-tabs {
    overflow: auto;
  }
  .home-offer {
    min-width: 76vw;
  }
  .whats-new-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .new-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }
  .home-tour-promo {
    padding: 55px 0;
  }
  .home-tour-promo .tour-promo-grid {
    grid-template-columns: 1fr;
  }
  .home-route-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-route-grid a {
    min-height: 115px;
    padding: 15px;
  }
  .home-benefits {
    display: flex;
  }
  .home-benefits article {
    min-width: 78vw;
  }
  .home-reviews {
    padding: 56px 0;
  }
  .home-page .faq {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

@media (max-width: 430px) {
  .home-route-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-copy h1 {
    font-size: 36px;
  }
  .home-hero-inner {
    height: 290px;
  }
  .home-shortcuts a {
    grid-template-columns: 43px 1fr;
  }
  .home-shortcuts i {
    grid-column: 2;
    grid-row: auto;
    margin-top: 4px;
  }
  .home-offer {
    min-width: 84vw;
  }
}

.home-search-form input,
.home-search-form select {
  color: var(--ink);
}

.search-error:empty {
  display: none;
}

.results-list,
.darshan-route-card,
.darshan-seat-panel {
  min-width: 0;
}

.seat-map-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.modify-search[hidden] {
  display: none;
}

.modify-search,
.modify-search .search-form,
.search-form label {
  min-width: 0;
}

.route-toolbar > .container.modify-search {
  display: block;
}

.modify-search .search-form {
  width: 100%;
}

.darshan-seat.selected {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.85);
}

.darshan-seat.selected small {
  color: white;
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 20px);
  }
  .results-layout {
    gap: 14px;
    padding-top: 18px;
  }
  .bus-card-top {
    align-items: flex-start;
    gap: 8px;
    padding: 16px 13px 9px;
  }
  .bus-card h2 {
    line-height: 1.25;
  }
  .darshan-route-mark {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    font-size: 8px;
  }
  .darshan-route-facts {
    margin: 5px 13px 13px;
    grid-template-columns: 1fr 1fr;
  }
  .darshan-route-facts span {
    padding: 11px 10px;
  }
  .darshan-route-facts span:last-child {
    grid-column: 1/-1;
  }
  .darshan-actions {
    gap: 8px;
    padding: 12px 13px;
    flex-wrap: wrap;
  }
  .darshan-actions button {
    min-width: 130px;
    min-height: 44px;
  }
  .pickup-details,
  .darshan-seat-panel {
    padding: 15px 10px;
  }
  .seat-map-wrapper {
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .darshan-coach {
    width: min(360px, 92vw);
    min-width: min(360px, 92vw);
    padding: 14px 12px 18px;
  }
  .darshan-seat-section {
    --mobile-seat: clamp(44px, 12vw, 52px);
    grid-template-columns: repeat(2, var(--mobile-seat)) 24px repeat(
        2,
        var(--mobile-seat)
      );
    grid-auto-rows: 52px;
    gap: 5px;
  }
  .darshan-seat-section.lower {
    grid-template-columns: repeat(5, var(--mobile-seat));
  }
  .darshan-seat {
    width: var(--mobile-seat);
    height: 46px;
    min-width: 44px;
    min-height: 44px;
  }
  .darshan-seat span {
    font-size: 10px;
  }
  .darshan-seat small {
    font-size: 7px;
  }
  .darshan-seat-legend {
    margin: 14px 0;
  }
  .seat-selection-summary {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
    gap: 12px;
  }
  .seat-selection-summary p:first-child,
  .seat-selection-summary button {
    grid-column: 1/-1;
  }
  .seat-selection-summary button {
    width: 100%;
    min-height: 46px;
  }
}

@media (max-width: 340px) {
  .darshan-actions button {
    width: 100%;
    flex-basis: 100%;
  }
  .darshan-route-facts b {
    font-size: 12px;
  }
}

.account-summary {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #f1f6f2;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  margin: 18px 0;
}

.account-summary > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.account-summary b,
.account-summary small {
  display: block;
}

.account-summary small {
  color: var(--muted);
  margin-top: 4px;
}

.mobile-nav button {
  border: 0;
  background: white;
  font-size: 9px;
  font-weight: 750;
}

/* Feeder search: fixed destination, no invalid route swap. */
.search-form {
  grid-template-columns: 1fr 1fr 1fr 0.8fr auto;
}

.home-search-form {
  grid-template-columns: 1.08fr 1.08fr 1.35fr 0.82fr auto;
}

.search-form .to-field input[readonly] {
  color: #526159;
  cursor: default;
}

.passenger-field input {
  width: 100%;
  min-width: 64px;
}

.filter-panel .filter-group:first-of-type {
  border-top: 0;
}

@media (max-width: 1050px) {
  .search-form,
  .home-search-form {
    grid-template-columns: 1fr 1fr;
  }
  .search-form .date-field,
  .home-search-form .date-field {
    grid-column: 1;
    border-top: 1px solid var(--line);
  }
  .search-form .passenger-field,
  .home-search-form .passenger-field {
    grid-column: 2;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .search-form .search-submit,
  .home-search-form .search-submit {
    grid-column: 1/-1;
  }
}

@media (max-width: 720px) {
  .search-form,
  .home-search-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .search-form label,
  .home-search-form label,
  .search-form .date-field,
  .search-form .passenger-field,
  .home-search-form .date-field,
  .home-search-form .passenger-field {
    width: 100%;
    min-height: 60px;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding: 9px 10px;
  }
  .search-form .search-submit,
  .home-search-form .search-submit {
    width: 100%;
    margin: 10px 0 0;
  }
  .passenger-field input {
    font-size: 16px;
  }
}

/* Professional admin workspace and stable sidebar sizing. */
.admin-layout {
  grid-template-columns: 276px minmax(0, 1fr);
  min-width: 0;
  background: #f3f6f3;
}

.admin-layout.collapsed {
  grid-template-columns: 84px minmax(0, 1fr);
}

.admin-sidebar {
  width: 276px;
  min-width: 276px;
  max-width: 276px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 8px 0 28px rgba(8, 34, 23, 0.08);
}

.admin-layout.collapsed .admin-sidebar {
  width: 84px;
  min-width: 84px;
  max-width: 84px;
}

.admin-brand {
  height: 78px;
  min-height: 78px;
  gap: 10px;
  padding: 0 17px;
  overflow: hidden;
}

.admin-brand .brand {
  min-width: 0;
  flex: 0 1 auto;
  width: 210px;
  max-width: calc(100% - 48px);
  white-space: nowrap;
  overflow: hidden;
}

.admin-brand .brand > span {
  min-width: 0;
  overflow: hidden;
}

.admin-brand button {
  display: grid;
  place-items: center;
  flex: 0 0 29px;
}

.admin-layout.collapsed .admin-brand {
  padding: 0 8px;
  justify-content: space-between;
}

.admin-layout.collapsed .admin-brand .brand > span {
  display: none;
}

.admin-layout.collapsed .admin-brand .brand {
  flex: 0 0 40px;
}

.admin-layout.collapsed .admin-brand > button {
  display: grid;
  position: absolute;
  left: 56px;
  width: 22px;
  height: 22px;
  background: #183d2b;
  transform: rotate(180deg);
}

.admin-layout.collapsed .admin-sidebar nav a {
  justify-content: center;
  padding: 13px 8px;
}

.admin-layout.collapsed .admin-sidebar nav a i {
  font-size: 10px;
}

.admin-workspace {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.admin-topbar {
  height: 78px;
  padding: 0 32px;
  box-shadow: 0 2px 12px rgba(18, 59, 39, 0.03);
}

.admin-page {
  padding: 32px;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
}

.admin-page-header {
  align-items: center;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-page-header h1 {
  font-size: 39px;
  letter-spacing: -0.7px;
}

.admin-card {
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(16, 56, 36, 0.035);
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-grid article {
  min-height: 120px;
  padding: 18px;
  border-radius: 16px;
}

.stat-grid article > b {
  font-size: 28px;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid #edf1ed;
  border-radius: 12px;
}

.admin-table {
  font-size: 11px;
}

.admin-table th {
  padding: 13px 14px;
  background: #f7f9f7;
  position: sticky;
  top: 0;
}

.admin-table td {
  padding: 14px;
  line-height: 1.4;
}

.admin-table tbody tr:hover {
  background: #fafcf9;
}

.status-badge {
  white-space: nowrap;
}

.table-actions {
  gap: 7px;
}

.table-actions button,
.small-button {
  padding: 7px 9px;
  border-radius: 7px;
}

.admin-empty {
  padding: 52px 24px;
  background: #fbfcfb;
}

@media (max-width: 1050px) {
  .admin-layout,
  .admin-layout.collapsed {
    display: block;
    min-width: 0;
  }
  .admin-sidebar,
  .admin-layout.collapsed .admin-sidebar {
    display: none;
    position: fixed;
    inset: 0 auto 0 0;
    width: 276px;
    min-width: 276px;
    max-width: 276px;
    height: 100vh;
  }
  .admin-sidebar.open,
  .admin-layout.collapsed .admin-sidebar.open {
    display: flex;
  }
  .admin-layout.collapsed .admin-brand .brand > span {
    display: inline;
  }
  .admin-layout.collapsed .admin-brand .brand {
    flex: 1;
  }
  .admin-layout.collapsed .admin-brand > button {
    display: none;
  }
  .admin-layout.collapsed .admin-sidebar nav a {
    justify-content: flex-start;
    padding: 11px 12px;
  }
  .admin-page {
    padding: 24px 20px 80px;
  }
  .admin-topbar {
    padding: 0 20px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .admin-topbar {
    height: 68px;
    padding: 0 14px;
  }
  .admin-page {
    padding: 20px 12px 82px;
  }
  .admin-page-header {
    align-items: flex-start;
    padding-bottom: 15px;
  }
  .admin-page-header h1 {
    font-size: 31px;
  }
  .admin-page-header p {
    line-height: 1.5;
  }
  .admin-card {
    padding: 14px;
    border-radius: 14px;
  }
  .stat-grid {
    gap: 9px;
  }
  .stat-grid article {
    min-height: 104px;
    padding: 14px;
  }
  .stat-grid article > b {
    font-size: 24px;
  }
  .admin-table {
    min-width: 720px;
  }
  .admin-dashboard-grid {
    gap: 12px;
  }
}

/* Krishna Travels brand asset and reference-matched admin UI */
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 178px;
  height: 58px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-header .brand img {
  width: 166px;
  height: 60px;
}

.site-footer .brand {
  background: white;
  border-radius: 10px;
  padding: 5px 9px;
}

.site-footer .brand img {
  width: 185px;
  height: 62px;
}

.auth-modal .brand {
  margin: 0 auto 8px;
}

.ticket-brand-logo {
  display: block;
  width: 145px;
  height: 58px;
  object-fit: contain;
}

.admin-brand .brand {
  height: 82px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 4px 7px;
}

.admin-brand .brand img {
  width: 172px;
  height: 64px;
}

.admin-layout.collapsed .admin-brand .brand {
  width: 45px;
  flex-basis: 45px;
  padding: 3px;
  overflow: hidden;
}

.admin-layout.collapsed .admin-brand .brand img {
  width: 118px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  transform: translateX(-4px);
}

.admin-layout {
  grid-template-columns: 300px minmax(0, 1fr);
  background: #f5f7f8;
}

.admin-layout.collapsed {
  grid-template-columns: 86px minmax(0, 1fr);
}

.admin-sidebar {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  background:
    radial-gradient(
      circle at 74% 64%,
      rgba(238, 190, 62, 0.14),
      transparent 17%
    ),
    linear-gradient(160deg, #003d30 0%, #002d24 48%, #00372a 100%);
  box-shadow: 8px 0 30px rgba(0, 37, 28, 0.12);
}

.admin-sidebar:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 112px;
  height: 245px;
  background:
    radial-gradient(
      ellipse at 68% 100%,
      rgba(226, 180, 50, 0.22),
      transparent 32%
    ),
    linear-gradient(
      165deg,
      transparent 35%,
      rgba(10, 90, 62, 0.35) 36%,
      transparent 59%
    );
  pointer-events: none;
}

.admin-layout.collapsed .admin-sidebar {
  width: 86px;
  min-width: 86px;
  max-width: 86px;
}

.admin-brand {
  height: 104px;
  min-height: 104px;
  padding: 17px 16px;
  border-color: rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
}

.admin-brand button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar nav {
  padding: 22px 14px;
  position: relative;
  z-index: 2;
}

.admin-sidebar nav a {
  min-height: 51px;
  padding: 10px 12px;
  border-radius: 12px;
  gap: 11px;
  color: #d2e0da;
  font-size: 13px;
  margin: 4px 0;
}

.admin-sidebar nav a > i {
  width: 20px;
  font-size: 8px;
  color: #86ad9d;
}

.admin-nav-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
}

.admin-nav-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-sidebar nav a.active {
  background: linear-gradient(90deg, #0b7455, #126448);
  box-shadow: 0 10px 22px rgba(0, 31, 23, 0.22);
}

.admin-sidebar nav a.active i {
  color: #f4cb43;
}

.admin-sidebar-bottom {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  gap: 19px;
  border-color: rgba(255, 255, 255, 0.14);
}

.admin-sidebar-bottom a,
.admin-sidebar-bottom button {
  font-size: 11px;
  color: #d1dfd8;
  display: flex;
  gap: 11px;
  align-items: center;
}

.admin-sidebar-bottom span {
  font-size: 18px;
}

.admin-workspace {
  background: radial-gradient(
    circle at 80% 4%,
    #fff 0,
    #f6f8f9 32%,
    #f3f6f7 100%
  );
}

.admin-topbar {
  height: 94px;
  padding: 0 34px;
  background: rgba(255, 255, 255, 0.92);
  border-color: #e4e9ea;
}

.admin-crumb span {
  text-transform: none !important;
  font-size: 11px !important;
  letter-spacing: 0 !important;
  color: #607080 !important;
}

.admin-crumb b {
  font-size: 17px !important;
  margin-top: 5px !important;
}

.admin-user {
  gap: 12px;
}

.admin-user i {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, #00825a, #006143);
  color: white;
}

.admin-user b {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-user small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.45px;
  margin-top: 3px;
}

.admin-page {
  max-width: 1660px;
  padding: 40px 34px 70px;
}

.admin-page-header {
  border: 0;
  padding: 0;
  margin-bottom: 29px;
  align-items: center;
}

.admin-page-header .eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
}

.admin-page-header h1 {
  font-family: Arial, sans-serif;
  font-size: 43px;
  font-weight: 750;
  letter-spacing: -1.5px;
  margin: 11px 0 8px;
}

.admin-page-header p {
  font-size: 13px;
  color: #667484;
}

.primary-button {
  box-shadow: 0 8px 20px rgba(0, 94, 64, 0.14);
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.stat-grid article {
  min-height: 145px;
  border-radius: 17px;
  padding: 22px;
  background: linear-gradient(135deg, #fff, #f1f8f3);
  border-color: #dce9df;
  position: relative;
  overflow: hidden;
}

.stat-grid article:nth-child(2) {
  background: linear-gradient(135deg, #fff, #fff8e9);
  border-color: #eee3c9;
}

.stat-grid article:nth-child(3),
.stat-grid article:nth-child(6) {
  background: linear-gradient(135deg, #fff, #eff6ff);
  border-color: #d8e5f3;
}

.stat-grid article:nth-child(4) {
  background: linear-gradient(135deg, #fff, #f7f0fb);
  border-color: #e7dbef;
}

.stat-grid article:nth-child(7) {
  background: linear-gradient(135deg, #fff, #fff0f0);
  border-color: #efdada;
}

.stat-grid article > span {
  font-size: 9px;
}

.stat-grid article > b {
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 800;
  margin: 25px 0 5px;
}

.stat-grid article > small {
  font-size: 10px;
}

.admin-dashboard-grid {
  grid-template-columns: 1.15fr 1fr;
  gap: 22px;
}

.admin-card {
  border-radius: 18px;
  border-color: #e1e7e8;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(21, 51, 43, 0.035);
}

.card-heading h2,
.admin-card > h2 {
  font-size: 16px;
}

.card-heading p {
  font-size: 10px;
}

.admin-table-wrap {
  border-color: #e2e7e8;
  border-radius: 13px;
}

.admin-table {
  font-size: 11px;
}

.admin-table th {
  background: #f7f9fa;
  color: #4d5d68;
  padding: 15px 14px;
}

.admin-table td {
  padding: 17px 14px;
}

.admin-table td > b {
  font-size: 11px;
}

.admin-empty {
  min-height: 250px;
  justify-content: center;
  border-radius: 0;
  background: #fff;
}

.admin-empty:before {
  content: "⌕";
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #f4f7f5;
  color: #769486;
  font-size: 32px;
}

.admin-empty b {
  font-size: 16px;
}

.upcoming-list article {
  grid-template-columns: 70px 1fr auto;
  padding: 15px 4px;
}

.upcoming-list article > span {
  font-size: 10px;
}

.bus-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: -92px 0 34px 38%;
}

.bus-metrics article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 90px;
  background: white;
  border: 1px solid #dfe6e5;
  border-radius: 15px;
  padding: 16px;
  box-shadow: 0 7px 20px rgba(20, 49, 41, 0.03);
}

.bus-metrics i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #e8f7eb;
  color: #008551;
  font-size: 22px;
  font-style: normal;
}

.bus-metrics .tone-1 i,
.bus-metrics .tone-2 i {
  background: #fff7e7;
  color: #e8a900;
}

.bus-metrics b,
.bus-metrics span {
  display: block;
}

.bus-metrics b {
  font-size: 20px;
}

.bus-metrics span {
  font-size: 11px;
  color: #65737c;
  margin-top: 5px;
}

.admin-data-card {
  padding: 24px;
}

.admin-list-heading {
  margin-bottom: 24px;
}

.admin-list-heading h2 {
  font-size: 18px;
}

.admin-list-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  height: 44px;
  border: 1px solid #dbe2e3;
  border-radius: 9px;
  padding: 0 13px;
  background: white;
}

.admin-search input {
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: 0;
  background: transparent !important;
}

.filter-button,
.admin-filter-bar button {
  height: 44px;
  border: 1px solid #cfd9d7;
  background: white;
  border-radius: 9px;
  padding: 0 17px;
  color: #164a39;
  font-weight: 750;
}

.admin-filter-bar {
  background: white;
  border: 1px solid #e0e6e6;
  border-radius: 15px;
  padding: 21px;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(21, 51, 43, 0.035);
}

.admin-filter-bar .admin-search {
  flex: 1;
  max-width: none;
}

.admin-filter-bar > input,
.admin-filter-bar > select {
  height: 44px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #dbe2e3;
  border-radius: 9px;
  background: white;
  color: #4d5c67;
  min-width: 180px;
}

.table-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.table-tags em {
  font-style: normal;
  padding: 5px 7px;
  background: #f1f4f3;
  border-radius: 5px;
  color: #364740;
}

.status-badge {
  border-radius: 7px;
  padding: 6px 9px;
}

.report-grid {
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.bar-chart > div {
  grid-template-columns: 190px 1fr 80px;
  margin: 17px 0;
}

.bar-chart i {
  height: 7px;
}

.report-numbers span {
  min-height: 105px;
  padding: 20px;
  border: 1px solid #dce9df;
  background: linear-gradient(135deg, #fff, #eff8f1);
}

.report-numbers span:nth-child(2) {
  background: linear-gradient(135deg, #fff, #fff6e7);
}

.report-numbers span:nth-child(3) {
  background: linear-gradient(135deg, #fff, #eff6ff);
}

.report-numbers span:nth-child(4) {
  background: linear-gradient(135deg, #fff, #fff0f0);
}

.report-numbers b {
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.quick-insights {
  margin-top: 24px;
}

.quick-insights > div:last-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-insights article {
  padding: 10px 24px;
  border-right: 1px solid #e1e7e8;
}

.quick-insights article:last-child {
  border: 0;
}

.quick-insights span,
.quick-insights b {
  display: block;
}

.quick-insights span {
  font-size: 10px;
  color: #687683;
}

.quick-insights b {
  font-size: 22px;
  margin-top: 7px;
}

.admin-layout.collapsed .admin-nav-icon {
  display: none;
}

@media (max-width: 1250px) {
  .bus-metrics {
    margin: 0 0 24px;
  }
  .admin-page {
    padding: 30px 24px;
  }
  .admin-sidebar {
    width: 270px;
    min-width: 270px;
    max-width: 270px;
  }
  .admin-layout {
    grid-template-columns: 270px minmax(0, 1fr);
  }
  .admin-filter-bar {
    flex-wrap: wrap;
  }
  .admin-filter-bar .admin-search {
    min-width: 100%;
  }
}

@media (max-width: 1050px) {
  .admin-sidebar,
  .admin-layout.collapsed .admin-sidebar {
    width: 286px;
    min-width: 286px;
    max-width: 286px;
  }
  .admin-layout.collapsed .admin-brand .brand {
    width: auto;
    flex: 1;
  }
  .admin-layout.collapsed .admin-brand .brand img {
    width: 172px;
    transform: none;
  }
  .admin-nav-icon,
  .admin-layout.collapsed .admin-nav-icon {
    display: grid;
  }
  .admin-topbar {
    height: 76px;
  }
  .bus-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .admin-list-heading {
    align-items: flex-start;
    gap: 15px;
  }
  .admin-list-tools {
    width: 100%;
  }
  .admin-list-heading {
    flex-direction: column;
  }
  .admin-search {
    flex: 1;
  }
  .report-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header .brand img {
    width: 135px;
    height: 52px;
  }
  .site-footer .brand img {
    width: 160px;
  }
  .admin-page {
    padding: 22px 12px 80px;
  }
  .admin-page-header h1 {
    font-size: 32px;
  }
  .stat-grid,
  .bus-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-grid article {
    min-height: 112px;
    padding: 15px;
  }
  .stat-grid article > b {
    font-size: 24px;
    margin: 18px 0 4px;
  }
  .bus-metrics article {
    min-height: 78px;
    padding: 12px;
  }
  .bus-metrics i {
    width: 40px;
    height: 40px;
  }
  .admin-list-tools {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-search {
    width: 100%;
    min-width: 0;
  }
  .admin-filter-bar {
    padding: 13px;
  }
  .admin-filter-bar > input,
  .admin-filter-bar > select {
    width: 100%;
    min-width: 0;
  }
  .admin-data-card {
    padding: 13px;
  }
  .quick-insights > div:last-child {
    grid-template-columns: 1fr 1fr;
  }
  .quick-insights article:nth-child(2) {
    border-right: 0;
  }
  .admin-user span {
    display: none;
  }
}

@media (max-width: 430px) {
  .stat-grid,
  .bus-metrics {
    grid-template-columns: 1fr;
  }
  .quick-insights > div:last-child {
    grid-template-columns: 1fr;
  }
  .quick-insights article {
    border-right: 0;
    border-bottom: 1px solid #e1e7e8;
  }
  .admin-page-header {
    gap: 15px;
  }
  .admin-page-header .primary-button {
    width: 100%;
  }
}

.home-coach img {
  width: 128px;
  height: 45px;
  object-fit: contain;
  background: white;
  border-radius: 5px;
  mix-blend-mode: multiply;
}

/* =========================================================
   ADMIN MOBILE FIX
   ========================================================= */

@media (max-width: 720px) {
  /* Overall admin layout */
  .admin-layout {
    display: block;
    min-height: 100vh;
  }

  .admin-workspace {
    width: 100%;
    min-width: 0;
    margin-left: 0;
  }

  /* Sidebar becomes mobile drawer */
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 290px;
    max-width: 88vw;
    height: 100dvh;
    z-index: 1000;

    display: flex;
    flex-direction: column;

    transform: translateX(-100%);
    transition: transform 0.25s ease;

    overflow: hidden;
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-brand {
    flex: 0 0 auto;
    position: relative;
  }

  .admin-sidebar nav {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 20px;
  }

  .admin-sidebar-bottom {
    flex: 0 0 auto;
    margin-top: auto;
    position: static;
    padding: 16px 18px;
  }

  .admin-brand {
    padding: 18px;
  }

  .admin-sidebar nav {
    padding: 10px 12px;
  }

  .admin-sidebar nav a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .admin-nav-icon {
    flex: 0 0 22px;
  }

  .admin-sidebar-bottom {
    position: static;
    margin-top: 20px;
    padding: 16px;
  }

  /* Top bar */
  .admin-topbar {
    min-height: 64px;
    height: auto;
    padding: 10px 14px;
    gap: 10px;
  }

  .admin-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
  }

  .admin-crumb {
    min-width: 0;
    flex: 1;
  }

  .admin-crumb span {
    font-size: 10px;
  }

  .admin-crumb b {
    display: block;
    font-size: 15px;
  }

  .admin-user {
    flex: 0 0 auto;
  }

  .admin-user > span {
    display: none;
  }

  .admin-user i {
    width: 38px;
    height: 38px;
  }

  /* Main content */
  .admin-page {
    width: 100%;
    max-width: 100%;
    padding: 18px 14px 30px;
    overflow-x: hidden;
  }

  .admin-page-header {
    display: block;
    margin-bottom: 18px;
  }

  .admin-page-header h1 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.05;
  }

  .admin-page-header p {
    font-size: 13px;
    line-height: 1.5;
  }

  .admin-page-header .primary-button {
    width: 100%;
    margin-top: 15px;
  }

  /* Dashboard statistic cards */
  .stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-grid article {
    min-width: 0;
    width: 100%;
  }

  /* Dashboard lower section */
  .admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .admin-dashboard-grid > * {
    min-width: 0;
    width: 100%;
  }

  /* This fixes your screenshot specifically */
  .upcoming-list {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .upcoming-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    width: 100%;
  }

  .upcoming-list article > span {
    white-space: nowrap;
    font-size: 11px;
  }

  .upcoming-list article > div {
    min-width: 0;
  }

  .upcoming-list article b,
  .upcoming-list article small {
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .upcoming-list .status-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  /* General cards */
  .admin-card {
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .card-heading {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .card-heading > div {
    min-width: 0;
    flex: 1;
  }

  .card-heading h2 {
    font-size: 18px;
  }

  /* Bus metrics */
  .bus-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bus-metrics article {
    min-width: 0;
    padding: 14px;
  }

  .bus-metrics article b {
    font-size: 22px;
  }

  /* Filters and search bars */
  .admin-filters,
  .admin-filter-bar,
  .admin-list-tools {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .admin-search {
    width: 100%;
    min-width: 0;
  }

  .admin-search input,
  .admin-filters input,
  .admin-filters select,
  .filter-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .admin-list-heading {
    display: block;
  }

  .admin-list-heading .admin-list-tools {
    margin-top: 14px;
  }

  /* Tables should scroll, not destroy layout */
  .admin-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    min-width: 720px;
  }

  .admin-table th,
  .admin-table td {
    white-space: nowrap;
  }

  /* Booking table may need more room */
  [data-booking-table] .admin-table {
    min-width: 1050px;
  }

  /* Customers table */
  [data-customer-table] .admin-table {
    min-width: 780px;
  }

  /* Table action buttons */
  .table-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
  }

  /* Reports */
  .report-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .report-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .quick-insights > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .bar-chart > div {
    grid-template-columns: minmax(90px, 1fr) minmax(70px, 2fr) auto;
    gap: 8px;
  }

  /* Modals */
  .modal-overlay {
    padding: 14px;
  }

  .admin-modal,
  .confirm-dialog {
    width: min(100%, 520px);
    max-height: 90vh;
    overflow-y: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Smaller phones */
@media (max-width: 430px) {
  .admin-page {
    padding-inline: 10px;
  }

  .bus-metrics {
    grid-template-columns: 1fr;
  }

  .report-numbers,
  .quick-insights > div:last-child {
    grid-template-columns: 1fr;
  }

  .admin-card {
    padding: 13px;
  }

  .admin-page-header h1 {
    font-size: 30px;
  }

  .booking-toolbar > .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .booking-toolbar > .container > a {
    width: fit-content;
    font-size: 14px;
  }

  .booking-toolbar > .container > div:nth-of-type(1) {
    width: 100%;
  }

  .booking-progress {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .booking-progress > span {
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .booking-progress i {
    font-size: 12px;
  }

  .booking-progress b {
    width: 28px;
    height: 28px;
  }
}

/* =========================================
   FINAL ADMIN MOBILE FIXES
   ========================================= */

.admin-sidebar-close {
  display: none;
}

@media (max-width: 720px) {
  /* MOBILE SIDEBAR */

  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 290px;
    max-width: 88vw;
    height: 100dvh;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    transform: translateX(-100%);
    transition: transform 0.25s ease;

    z-index: 1000;
  }

  .admin-sidebar.open {
    display: flex;
    transform: translateX(0);
  }

  .admin-brand {
    position: relative;
    flex-shrink: 0;
  }

  .admin-sidebar nav {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .admin-sidebar-bottom {
    position: static;
    flex-shrink: 0;
    margin-top: auto;
  }

  .admin-sidebar-close {
    display: grid;
    place-items: center;

    position: absolute;
    top: 15px;
    right: 12px;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 9px;

    background: rgba(0, 0, 0, 0.15);
    color: white;

    font-size: 22px;
    line-height: 1;
  }

  /* =========================================
     BUSES TABLE -> MOBILE CARD
     ========================================= */

  [data-bus-table] .admin-table-wrap {
    overflow: visible;
  }

  [data-bus-table] .admin-table {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }

  [data-bus-table] thead {
    display: none;
  }

  [data-bus-table] tbody {
    display: grid;
    gap: 12px;
  }

  [data-bus-table] tr {
    display: block;

    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;

    padding: 14px;
  }

  [data-bus-table] td {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 10px;

    width: 100%;
    padding: 9px 0;

    border: 0;
    border-bottom: 1px solid #edf0ed;

    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  [data-bus-table] td:last-child {
    border-bottom: 0;
  }

  [data-bus-table] td::before {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
  }

  [data-bus-table] td:nth-child(1)::before {
    content: "Bus";
  }

  [data-bus-table] td:nth-child(2)::before {
    content: "Registration";
  }

  [data-bus-table] td:nth-child(3)::before {
    content: "Type";
  }

  [data-bus-table] td:nth-child(4)::before {
    content: "Layout";
  }

  [data-bus-table] td:nth-child(5)::before {
    content: "Seats";
  }

  [data-bus-table] td:nth-child(6)::before {
    content: "Status";
  }

  [data-bus-table] td:nth-child(7)::before {
    content: "Actions";
  }

  [data-bus-table] .table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* =========================================
     TRIPS TABLE -> MOBILE CARD
     ========================================= */

  [data-trip-table] {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  [data-trip-table] .admin-table-wrap {
    overflow: visible;
  }

  [data-trip-table] .admin-table {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }

  [data-trip-table] thead {
    display: none;
  }

  [data-trip-table] tbody {
    display: grid;
    gap: 12px;
  }

  [data-trip-table] tr {
    display: block;

    padding: 14px;

    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  [data-trip-table] td {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;

    width: 100%;
    padding: 9px 0;

    border: 0;
    border-bottom: 1px solid #edf0ed;

    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  [data-trip-table] td:last-child {
    border-bottom: 0;
  }

  [data-trip-table] td::before {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted);
  }

  [data-trip-table] td:nth-child(1)::before {
    content: "Trip";
  }

  [data-trip-table] td:nth-child(2)::before {
    content: "Bus";
  }

  [data-trip-table] td:nth-child(3)::before {
    content: "Route";
  }

  [data-trip-table] td:nth-child(4)::before {
    content: "Date";
  }

  [data-trip-table] td:nth-child(5)::before {
    content: "Departure";
  }

  [data-trip-table] td:nth-child(6)::before {
    content: "Arrival";
  }

  [data-trip-table] td:nth-child(7)::before {
    content: "Fare";
  }

  [data-trip-table] td:nth-child(8)::before {
    content: "Status";
  }

  [data-trip-table] select {
    width: 100%;
    max-width: 170px;
  }
}

@media (max-width: 720px) {
  .admin-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .admin-brand .brand {
    flex: 0 1 auto;
    width: 210px;
    max-width: calc(100% - 48px);
  }

  .admin-brand .brand img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
  }

  .admin-sidebar-close {
    display: grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    position: relative;
    z-index: 2;
  }
}

/* =========================================
   MODERN MOBILE TRIP CARDS
   ========================================= */

@media (max-width: 720px) {
  [data-trip-table] tbody {
    display: grid;
    gap: 16px;
  }

  [data-trip-table] tr {
    position: relative;
    display: grid;
    gap: 0;

    padding: 18px 16px 16px;

    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);

    border: 1px solid #dce7df;
    border-radius: 18px;

    box-shadow: 0 8px 22px rgba(19, 61, 41, 0.07);

    overflow: hidden;
  }

  /* slim green accent */
  [data-trip-table] tr::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--green);
  }

  [data-trip-table] td {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr);
    align-items: center;

    gap: 12px;

    padding: 10px 0;

    border: 0;
    border-bottom: 1px solid #edf2ee;

    white-space: normal !important;
  }

  [data-trip-table] td:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  [data-trip-table] td::before {
    font-size: 9px;
    font-weight: 900;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    color: #789087;
  }

  [data-trip-table] td:nth-child(1)::before {
    content: "Trip ID";
  }

  [data-trip-table] td:nth-child(2)::before {
    content: "Bus";
  }

  [data-trip-table] td:nth-child(3)::before {
    content: "Route";
  }

  [data-trip-table] td:nth-child(4)::before {
    content: "Date";
  }

  [data-trip-table] td:nth-child(5)::before {
    content: "Departure";
  }

  [data-trip-table] td:nth-child(6)::before {
    content: "Arrival";
  }

  [data-trip-table] td:nth-child(7)::before {
    content: "Fare";
  }

  [data-trip-table] td:nth-child(8)::before {
    content: "Status";
  }

  /* Trip id */
  [data-trip-table] td:nth-child(1) b {
    display: inline-flex;
    width: max-content;

    padding: 5px 8px;

    border-radius: 7px;

    background: #e8f5eb;
    color: var(--green);

    font-size: 11px;
    font-weight: 900;
  }

  /* Bus */
  [data-trip-table] td:nth-child(2) {
    font-weight: 750;
  }

  /* Route becomes stronger */
  [data-trip-table] td:nth-child(3) {
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  /* Date / times */
  [data-trip-table] td:nth-child(4),
  [data-trip-table] td:nth-child(5),
  [data-trip-table] td:nth-child(6) {
    font-size: 12px;
  }

  /* Fare */
  [data-trip-table] td:nth-child(7) {
    font-size: 15px;
    font-weight: 900;
    color: var(--green);
  }

  /* Status select */
  [data-trip-table] td:nth-child(8) select {
    width: 100%;
    max-width: 180px;

    padding: 9px 34px 9px 11px;

    border: 1px solid #bcd7c4;
    border-radius: 9px;

    background: #eff8f1;
    color: var(--green);

    font-size: 11px;
    font-weight: 850;
  }
}

@media (max-width: 720px) {
  [data-trip-table] td:nth-child(8) {
    align-items: center;
  }

  [data-trip-table] td:nth-child(8) select {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    max-width: 180px;

    padding: 10px 36px 10px 12px;

    border: 1px solid #bcd7c4;
    border-radius: 10px;

    background:
      linear-gradient(45deg, transparent 50%, var(--green) 50%)
        calc(100% - 16px) 50% / 6px 6px no-repeat,
      linear-gradient(135deg, var(--green) 50%, transparent 50%)
        calc(100% - 12px) 50% / 6px 6px no-repeat,
      #eff8f1;

    color: var(--green);

    font-size: 11px;
    font-weight: 850;

    outline: none;
    cursor: pointer;
  }

  [data-trip-table] td:nth-child(8) select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.2);
  }
}

/* =========================================
   CLEAN TRIP STATUS DROPDOWN
   ========================================= */

.trip-status-dropdown {
  position: relative;
  width: fit-content;
  min-width: 125px;
}

.trip-status-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  width: auto;
  min-width: 125px;
  min-height: 34px;

  padding: 7px 10px 7px 12px;

  border: 1px solid #c9dfd0;
  border-radius: 8px;

  background: #edf8f0;
  color: #087443;

  font-size: 10px;
  font-weight: 800;
  text-transform: capitalize;

  box-shadow: none;
}

.trip-status-trigger:hover {
  border-color: #87b99a;
  background: #e5f5e9;
}

.trip-status-arrow {
  width: 16px;
  height: 16px;

  display: grid;
  place-items: center;

  font-size: 0;
}

.trip-status-arrow::before {
  content: "";
  width: 6px;
  height: 6px;

  border-right: 2px solid #087443;
  border-bottom: 2px solid #087443;

  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.trip-status-dropdown.open .trip-status-arrow::before {
  transform: rotate(225deg) translate(-1px, -1px);
}

/* dropdown popup */
.trip-status-menu {
  display: none;

  position: absolute;
  top: calc(100% + 6px);
  right: 0;

  width: 165px;
  padding: 5px;

  z-index: 500;

  background: #fff;

  border: 1px solid #dce7df;
  border-radius: 10px;

  box-shadow: 0 12px 28px rgba(13, 70, 43, 0.16);
}

.trip-status-dropdown.open .trip-status-menu {
  display: grid;
  gap: 2px;
}

.trip-status-menu button {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 8px;

  width: 100%;

  padding: 8px 9px;

  border: 0;
  border-radius: 7px;

  background: transparent;
  color: #26382f;

  text-align: left;
  text-transform: capitalize;

  font-size: 10px;
  font-weight: 700;
}

.trip-status-menu button:hover {
  background: #f0f7f2;
}

.trip-status-menu button.selected {
  background: #e5f4e9;
  color: #087443;
}

.trip-status-menu button b {
  color: #087443;
  font-size: 10px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-dot.scheduled {
  background: #1e9b55;
}

.status-dot.boarding {
  background: #e9a300;
}

.status-dot.departed {
  background: #3478c6;
}

.status-dot.completed {
  background: #65736c;
}

.status-dot.cancelled {
  background: #d6433b;
}

/* Mobile positioning */
@media (max-width: 720px) {
  [data-trip-table] td:nth-child(8) {
    align-items: center;
  }

  .trip-status-dropdown {
    width: fit-content;
    min-width: 125px;
  }

  .trip-status-trigger {
    width: auto;
    min-width: 125px;
  }

  .trip-status-menu {
    left: 0;
    right: auto;
    width: 165px;
  }
}

@media (max-width: 720px) {
  [data-trip-table] tr {
    overflow: visible !important;
    position: relative;
  }

  [data-trip-table] tbody {
    gap: 22px;
  }

  [data-trip-table] td:nth-child(8) {
    position: relative;
    overflow: visible;
  }

  .trip-status-dropdown {
    position: relative;
    z-index: 20;
  }

  .trip-status-dropdown.open {
    z-index: 1000;
  }

  .trip-status-menu {
    z-index: 1001;
  }
}

/* =========================================
   BOOKINGS TABLE -> MOBILE CARDS
   ========================================= */

@media (max-width: 720px) {
  [data-booking-table] {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  [data-booking-table] .admin-table-wrap {
    overflow: visible;
  }

  [data-booking-table] .admin-table {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }

  [data-booking-table] thead {
    display: none;
  }

  [data-booking-table] tbody {
    display: grid;
    gap: 14px;
  }

  [data-booking-table] tr {
    display: block;
    width: 100%;

    padding: 16px;

    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;

    box-shadow: 0 8px 20px rgba(15, 61, 39, 0.06);
  }

  [data-booking-table] td {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
    align-items: center;

    width: 100%;

    padding: 9px 0;

    border: 0;
    border-bottom: 1px solid #edf1ee;

    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  [data-booking-table] td:last-child {
    border-bottom: 0;
  }

  [data-booking-table] td::before {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #73877d;
  }

  [data-booking-table] td:nth-child(1)::before {
    content: "PNR";
  }

  [data-booking-table] td:nth-child(2)::before {
    content: "Passenger";
  }

  [data-booking-table] td:nth-child(3)::before {
    content: "Phone";
  }

  [data-booking-table] td:nth-child(4)::before {
    content: "Route";
  }

  [data-booking-table] td:nth-child(5)::before {
    content: "Bus";
  }

  [data-booking-table] td:nth-child(6)::before {
    content: "Seats";
  }

  [data-booking-table] td:nth-child(7)::before {
    content: "Boarding";
  }

  [data-booking-table] td:nth-child(8)::before {
    content: "Fare";
  }

  [data-booking-table] td:nth-child(9)::before {
    content: "Payment";
  }

  [data-booking-table] td:nth-child(10)::before {
    content: "Status";
  }

  [data-booking-table] td:nth-child(11)::before {
    content: "Date";
  }

  [data-booking-table] td:nth-child(12)::before {
    content: "Actions";
  }

  /* make PNR stand out */
  [data-booking-table] td:nth-child(1) b {
    display: inline-flex;
    width: max-content;

    padding: 5px 8px;

    border-radius: 7px;

    background: #e8f5eb;
    color: var(--green);

    font-size: 10px;
  }

  /* fare */
  [data-booking-table] td:nth-child(8) {
    color: var(--green);
    font-weight: 850;
  }

  /* action buttons */
  [data-booking-table] .table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  [data-booking-table] .table-actions button {
    padding: 7px 9px;
    font-size: 9px;
  }

  /* empty state */
  [data-booking-table] .admin-empty {
    min-height: 220px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 28px 18px;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 16px;

    text-align: center;
  }

  [data-booking-table] .admin-empty b {
    font-size: 15px;
    margin-bottom: 6px;
  }

  [data-booking-table] .admin-empty span {
    max-width: 220px;

    font-size: 11px;
    line-height: 1.5;

    color: var(--muted);
  }
}

/* =========================================
   CUSTOMERS TABLE -> MOBILE CARDS
   ========================================= */

@media (max-width: 720px) {
  /* clean customer search */
  [data-customer-search] {
    background: #fff !important;
    color: var(--ink);
    position: relative;
    z-index: 1;
  }

  .admin-filter-bar .admin-search {
    overflow: hidden;
  }

  /* remove table look */
  [data-customer-table] {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  [data-customer-table] .admin-table-wrap {
    overflow: visible;
  }

  [data-customer-table] .admin-table {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }

  [data-customer-table] thead {
    display: none;
  }

  [data-customer-table] tbody {
    display: grid;
    gap: 14px;
  }

  /* each customer becomes a card */
  [data-customer-table] tr {
    position: relative;
    display: block;

    width: 100%;
    padding: 16px;

    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);

    border: 1px solid #dce7df;
    border-radius: 16px;

    box-shadow: 0 8px 22px rgba(15, 61, 39, 0.06);

    overflow: hidden;
  }

  /* green left accent */
  [data-customer-table] tr::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 4px;
    height: 100%;

    background: var(--green);
  }

  [data-customer-table] td {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    align-items: center;

    gap: 10px;

    width: 100%;
    padding: 10px 0;

    border: 0;
    border-bottom: 1px solid #edf1ee;

    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  [data-customer-table] td:last-child {
    border-bottom: 0;
  }

  [data-customer-table] td::before {
    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    color: #71867b;
  }

  [data-customer-table] td:nth-child(1)::before {
    content: "Name";
  }

  [data-customer-table] td:nth-child(2)::before {
    content: "Phone";
  }

  [data-customer-table] td:nth-child(3)::before {
    content: "Email";
  }

  [data-customer-table] td:nth-child(4)::before {
    content: "Bookings";
  }

  [data-customer-table] td:nth-child(5)::before {
    content: "Last journey";
  }

  [data-customer-table] td:nth-child(6)::before {
    content: "Total spent";
  }

  /* name */
  [data-customer-table] td:nth-child(1) b {
    font-size: 12px;
    color: var(--ink);
  }

  /* email */
  [data-customer-table] td:nth-child(3) {
    font-size: 10px;
  }

  /* booking count */
  [data-customer-table] td:nth-child(4) {
    font-weight: 800;
  }

  /* money */
  [data-customer-table] td:nth-child(6) {
    color: var(--green);
    font-weight: 900;
    font-size: 13px;
  }

  /* empty state */
  [data-customer-table] .admin-empty {
    min-height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 28px 18px;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 16px;

    text-align: center;
  }

  [data-customer-table] .admin-empty b {
    margin-bottom: 6px;

    font-size: 15px;
    color: var(--ink);
  }

  [data-customer-table] .admin-empty span {
    max-width: 220px;

    font-size: 11px;
    line-height: 1.5;

    color: var(--muted);
  }
}

/* =========================================
   OFFERS / PROMO TABLE -> MOBILE CARDS
   ========================================= */

@media (max-width: 720px) {
  [data-offer-table] {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  [data-offer-table] .admin-table-wrap {
    overflow: visible;
  }

  [data-offer-table] .admin-table {
    display: block;
    width: 100%;
    min-width: 0 !important;
  }

  [data-offer-table] thead {
    display: none;
  }

  [data-offer-table] tbody {
    display: grid;
    gap: 14px;
  }

  [data-offer-table] tr {
    position: relative;
    display: block;

    width: 100%;
    padding: 16px;

    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);

    border: 1px solid #dce7df;
    border-radius: 16px;

    box-shadow: 0 8px 20px rgba(15, 61, 39, 0.06);

    overflow: hidden;
  }

  /* green accent line */
  [data-offer-table] tr::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 4px;
    height: 100%;

    background: var(--green);
  }

  [data-offer-table] td {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;

    gap: 10px;

    width: 100%;
    padding: 10px 0;

    border: 0;
    border-bottom: 1px solid #edf1ee;

    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  [data-offer-table] td:last-child {
    border-bottom: 0;
  }

  [data-offer-table] td::before {
    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    color: #73877d;
  }

  [data-offer-table] td:nth-child(1)::before {
    content: "Code";
  }

  [data-offer-table] td:nth-child(2)::before {
    content: "Title";
  }

  [data-offer-table] td:nth-child(3)::before {
    content: "Type";
  }

  [data-offer-table] td:nth-child(4)::before {
    content: "Value";
  }

  [data-offer-table] td:nth-child(5)::before {
    content: "Minimum";
  }

  [data-offer-table] td:nth-child(6)::before {
    content: "Validity";
  }

  [data-offer-table] td:nth-child(7)::before {
    content: "Status";
  }

  [data-offer-table] td:nth-child(8)::before {
    content: "Actions";
  }

  /* promo code pill */
  [data-offer-table] td:nth-child(1) b {
    display: inline-flex;
    width: max-content;

    padding: 5px 8px;

    background: #e8f5eb;
    color: var(--green);

    border-radius: 7px;

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.3px;
  }

  /* title */
  [data-offer-table] td:nth-child(2) {
    font-weight: 800;
  }

  /* discount type */
  [data-offer-table] td:nth-child(3) {
    text-transform: capitalize;
  }

  /* discount value */
  [data-offer-table] td:nth-child(4) {
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
  }

  /* minimum booking */
  [data-offer-table] td:nth-child(5) {
    font-weight: 750;
  }

  /* validity */
  [data-offer-table] td:nth-child(6) {
    font-size: 10px;
    line-height: 1.4;
  }

  /* status */
  [data-offer-table] td:nth-child(7) .status-badge {
    width: max-content;
  }

  /* action button */
  [data-offer-table] td:nth-child(8) button {
    min-width: 85px;

    padding: 7px 10px;

    border-radius: 8px;

    font-size: 9px;
    font-weight: 800;
  }
}

/* =========================================
   REPORTS PAGE -> MODERN MOBILE UI
   ========================================= */

@media (max-width: 720px) {
  /* report page spacing */
  .report-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .report-grid .admin-card,
  .quick-insights {
    padding: 16px;
    border-radius: 16px;

    background: #fff;
    border: 1px solid #dce7df;

    box-shadow: 0 8px 22px rgba(15, 61, 39, 0.06);
  }

  /* titles */
  .report-grid .admin-card > h2,
  .quick-insights .card-heading h2 {
    margin: 0 0 14px;

    font-size: 17px;
    line-height: 1.2;
  }

  /* =========================================
     REVENUE BY ROUTE
     ========================================= */

  .bar-chart {
    margin-top: 8px;
    display: grid;
    gap: 12px;
  }

  .bar-chart > div {
    display: grid;

    grid-template-columns: 1fr auto;
    grid-template-areas:
      "route amount"
      "bar bar";

    gap: 7px 10px;

    margin: 0;
    padding: 11px 0;

    border-bottom: 1px solid #edf1ee;
  }

  .bar-chart > div:last-child {
    border-bottom: 0;
  }

  .bar-chart > div > span {
    grid-area: route;

    font-size: 10px;
    font-weight: 750;
    line-height: 1.35;

    color: #23342b;
  }

  .bar-chart > div > b {
    grid-area: amount;

    align-self: start;

    font-size: 11px;
    color: var(--green);

    text-align: right;
  }

  .bar-chart > div > i {
    grid-area: bar;

    display: block;

    width: 100% !important;
    height: 6px;

    border-radius: 999px;

    background: #e8f3eb;
    position: relative;
    overflow: hidden;
  }

  .bar-chart > div > i::after {
    content: "";

    display: block;

    width: inherit;
    height: 100%;

    border-radius: inherit;

    background: var(--green);
  }

  /* =========================================
     BOOKING HEALTH
     ========================================= */

  .report-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-top: 12px;
  }

  .report-numbers span {
    min-height: 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 14px;

    border: 1px solid #e1e9e4;
    border-radius: 14px;

    background: #f8fbf9;

    color: var(--muted);

    font-size: 9px;
  }

  .report-numbers span:nth-child(1) {
    background: #f1f8f3;
  }

  .report-numbers span:nth-child(2) {
    background: #fff8ed;
  }

  .report-numbers span:nth-child(3) {
    background: #f2f7fb;
  }

  .report-numbers span:nth-child(4) {
    background: #fff3f2;
  }

  .report-numbers b {
    margin-bottom: 5px;

    font-size: 24px;
    line-height: 1;

    color: var(--ink);
  }

  /* =========================================
     QUICK INSIGHTS
     ========================================= */

  .quick-insights {
    margin-top: 16px;
  }

  .quick-insights .card-heading {
    margin-bottom: 12px;
  }

  .quick-insights .card-heading p {
    margin-top: 4px;

    font-size: 10px;
    line-height: 1.4;

    color: var(--muted);
  }

  .quick-insights > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .quick-insights article {
    min-width: 0;

    padding: 14px;

    border: 1px solid #e1e9e4;
    border-radius: 13px;

    background: #f8fbf9;
  }

  .quick-insights article span {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    color: var(--muted);
  }

  .quick-insights article b {
    display: block;

    font-size: 20px;
    line-height: 1;

    color: var(--ink);
  }
}

/* Extra small phones */
@media (max-width: 430px) {
  .report-numbers,
  .quick-insights > div:last-child {
    grid-template-columns: 1fr 1fr;
  }

  .report-grid .admin-card,
  .quick-insights {
    padding: 14px;
  }

  .bar-chart > div {
    padding: 10px 0;
  }

  .booking-toolbar {
    padding-bottom: 8px;
  }

  .booking-toolbar > .container {
    gap: 6px;
  }

  .booking-progress {
    margin-bottom: 0;
  }

  .booking-page > .booking-layout {
    margin-top: 8px;
  }
}

/* =====================================================
   DASHBOARD -> MODERN MOBILE UI
   ===================================================== */

@media (max-width: 720px) {
  /* ------------------------------
     DASHBOARD HEADER
     ------------------------------ */

  .admin-page-header {
    margin-bottom: 18px;
  }

  .admin-page-header .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .admin-page-header h1 {
    margin-top: 6px;
    font-size: 30px;
    line-height: 1.05;
  }

  .admin-page-header p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
  }

  /* ------------------------------
     DASHBOARD STATS
     ------------------------------ */

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 18px;
  }

  .stat-grid article {
    position: relative;

    min-width: 0;
    min-height: 112px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 15px;

    border: 1px solid #dce7df;
    border-radius: 16px;

    background: #fff;

    box-shadow: 0 6px 18px rgba(15, 61, 39, 0.05);

    overflow: hidden;
  }

  /* hide the 01, 02, 03 etc. inside stat cards */
  .stat-grid article > span {
    display: none;
  }

  .stat-grid article b {
    display: block;

    margin-bottom: 6px;

    font-size: 25px;
    line-height: 1;

    color: var(--ink);
  }

  .stat-grid article small {
    display: block;

    font-size: 9px;
    line-height: 1.3;

    color: var(--muted);
  }

  /* subtle card variations */

  .stat-grid article:nth-child(1),
  .stat-grid article:nth-child(2) {
    background: #f2faf4;
  }

  .stat-grid article:nth-child(3) {
    background: #fff9ef;
  }

  .stat-grid article:nth-child(4) {
    background: #f4f7fc;
  }

  .stat-grid article:nth-child(5) {
    background: #f1f8f4;
  }

  .stat-grid article:nth-child(6) {
    background: #f3f8fd;
  }

  .stat-grid article:nth-child(7) {
    background: #fff4f3;
  }

  /* final occupancy card uses full row */
  .stat-grid article:nth-child(7) {
    grid-column: 1 / -1;
    min-height: 95px;
  }

  /* ------------------------------
     LOWER DASHBOARD
     ------------------------------ */

  .admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;

    gap: 15px;

    width: 100%;
  }

  .admin-dashboard-grid > .admin-card {
    width: 100%;
    min-width: 0;

    padding: 15px;

    border: 1px solid #dce7df;
    border-radius: 16px;

    background: #fff;

    box-shadow: 0 7px 20px rgba(15, 61, 39, 0.055);
  }

  /* ------------------------------
     CARD HEADINGS
     ------------------------------ */

  .admin-dashboard-grid .card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 14px;
  }

  .admin-dashboard-grid .card-heading h2 {
    margin: 0 0 3px;

    font-size: 16px;
    line-height: 1.2;
  }

  .admin-dashboard-grid .card-heading p {
    margin: 0;

    font-size: 9px;
    color: var(--muted);
  }

  .admin-dashboard-grid .card-heading a {
    flex-shrink: 0;

    font-size: 9px;
    font-weight: 800;

    color: var(--green);
  }

  /* =====================================================
     RECENT BOOKINGS TABLE -> MOBILE
     ===================================================== */

  .admin-dashboard-grid > .admin-card:first-child .admin-table-wrap {
    width: 100%;

    overflow: visible;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table {
    display: block;

    width: 100%;
    min-width: 0 !important;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table thead {
    display: none;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table tbody {
    display: grid;
    gap: 10px;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table tr {
    display: block;

    padding: 13px;

    border: 1px solid #e1e9e4;
    border-radius: 13px;

    background: #fbfdfb;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table td {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);

    gap: 9px;

    width: 100%;

    padding: 8px 0;

    border: 0;
    border-bottom: 1px solid #edf1ee;

    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table td:last-child {
    border-bottom: 0;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-table td::before {
    font-size: 8px;
    font-weight: 850;

    letter-spacing: 0.6px;
    text-transform: uppercase;

    color: #75897f;
  }

  .admin-dashboard-grid
    > .admin-card:first-child
    .admin-table
    td:nth-child(1)::before {
    content: "PNR";
  }

  .admin-dashboard-grid
    > .admin-card:first-child
    .admin-table
    td:nth-child(2)::before {
    content: "Passenger";
  }

  .admin-dashboard-grid
    > .admin-card:first-child
    .admin-table
    td:nth-child(3)::before {
    content: "Route";
  }

  .admin-dashboard-grid
    > .admin-card:first-child
    .admin-table
    td:nth-child(4)::before {
    content: "Seats";
  }

  .admin-dashboard-grid
    > .admin-card:first-child
    .admin-table
    td:nth-child(5)::before {
    content: "Amount";
  }

  .admin-dashboard-grid
    > .admin-card:first-child
    .admin-table
    td:nth-child(6)::before {
    content: "Status";
  }

  /* ------------------------------
     RECENT BOOKINGS EMPTY STATE
     ------------------------------ */

  .admin-dashboard-grid > .admin-card:first-child .admin-empty {
    min-height: 190px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 24px 16px;

    border: 1px solid #e1e9e4;
    border-radius: 14px;

    background: #fbfdfb;

    text-align: center;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-empty b {
    margin-bottom: 5px;

    font-size: 14px;
  }

  .admin-dashboard-grid > .admin-card:first-child .admin-empty span {
    max-width: 200px;

    font-size: 10px;
    line-height: 1.5;

    color: var(--muted);
  }

  /* =====================================================
     UPCOMING TRIPS
     ===================================================== */

  .upcoming-list {
    overflow: visible;
  }

  .upcoming-list article {
    display: grid;

    grid-template-columns: 68px minmax(0, 1fr) auto;

    align-items: center;

    gap: 10px;

    width: 100%;

    padding: 12px 0;

    border-bottom: 1px solid #edf1ee;
  }

  .upcoming-list article:last-child {
    border-bottom: 0;
  }

  .upcoming-list article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 30px;

    padding: 6px 7px;

    border-radius: 8px;

    background: #e9f6ed;
    color: var(--green);

    font-size: 9px;
    font-weight: 850;

    white-space: nowrap;
  }

  .upcoming-list article > div {
    min-width: 0;
  }

  .upcoming-list article b {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
    line-height: 1.35;

    white-space: normal;
  }

  .upcoming-list article small {
    display: block;

    font-size: 8px;

    color: var(--muted);
  }

  .upcoming-list .status-badge {
    width: max-content;

    font-size: 8px;
  }
}

/* =====================================================
   VERY SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .stat-grid article {
    min-height: 102px;
    padding: 13px;
  }

  .stat-grid article b {
    font-size: 22px;
  }

  .upcoming-list article {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .upcoming-list .status-badge {
    grid-column: 2;
    justify-self: start;
  }
}

/* =========================================
   MOBILE ADMIN NAVBAR + SIDEBAR BUTTON FIX
   ========================================= */

@media (max-width: 720px) {
  /* Keep the top admin navbar visible while page scrolls */
  .admin-topbar {
    position: sticky;
    top: 0;
    z-index: 900;

    width: 100%;

    background: #fff;
    border-bottom: 1px solid #e2e9e5;

    box-shadow: 0 4px 14px rgba(15, 61, 39, 0.05);
  }

  /* Make sure page content scrolls normally below it */
  .admin-workspace {
    min-width: 0;
    width: 100%;
  }

  .admin-page {
    position: relative;
    z-index: 1;
  }

  /* =========================================
     SIDEBAR BOTTOM BUTTONS
     ========================================= */

  .admin-sidebar-bottom {
    display: grid;
    gap: 8px;

    padding: 14px 16px 16px;
  }

  .admin-sidebar-bottom a,
  .admin-sidebar-bottom button {
    width: 100%;
    min-height: 42px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 10px 12px;

    border: 0;
    border-radius: 9px;

    background: transparent;

    color: #d8eee4;

    font-size: 12px;
    font-weight: 600;

    text-align: left;
    cursor: pointer;
  }

  .admin-sidebar-bottom a span,
  .admin-sidebar-bottom button span {
    width: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 20px;

    font-size: 16px;
  }

  .admin-sidebar-bottom a:hover,
  .admin-sidebar-bottom button:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* =========================================
   MOBILE SIDEBAR BOTTOM BUTTON SIZE FIX
   ========================================= */

@media (max-width: 720px) {
  .admin-sidebar-bottom a,
  .admin-sidebar-bottom button {
    width: auto;
    min-width: 150px;
    min-height: 42px;

    padding: 10px 12px;

    display: flex;
    align-items: center;
    gap: 11px;

    font-size: 12px;
    font-weight: 600;

    border-radius: 9px;
  }

  .admin-sidebar-bottom a span,
  .admin-sidebar-bottom button span {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    font-size: 16px;
  }
}

/* =========================================
   FIX ADMIN TOP NAVBAR ON MOBILE
   ========================================= */

@media (max-width: 720px) {
  .admin-topbar {
    position: fixed !important;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 70px;

    z-index: 900;

    background: #ffffff;
    border-bottom: 1px solid #e2e9e5;

    box-shadow: 0 4px 15px rgba(15, 61, 39, 0.06);
  }

  /* Push page below fixed navbar */
  .admin-workspace {
    padding-top: 70px;
  }

  .admin-page {
    margin-top: 0;
  }
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 32px;
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: #b7f34a;
}

/* MOBILE */

@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    margin-top: 24px;
    padding-top: 18px;

    font-size: 12px;
  }
}
/* =========================================
   SUPPORT / LEGAL PAGES
   ========================================= */

.support-page {
  min-height: 60vh;
  padding: 70px 0;
  background: #f6f8f6;
}

.support-container {
  max-width: 900px;
}

.support-container h1 {
  margin: 8px 0 14px;

  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.05;
}

.support-intro {
  max-width: 680px;

  margin-bottom: 30px;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.7;
}

.support-card {
  margin-bottom: 16px;

  padding: 24px;

  background: #fff;

  border: 1px solid var(--line);
  border-radius: 16px;

  box-shadow: 0 8px 22px rgba(15, 61, 39, 0.04);
}

.support-card h2 {
  margin: 0 0 12px;

  font-size: 21px;
}

.support-card h3 {
  margin: 20px 0 8px;

  font-size: 16px;
}

.support-card p,
.support-card li {
  color: #516058;

  font-size: 14px;
  line-height: 1.7;
}

.support-card ul {
  padding-left: 20px;
}

.support-contact-list {
  display: grid;
  gap: 10px;
}

.support-contact-list p {
  margin: 0;
}

.support-contact-list a {
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 720px) {
  .support-page {
    padding: 40px 0;
  }

  .support-container h1 {
    font-size: 34px;
  }

  .support-card {
    padding: 18px;
    border-radius: 14px;
  }

  .support-intro {
    font-size: 14px;
  }
}

/* =====================================================
   FINAL MOBILE HEADER FIX
   Keep existing menu logic untouched
   ===================================================== */

@media (max-width: 1050px) {
  .site-header .header-inner {
    position: relative;
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
  }

  /* CENTER LOGO */

  .site-header .brand {
    position: absolute !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    margin: 0 !important;

    z-index: 2;
  }

  .site-header .brand img {
    display: block;

    width: auto !important;
    max-width: 110px;
    max-height: 45px;
  }

  /* LEFT MENU BUTTON */

  .site-header .menu-trigger {
    position: absolute !important;

    left: 14px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 40px !important;
    height: 40px !important;

    padding: 0 !important;

    border: 0 !important;
    border-radius: 10px;

    background: transparent !important;

    /*
      Keep Menu / Close text for your existing JS,
      but hide it visually.
    */
    font-size: 0 !important;

    z-index: 3;
  }

  /* VISUAL KEBAB ICON ONLY */

  .site-header .menu-trigger::before {
    content: "⋮";

    display: block;

    color: #173f2c;

    font-size: 27px;
    font-weight: 800;
    line-height: 1;

    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .site-header .menu-trigger:hover {
    background: rgba(15, 61, 39, 0.07) !important;
  }

  .site-header .menu-trigger:active::before {
    transform: scale(0.85);
  }

  /* RIGHT LOGIN */

  .site-header .login-trigger {
    position: absolute !important;

    right: 14px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    margin: 0 !important;

    z-index: 3;
  }
}

@media (max-width: 480px) {
  .site-header .header-inner {
    min-height: 64px;
  }

  .site-header .menu-trigger {
    left: 8px !important;
  }

  .site-header .login-trigger {
    right: 8px !important;

    padding: 7px 8px;

    font-size: 10px;
  }

  .site-header .brand img {
    max-width: 100px;
  }
}

/* =========================================
   POLISHED MOBILE DROPDOWN MENU
   ========================================= */

@media (max-width: 1050px) {
  .site-header .site-nav {
    position: absolute;

    top: calc(100% + 8px);
    left: 14px;
    right: 14px;

    display: none;

    padding: 10px;

    background: rgba(255, 255, 255, 0.98);

    border: 1px solid rgba(15, 61, 39, 0.08);
    border-radius: 16px;

    box-shadow:
      0 18px 45px rgba(15, 61, 39, 0.14),
      0 4px 12px rgba(15, 61, 39, 0.06);

    backdrop-filter: blur(10px);

    z-index: 850;

    overflow: hidden;
  }

  /* your JS adds .open */
  .site-header .site-nav.open {
    display: flex !important;
    flex-direction: column;

    gap: 4px;
  }

  /* menu links */

  .site-header .site-nav a {
    display: flex;
    align-items: center;

    min-height: 48px;

    padding: 12px 14px;

    color: #324b3d;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 11px;

    transition:
      background 0.18s ease,
      color 0.18s ease,
      transform 0.18s ease;
  }

  .site-header .site-nav a:hover {
    background: #f1f7f3;
    color: #0f6a3c;
  }

  .site-header .site-nav a:active {
    transform: scale(0.985);
  }

  /* hide desktop spacer inside mobile menu */

  .site-header .nav-spacer {
    display: none !important;
  }

  /* subtle divider between items */

  .site-header .site-nav a + a {
    border-top: 1px solid rgba(15, 61, 39, 0.06);
  }

  /* header itself */

  .site-header {
    box-shadow: 0 1px 0 rgba(15, 61, 39, 0.08);
  }
}

/* =========================================
   MOBILE MENU ACCOUNT
   ========================================= */

@media (max-width: 1050px) {
  .site-header .mobile-menu-account {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 0;
    border-top: 1px solid rgba(15, 61, 39, 0.06);
    border-radius: 11px;
    background: transparent;
    color: #324b3d;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition:
      background 0.18s ease,
      color 0.18s ease;
  }

  .site-header .mobile-menu-account:hover {
    background: #f1f7f3;
    color: #0f6a3c;
  }
}

/* Never show this extra account item on desktop */

@media (min-width: 1051px) {
  .mobile-menu-account {
    display: none !important;
  }
}

/* =========================================
   CENTER LOGIN MODAL ON MOBILE
   ========================================= */

@media (max-width: 720px) {
  .modal-overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
  }

  .auth-modal {
    position: relative !important;
    width: min(92vw, 420px) !important;
    max-height: 88vh !important;
    margin: 0 !important;
    border-radius: 20px !important;
    overflow-y: auto !important;
  }
}

.modal-overlay {
  z-index: 5000 !important;
}

/* WhatsApp floating button polish */

.whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: #ffffff;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp svg {
  display: block;
  width: 24px;
  height: 24px;
}

.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.whatsapp:active {
  transform: scale(0.94);
}

/* =========================================
   MOBILE SEAT MAP WIDTH FIX
   ========================================= */

@media (max-width: 720px) {
  .darshan-seat-panel {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .seat-map-wrapper {
    width: 100%;
    max-width: 100%;

    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    padding: 0;
  }

  .darshan-coach {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;

    box-sizing: border-box;

    padding: 14px 10px 18px !important;
  }

  .darshan-seat-section {
    max-width: 100%;
  }

  .darshan-seat {
    min-width: 0;
  }
}

/* =================================
   ACCOUNT PAGE - PROFESSIONAL UI
================================= */

.account-page {
  min-height: calc(100vh - 90px);
  padding: 58px 0 90px;
  background: #f5f7f5;
}

.account-page-container {
  max-width: 1050px;
}

/* HERO */

.account-hero {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 24px;
  padding: 30px;

  background: #ffffff;
  border: 1px solid #dce5df;
  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(19, 55, 39, 0.06);
}

.account-hero-avatar {
  width: 76px;
  height: 76px;

  flex: 0 0 76px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background: #087443;
  color: #ffffff;

  font-size: 30px;
  font-weight: 800;
}

.account-hero-copy {
  flex: 1;
}

.account-hero-copy .eyebrow {
  display: block;
  margin-bottom: 5px;
}

.account-hero-copy h1 {
  margin: 0 0 4px;

  font-size: 30px;
  line-height: 1.15;
}

.account-hero-copy p {
  margin: 0;

  color: var(--muted);
  font-size: 15px;
}

.account-role {
  padding: 8px 14px;

  border-radius: 999px;

  background: #edf7f1;
  color: #087443;

  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

/* SETTINGS CARD */

.account-settings-card {
  padding: 32px;

  background: #ffffff;

  border: 1px solid #dce5df;
  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(19, 55, 39, 0.05);
}

.account-settings-heading {
  padding-bottom: 24px;
  margin-bottom: 24px;

  border-bottom: 1px solid #e3e9e5;
}

.account-settings-heading h2 {
  margin: 5px 0 6px;

  font-size: 26px;
}

.account-settings-heading p {
  margin: 0;

  color: var(--muted);
  font-size: 14px;
}

/* FORM */

.account-edit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.account-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-form-field span {
  color: #223129;

  font-size: 13px;
  font-weight: 700;
}

.account-form-field input {
  width: 100%;
  height: 52px;

  padding: 0 15px;

  border: 1px solid #cfdad3;
  border-radius: 12px;

  background: #fbfcfb;

  color: #17251e;
  font: inherit;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.account-form-field input:focus {
  border-color: #087443;

  background: #ffffff;

  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.09);
}

/* MESSAGE */

.account-save-message {
  grid-column: 1 / -1;

  padding: 12px 14px;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 700;
}

.account-save-message[data-type="success"] {
  background: #edf8f2;
  color: #087443;
  border: 1px solid #ccebd9;
}

.account-save-message[data-type="error"] {
  background: #fff1f1;
  color: #b42318;
  border: 1px solid #ffd5d2;
}

/* SAVE BUTTON */

.account-save-button {
  grid-column: 1 / -1;

  width: max-content;
  min-width: 170px;

  margin-top: 4px;
}

.account-save-button:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* LOGOUT CARD */

.account-danger-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  margin-top: 20px;
  padding: 24px 28px;

  background: #ffffff;

  border: 1px solid #dce5df;
  border-radius: 18px;
}

.account-danger-card h2 {
  margin: 0 0 4px;

  font-size: 19px;
}

.account-danger-card p {
  margin: 0;

  color: var(--muted);
  font-size: 13px;
}

.account-logout-button {
  min-width: 125px;
}

/* =================================
   ACCOUNT PAGE MOBILE
================================= */

@media (max-width: 720px) {
  .account-page {
    padding: 35px 0 65px;
  }

  .account-hero {
    align-items: flex-start;

    padding: 22px;

    border-radius: 18px;
  }

  .account-hero-avatar {
    width: 58px;
    height: 58px;

    flex-basis: 58px;

    border-radius: 16px;

    font-size: 23px;
  }

  .account-hero-copy h1 {
    font-size: 23px;
  }

  .account-role {
    display: none;
  }

  .account-settings-card {
    padding: 22px;

    border-radius: 18px;
  }

  .account-edit-form {
    grid-template-columns: 1fr;
  }

  .account-save-message,
  .account-save-button {
    grid-column: auto;
  }

  .account-save-button {
    width: 100%;
  }

  .account-danger-card {
    flex-direction: column;
    align-items: flex-start;

    padding: 22px;
  }

  .account-logout-button {
    width: 100%;
  }
}

/* =========================================
   AUTH SIGNUP - CLEAN PROFESSIONAL UI
========================================= */

.auth-modal {
  width: min(94vw, 500px);
  padding: 32px;
  border-radius: 22px;
}

.auth-modal h2 {
  margin: 8px 0 10px;
  font-size: 34px;
  line-height: 1.08;
}

.auth-modal [data-auth-intro] {
  margin-bottom: 22px;
  color: #68776f;
  font-size: 14px;
  line-height: 1.5;
}

.auth-modal form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-modal form > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;

  color: #58695f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-modal form > label > input {
  width: 100%;
  height: 48px;

  padding: 0 14px;

  border: 1px solid #d5ded8;
  border-radius: 11px;

  background: #fff;

  color: #17241e;
  font-size: 14px;
  font-weight: 500;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-modal form > label > input:focus {
  border-color: #087443;
  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.08);
}

/* EMAIL + MOBILE COMBINED FIELDS */

.auth-inline-field {
  display: flex !important;
  align-items: center !important;

  width: 100%;
  height: 48px;

  overflow: hidden;

  border: 1px solid #d5ded8;
  border-radius: 11px;

  background: #fff;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-inline-field:focus-within {
  border-color: #087443;
  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.08);
}

.auth-inline-field input {
  flex: 1;

  width: 100%;
  min-width: 0;
  height: 100%;

  padding: 0 14px !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  color: #17241e;

  font-size: 14px;
  font-weight: 500;

  outline: none !important;
  box-shadow: none !important;
}

/* MOBILE PREFIX */

.auth-field-prefix {
  align-self: stretch;

  display: flex !important;
  align-items: center;
  justify-content: center;

  min-width: 58px;
  padding: 0 14px;

  border-right: 1px solid #dce4df;

  background: #f5f8f6;

  color: #087443 !important;

  font-size: 14px !important;
  font-weight: 800 !important;

  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* GMAIL SUFFIX */

.auth-field-suffix {
  align-self: stretch;

  display: flex !important;
  align-items: center;
  justify-content: center;

  padding: 0 14px;

  border-left: 1px solid #dce4df;

  background: #f5f8f6;

  color: #53665b !important;

  font-size: 13px !important;
  font-weight: 700 !important;

  letter-spacing: 0 !important;
  text-transform: none !important;

  white-space: nowrap;
}

/* BUTTON */

.auth-modal .primary-button.wide {
  min-height: 54px;
  margin-top: 2px;

  border-radius: 12px;

  font-size: 17px;
  font-weight: 800;
}

.auth-switches {
  margin-top: 12px;
  text-align: center;
}

.auth-switches button {
  font-size: 13px;
  font-weight: 700;
}

/* MOBILE */

@media (max-width: 720px) {
  .auth-modal {
    width: min(94vw, 460px) !important;
    max-height: 90vh !important;

    padding: 26px 22px 24px !important;

    border-radius: 20px !important;
  }

  .auth-modal h2 {
    font-size: 29px;
  }

  .auth-modal form {
    gap: 14px;
  }

  .auth-inline-field,
  .auth-modal form > label > input {
    height: 47px;
  }

  .auth-field-prefix {
    min-width: 56px;
  }

  .auth-field-suffix {
    padding: 0 11px;
    font-size: 12px !important;
  }
}

/* =========================================
   ACCOUNT PAGE - CLEAN MODERN UI
========================================= */

.account-page {
  min-height: calc(100vh - 90px);
  padding: 48px 0 72px;
  background: #f6f8f6;
}

.account-page-container {
  max-width: 980px;
}

/* TOP PROFILE CARD */

.account-hero {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 24px 26px;
  margin-bottom: 18px;

  background: #ffffff;
  border: 1px solid #dbe4de;
  border-radius: 18px;

  box-shadow: 0 10px 28px rgba(15, 61, 39, 0.05);
}

.account-hero-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: #087443;
  color: #fff;

  font-size: 26px;
  font-weight: 800;
}

.account-hero-copy {
  flex: 1;
}

.account-hero-copy .eyebrow {
  display: block;
  margin-bottom: 3px;

  font-size: 11px;
  letter-spacing: 0.13em;
}

.account-hero-copy h1 {
  margin: 0 0 3px;

  font-size: 25px;
  line-height: 1.15;
}

.account-hero-copy p {
  margin: 0;

  color: #6c7b72;
  font-size: 14px;
}

.account-role {
  padding: 7px 12px;

  border-radius: 999px;

  background: #edf7f1;
  color: #087443;

  font-size: 11px;
  font-weight: 800;
  text-transform: capitalize;
}

/* PERSONAL INFO CARD */

.account-settings-card {
  padding: 28px;

  background: #ffffff;
  border: 1px solid #dbe4de;
  border-radius: 18px;

  box-shadow: 0 10px 28px rgba(15, 61, 39, 0.04);
}

.account-settings-heading {
  padding-bottom: 18px;
  margin-bottom: 22px;

  border-bottom: 1px solid #e4e9e6;
}

.account-settings-heading .eyebrow {
  display: block;
  margin-bottom: 4px;

  font-size: 11px;
  letter-spacing: 0.13em;
}

.account-settings-heading h2 {
  margin: 0 0 5px;

  font-size: 24px;
}

.account-settings-heading p {
  margin: 0;

  color: #6c7b72;
  font-size: 13px;
}

/* FORM */

.account-edit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.account-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.account-form-field > span {
  color: #33443a;

  font-size: 12px;
  font-weight: 700;
}

.account-form-field input {
  width: 100%;
  height: 48px;

  padding: 0 14px;

  border: 1px solid #d3ddd7;
  border-radius: 10px;

  background: #fbfcfb;

  color: #18261f;
  font: inherit;
  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.account-form-field input:focus {
  border-color: #087443;
  background: #ffffff;

  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.08);
}

/* EMAIL FIELD */

.account-form-field .gmail-field {
  display: flex !important;
  align-items: center !important;

  width: 100%;
  height: 48px;

  overflow: hidden;

  border: 1px solid #d3ddd7;
  border-radius: 10px;

  background: #fbfcfb;
}

.account-form-field .gmail-field:focus-within {
  border-color: #087443;

  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.08);
}

.account-form-field .gmail-field input {
  flex: 1;

  width: 100%;
  min-width: 0;
  height: 100%;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  box-shadow: none !important;
}

.account-form-field .gmail-field > span {
  align-self: stretch;

  display: flex;
  align-items: center;

  padding: 0 13px;

  border-left: 1px solid #dbe3de;

  background: #f2f6f3;

  color: #596b61;

  font-size: 12px;
  font-weight: 700;

  white-space: nowrap;
}

/* MOBILE NUMBER FIELD */

.account-form-field .mobile-field {
  display: flex !important;
  align-items: center !important;

  width: 100%;
  height: 48px;

  overflow: hidden;

  border: 1px solid #d3ddd7;
  border-radius: 10px;

  background: #fbfcfb;
}

.account-form-field .mobile-field:focus-within {
  border-color: #087443;

  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.08);
}

.account-form-field .mobile-field > span {
  align-self: stretch;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 56px;
  padding: 0 13px;

  border-right: 1px solid #dbe3de;

  background: #f2f6f3;

  color: #087443;

  font-size: 13px;
  font-weight: 800;
}

.account-form-field .mobile-field input {
  flex: 1;

  width: 100%;
  min-width: 0;
  height: 100%;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;

  box-shadow: none !important;
}

/* SAVE MESSAGE */

.account-save-message {
  grid-column: 1 / -1;

  padding: 11px 13px;

  border-radius: 9px;

  font-size: 12px;
  font-weight: 700;
}

.account-save-message[data-type="success"] {
  background: #edf8f2;
  border: 1px solid #ccebd9;
  color: #087443;
}

.account-save-message[data-type="error"] {
  background: #fff1f1;
  border: 1px solid #ffd5d2;
  color: #b42318;
}

/* SAVE BUTTON */

.account-save-button {
  grid-column: 1 / -1;

  width: auto;
  min-width: 150px;

  justify-self: start;

  margin-top: 2px;

  padding: 0 22px;
  min-height: 48px;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 800;
}

/* SIGN OUT */

.account-danger-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 18px;
  padding: 20px 24px;

  background: #ffffff;
  border: 1px solid #dbe4de;
  border-radius: 16px;
}

.account-danger-card h2 {
  margin: 0 0 3px;

  font-size: 18px;
}

.account-danger-card p {
  margin: 0;

  color: #6c7b72;
  font-size: 12px;
}

.account-logout-button {
  min-width: 115px;
  min-height: 44px;

  border-radius: 10px;
}

/* MOBILE */

@media (max-width: 720px) {
  .account-page {
    padding: 30px 0 55px;
  }

  .account-hero {
    padding: 20px;

    border-radius: 16px;
  }

  .account-hero-avatar {
    width: 54px;
    height: 54px;
    flex-basis: 54px;

    border-radius: 14px;

    font-size: 22px;
  }

  .account-hero-copy h1 {
    font-size: 21px;
  }

  .account-role {
    display: none;
  }

  .account-settings-card {
    padding: 20px;

    border-radius: 16px;
  }

  .account-edit-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .account-save-message,
  .account-save-button {
    grid-column: auto;
  }

  .account-save-button {
    width: 100%;
    justify-self: stretch;
  }

  .account-danger-card {
    flex-direction: column;
    align-items: stretch;

    padding: 20px;
  }

  .account-logout-button {
    width: 100%;
  }
}
/* MongoDB-backed booking workflow (scoped additions) */
.booking-progress {
  display: flex;
  align-items: center;
  gap: 18px;
}
.booking-progress span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #7b8495;
}
.booking-progress b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #ccd2dd;
  border-radius: 50%;
  font-style: normal;
}
.booking-progress i {
  font-style: normal;
  font-weight: 700;
}
.booking-progress .active {
  color: var(--primary, #e84b3c);
}
.booking-progress .active b {
  border-color: currentColor;
}
.booking-progress .complete b {
  background: var(--primary, #e84b3c);
  color: #fff;
}
.booking-summary-clean .fare-only-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid #e4e7ed;
}
.booking-summary-clean .fare-only-row b {
  color: #111827;
}
.stop-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
.stop-select-grid label,
.contact-card label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
.stop-select-grid select {
  width: 100%;
}
.passenger-list {
  display: grid;
  gap: 14px;
}
.booking-actions.split {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.payment-methods-simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.payment-methods-simple button {
  min-height: 88px;
}
.booking-card-live .status {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}
.booking-card-live .status.confirmed {
  background: #eaf8ef;
  color: #18794e;
}
.booking-card-live .status.cancellation_requested {
  background: #fff4d8;
  color: #8a5b00;
}
.booking-card-live .status.cancelled {
  background: #fdecec;
  color: #a62b2b;
}
.booking-receipt > h3 {
  margin: 18px 0 0;
  text-align: center;
}
.live-results {
  display: block;
  max-width: 1060px;
}
.live-trip-card .darshan-actions {
  align-items: center;
}
.live-trip-card .darshan-actions > span {
  color: #687386;
  font-weight: 700;
}
.daily-trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.daily-trip-card {
  border: 1px solid #e3e7ee;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.daily-trip-card h3 {
  margin: 0 0 6px;
}
.daily-trip-card p {
  margin: 0 0 14px;
  color: #687386;
}
.daily-trip-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}
.daily-trip-card dl span {
  display: grid;
  padding: 10px;
  border-radius: 9px;
  background: #f7f8fa;
  font-size: 0.75rem;
}
.daily-trip-card dl b {
  font-size: 1.15rem;
}
.manifest-modal {
  width: min(920px, 94vw);
}
@media (max-width: 760px) {
  .booking-toolbar .booking-progress {
    width: 100%;
    justify-content: space-between;
  }
  .booking-progress {
    gap: 6px;
  }
  .booking-progress i {
    font-size: 0.75rem;
  }
  .stop-select-grid,
  .payment-methods-simple {
    grid-template-columns: 1fr;
  }
  .booking-actions.split {
    flex-direction: column-reverse;
  }
  .live-trip-card .darshan-actions {
    align-items: stretch;
  }
  .daily-trip-card dl {
    grid-template-columns: 1fr;
  }
}
/* Admin Trips / Schedules: predefined daily service workflow */
.admin-trips-page {
  display: grid;
  gap: 24px;
}
.admin-trips-page .admin-page-header {
  margin-bottom: 0;
}
.trip-date-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(22, 32, 51, 0.04);
}
.trip-date-panel label {
  display: grid;
  gap: 8px;
  min-width: 260px;
}
.trip-date-panel label span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #687386;
}
.trip-date-panel input {
  min-height: 46px;
  border: 1px solid #cfd6e1;
  border-radius: 9px;
  padding: 0 13px;
  background: #fff;
  font: inherit;
  font-weight: 700;
  color: #182033;
}
.trip-date-panel p {
  max-width: 580px;
  margin: 0;
  color: #687386;
  line-height: 1.55;
}
.trip-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.trip-section-heading h2 {
  margin: 4px 0 0;
  font-size: 1.25rem;
}
.trip-section-heading > b,
.trip-section-heading > span {
  color: #687386;
}
.service-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-template-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 20px;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(22, 32, 51, 0.045);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.service-template-card:hover {
  border-color: #c5ccd8;
  box-shadow: 0 8px 24px rgba(22, 32, 51, 0.07);
}
.service-template-card.active {
  border-color: #b9dec8;
}
.service-template-card.closed {
  border-color: #ead59d;
}
.service-template-card.cancelled {
  border-color: #ecc3c3;
}
.service-template-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.service-route-code {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff1ef;
  color: #c53a30;
  font-size: 0.73rem;
  font-weight: 900;
}
.service-template-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.14rem;
}
.service-bus {
  margin: -7px 0 0;
  color: #687386;
  font-size: 0.88rem;
}
.service-template-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid #edf0f4;
  border-bottom: 1px solid #edf0f4;
}
.service-template-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}
.service-template-card dt {
  color: #687386;
}
.service-template-card dd {
  margin: 0;
  text-align: right;
  font-weight: 750;
  color: #1b2435;
}
.trip-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trip-status-badge.active {
  background: #e6f6ed;
  color: #157347;
}
.trip-status-badge.closed {
  background: #fff3d5;
  color: #8b5d00;
}
.trip-status-badge.cancelled {
  background: #fde8e8;
  color: #a52c2c;
}
.trip-status-badge.not-added {
  background: #eef1f5;
  color: #626d7e;
}
.template-card-actions,
.dated-trip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.template-card-actions button,
.dated-trip-actions button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid #cfd6e1;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}
.template-card-actions .primary-button,
.dated-trip-actions .primary-button {
  border-color: transparent;
  background: var(--primary, #e84b3c);
  color: #fff;
}
.template-card-actions .danger,
.dated-trip-actions .danger {
  color: #a52c2c;
}
.template-card-actions .danger.ghost,
.dated-trip-actions .danger.ghost {
  border-color: #efc2c2;
  background: #fff8f8;
}
.selected-date-trips {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}
.dated-trip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.dated-trip-card {
  padding: 18px;
  border: 1px solid #dfe4ec;
  border-left: 4px solid #adb6c5;
  border-radius: 12px;
  background: #fff;
}
.dated-trip-card.active {
  border-left-color: #25a763;
}
.dated-trip-card.closed {
  border-left-color: #d7a62e;
}
.dated-trip-card.cancelled {
  border-left-color: #d94b4b;
}
.dated-trip-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}
.dated-trip-card h3 {
  margin: 0 0 5px;
  overflow-wrap: anywhere;
}
.dated-trip-card header p {
  margin: 0;
  color: #687386;
  font-size: 0.88rem;
}
.trip-counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}
.trip-counts div {
  display: grid;
  gap: 2px;
  padding: 11px;
  border-radius: 9px;
  background: #f6f8fa;
}
.trip-counts b {
  font-size: 1.15rem;
}
.trip-counts span {
  font-size: 0.74rem;
  color: #687386;
}
.trips-empty-state {
  display: grid;
  justify-items: center;
  padding: 36px 18px;
  border: 1px dashed #cfd6e1;
  border-radius: 14px;
  background: #fafbfc;
  text-align: center;
}
.trips-empty-state > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff1ef;
  color: #c53a30;
  font-size: 1.5rem;
}
.trips-empty-state h3 {
  margin: 12px 0 5px;
}
.trips-empty-state p {
  margin: 0;
  max-width: 520px;
  color: #687386;
}
.trip-confirm-modal {
  width: min(500px, calc(100vw - 28px));
}
.confirm-trip-summary {
  display: grid;
  gap: 4px;
  margin: 16px 0;
  padding: 13px;
  border-radius: 10px;
  background: #f6f8fa;
}
.confirm-trip-summary span {
  color: #687386;
}
.trip-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.trip-confirm-actions button {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 8px;
}
@media (max-width: 820px) {
  .trip-date-panel {
    align-items: stretch;
    flex-direction: column;
  }
  .trip-date-panel label {
    min-width: 0;
    width: 100%;
  }
  .trip-date-panel input {
    width: 100%;
  }
  .service-template-grid,
  .dated-trip-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .admin-trips-page {
    gap: 18px;
  }
  .trip-date-panel,
  .service-template-card,
  .dated-trip-card {
    padding: 15px;
  }
  .trip-section-heading {
    align-items: start;
    flex-direction: column;
  }
  .service-template-top,
  .dated-trip-card header {
    align-items: start;
  }
  .service-template-card dl div {
    display: grid;
    gap: 3px;
  }
  .service-template-card dd {
    text-align: left;
  }
  .template-card-actions,
  .dated-trip-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .template-card-actions button,
  .dated-trip-actions button {
    width: 100%;
    min-height: 44px;
  }
  .trip-confirm-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .trip-confirm-actions button {
    width: 100%;
  }
}

/* Customer bus browsing and live coach seating */
.bus-browse-head {
  padding: 42px 0 26px;
  background: #f3f8f4;
  border-bottom: 1px solid var(--line);
}
.bus-browse-head h1 {
  margin: 7px 0 8px;
  font:
    500 38px Georgia,
    serif;
}
.bus-browse-head p {
  margin: 0;
  color: var(--muted);
}
.bus-browse-filters {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(220px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(20, 72, 45, 0.06);
}
.bus-browse-filters label {
  display: grid;
  gap: 7px;
  min-width: 0;
}
.bus-browse-filters label span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #56675c;
}
.bus-browse-filters input,
.bus-browse-filters select {
  width: 100%;
  min-width: 0;
  height: 48px;
}
.bus-browse-filters button {
  height: 48px;
}
.buses-browse-mode .results-layout,
.buses-search-mode .results-layout {
  padding-bottom: 72px;
}
.buses-browse-mode .live-trip-card,
.buses-search-mode .live-trip-card {
  margin-bottom: 16px;
}
.live-trip-card .darshan-route-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.live-seat-panel {
  grid-template-columns: minmax(330px, 480px) 1fr;
  align-items: start;
}
.live-coach {
  width: min(100%, 440px);
  margin: auto;
  padding: 18px 22px 22px;
  overflow: hidden;
}
.live-coach .coach-front {
  align-items: flex-start;
}
.live-coach .coach-front b {
  display: flex;
  align-items: center;
  gap: 7px;
}
.live-coach .coach-front b small {
  font: 800 8px/1 sans-serif;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.coach-side-labels {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: #7a887e;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
}
.coach-side-labels i {
  font-style: normal;
  color: var(--green);
}
.live-coach .coach-seat-section {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(44px, 1fr)) minmax(28px, 0.7fr)
    repeat(2, minmax(44px, 1fr));
  grid-auto-rows: 52px;
  gap: 7px;
  margin: 0;
  padding: 0 0 12px;
}
.live-coach .coach-seat-section + .coach-seat-section {
  padding-top: 12px;
  border-top: 1px dashed #d3ddd5;
}
.live-coach .coach-seat-section.lower {
  grid-template-columns: repeat(5, minmax(44px, 1fr));
}
.live-coach .seat {
  width: 100%;
  height: 48px;
  min-width: 0;
}
.live-coach .emergency-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  padding-top: 11px;
  border-top: 1px dashed #cbd4cd;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: #b04a3b;
}
.live-coach.\34 0-seat .coach-seat-section.front {
  margin-right: 21%;
}
.live-coach.\34 0-seat .coach-seat-section.lower {
  margin-top: 4px;
  background: #f6faf7;
  border-radius: 10px;
  padding: 12px 5px 5px;
}
.live-coach.\34 5-seat .coach-seat-section.front {
  margin-left: 21%;
}
@media (max-width: 760px) {
  .bus-browse-head {
    padding: 28px 0 20px;
  }
  .bus-browse-head h1 {
    font-size: 31px;
  }
  .bus-browse-filters {
    grid-template-columns: 1fr 1fr;
  }
  .bus-browse-filters button {
    grid-column: 1/-1;
  }
  .live-trip-card .darshan-route-facts {
    grid-template-columns: 1fr 1fr;
  }
  .live-seat-panel {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 18px;
  }
  .live-coach {
    width: min(100%, 430px);
  }
  .live-coach .coach-seat-section {
    grid-template-columns:
      repeat(2, minmax(42px, 1fr)) minmax(24px, 0.65fr)
      repeat(2, minmax(42px, 1fr));
    gap: 5px;
  }
  .live-coach .coach-seat-section.lower {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
  }
}
@media (max-width: 430px) {
  .buses-search-toolbar > .container {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .buses-search-toolbar .outline-button {
    grid-column: 1/-1;
    width: 100%;
  }
  .bus-browse-filters {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .bus-browse-filters button {
    grid-column: auto;
    width: 100%;
  }
  .buses-browse-mode .results-layout,
  .buses-search-mode .results-layout {
    padding-top: 18px;
  }
  .live-trip-card .darshan-actions .primary-button {
    width: 100%;
    text-align: center;
  }
  .live-seat-panel {
    padding: 12px 8px;
  }
  .live-coach {
    padding: 14px 10px 16px;
    border-radius: 28px 28px 15px 15px;
  }
  .live-coach .coach-seat-section {
    grid-template-columns:
      repeat(2, minmax(40px, 1fr)) minmax(20px, 0.55fr)
      repeat(2, minmax(40px, 1fr));
    grid-auto-rows: 48px;
    gap: 4px;
  }
  .live-coach .coach-seat-section.lower {
    grid-template-columns: repeat(5, minmax(40px, 1fr));
  }
  .live-coach .seat {
    height: 44px;
  }
  .coach-side-labels {
    font-size: 6px;
  }
  .live-coach.\34 0-seat .coach-seat-section.front {
    margin-right: 18%;
  }
  .live-coach.\34 5-seat .coach-seat-section.front {
    margin-left: 18%;
  }
}
.live-coach .emergency-label {
  width: auto;
  margin: 2px 0 0;
  padding: 11px 0 0;
  border: 0;
  border-top: 1px dashed #cbd4cd;
  border-radius: 0;
  background: transparent;
  text-align: left;
  color: #b04a3b;
}

/* Unified booking flow, settings, ticket and receipt */
.booking-page,
.booking-flow-page {
  background: #f6f8f5;
  min-height: 100vh;
}
.booking-layout,
.booking-flow-layout {
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
  align-items: start;
}
.booking-main,
.booking-content-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(19, 61, 41, 0.05);
}
.booking-summary-clean {
  width: 100%;
  min-width: 0;
  background: #fff;
}
.booking-summary-clean .total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 17px;
  font-weight: 800;
}
.booking-summary-clean .total-row b {
  font-size: 24px;
  color: var(--green);
}
.booking-progress span.active {
  color: var(--green);
}
.booking-progress .complete b {
  background: var(--green);
}
.passenger-card,
.contact-card {
  background: #fff;
}
.passenger-card label,
.contact-card label {
  font-size: 12px;
}
.passenger-card input,
.passenger-card select,
.contact-card input {
  min-height: 46px;
}
.payment-layout.booking-flow-layout {
  margin-top: 24px;
}
.payment-methods-simple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.payment-methods-simple button {
  min-height: 82px;
  cursor: pointer;
}
.payment-methods-simple button:focus-visible {
  outline: 3px solid rgba(255, 201, 40, 0.8);
  outline-offset: 2px;
}
.qr-payment-panel {
  display: grid;
  justify-items: center;
  gap: 15px;
  text-align: center;
  padding: 26px;
}
.qr-payment-panel h2 {
  margin: 6px 0;
  font-size: 25px;
}
.qr-payment-panel p {
  margin: 0;
  color: var(--muted);
}
.payment-qr {
  display: block;
  width: min(260px, 100%);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.qr-empty {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 28px 18px;
  border: 1px dashed #bdc9c0;
  border-radius: 15px;
  background: #f7faf7;
}
.qr-empty span {
  color: var(--muted);
}
.booking-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 15px;
  border: 1px solid #cfe0d3;
  border-radius: 13px;
  background: #f2f8f3;
  text-align: left;
}
.booking-support > div {
  display: grid;
  gap: 3px;
}
.booking-support span {
  font-size: 11px;
  color: var(--muted);
}
.booking-support .outline-button {
  flex: 0 0 auto;
}
.toast {
  left: 50%;
  right: auto;
  top: 88px;
  transform: translateX(-50%);
  max-width: calc(100vw - 30px);
  text-align: center;
}
.ticket-modal {
  width: min(760px, 94vw);
  max-height: 92vh;
  overflow: auto;
}
.ticket.travel-ticket,
.ticket.payment-receipt {
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(18, 56, 38, 0.12);
}
.ticket header {
  gap: 18px;
}
.ticket header > div {
  display: grid;
  gap: 3px;
}
.ticket-status {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f5ec;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.travel-grid span:nth-child(5),
.receipt-grid span:last-child {
  grid-column: 1/-1;
}
.booking-support + .ticket footer {
  border-top: 1px solid var(--line);
}
.ticket .booking-support {
  margin: 18px 24px;
  width: auto;
}
.receipt-total {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 28px;
  background: #f3f8f4;
}
.receipt-total span,
.receipt-total small {
  color: var(--muted);
}
.receipt-total b {
  font-size: 36px;
  color: var(--green);
}
.website-settings {
  display: grid;
  gap: 18px;
}
.settings-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: start;
}
.settings-block h2 {
  margin: 6px 0;
}
.settings-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.settings-asset {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 0;
}
.settings-asset img {
  display: block;
  max-width: 220px;
  max-height: 150px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8faf8;
  padding: 9px;
}
.settings-qr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.settings-qr-grid .settings-asset {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.settings-qr-grid h3 {
  margin: 0;
}
.settings-qr-grid img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1;
}
.settings-preview-empty {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border: 1px dashed #c5d0c7;
  border-radius: 12px;
  background: #f7faf7;
  color: var(--muted);
  font-size: 11px;
}
.settings-support label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
.settings-support input {
  min-height: 48px;
}
.settings-save-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.settings-save-row span {
  color: var(--green);
  font-weight: 800;
}
@media (max-width: 760px) {
  .booking-layout,
  .booking-flow-layout {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .booking-main,
  .booking-content-card {
    padding: 18px;
    border-radius: 17px;
  }
  .booking-summary {
    position: static;
  }
  .payment-layout.booking-flow-layout {
    grid-template-columns: 1fr;
  }
  .payment-methods-simple {
    grid-template-columns: 1fr;
  }
  .passenger-card,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .passenger-card > div,
  .contact-card h3 {
    grid-column: auto;
  }
  .booking-support {
    align-items: stretch;
    flex-direction: column;
  }
  .booking-support .outline-button {
    width: 100%;
    text-align: center;
  }
  .ticket header {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .ticket-status {
    margin-left: 0;
  }
  .settings-block {
    grid-template-columns: 1fr;
  }
  .settings-qr-grid {
    grid-template-columns: 1fr;
  }
  .settings-qr-grid .settings-asset {
    justify-items: center;
  }
  .settings-qr-grid .settings-asset > * {
    width: 100%;
  }
  .settings-asset img {
    max-width: 100%;
  }
  .settings-save-row {
    align-items: stretch;
    flex-direction: column;
  }
  .settings-save-row button {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .booking-toolbar > .container {
    gap: 12px;
  }
  .booking-progress {
    width: 100%;
    justify-content: space-between;
  }
  .booking-progress i {
    font-size: 10px;
  }
  .page-title {
    align-items: flex-start;
    gap: 12px;
  }
  .page-title h1,
  .payment-layout h1 {
    font-size: 30px;
  }
  .booking-main,
  .booking-content-card {
    padding: 14px;
  }
  .qr-payment-panel {
    padding: 18px 12px;
  }
  .ticket-route,
  .ticket-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
  }
  .travel-grid span:nth-child(5),
  .receipt-grid span:last-child {
    grid-column: auto;
  }
  .ticket .booking-support {
    margin: 14px 16px;
  }
  .receipt-total b {
    font-size: 30px;
  }
}
@media print {
  body * {
    visibility: hidden;
  }
  .print-document,
  .print-document * {
    visibility: visible;
  }
  .print-document {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0 !important;
    box-shadow: none !important;
    border: 1px solid #bbb !important;
  }
  .modal-close,
  .print-receipt-button,
  .print-document .booking-support {
    display: none !important;
  }
}
/* Manual payment verification */
.utr-field {
  display: grid;
  gap: 7px;
  text-align: left;
}
.utr-field span {
  font-weight: 800;
  color: #173d31;
}
.utr-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9cec5;
  border-radius: 9px;
  padding: 0 13px;
  font: inherit;
  text-transform: uppercase;
}
.utr-field small {
  color: #60766d;
}
.pending-confirmation .confirmation-wrap {
  max-width: 720px;
}
.pending-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff4bf;
  color: #725700;
  font-size: 28px;
}
.pending-confirmation dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
  text-align: left;
}
.pending-confirmation dl div {
  padding: 13px;
  background: #f5faf7;
  border-radius: 9px;
}
.pending-confirmation dt {
  font-size: 0.78rem;
  color: #60766d;
}
.pending-confirmation dd {
  margin: 4px 0 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.pending-note,
.rejected-note {
  max-width: 700px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff8d9;
  color: #654f00;
}
.rejected-note {
  background: #fff0ee;
  color: #8c261f;
}
.status.payment_pending {
  background: #fff2b8;
  color: #665000;
}
.status.rejected {
  background: #ffe2de;
  color: #8a241c;
}
.confirmation-actions,
.payment-review-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.payment-review-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}
.payment-review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.payment-review-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.payment-review-card dl div {
  padding: 10px;
  background: #f6faf8;
  border-radius: 8px;
}
.payment-review-card dt {
  font-size: 0.76rem;
  color: #60766d;
}
.payment-review-card dd {
  margin: 3px 0 0;
  font-weight: 700;
  overflow-wrap: anywhere;
}
@media (max-width: 600px) {
  .pending-confirmation dl,
  .payment-review-card dl {
    grid-template-columns: 1fr;
  }
  .payment-review-actions > * {
    width: 100%;
  }
  .booking-card.booking-card-live > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .booking-card.booking-card-live > div:last-child .danger {
    grid-column: 1/-1;
  }
}
@media print {
  body > *:not(.modal-backdrop) {
    display: none !important;
  }
  .modal-backdrop {
    position: static !important;
    background: #fff !important;
    padding: 0 !important;
  }
  .modal-backdrop > * {
    box-shadow: none !important;
    border: 0 !important;
    max-width: none !important;
  }
  .no-print,
  .modal-close,
  .site-header,
  .whatsapp-float {
    display: none !important;
  }
  .print-document {
    display: block !important;
    width: 100% !important;
    max-width: 190mm !important;
    margin: 0 auto !important;
  }
}

.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  padding-right: 52px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

/* ================================
   HOME HERO IMAGE SLIDER ONLY
================================ */

.home-hero-slider {
  position: relative;
  height: 500px;
  overflow: visible;
  background: #0b4f38;
}

.home-hero-slider .hero-slider {
  position: absolute;
  inset: 0;
  height: 500px;
  overflow: hidden;
  background: #0b4f38;
}

.home-hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.home-hero-slider .hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.home-hero-slider .hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .home-hero-slider .hero-slide img {
    object-fit: contain;
    object-position: center;
  }
}

.home-hero-slider .home-search-panel {
  position: absolute;
  left: 50%;
  bottom: -52px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  font-size: 30px;
  cursor: pointer;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 8;
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.hero-slider-dots button.active {
  background: #ffffff;
}

@media (max-width: 700px) {
  .home-hero-slider {
    height: auto;
    padding-bottom: 0;
  }

  .home-hero-slider .hero-slider {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .home-hero-slider .hero-slide img {
    object-fit: contain;
  }

  .home-hero-slider .home-search-panel {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 0;
  }

  .hero-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 25px;
  }
}

/* ================================
   HERO FINAL DESKTOP FIX
   ================================ */

/* Keep search bar centered like original design */
@media (min-width: 701px) {
  .home-hero-slider .home-search-panel {
    position: absolute;
    left: 50%;
    bottom: -52px;
    transform: translateX(-50%);
    width: min(1220px, calc(100% - 40px));
    z-index: 10;
  }

  /* Hide slider arrows on desktop */
  .home-hero-slider .hero-slider-arrow {
    display: none;
  }
}

/* ================================
   MOBILE HERO SLIDER SIZE FIX
   ================================ */

@media (max-width: 700px) {
  .home-hero-slider .hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 5;
    overflow: hidden;
  }

  .home-hero-slider .hero-slide {
    position: absolute;
    inset: 0;
  }

  .home-hero-slider .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .home-hero-slider {
    height: auto;
    background: #0b4f38;
  }

  .hero-slider-dots {
    bottom: 8px;
  }
}

/* ================================
   MOBILE HERO FINAL FIX
   ================================ */

@media (max-width: 700px) {
  .home-hero-slider .hero-slider {
    width: 100%;
    aspect-ratio: 16 / 5;
    overflow: hidden;
    background: transparent;
  }

  .home-hero-slider .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .home-hero-slider .hero-slider-arrow {
    display: none !important;
  }

  .hero-slider-dots {
    bottom: 6px;
  }
}

/* ==================================
   TOUR PROGRAMME
================================== */

.tour-programme {
  padding-top: 70px;
  padding-bottom: 70px;
}

.tour-heading {
  text-align: center;
  margin-bottom: 38px;
}

.tour-heading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.tour-heading-icon span {
  width: 48px;
  height: 2px;
  background: #087443;
}

.tour-heading-icon b {
  font-size: 26px;
  line-height: 1;
}

.tour-heading h2 {
  margin: 0;
  color: #17271f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: 1px;
}

.tour-heading p {
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: #647069;
}

.tour-heading::after {
  content: "";
  display: block;
  width: 110px;
  height: 3px;
  background: #087443;
  margin: 17px auto 0;
  border-radius: 20px;
}

/* Cards */

.tour-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.tour-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 14px;
  background: #e9efe9;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.tour-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.tour-card:hover img {
  transform: scale(1.06);
}

/* Bottom dark overlay */

.tour-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.tour-card-info {
  position: absolute;
  left: 18px;
  right: 15px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.tour-card-info h3 {
  margin: 0 0 5px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.15;
}

.tour-card-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.4;
}

/* Tablet */

@media (max-width: 1200px) {
  .tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */

@media (max-width: 768px) {
  .tour-programme {
    padding-top: 45px;
    padding-bottom: 45px;
  }

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

  .tour-card,
  .tour-card img {
    min-height: 260px;
  }

  .tour-card-info h3 {
    font-size: 19px;
  }
}

/* Small mobile */

@media (max-width: 480px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }

  .tour-card,
  .tour-card img {
    min-height: 340px;
  }
}

/* ==================================
   TOUR PROGRAMME - MOBILE SCROLL
================================== */

@media (max-width: 768px) {
  .tour-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 14px;

    padding: 5px 5px 18px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  /* Hide scrollbar */
  .tour-grid::-webkit-scrollbar {
    display: none;
  }

  .tour-card {
    flex: 0 0 78%;
    min-width: 78%;
    height: 360px;

    scroll-snap-align: start;
  }

  .tour-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
  }
}

/* =========================================
   CUSTOMER FEEDBACK SECTION
========================================= */

.customer-feedback-section {
  padding: 85px 0;
  background: #f6f8f6;
}

/* Heading */

.feedback-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.feedback-heading h2 {
  margin: 8px 0 12px;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(36px, 4vw, 54px);

  line-height: 1.1;

  color: #17271f;
}

.feedback-heading p {
  margin: 0;

  color: #68746d;

  font-size: 16px;

  line-height: 1.7;
}

/* =========================================
   FEEDBACK FORM
========================================= */

.feedback-form-wrap {
  max-width: 820px;

  margin: 0 auto 65px;
}

.customer-feedback-form {
  padding: 28px;

  background: #ffffff;

  border: 1px solid #dce5de;

  border-radius: 20px;

  box-shadow: 0 12px 35px rgba(18, 61, 42, 0.07);
}

.feedback-form-top {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  align-items: end;
}

.customer-feedback-form label,
.feedback-rating-field > span {
  display: block;

  color: #25362d;

  font-size: 13px;

  font-weight: 700;
}

.customer-feedback-form input,
.customer-feedback-form textarea {
  display: block;

  width: 100%;

  box-sizing: border-box;

  margin-top: 8px;

  padding: 13px 14px;

  border: 1px solid #d5dfd7;

  border-radius: 10px;

  background: #fbfcfb;

  color: #17271f;

  font-family: inherit;

  font-size: 14px;

  outline: none;
}

.customer-feedback-form input:focus,
.customer-feedback-form textarea:focus {
  border-color: #087443;

  background: #ffffff;
}

.feedback-message-field {
  margin-top: 20px;
}

.customer-feedback-form textarea {
  min-height: 135px;

  resize: vertical;
}

/* Stars */

.feedback-star-picker {
  display: flex;

  gap: 5px;

  margin-top: 8px;
}

.feedback-star-picker button {
  border: 0;

  background: transparent;

  color: #ccd3ce;

  padding: 0;

  font-size: 32px;

  line-height: 1;

  cursor: pointer;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.feedback-star-picker button:hover,
.feedback-star-picker button.active {
  color: #ffb800;

  transform: scale(1.08);
}

/* Submit */

.feedback-submit-wrap {
  display: flex;

  justify-content: center;

  margin-top: 22px;
}

.feedback-submit-button {
  min-width: 190px;
}

.feedback-form-message {
  margin: 14px 0 0;

  text-align: center;

  color: #087443;

  font-weight: 700;

  font-size: 13px;
}

/* =========================================
   LATEST FEEDBACK
========================================= */

.latest-feedback-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  gap: 8px;

  margin-bottom: 30px;
}

.latest-feedback-heading h3 {
  margin: 5px 0 0;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 34px;

  color: #17271f;
}

.latest-feedback-heading > span {
  color: #77827c;

  font-size: 13px;
}

/*
   6 reviews:
   2 columns × 3 rows
*/

.customer-feedback-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;
}

.customer-feedback-card {
  min-height: auto;
  padding: 24px 30px;

  border: 1px solid #dce5de;
  border-radius: 16px;
  background: #ffffff;

  box-shadow: 0 6px 22px rgba(15, 55, 37, 0.05);
}

.feedback-card-stars {
  color: #ffb800;
  font-size: 17px;
  letter-spacing: 2px;

  /* align stars below customer name */
  margin-left: 65px;
  margin-top: 0;
  margin-bottom: 8px;
}

.feedback-card-stars span {
  color: #d6ddd8;
}

.feedback-card-message {
  min-height: 55px;

  margin: 15px 0 22px;

  color: #35443c;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 17px;

  font-style: italic;

  line-height: 1.55;
}

.feedback-card-message {
  min-height: auto;

  margin: 0;
  margin-left: 65px;

  color: #35443c;

  font-family: Georgia, "Times New Roman", serif;

  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
}

.feedback-avatar {
  display: grid;

  width: 42px;

  height: 42px;

  place-items: center;

  border-radius: 50%;

  background: #e7f2eb;

  color: #087443;

  font-size: 17px;

  font-weight: 800;
}

.feedback-card-user strong {
  display: block;

  color: #17271f;

  font-size: 14px;
}

.feedback-card-user {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 6px;
}
.feedback-empty {
  grid-column: 1 / -1;

  padding: 40px;

  text-align: center;

  border: 1px dashed #ccd8cf;

  border-radius: 16px;

  background: #ffffff;

  color: #6d786f;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .customer-feedback-section {
    padding: 55px 0;
  }

  .customer-feedback-form {
    padding: 20px;
  }

  .feedback-form-top {
    grid-template-columns: 1fr;
  }

  .customer-feedback-grid {
    grid-template-columns: 1fr;
  }

  .latest-feedback-heading {
    align-items: flex-start;

    flex-direction: column;
  }

  .feedback-submit-button {
    width: 100%;
  }
}

/* =====================================
   JOURNEY / BOARDING & DROPPING POINTS
===================================== */

.journey-points-card {
  margin: 18px 0 22px;
  padding: 20px;

  background: #f8fbf9;

  border: 1px solid #dce6df;
  border-radius: 16px;
}

.journey-points-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 18px;
}

.journey-points-eyebrow {
  display: block;
  margin-bottom: 4px;

  color: #087443;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.journey-points-heading h3 {
  margin: 0;

  color: #17271f;

  font-size: 17px;
  font-weight: 750;
}

.journey-points-note {
  color: #78857e;
  font-size: 11px;
}

/* Two fields */

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

/* Individual field */

.stop-field {
  display: block;

  padding: 14px;

  background: #ffffff;

  border: 1px solid #d9e3dc;
  border-radius: 12px;
}

.stop-field-label {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 10px;
}

/* Icon */

.stop-icon {
  display: grid;

  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  place-items: center;

  background: #e8f4ed;

  border-radius: 50%;

  color: #087443;

  font-size: 17px;
  font-weight: 800;
}

/* Boarding / Dropping */

.stop-field-label small {
  display: block;

  margin-bottom: 2px;

  color: #087443;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.stop-field-label strong {
  display: block;

  color: #17271f;

  font-size: 13px;
  font-weight: 700;
}

/* Dropdown */

.stop-field select {
  width: 100%;
  height: 44px;

  padding: 0 38px 0 12px;

  border: 1px solid #d2ddd5;
  border-radius: 9px;

  background-color: #ffffff;

  color: #26372e;

  font-size: 13px;

  cursor: pointer;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.stop-field select:hover {
  border-color: #9bbbaa;
}

.stop-field select:focus {
  border-color: #087443;

  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.1);
}

/* Mobile */

@media (max-width: 700px) {
  .journey-points-card {
    padding: 16px;
  }

  .journey-points-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .journey-points-note {
    display: none;
  }

  .stop-select-grid {
    grid-template-columns: 1fr;
  }
}

/* =================================
   BOARDING / DROPPING SELECTS
================================= */

.stop-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;

  margin-top: 18px;
  margin-bottom: 24px;
}

.stop-select-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;

  color: #17271f;

  font-size: 15px;
  font-weight: 700;
}

.stop-select-grid select {
  width: 100%;
  height: 48px;

  padding: 0 42px 0 14px;

  border: 1px solid #cfdad2;
  border-radius: 10px;

  background: #ffffff;

  color: #17271f;

  font-size: 14px;
  font-weight: 600;

  outline: none;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.stop-select-grid select:hover {
  border-color: #8eaa99;
}

.stop-select-grid select:focus {
  border-color: #087443;

  box-shadow: 0 0 0 3px rgba(8, 116, 67, 0.1);
}

@media (max-width: 700px) {
  .stop-select-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================
   BOOKING FORM - CLEAN INPUT TEXT
======================================== */

.passenger-list input,
.passenger-list select,
.contact-card input,
.contact-card select {
  color: #111111 !important;
  font-weight: 400 !important;
  font-size: 15px !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

/* User typed text */
.passenger-list input:not(:placeholder-shown),
.contact-card input:not(:placeholder-shown) {
  color: #111111 !important;
  font-weight: 400 !important;
}

/* Placeholder text */
.passenger-list input::placeholder,
.contact-card input::placeholder {
  color: #777777 !important;
  font-weight: 400 !important;
  opacity: 1;
}

/* Dropdown options */
.passenger-list select,
.passenger-list select option {
  color: #111111 !important;
  font-weight: 400 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

.passenger-list label > span,
.contact-card label > span {
  color: #111111 !important;
  font-weight: 500 !important;
}

/* ========================================
   FORCE BOOKING FORM TEXT TO BLACK
======================================== */

.passenger-list input,
.passenger-list select,
.contact-card input,
.contact-card select,
.stop-select-grid select {
  color: #111111 !important;
  font-weight: 400 !important;
  font-family: Arial, Helvetica, sans-serif !important;
}

/* Placeholder text */
.passenger-list input::placeholder,
.contact-card input::placeholder {
  color: #111111 !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}

/* Dropdown placeholder / selected text */
.stop-select-grid select,
.stop-select-grid select option,
.passenger-list select,
.passenger-list select option {
  color: #111111 !important;
  font-weight: 400 !important;
}

/* Field labels */
.passenger-list label,
.contact-card label {
  color: #111111 !important;
  font-weight: 400 !important;
}

/* FULL NAME / AGE / GENDER / MOBILE NUMBER / EMAIL */
.passenger-list label > span,
.contact-card label > span {
  color: #111111 !important;
  font-weight: 500 !important;
}

.passenger-card label,
.contact-card label {
  color: #111111 !important;
  font-weight: 500 !important;
}

/* ======================================
   PAYMENT APP LOGOS
====================================== */

.payment-app-logo {
  width: 42px !important;
  height: 42px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  padding: 0 !important;
  margin: 0 !important;

  overflow: hidden;

  border-radius: 10px;

  background: #fff !important;
}

.payment-app-logo img {
  width: 34px;
  height: 34px;

  display: block;

  object-fit: contain;
}

/* ======================================
   CLEAN UTR SECTION
====================================== */

.utr-field {
  display: flex !important;
  flex-direction: column !important;

  width: 100%;

  gap: 7px !important;

  margin: 22px 0 !important;

  text-align: left !important;
}


/* UTR heading */

.utr-field > span {
  margin: 0 !important;

  color: #111 !important;

  font-family: Arial, Helvetica, sans-serif !important;

  font-size: 13px !important;

  font-weight: 500 !important;

  line-height: 1.4;

  letter-spacing: 0 !important;

  text-transform: none !important;
}


/* Input */

.utr-field input {
  width: 100% !important;
  height: 48px;

  box-sizing: border-box;

  margin: 0 !important;

  padding: 0 14px !important;

  border: 1px solid #d2ddd5 !important;

  border-radius: 10px !important;

  background: #fff !important;

  color: #111 !important;

  font-family: Arial, Helvetica, sans-serif !important;

  font-size: 14px !important;

  font-weight: 400 !important;

  text-transform: none !important;

  letter-spacing: 0 !important;

  outline: none;
}


/* Placeholder */

.utr-field input::placeholder {
  color: #7b847f !important;

  font-weight: 400 !important;

  text-transform: none !important;

  opacity: 1;
}


/* Input focus */

.utr-field input:focus {
  border-color: #087443 !important;

  box-shadow:
    0 0 0 3px
    rgba(8, 116, 67, 0.1);
}


/* Security message */

.utr-field small {
  margin: 0 !important;

  color: #66716b !important;

  font-family: Arial, Helvetica, sans-serif !important;

  font-size: 11px !important;

  font-weight: 400 !important;

  line-height: 1.5;

  letter-spacing: 0 !important;

  text-transform: none !important;
}

/* ======================================
   PAYMENT PANEL SPACING
====================================== */

.qr-payment-panel {
  padding: 26px !important;
}

.qr-payment-panel > div:first-child {
  margin-bottom: 18px;
}

.qr-payment-panel .payment-qr {
  display: block;

  margin: 18px auto 12px;
}

.qr-payment-panel > p {
  margin: 10px 0 18px;

  text-align: center;

  color: #66716b;

  font-size: 14px;

  font-weight: 400;
}


/* Payment buttons */

.payment-methods-simple button {
  display: flex;

  align-items: center;

  gap: 12px;

  min-height: 74px;

  padding: 14px 16px;
}

.payment-methods-simple button > span {
  display: flex;

  flex: 1;

  flex-direction: column;

  align-items: flex-start;

  gap: 2px;
}

.payment-methods-simple button > span small {
  font-weight: 400;
}

@media (max-width: 768px) {

  .qr-payment-panel {
    padding: 18px !important;
  }

  .payment-app-logo {
    width: 38px !important;
    height: 38px !important;

    flex-basis: 38px;
  }

  .payment-app-logo img {
    width: 30px;
    height: 30px;
  }

}

/* PAYMENT APP LOGOS */

.payment-app-logo {
  width: 42px !important;
  height: 42px !important;

  display: flex !important;
  align-items: center;
  justify-content: center;

  flex: 0 0 42px;

  padding: 0 !important;
  margin: 0 !important;

  overflow: hidden;

  border-radius: 10px;

  background: #ffffff !important;
}

.payment-app-logo img {
  width: 34px;
  height: 34px;

  display: block;

  object-fit: contain;
}

/* ==================================================
   PAYMENT CONFIRMATION PAGE - CLEAN MODERN UI
================================================== */

.pending-confirmation {
  min-height: 100vh;
  padding: 70px 20px 90px;
  background:
    radial-gradient(circle at top, rgba(231, 246, 237, 0.95), #eef7f1 45%, #f7faf8 100%);
}

.pending-confirmation .confirmation-wrap {
  width: min(100%, 1160px);
  margin: 0 auto;
  text-align: center;
}


/* success icon */

.pending-confirmation .pending-icon {
  width: 74px;
  height: 74px;

  display: grid;
  place-items: center;

  margin: 0 auto 24px;

  border-radius: 50%;

  background: #dff2e7;

  color: #087443;

  font-size: 38px;
  font-weight: 500;
}


/* main heading */

.pending-confirmation h1 {
  margin: 0;

  color: #15251d;

  font-family: Georgia, "Times New Roman", serif;

  font-size: clamp(38px, 5vw, 62px);
  font-weight: 500;

  line-height: 1.08;
}


/* subtitle */

.pending-confirmation .confirmation-wrap > p:first-of-type {
  max-width: 720px;

  margin: 18px auto 38px;

  color: #66736c;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 18px;
  font-weight: 400;

  line-height: 1.6;
}


/* ==================================================
   INFO GRID
================================================== */

.pending-confirmation dl {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;

  max-width: 1080px;

  margin: 0 auto 34px;

  text-align: left;
}


.pending-confirmation dl > div {
  position: relative;

  min-height: 122px;

  padding: 24px 26px 24px 110px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid #d8e7dd;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.88);

  box-shadow:
    0 8px 24px
    rgba(28, 78, 54, 0.05);
}


/* icon circle */

.pending-confirmation dl > div::before {
  position: absolute;

  left: 26px;
  top: 50%;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #e8f5ed;

  color: #087443;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 28px;
  font-weight: 700;
}


/* different icons for each card */

.pending-confirmation dl > div:nth-child(1)::before {
  content: "🎫";
}

.pending-confirmation dl > div:nth-child(2)::before {
  content: "₹";
}

.pending-confirmation dl > div:nth-child(3)::before {
  content: "▣";
}

.pending-confirmation dl > div:nth-child(4)::before {
  content: "▤";
}


/* labels */

.pending-confirmation dt {
  margin: 0 0 7px;

  color: #68766f;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 15px;
  font-weight: 400;
}


/* values */

.pending-confirmation dd {
  margin: 0;

  color: #111f18;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 24px;
  font-weight: 700;

  line-height: 1.25;

  overflow-wrap: anywhere;
}


/* ==================================================
   MESSAGE BELOW GRID
================================================== */

.pending-confirmation dl + p {
  max-width: 820px;

  margin: 8px auto 28px;

  color: #617069;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 17px;
  font-weight: 400;

  line-height: 1.6;
}


/* ==================================================
   MY BOOKINGS BUTTON
================================================== */

.pending-confirmation .primary-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-width: 220px;
  min-height: 58px;

  padding: 14px 28px;

  border: 0;
  border-radius: 16px;

  background: linear-gradient(135deg, #ffc62b, #ffb81c);

  color: #111;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 18px;
  font-weight: 700;

  text-decoration: none;

  box-shadow:
    0 8px 22px
    rgba(255, 184, 28, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.pending-confirmation .primary-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 26px
    rgba(255, 184, 28, 0.3);
}


/* ==================================================
   SUPPORT / WHATSAPP CARD
================================================== */

.pending-confirmation .booking-support {
  max-width: 1080px;

  margin: 36px auto 0;

  padding: 24px 28px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border: 1px solid #d6e5dc;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.88);

  box-shadow:
    0 8px 24px
    rgba(28, 78, 54, 0.04);

  text-align: left;
}


.pending-confirmation .booking-support > div {
  position: relative;

  padding-left: 76px;

  min-height: 58px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* WhatsApp icon */

.pending-confirmation .booking-support > div::before {
  content: "☏";

  position: absolute;

  left: 0;
  top: 50%;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  transform: translateY(-50%);

  border-radius: 50%;

  background: #e3f4e9;

  color: #087443;

  font-size: 30px;
  font-weight: 700;
}


.pending-confirmation .booking-support b {
  display: block;

  margin-bottom: 5px;

  color: #111f18;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 18px;
  font-weight: 700;
}


.pending-confirmation .booking-support span {
  color: #68766f;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 14px;
  font-weight: 400;
}


/* WhatsApp button */

.pending-confirmation .booking-support .outline-button {
  min-width: 230px;

  min-height: 54px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 20px;

  border: 1.5px solid #087443;
  border-radius: 14px;

  background: #fff;

  color: #087443;

  font-family: Arial, Helvetica, sans-serif;

  font-size: 16px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}


.pending-confirmation .booking-support .outline-button:hover {
  background: #087443;

  color: #fff;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

  .pending-confirmation {
    padding-top: 50px;
  }


  .pending-confirmation dl {
    grid-template-columns: 1fr;
  }


  .pending-confirmation .booking-support {
    align-items: flex-start;

    flex-direction: column;
  }


  .pending-confirmation .booking-support .outline-button {
    width: 100%;
  }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

  .pending-confirmation {
    padding:
      34px 14px
      60px;
  }


  .pending-confirmation .pending-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 18px;

    font-size: 30px;
  }


  .pending-confirmation h1 {
    font-size: 38px;
  }


  .pending-confirmation .confirmation-wrap > p:first-of-type {
    margin-bottom: 28px;

    font-size: 15px;
  }


  .pending-confirmation dl {
    gap: 12px;

    margin-bottom: 26px;
  }


  .pending-confirmation dl > div {
    min-height: 102px;

    padding:
      18px 18px
      18px 88px;

    border-radius: 15px;
  }


  .pending-confirmation dl > div::before {
    left: 18px;

    width: 50px;
    height: 50px;

    font-size: 23px;
  }


  .pending-confirmation dt {
    font-size: 13px;
  }


  .pending-confirmation dd {
    font-size: 19px;
  }


  .pending-confirmation dl + p {
    font-size: 14px;
  }


  .pending-confirmation .primary-button {
    width: 100%;

    min-width: 0;
  }


  .pending-confirmation .booking-support {
    padding: 18px;

    gap: 18px;
  }


  .pending-confirmation .booking-support > div {
    padding-left: 62px;
  }


  .pending-confirmation .booking-support > div::before {
    width: 48px;
    height: 48px;

    font-size: 24px;
  }

}
/* =========================================
   PAYMENT CONFIRMATION - COMPACT DESKTOP
========================================= */

@media (min-width: 901px) {

  .pending-confirmation {
    min-height: auto;
    padding: 38px 20px 46px;
  }

  .pending-confirmation .confirmation-wrap {
    width: min(100%, 980px);
  }

  .pending-confirmation .pending-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;

    font-size: 30px;
  }

  .pending-confirmation h1 {
    font-size: 48px;
    line-height: 1.05;
  }

  .pending-confirmation .confirmation-wrap > p:first-of-type {
    margin: 12px auto 24px;

    font-size: 16px;
  }

  .pending-confirmation dl {
    max-width: 900px;

    gap: 14px;

    margin-bottom: 22px;
  }

  .pending-confirmation dl > div {
    min-height: 92px;

    padding: 18px 22px 18px 88px;

    border-radius: 15px;
  }

  .pending-confirmation dl > div::before {
    left: 20px;

    width: 48px;
    height: 48px;

    font-size: 22px;
  }

  .pending-confirmation dt {
    margin-bottom: 4px;

    font-size: 13px;
  }

  .pending-confirmation dd {
    font-size: 20px;
  }

  .pending-confirmation dl + p {
    max-width: 760px;

    margin: 4px auto 18px;

    font-size: 14px;
    line-height: 1.5;
  }

  .pending-confirmation .primary-button {
    min-width: 185px;
    min-height: 48px;

    padding: 11px 22px;

    border-radius: 13px;

    font-size: 16px;
  }

  .pending-confirmation .booking-support {
    max-width: 900px;

    margin-top: 22px;

    padding: 16px 20px;

    border-radius: 15px;
  }

  .pending-confirmation .booking-support > div {
    min-height: 48px;

    padding-left: 62px;
  }

  .pending-confirmation .booking-support > div::before {
    width: 46px;
    height: 46px;

    font-size: 23px;
  }

  .pending-confirmation .booking-support b {
    margin-bottom: 2px;

    font-size: 16px;
  }

  .pending-confirmation .booking-support span {
    font-size: 12px;
  }

  .pending-confirmation .booking-support .outline-button {
    min-width: 190px;
    min-height: 44px;

    padding: 9px 16px;

    border-radius: 12px;

    font-size: 14px;
  }
}

/* ==================================================
   FIX TICKET / RECEIPT PRINTING
================================================== */

@media print {

  /* Hide normal website */
  body * {
    visibility: hidden !important;
  }

  /* Show only printable ticket / receipt */
  .print-document,
  .print-document * {
    visibility: visible !important;
  }

  /* Put printable document at top of print page */
  .print-document {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 20px !important;

    background: #ffffff !important;

    box-shadow: none !important;
    border: 0 !important;

    color: #111111 !important;
  }

  /* Make modal available during printing */
  .ticket-modal,
  .receipt-modal,
  .print-modal {
    display: block !important;
    visibility: visible !important;

    position: static !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
    box-shadow: none !important;
  }

  .ticket-modal *,
  .receipt-modal *,
  .print-modal * {
    visibility: visible !important;
  }

  /* Hide buttons while printing */
  .no-print,
  .modal-close,
  .print-receipt-button,
  .print-modal > button {
    display: none !important;
  }

  /* Remove page background */
  html,
  body {
    width: 100% !important;
    min-height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
  }

  @page {
    size: A4;
    margin: 12mm;
  }
}

/* Account profile edit button alignment */
.account-settings-card .account-settings-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.account-settings-card .account-settings-heading > div {
  flex: 1;
  min-width: 0;
}

.account-settings-card .account-settings-heading > [data-account-edit] {
  flex: 0 0 auto;
  margin: 0;
}

/* Mobile */
@media (max-width: 600px) {
  .account-settings-card .account-settings-heading {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .account-settings-card .account-settings-heading > [data-account-edit] {
    padding: 8px 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}

/* =========================================
   ACCOUNT PROFILE EDIT ACTION BAR
========================================= */

.account-edit-actions {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;

  margin-top: 12px;
  padding: 16px;

  background: #f6f8f6;
  border-radius: 12px;
}

.account-edit-actions[hidden] {
  display: none !important;
}

.account-edit-actions .account-save-button {
  width: auto;
  min-width: 160px;
  margin: 0;
  justify-self: auto;
}

.account-edit-actions [data-account-cancel] {
  width: auto;
  min-width: 110px;
  margin: 0;
}


/* Mobile */
@media (max-width: 600px) {
  .account-edit-actions {
    grid-column: 1 / -1;
    padding: 12px;
    gap: 8px;
  }

  .account-edit-actions .account-save-button {
    flex: 1;
    min-width: 0;
  }

  .account-edit-actions [data-account-cancel] {
    flex: 0 0 auto;
    min-width: 90px;
  }
}

/* =========================================
   CUSTOMER FEEDBACK - MOBILE SCROLL
========================================= */

@media (max-width: 768px) {

  .customer-feedback-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 14px;

    padding: 4px 4px 16px;
    margin-right: -4px;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .customer-feedback-grid::-webkit-scrollbar {
    display: none;
  }

  .customer-feedback-card {
    flex: 0 0 88%;
    min-width: 88%;
    scroll-snap-align: start;
  }
}

/* =========================================
   BUS GALLERY
========================================= */

.bus-gallery-section {
  padding-top: 10px;
}

.bus-gallery-section .compact-heading p {
  margin-top: 8px;
  color: #6d7a72;
}

.bus-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-top: 28px;
}

.bus-gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #eef3ef;
  cursor: pointer;
}

.bus-gallery-item-large {
  grid-row: 1 / 3;
}

.bus-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bus-gallery-item:hover img {
  transform: scale(1.04);
}

.bus-gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;

  padding: 8px 12px;

  background: rgba(255, 255, 255, 0.92);
  color: #006b43;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 750;

  opacity: 0;
  transform: translateY(5px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.bus-gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================
   GALLERY FULL PREVIEW
========================================= */

.gallery-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.88);
}

.gallery-lightbox-content {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: min(1200px, 95vw);
  height: min(850px, 90vh);
}

.gallery-lightbox-content img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  border-radius: 14px;
}

.gallery-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: white;
  color: #006b43;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;
}


/* =========================================
   MOBILE GALLERY
========================================= */

@media (max-width: 768px) {

  .bus-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px;
    gap: 10px;
    margin-top: 20px;
  }

  .bus-gallery-item-large {
    grid-row: auto;
  }

  .bus-gallery-item {
    border-radius: 12px;
  }

  .bus-gallery-item span {
    display: none;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-content {
    width: 100%;
    height: 90vh;
  }

  .gallery-lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* =========================================
   BUS GALLERY - DESKTOP 4 IN ONE ROW
========================================= */

@media (min-width: 769px) {
  .bus-gallery-section {
    max-width: 1200px;
  }

  .bus-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px;
    gap: 14px;

    max-width: 1100px;
    margin: 24px auto 0;
  }

  .bus-gallery-item,
  .bus-gallery-item-large {
    grid-row: auto;
    width: 100%;
    height: 220px;
  }

  .bus-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================================
   GALLERY VIEW PHOTO BUTTON
========================================= */

.bus-gallery-item {
  position: relative;
}

.bus-gallery-item span {
  position: absolute;
  left: 16px;
  bottom: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;

  background: rgba(255, 255, 255, 0.95);
  color: #006b43;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 750;

  opacity: 1;
  transform: none;

  pointer-events: none;
}

/* Mobile */
@media (max-width: 768px) {
  .bus-gallery-item span {
    display: inline-flex;
    left: 10px;
    bottom: 10px;

    padding: 7px 10px;
    font-size: 12px;
  }
}