/* Garudaa Express — custom overrides */
.font-poppins { font-family: 'Poppins', sans-serif; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #475569; border-radius: 4px; }
.seat-btn:focus { outline: 2px solid #F07F3E; outline-offset: 2px; }
body, html {
  margin: 0;    overflow-x: hidden;
}


/* —— Hero slider —— */
.hero-slider {
  --hero-height: clamp(420px, 72vh, 640px);
  height: var(--hero-height);
  isolation: isolate;
  overflow-x: clip;
  max-width: 100vw;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-slide.is-active .hero-slide__bg {
  transform: scale(1);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(8, 18, 44, 0.72) 45%,
    rgba(15, 23, 42, 0.55) 100%
  );
}

.hero-slide__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(245, 158, 11, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-slide__content {
    padding: 3rem 2rem 8.5rem;
  }
}

.hero-slide__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fde68a;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.45);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(16px);
}

.hero-slide.is-active .hero-slide__badge {
  animation: heroFadeUp 0.7s ease 0.15s forwards;
}

.hero-slide__title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  max-width: 18ch;
  opacity: 0;
  transform: translateY(24px);
}

.hero-slide.is-active .hero-slide__title {
  animation: heroFadeUp 0.8s ease 0.25s forwards;
}

.hero-slide__title span {
  color: #F07F3E;
}

.hero-slide__desc {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: #bfdbfe;
  max-width: 36rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
}

.hero-slide.is-active .hero-slide__desc {
  animation: heroFadeUp 0.8s ease 0.4s forwards;
}

.hero-slide__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(16px);
}

.hero-slide.is-active .hero-slide__stats {
  animation: heroFadeUp 0.8s ease 0.55s forwards;
}

.hero-slide:not(.is-active) .hero-slide__badge,
.hero-slide:not(.is-active) .hero-slide__title,
.hero-slide:not(.is-active) .hero-slide__desc,
.hero-slide:not(.is-active) .hero-slide__stats {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #e2e8f0;
}

.hero-stat i {
  color: #F07F3E;
  font-size: 1rem;
}

.hero-slider__controls {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero-slider__controls {
    bottom: 1.75rem;
    left: auto;
    right: 2rem;
    transform: none;
  }
}

.hero-slider__arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
}

.hero-slider__arrow:hover {
  background: rgba(245, 158, 11, 0.85);
  border-color: #F07F3E;
  transform: scale(1.05);
}

.hero-slider__dots {
  display: flex;
  gap: 0.5rem;
}

.hero-slider__dot {
  width: 2rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background 0.35s ease;
}

.hero-slider__dot.is-active {
  width: 2.75rem;
  background: #F07F3E;
}

.hero-slider__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #F07F3E, #F07F3E);
  z-index: 10;
  width: 0%;
  transition: width 0.1s linear;
}

.hero-booking-wrap {
  position: relative;
  z-index: 20;
  margin-top: calc(-1 * clamp(6rem, 18vw, 6rem));
  padding: 0 0.25rem 2.5rem;
}

.hero-booking-card {
  max-width: 60rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  padding: 1.25rem;
  animation: heroCardIn 0.9s ease 0.3s both;
}

@media (min-width: 640px) {
  .hero-booking-card {
    padding: 1.5rem;
  }
}

.hero-booking-card__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e40af;
  margin-bottom: 1rem;
}

.hero-booking-card__label i {
  color: #F07F3E;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 639px) {
  .hero-slider {
    --hero-height: clamp(380px, 65vh, 520px);
  }

  .hero-slide__content {
    padding-bottom: 6rem;
  }

  .hero-slide__stats {
    display: none;
  }

  .hero-slider__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide__bg,
  .hero-slide__badge,
  .hero-slide__title,
  .hero-slide__desc,
  .hero-slide__stats,
  .hero-booking-card {
    animation: none !important;
    transition: none !important;
  }

  .hero-slide.is-active .hero-slide__badge,
  .hero-slide.is-active .hero-slide__title,
  .hero-slide.is-active .hero-slide__desc,
  .hero-slide.is-active .hero-slide__stats {
    opacity: 1;
    transform: none;
  }
}

/* —— Mobile navigation drawer —— */
@media (min-width: 768px) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer {
    display: none !important;
  }
}

.nav-hamburger {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-hamburger:active {
  transform: scale(0.96);
}

.nav-hamburger__line {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.35s ease;
}

.nav-hamburger.is-open .nav-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open .nav-hamburger__line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.is-open .nav-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(15, 23, 42, 0.55);
}

.mobile-nav-backdrop[hidden] {
  display: none !important;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(88vw, 320px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 8px 0 40px rgba(15, 23, 42, 0.2);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer[hidden] {
  display: none !important;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  background: linear-gradient(145deg, #010616 0%, #07142f 55%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.mobile-nav-drawer__header::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
}

.mobile-nav-drawer__header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.mobile-nav-drawer__logo {
  position: relative;
  z-index: 1;
}

.mobile-nav-drawer__logo img {
  height: 3rem;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.mobile-nav-drawer__close {
  position: relative;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.mobile-nav-drawer__close:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(90deg);
}

.mobile-nav-drawer__links {
  flex: 1;
  padding: 1rem 0.75rem;
  overflow-y: auto;
}

.mobile-nav-drawer__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.35rem;
  border-radius: 0.75rem;
  color: #1e293b;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mobile-nav-drawer.is-open .mobile-nav-drawer__link {
  animation: mobileNavLinkIn 0.45s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  animation-delay: calc(0.12s + var(--nav-delay, 0s));
}

.mobile-nav-drawer__link.is-active,
.mobile-nav-drawer__link:hover {
  background: #fff7ed;
  color: #b45309;
}

.mobile-nav-drawer__link.is-active {
  font-weight: 600;
  box-shadow: inset 3px 0 0 #F07F3E;
}

.mobile-nav-drawer__link-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #1d4ed8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.mobile-nav-drawer__link.is-active .mobile-nav-drawer__link-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #b45309;
}

.mobile-nav-drawer__link-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  color: #94a3b8;
  transition: transform 0.2s, color 0.2s;
}

.mobile-nav-drawer__link:hover .mobile-nav-drawer__link-arrow {
  transform: translateX(4px);
  color: #F07F3E;
}

.mobile-nav-drawer__footer {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.35s, transform 0.4s ease 0.35s;
}

.mobile-nav-drawer.is-open .mobile-nav-drawer__footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-drawer__user {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-nav-drawer__btn--primary {
  background: linear-gradient(135deg, #F07F3E, #d97706);
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.mobile-nav-drawer__btn--outline {
  border: 2px solid #1e40af;
  color: #1e40af;
  background: #fff;
}

.mobile-nav-drawer__btn:active {
  transform: scale(0.98);
}

.mobile-nav-drawer__tagline {
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.85rem;
}

@keyframes mobileNavLinkIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-drawer,
  .nav-hamburger__line,
  .mobile-nav-drawer__link {
    transition: none !important;
    animation: none !important;
  }

  .mobile-nav-drawer.is-open .mobile-nav-drawer__link,
  .mobile-nav-drawer.is-open .mobile-nav-drawer__footer {
    opacity: 1;
    transform: none;
  }
}

/* —— Login split page —— */
.login-page-body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  min-height: 100vh;
  min-height: 100dvh;
}

.login-page-body h1,
.login-page-body h2 {
  font-family: 'Poppins', sans-serif;
}

.login-split {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 1024px) {
  .login-split {
    flex-direction: row;
  }
}

/* Left creative panel */
.login-split__creative {
  position: relative;
  flex: 1;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
}

@media (min-width: 1024px) {
  .login-split__creative {
    min-height: auto;
    width: 52%;
    max-width: 56rem;
  }
}

.login-split__creative-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(54, 69, 79, 0.92) 0%, rgba(42, 50, 56, 0.88) 50%, rgba(240, 127, 62, 0.35) 100%),
    url('../images/bus-image/banner2.webp') center / cover no-repeat;
}

.login-split__orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(240, 127, 62, 0.25);
  filter: blur(40px);
  pointer-events: none;
}

.login-split__orb--1 {
  width: 200px;
  height: 200px;
  top: -40px;
  right: -30px;
  animation: loginOrbFloat 8s ease-in-out infinite;
}

.login-split__orb--2 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  left: -40px;
  animation: loginOrbFloat 10s ease-in-out infinite reverse;
}

.login-split__orb--3 {
  width: 120px;
  height: 120px;
  bottom: -20px;
  right: 25%;
  background: rgba(255, 255, 255, 0.12);
  animation: loginOrbFloat 7s ease-in-out infinite 1s;
}

@keyframes loginOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -16px) scale(1.08); }
}

.login-split__creative-inner {
  position: relative;
  z-index: 1;
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 1024px) {
  .login-split__creative-inner {
    padding: 2.5rem 3rem;
    justify-content: center;
  }
}

.login-split__brand img {
  height: 4.75rem;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.login-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(240, 127, 62, 0.25);
  border: 1px solid rgba(240, 127, 62, 0.45);
  color: #ffd4b8;
}

.login-split__headline h1 {
  margin-top: 1rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.login-split__headline h1 span {
  color: #f07f3e;
}

.login-split__headline p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 28rem;
}

.login-split__bus-wrap {
  margin-top: 1.5rem;
  position: relative;
}

.login-split__bus-wrap::before {
  content: '';
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse, rgba(240, 127, 62, 0.4), transparent 70%);
  filter: blur(20px);
}

.login-split__bus-img {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  animation: loginBusIn 1s ease 0.2s both;
}

@keyframes loginBusIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.login-split__features {
  display: none;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .login-split__features {
    display: flex;
    flex-direction: column;
  }
}

.login-split__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.login-split__features i {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(240, 127, 62, 0.2);
  color: #f07f3e;
  flex-shrink: 0;
}

/* Right form panel */
.login-split__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem 2rem;
  background: #fff;
}

@media (min-width: 1024px) {
  .login-split__panel {
    width: 48%;
    padding: 2.5rem 3rem;
  }
}

.login-split__home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.login-split__home-link:hover {
  color: #f07f3e;
}

@media (min-width: 1024px) {
  .login-split__home-link {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    margin-bottom: 0;
  }

  .login-split__panel {
    position: relative;
  }
}

.login-split__form-wrap {
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
}

.login-split__form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
}

.login-split__form-header p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: #64748b;
}

.login-split__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 0.875rem;
}

.login-split__alert i {
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.login-split__form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.login-split__field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.login-split__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.login-split__input-wrap i {
  color: #94a3b8;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.login-split__input-wrap:focus-within {
  border-color: #f07f3e;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 127, 62, 0.15);
}

.login-split__input-wrap:focus-within i {
  color: #f07f3e;
}

.login-split__input-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.85rem 0;
  font-size: 16px;
  color: #1e293b;
  outline: none;
}

.login-split__input-wrap input::placeholder {
  color: #94a3b8;
}

.login-split__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #ff9a5c 0%, #f07f3e 50%, #d9682e 100%);
  box-shadow: 0 8px 24px rgba(240, 127, 62, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.login-split__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(240, 127, 62, 0.5);
}

.login-split__submit:active {
  transform: translateY(0);
}

.login-split__hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
}

.login-split__hint i {
  color: #f07f3e;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .login-split__orb,
  .login-split__bus-img {
    animation: none;
  }
}

/* —— Admin / Staff dashboard —— */
.dashboard-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.6);
}

.dashboard-overlay[hidden] {
  display: none !important;
}

.dashboard-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: #0f172a;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dashboard-sidebar.is-open {
  transform: translateX(0);
}

.dashboard-main {
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #0f172a;
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  z-index: 40;
}

.dashboard-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #1e293b;
  border: 1px solid #334155;
  color: #f8fafc;
  cursor: pointer;
  flex-shrink: 0;
}

.dashboard-menu-btn__icon {
  width: 1.125rem;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
  transition: background 0.2s;
}

.dashboard-menu-btn__icon::before,
.dashboard-menu-btn__icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.dashboard-menu-btn__icon::before {
  top: -6px;
}

.dashboard-menu-btn__icon::after {
  top: 6px;
}

.dashboard-menu-btn.is-open .dashboard-menu-btn__icon {
  background: transparent;
}

.dashboard-menu-btn.is-open .dashboard-menu-btn__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.dashboard-menu-btn.is-open .dashboard-menu-btn__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.dashboard-content {
  flex: 1;
  padding: 1rem;
  min-width: 0;
}

@media (min-width: 640px) {
  .dashboard-content {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dashboard-sidebar {
    transform: translateX(0);
  }

  .dashboard-overlay {
    display: none !important;
  }

  .dashboard-menu-btn {
    display: none;
  }

  .dashboard-main {
    margin-left: 16rem;
  }

  .dashboard-topbar {
    padding: 1rem 1.5rem;
  }
}

.dashboard-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
}

.dashboard-table-wrap table {
  min-width: 32rem;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .dashboard-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dashboard-stat-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .dashboard-stat-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dashboard-period-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dashboard-period-tabs a {
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .dashboard-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .dashboard-summary-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-summary-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .dashboard-summary-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dashboard-summary-grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.dashboard-summary-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.2);
}

.dashboard-summary-card__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.dashboard-summary-card__content {
  min-width: 0;
}

.dashboard-summary-card__label {
  color: #94a3b8;
  font-size: 0.74rem;
  line-height: 1.2;
  margin-bottom: 0.18rem;
}

.dashboard-summary-card__value {
  color: #f8fafc;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}

.dashboard-summary-card--amber .dashboard-summary-card__icon {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.dashboard-summary-card--green .dashboard-summary-card__icon {
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
}

.dashboard-summary-card--blue .dashboard-summary-card__icon {
  background: rgba(59, 130, 246, 0.14);
  color: #60a5fa;
}

.dashboard-summary-card--red .dashboard-summary-card__icon {
  background: rgba(239, 68, 68, 0.14);
  color: #f87171;
}

.dashboard-summary-card--purple .dashboard-summary-card__icon {
  background: rgba(168, 85, 247, 0.14);
  color: #c084fc;
}

.dashboard-summary-card--teal .dashboard-summary-card__icon {
  background: rgba(20, 184, 166, 0.14);
  color: #2dd4bf;
}

.admin-seat-shell {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.4), rgba(15, 23, 42, 0.2));
  border: 1px solid rgba(51, 65, 85, 0.85);
  border-radius: 1rem;
  padding: 1rem;
}

.admin-seat-shell__header {
  margin-bottom: 0.85rem;
}

.admin-seat-shell__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-seat-map {
  min-width: 760px;
  display: grid;
  grid-template-columns: 130px minmax(380px, 1fr) 190px;
  gap: 1rem;
  align-items: start;
}

.admin-seat-map__zone {
  display: grid;
  gap: 0.65rem;
}

.admin-seat-map__aisle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  color: #94a3b8;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-seat-map__row {
  display: grid;
  gap: 0.55rem;
}

.admin-seat-map__row--center {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-seat-map__row--right {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-seat-card {
  border: 1px solid rgba(71, 85, 105, 0.9);
  border-radius: 0.95rem;
  padding: 0.7rem;
  background: rgba(30, 41, 59, 0.8);
  color: #f8fafc;
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.admin-seat-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.18);
}

.admin-seat-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

.admin-seat-card__label {
  font-weight: 700;
  font-size: 0.86rem;
}

.admin-seat-card__type {
  font-size: 0.68rem;
  color: #cbd5e1;
  text-align: right;
}

.admin-seat-card__meta {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  color: #94a3b8;
}

.admin-seat-card__actions {
  margin-top: 0.5rem;
  font-size: 0.74rem;
}

.admin-seat-card.is-active {
  border-color: rgba(34, 197, 94, 0.9);
  background: rgba(21, 128, 61, 0.2);
}

.admin-seat-card.is-booked {
  border-color: rgba(239, 68, 68, 0.9);
  background: rgba(127, 29, 29, 0.32);
}

.admin-seat-card.is-disabled {
  border-color: rgba(100, 116, 139, 0.8);
  background: rgba(51, 65, 85, 0.72);
  opacity: 0.72;
}

.admin-seat-card.is-female {
  box-shadow: inset 0 0 0 1px rgba(244, 114, 182, 0.85);
}

.admin-seat-card.is-double {
  min-height: 4.2rem;
}

@media (max-width: 767px) {
  .admin-seat-map {
    min-width: 700px;
  }
}

/* —— Site footer —— */
.site-footer {
  --footer-charcoal: #36454f;
  --footer-charcoal-dark: #2a3238;
  --footer-charcoal-light: #434d56;
  position: relative;
  margin-top: 0;
  background: linear-gradient(180deg, var(--footer-charcoal) 0%, var(--footer-charcoal-dark) 100%);
  color: #f1f5f9;
}

.site-footer__wave {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
  color: var(--footer-charcoal);
  overflow: hidden;
}

.site-footer__wave-bg,
.site-footer__wave-front {
  display: block;
  width: 100%;
  height: 72px;
}

@media (min-width: 640px) {
  .site-footer__wave-bg,
  .site-footer__wave-front {
    height: 88px;
  }
}

.site-footer__wave-front {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  max-width: none;
  height: 88px;
  animation: footerWaveDrift 14s ease-in-out infinite alternate;
}

@keyframes footerWaveDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

.site-footer__wave::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f59e0b, #fbbf24, #f59e0b, transparent);
  opacity: 0.85;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

.site-footer__inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.site-footer__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.site-footer__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, transparent);
  border-radius: 2px;
}

.site-footer__text {
  color: #cbd5e1;
}

.site-footer__link {
  color: #cbd5e1;
}

.site-footer__link:hover {
  color: #fbbf24;
}

.site-footer__col a:not(.site-footer__link):not(.site-footer__social):not(.site-footer__gallery-item) {
  color: #cbd5e1;
}

.site-footer__col a:not(.site-footer__link):not(.site-footer__social):not(.site-footer__gallery-item):hover {
  color: #fbbf24;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.9rem;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.site-footer__social:hover {
  background: #f59e0b;
  color: var(--footer-charcoal-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.site-footer__gallery-item {
  display: block;
  background: var(--footer-charcoal-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.site-footer__gallery-item:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.site-footer__gallery-item img {
  display: block;
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: #94a3b8;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__wave-front {
    animation: none;
    width: 100%;
  }
}

/* —— Scroll to top —— */
.scroll-top {
  --scroll-brand: #f07f3e;
  --scroll-brand-dark: #d9682e;
  --scroll-brand-light: #ff9a5c;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem) scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.35s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top[hidden] {
  display: block;
}

.scroll-top[hidden]:not(.is-visible) {
  pointer-events: none;
}

.scroll-top__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 38% 62% 55% 45% / 48% 42% 58% 52%;
  background: rgba(240, 127, 62, 0.35);
  animation: scrollTopPulse 2.2s ease-out infinite;
}

.scroll-top__shape {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--scroll-brand-light) 0%, var(--scroll-brand) 45%, var(--scroll-brand-dark) 100%);
  color: #fff;
  font-size: 1.1rem;
  box-shadow:
    0 8px 24px rgba(240, 127, 62, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  clip-path: polygon(50% 0%, 92% 18%, 100% 50%, 78% 100%, 22% 100%, 0% 50%, 8% 18%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-top__arrow {
  margin-top: -2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.scroll-top:hover .scroll-top__shape {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 14px 32px rgba(240, 127, 62, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.scroll-top:hover .scroll-top__arrow {
  transform: translateY(-2px);
}

.scroll-top:active .scroll-top__shape {
  transform: translateY(-1px) scale(0.98);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--scroll-brand);
  outline-offset: 4px;
  border-radius: 4px;
}

@keyframes scrollTopPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (min-width: 640px) {
  .scroll-top {
    bottom: 1.75rem;
    right: 1.75rem;
    width: 3.75rem;
    height: 3.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top,
  .scroll-top__shape,
  .scroll-top__arrow {
    transition: none;
  }

  .scroll-top__pulse {
    animation: none;
    opacity: 0.4;
  }
}

/* —— Premium booking redesign —— */
.premium-home {
  display: grid;
  gap: 1.25rem;
}

.premium-hero {
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #111827 55%, #172554 100%);
  color: #fff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.premium-hero__content {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .premium-hero__content {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 460px);
    align-items: stretch;
  }
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: #fcd34d;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.premium-hero__copy h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.7rem;
}

.premium-hero__copy p {
  max-width: 44rem;
  color: #cbd5e1;
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.premium-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.premium-hero__chips span,
.premium-price-strip span,
.premium-price-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 600;
}

.premium-hero__chips span {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.premium-search-card,
.premium-mini-card,
.premium-stopages__route,
.premium-seat-shell,
.premium-summary-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.15rem;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.premium-search-card {
  padding: 1rem;
}

.hero-booking-card--premium {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.premium-search-form--homepage {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .premium-search-form--homepage {
    grid-template-columns: 1.1fr 1.1fr 1fr 0.85fr 1.1fr;
  }
}

.premium-search-card__head h2,
.premium-section-title h2,
.premium-seat-shell__header h2 {
  margin: 0;
  font-size: 1.15rem;
  color: #0f172a;
}

.premium-search-card__head p,
.premium-section-title p,
.premium-seat-shell__header p,
.premium-summary-card__section p {
  margin: 0.2rem 0 0;
  color: #64748b;
  font-size: 0.84rem;
}

.premium-search-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .premium-search-form {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
  }
}

.premium-search-form label,
.premium-summary-form label,
.premium-schedule-picker label {
  display: grid;
  gap: 0.35rem;
}

.premium-search-form span,
.premium-summary-form span,
.premium-schedule-picker span {
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
}

.premium-search-form input,
.premium-search-form select,
.premium-summary-form input,
.premium-summary-form select,
.premium-schedule-picker select {
  width: 100%;
  min-height: 2.8rem;
  border-radius: 0.85rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.7rem 0.9rem;
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.premium-search-form input:focus,
.premium-search-form select:focus,
.premium-summary-form input:focus,
.premium-summary-form select:focus,
.premium-schedule-picker select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

.premium-search-form button,
.premium-book-now {
  min-height: 2.9rem;
  border: none;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
}

.premium-search-form button:hover,
.premium-book-now:hover {
  transform: translateY(-1px);
}

.premium-search-form button:disabled,
.premium-book-now:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.premium-price-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.premium-overview-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (min-width: 768px) {
  .premium-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.premium-mini-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
}

.premium-mini-card i {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  color: #ea580c;
  font-size: 0.95rem;
}

.premium-mini-card h3 {
  margin: 0 0 0.15rem;
  font-size: 0.92rem;
  color: #0f172a;
}

.premium-mini-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.home-about-preview {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.15rem;
  padding: 1.2rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.home-about-preview__content {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.home-about-preview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-about-preview__eyebrow-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  color: #f07f3e;
}

.home-about-preview h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.35rem, 2.7vw, 1.95rem);
  line-height: 1.22;
}

.home-about-preview p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.75;
}

.home-about-preview__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.home-about-preview__highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.92);
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
}

.home-about-preview__highlights i {
  color: #f07f3e;
}

.home-about-preview__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f07f3e, #f59e0b);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(240, 127, 62, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-about-preview__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(240, 127, 62, 0.26);
}

.home-about-preview__visual {
  display: flex;
  align-items: stretch;
}

.home-about-preview__card {
  width: 100%;
  display: grid;
  gap: 0.85rem;
  padding: 1.05rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #0f172a, #1e293b);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-about-preview__stat {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-about-preview__stat strong {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.home-about-preview__stat span {
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.55;
}

.premium-section-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.premium-stopages {
  display: grid;
  gap: 0.9rem;
}

.premium-stopages--interactive {
  gap: 1rem;
}

.premium-stopages__header {
  display: grid;
  gap: 0.55rem;
}

.premium-stopages__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.premium-stopages__icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.12);
  color: #ea580c;
}

.premium-stopages__divider {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, #f59e0b, rgba(148, 163, 184, 0.3));
}

.premium-route-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.premium-route-tab {
  border: 1px solid #dbe3ef;
  background: rgba(255, 255, 255, 0.7);
  color: #334155;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.premium-route-tab:hover {
  transform: translateY(-1px);
}

.premium-route-tab.is-active {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  border-color: #0f172a;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.premium-route-panel {
  display: grid;
  gap: 1rem;
}

.premium-route-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(248,250,252,0.95));
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.premium-route-visual__point {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.88rem;
}

.premium-route-visual__point i {
  color: #f97316;
}

.premium-route-visual__line {
  flex: 1;
  min-width: 4rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.premium-route-visual__line span {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.2), rgba(59, 130, 246, 0.6), rgba(245, 158, 11, 0.2));
}

.premium-route-visual__bus {
  color: #2563eb;
  animation: premiumBusFloat 2.2s ease-in-out infinite;
}

.premium-route-visual__line--reverse .premium-route-visual__bus {
  transform: scaleX(-1);
}

@keyframes premiumBusFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.premium-route-columns {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .premium-route-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.premium-route-column {
  display: grid;
  gap: 0.8rem;
}

.premium-route-column__head {
  display: grid;
  gap: 0.18rem;
}

.premium-route-column__head h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #0f172a;
}

.premium-route-column__head p {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
}

.premium-stop-cards {
  display: grid;
  gap: 0.72rem;
}

.premium-stop-card--modern {
  display: grid;
  gap: 0.65rem;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.06);
}

.premium-stop-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
}

.premium-stop-card__badge-number {
  width: 2rem;
  height: 2rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  flex-shrink: 0;
}

.premium-status-badge,
.premium-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.premium-status-badge--green,
.premium-indicator--green {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.premium-status-badge--blue,
.premium-indicator--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.premium-status-badge--orange,
.premium-indicator--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
}

.premium-status-badge--purple,
.premium-indicator--purple {
  background: rgba(147, 51, 234, 0.12);
  color: #7e22ce;
}

.premium-status-badge--teal,
.premium-indicator--teal {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.premium-status-badge--red,
.premium-indicator--red {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.premium-stop-card__body {
  display: grid;
  gap: 0.45rem;
}

.premium-stop-card__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.premium-stop-card__pin {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  flex-shrink: 0;
}

.premium-stop-card__body strong {
  color: #0f172a;
  font-size: 0.9rem;
  line-height: 1.35;
}

.premium-stop-card__body p {
  margin: 0;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
}

.premium-stop-card__footer {
  display: flex;
  justify-content: flex-start;
}

.premium-stopages__accordion {
  display: grid;
  gap: 0.85rem;
}

.premium-stopages__toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

.premium-stopages__body {
  padding: 0 1rem 1rem;
}

.premium-stopages__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .premium-stopages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.premium-stopages__grid h3 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: #0f172a;
}

.premium-stop-list {
  display: grid;
  gap: 0.55rem;
}

.premium-stop-card {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0.8rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
}

.premium-stop-card__index {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.premium-stop-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.88rem;
}

.premium-stop-card small {
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.45;
}

.premium-booking-page {
  display: grid;
  gap: 1rem;
}

.premium-booking-page__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: end;
  justify-content: space-between;
}

.premium-booking-page__top h1 {
  margin: 0.2rem 0 0;
  color: #0f172a;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.premium-booking-page__top h1 span {
  color: #f59e0b;
}

.premium-booking-page__top p {
  margin: 0.3rem 0 0;
  color: #64748b;
}

.premium-back-link {
  color: #475569;
  font-size: 0.84rem;
  text-decoration: none;
}

.premium-booking-layout {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1100px) {
  .premium-booking-layout {
    grid-template-columns: minmax(0, 1.5fr) 360px;
    align-items: start;
  }
}

.premium-seat-shell {
  padding: 1rem;
}

.premium-seat-shell__scroll {
  overflow-x: auto;
  padding-top: 0.8rem;
}

.premium-seat-map {
  min-width: 780px;
  display: grid;
  grid-template-columns: 120px minmax(360px, 1fr) 180px;
  gap: 1.1rem;
  align-items: start;
}

.premium-seat-zone {
  display: grid;
  gap: 0.65rem;
}

.premium-seat-zone--left {
  align-content: start;
}

.premium-seat-zone--center {
  gap: 0.55rem;
}

.premium-seat-zone__aisle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  padding: 0 0.15rem;
}

.premium-seat-row {
  display: grid;
  gap: 0.55rem;
}

.premium-seat-row--center {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-seat-row--right {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.premium-seat {
  min-height: 3rem;
  border: 1px solid #d1d5db;
  border-radius: 0.95rem;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.premium-seat:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.premium-seat--single {
  min-height: 3.25rem;
}

.premium-seat--double {
  min-height: 3.25rem;
  grid-column: span 1;
}

.premium-seat.is-available {
  background: #dcfce7;
  border-color: #4ade80;
  color: #166534;
}

.premium-seat.is-booked {
  background: #fee2e2;
  border-color: #f87171;
  color: #b91c1c;
  cursor: not-allowed;
}

.premium-seat.is-selected {
  background: #dbeafe;
  border-color: #3b82f6;
  color: #1d4ed8;
}

.premium-seat.is-female {
  background: #fce7f3;
  border-color: #f472b6;
  color: #be185d;
}

.premium-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #475569;
}

.legend-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.35rem;
}

.legend-dot--green { background: #22c55e; }
.legend-dot--red { background: #ef4444; }
.legend-dot--blue { background: #3b82f6; }
.legend-dot--pink { background: #ec4899; }

.premium-summary-card {
  position: sticky;
  top: 5.25rem;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
}

.premium-summary-card__section {
  display: grid;
  gap: 0.6rem;
}

.premium-summary-card__section h3,
.premium-summary-card__section h4 {
  margin: 0;
  color: #0f172a;
}

.premium-summary-form {
  display: grid;
  gap: 0.9rem;
}

.premium-selected-list {
  display: grid;
  gap: 0.45rem;
}

.premium-selected-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
}

.premium-selected-item strong {
  display: block;
  color: #0f172a;
  font-size: 0.84rem;
}

.premium-selected-item small,
.premium-summary-empty {
  color: #64748b;
  font-size: 0.74rem;
}

.premium-summary-card__total {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.premium-summary-card__total div {
  border-radius: 0.9rem;
  background: #0f172a;
  color: #fff;
  padding: 0.8rem;
}

.premium-summary-card__total span {
  display: block;
  color: #cbd5e1;
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

.premium-summary-card__total strong {
  font-size: 1rem;
}

.premium-form-error {
  color: #dc2626;
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 767px) {
  .premium-hero {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .home-about-preview {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 1.3rem;
  }

  .home-about-preview__card {
    padding: 0.95rem;
    border-radius: 1.1rem;
  }

  .premium-route-visual {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .premium-route-visual__point {
    justify-content: center;
  }

  .premium-route-visual__line {
    min-width: 0;
  }

  .premium-seat-map {
    min-width: 700px;
  }

  .premium-summary-card {
    position: static;
  }
}

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.promo-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 760px);
  margin: min(10vh, 5rem) auto 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.promo-popup--image-only .promo-popup__dialog {
  width: min(92vw, 560px);
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
}

.promo-popup--text-only .promo-popup__dialog {
  width: min(92vw, 480px);
  grid-template-columns: 1fr;
}

.promo-popup.is-visible .promo-popup__backdrop {
  opacity: 1;
}

.promo-popup.is-visible .promo-popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.promo-popup.is-closing .promo-popup__backdrop {
  opacity: 0;
}

.promo-popup.is-closing .promo-popup__dialog {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
}

.promo-popup__media {
  position: relative;
  min-height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.promo-popup--image-only .promo-popup__media {
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.promo-popup__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.promo-popup__content {
  position: relative;
  padding: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.promo-popup--text-only .promo-popup__content {
  padding-top: 1.6rem;
}

.promo-popup__icon-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(255, 255, 255, 0.82);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease;
}

.promo-popup__icon-close:hover {
  transform: scale(1.05);
  background: #fff;
}

.promo-popup__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(240, 127, 62, 0.12);
  border: 1px solid rgba(240, 127, 62, 0.28);
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.promo-popup__title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.promo-popup__description {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.7;
}

.promo-popup__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.promo-popup__meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 0.72rem;
  font-weight: 600;
}

.promo-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.15rem;
}

.promo-popup__cta,
.promo-popup__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.1rem;
  border-radius: 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.promo-popup__cta {
  background: linear-gradient(135deg, #F07F3E, #f59e0b);
  color: #fff;
  box-shadow: 0 14px 28px rgba(240, 127, 62, 0.26);
}

.promo-popup__secondary {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
}

.promo-popup__cta:hover,
.promo-popup__secondary:hover {
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .promo-popup__dialog {
    width: min(94vw, 28rem);
    margin-top: 5vh;
    grid-template-columns: 1fr;
  }

  .promo-popup--image-only .promo-popup__dialog,
  .promo-popup--text-only .promo-popup__dialog {
    width: min(94vw, 28rem);
  }

  .promo-popup__media {
    min-height: 11rem;
  }

  .promo-popup__content {
    padding: 1rem;
  }

  .promo-popup__actions {
    flex-direction: column;
  }

  .promo-popup__cta,
  .promo-popup__secondary {
    width: 100%;
  }
}
