:root {
  --primary-color: #FFCC00;
  --secondary-color: #1A1A24;
  --body-font: "Poppins", sans-serif;
  --title-font: "Outfit", sans-serif;
  --transition: .3s;
}

a {
  text-decoration: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background: white;
  font-size: 15px;
  font-family: var(--body-font);
  /* FIX: was var(--main-font) which is never defined; corrected to var(--body-font) */
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--title-font);
}

.clrblack {
  color: black !important;
}

/* ================================================================
CAB BOOKING  —  mmc-ACCURATE CSS  v3
Prefix: mmc-   |  Does NOT touch any other page styles
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');
/* ── TOKENS ─────────────────────────────────────────────────── */

:root {
  --mmc-red: #FFCC00;
  --mmc-red-dark: #cca300;
  --mmc-red-glow: rgba(255, 204, 0, .28);
  --mmc-blue: #1A1A24;
  --mmc-blue-dark: #101018;
  --mmc-blue-glow: rgba(26, 26, 36, .28);
  --mmc-gold: #FFCC00;
  /* MyCabRides Yellow */
  --mmc-gold-dark: #cca300;
  /* Hover Dark Yellow */
  --mmc-gold-glow: #FFCC00;
  /* Yellow Glow Shadow */
  --mmc-navy: #1A1A24;
  /* MyCabRides Brand Black/Charcoal */
  --mmc-white: #ffffff;
  --mmc-off: #f5f6f8;
  --mmc-border: #e0e3e9;
  --mmc-text: #1a1a2e;
  --mmc-muted: #6e7e8c;
  --mmc-light: #aab4be;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 100px;
  --shadow: 0 2px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, .18);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .26);
}

/* ── BASE RESET (scoped) ───────────────────────────────────── */

.mmc-header *,
.mmc-hero *,
.mmc-header *::before,
.mmc-header *::after,
.mmc-hero *::before,
.mmc-hero *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.mmc-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
HEADER
================================================================ */

.mmc-header {
  position: relative;
  z-index: 100;
  font-family: var(--font-body);
}

.mmc-header.header-hidden {
  transform: translateY(-100%);
  /* Slides header completely out of viewport */
}

/* ── Tier 1 : dark utility bar ─────────────────────────────── */

.mmc-util {
  background: #ffffff !important;
  /* Force static solid white background initially and always */
  min-height: 72px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  /* Premium soft shadow */
}

.mmc-util__inner {
  display: flex;
  align-items: center;
  min-height: 72px;
  gap: 0;
}

/* Logo */

.mmc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 24px;
  text-decoration: none;
  min-width: 140px;
}

.mmc-logo img {
  /* OLD 40px HEIGHT COMMENTED OUT
  height: 40px;
  */
  height: 52px;
  /* Large Orocab logo matching EaseMyTrip style */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Promo links */

.mmc-promos {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2px;
}

.mmc-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  /* OLD WHITE TEXT COMMENTED OUT
  color: rgba(255, 255, 255, .82);
  */
  color: var(--mmc-text);
  /* Dark text on white */
  text-decoration: none;
  border-radius: var(--r-sm);
  transition: background .15s;
  white-space: nowrap;
  position: relative;
}

.mmc-promo:before {
  position: absolute;
  right: -2px;
  top: 0;
  height: 100%;
  width: 0;
  content: '';
  /* OLD WHITE DASHED BORDER COMMENTED OUT
  border: 1px dashed rgba(255, 255, 255, 0.2);
  */
  border: 1px dashed rgba(0, 0, 0, 0.1);
  /* Darker divider on white */
}

.mmc-promo__icon {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  /* OLD WHITE BG COMMENTED OUT
  background: rgba(255, 255, 255, .12);
  color: #fff;
  */
  background: #FFCC00;
  /* Soft blue background */
  color: var(--mmc-blue);
  /* Blue icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.mmc-promo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mmc-promo__text strong {
  font-size: .75rem;
  font-weight: 700;
  /* OLD WHITE COLOR COMMENTED OUT
  color: #fff;
  */
  color: var(--mmc-text);
  /* Dark text */
}

.mmc-promo__text small {
  font-size: .66rem;
  /* OLD LIGHT COLOR COMMENTED OUT
  color: rgba(255, 255, 255, .54);
  */
  color: var(--mmc-muted);
  /* Slate grey text */
}

/* Right side */

.mmc-util__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Socials */

.mmc-socials {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.mmc-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* OLD WHITE BG/TEXT COMMENTED OUT
  background: rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .8);
  */
  background: rgba(0, 0, 0, 0.05);
  /* Grey-ish background */
  color: var(--mmc-text);
  /* Dark social icons */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  transition: all .15s;
}

.mmc-socials a:hover {
  background: var(--mmc-red);
  color: #fff;
  transform: translateY(-2px);
}

/* Login btn */

.mmc-loginbtn {
  display: flex;
  align-items: center;
  gap: 8px;
  /* OLD WHITE BG/BORDER COMMENTED OUT
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  */
  background: #FFCC00;
  /* Soft blue background */
  border: 1px solid #FFCC00;
  /* Soft blue border */
  color: var(--mmc-blue);
  /* Blue login text */
  border-radius: var(--r-pill);
  padding: 7px 16px 7px 8px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
  text-decoration: none;
}

.mmc-loginbtn:hover {
  /* OLD HOVER COMMENTED OUT
  background: rgba(255, 255, 255, .20);
  color: #fff;
  */
  background: #FFCC00;
  /* Slightly darker blue hover */
  color: var(--mmc-blue);
  text-decoration: none;
}

.mmc-loginbtn__av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f3f4;
  color: #5f6368;
  border: 1px solid #dadce0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.mmc-loginbtn i.ch {
  font-size: 9px;
}

/* Acct dropdown */

.mmc-acct {
  position: relative;
}

.mmc-acct__drop {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 190px;
  list-style: none;
  padding: 8px 0;
  z-index: 900;
  border-top: 3px solid var(--mmc-red);
  animation: mmcFD .18s ease;
}

.mmc-acct__drop.open {
  display: block;
}

.mmc-acct__drop li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: .82rem;
  color: var(--mmc-text);
  text-decoration: none;
  transition: background .13s;
}

.mmc-acct__drop li a:hover {
  background: var(--mmc-off);
}

.mmc-acct__drop li a i {
  color: var(--mmc-red);
  width: 16px;
  font-size: 12px;
}

.mmc-acct__div {
  border-top: 1px solid var(--mmc-border);
  margin: 5px 0;
}

.mmc-logout-lnk {
  color: var(--mmc-red) !important;
}

@keyframes mmcFD {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Book Now */

.mmc-booknow {
  display: inline-flex;
  align-items: center;
  background: var(--mmc-red);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s;
  box-shadow: 0 4px 14px var(--mmc-red-glow);
  white-space: nowrap;
  letter-spacing: .02em;
}

.mmc-booknow:hover {
  background: var(--mmc-red-dark);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Hamburger */

.mmc-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mmc-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all .22s;
}

.mmc-ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mmc-ham.open span:nth-child(2) {
  opacity: 0;
}

.mmc-ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Tier 2 : White category bar — ONE single row ─────────── */

.mmc-catbar {
  background: #fff;
  border-bottom: 1px solid var(--mmc-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
}

.mmc-catbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 8px;
}

/* Category icon strip (left) */

.mmc-cats {
  display: flex;
  align-items: flex-end;
  gap: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 1;
}

.mmc-cats::-webkit-scrollbar {
  display: none;
}

.mmc-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 14px 10px;
  text-decoration: none;
  color: var(--mmc-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all .15s;
  flex-shrink: 0;
}

.mmc-cat:hover,
.mmc-cat.is-active {
  color: var(--mmc-red);
  border-bottom-color: var(--mmc-red);
  text-decoration: none;
}

.mmc-cat__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--mmc-off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .15s;
}

.mmc-cat:hover .mmc-cat__icon,
.mmc-cat.is-active .mmc-cat__icon {
  background: rgba(232, 23, 63, .09);
  color: var(--mmc-red);
}

.mmc-cat__name {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
}

/* Nav links (right of same row) */

.mmc-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.mmc-navdrop {
  position: relative;
}

.mmc-navlink {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 7px 11px;
  font-family: var(--font-body);
  font-size: .83rem;
  font-weight: 600;
  color: var(--mmc-text);
  text-decoration: none;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all .14s;
  cursor: pointer;
  background: none;
  border: none;
}

.mmc-navlink i {
  font-size: 9px;
  transition: transform .15s;
}

.mmc-navlink:hover {
  color: var(--mmc-red);
  background: rgba(232, 23, 63, .05);
  text-decoration: none;
}

.mmc-navlink--active {
  color: var(--mmc-red);
}

.mmc-navdrop.open>.mmc-navlink i {
  transform: rotate(180deg);
}

.mmc-navmenu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  list-style: none;
  padding: 8px 0;
  z-index: 800;
  border-top: 3px solid var(--mmc-red);
  animation: mmcFD .18s ease;
}

.mmc-navdrop.open .mmc-navmenu {
  display: block;
}

.mmc-navmenu--wide {
  min-width: 270px;
}

.mmc-navmenu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: .82rem;
  color: var(--mmc-text);
  text-decoration: none;
  transition: all .13s;
}

.mmc-navmenu li a:hover {
  background: var(--mmc-off);
  color: var(--mmc-red);
  padding-left: 22px;
}

/* Mobile drawer */

.mmc-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 950;
}

.mmc-drawer.open {
  display: block;
}

.mmc-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 20px 15px 20px;
  transform: translateX(-100%);
  animation: mmcSI .26s ease forwards;
}

@keyframes mmcSI {
  to {
    transform: translateX(0);
  }
}

.mmc-drawer__menu {
  list-style: none;
}

.mmc-drawer__menu li>a,
.mmc-drawer__menu li>button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 22px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--mmc-text);
  text-decoration: none;
  border-bottom: 1px solid var(--mmc-border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

.mmc-drawer__menu li>a:hover,
.mmc-drawer__menu li>button:hover {
  color: var(--mmc-red);
  background: var(--mmc-off);
}

.mmc-drawer__sub {
  list-style: none;
  display: none;
  background: var(--mmc-off);
}

.mmc-drawer__sub.open {
  display: block;
}

.mmc-drawer__sub li a {
  display: block;
  padding: 10px 36px;
  font-size: .82rem;
  color: var(--mmc-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--mmc-border);
  transition: color .13s;
}

.mmc-drawer__sub li a:hover {
  color: var(--mmc-red);
}

/* ================================================================
HERO
================================================================ */

.mmc-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 108px 0 72px;
  margin-top: -58px;
  background-image: url(../images/slider/slider-01.jpg);
  z-index: 9;
}

.mmc-hero:before {
  /* OLD PURPLE/RED GRADIENT COMMENTED OUT
  background: linear-gradient(135deg, #0e0a28 0%, #1a124e 35%, #2d0e2e 65%, #4a0a1a 100%);
  */
  background: linear-gradient(180deg, rgba(26, 25, 44, 0.45) 0%, rgba(16, 15, 28, 0.85) 100%);
  /* Premium dark charcoal/navy overlay */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* OLD OPACITY COMMENTED OUT
  opacity: 0.6;
  */
  opacity: 0.85;
  /* Increased opacity for text readability */
}

.mmc-hero--hasbg {
  /* OLD MULTI-COLOR GRADIENT COMMENTED OUT
  background: linear-gradient(135deg, rgba(14, 10, 40, .86) 0%, rgba(26, 18, 78, .78) 40%, rgba(74, 10, 26, .70) 100%), url('assets/images/hero-bg.jpg') center/cover no-repeat;
  */
  background: linear-gradient(180deg, rgba(26, 25, 44, 0.45) 0%, rgba(16, 15, 28, 0.85) 100%), url('assets/images/hero-bg.jpg') center/cover no-repeat;
  /* Solid dark gradient */
}

/* Subtle dot texture */

.mmc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

.mmc-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Headline */

.mmc-hero__head {
  text-align: center;
  margin-bottom: 28px;
}

.mmc-hero__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .5);
}

.mmc-hero__title em {
  font-style: normal;
  color: var(--mmc-red);
}

.mmc-hero__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, .85);
  margin: 0;
  text-align: center;
}

/* ── PROGRESSIVE WORD REVEAL ANIMATION ── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translate3d(-15px, 0, 0);
  animation: word-progressive-reveal 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  animation-fill-mode: both;
}

.w-1 { animation-delay: 0.1s; }
.w-2 { animation-delay: 0.3s; }
.w-3 { animation-delay: 0.5s; }
.w-4 { animation-delay: 0.7s; }
.w-5 { animation-delay: 0.9s; }
.w-6 { animation-delay: 1.1s; }
.w-7 { animation-delay: 1.3s; }
.w-8 { animation-delay: 1.5s; }

@keyframes word-progressive-reveal {
  0% {
    opacity: 0;
    transform: translate3d(-15px, 0, 0);
  }
  5% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  90% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  95%, 100% {
    opacity: 0;
    transform: translate3d(-15px, 0, 0);
  }
}

/* ================================================================
BOOKING WIDGET  (white card)
================================================================ */

/* ================================================================
   COMMENTED OUT ORIGINAL BOOKING WIDGET STYLING FOR EASY UNDO
   ================================================================
.mmc-widget {
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
}

.mmc-tabs {
    display: flex;
    align-items: center;
    padding: 0 22px;
    border-bottom: 1px solid var(--mmc-border);
    background: #fff;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 15px;
    justify-content: center;
    width: max-content;
    margin-inline: auto;
    transform: translateY(-50px);
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    margin-top: 75px;
    margin-bottom: -40px;
}

.mmc-tabs::-webkit-scrollbar {
    display: none;
}

.mmc-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px 15px;
    cursor: pointer;
    position: relative;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    user-select: none;
    white-space: nowrap;
    transition: all .15s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-body);
    flex-direction: column;
}
.mmc-tab__img img{
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.mmc-tab__dot {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 2px solid var(--mmc-border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .15s;
    position: relative;
}

.mmc-tab__dot::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mmc-blue);
    opacity: 0;
    transform: scale(0);
    transition: all .15s;
}

.mmc-tab.is-active .mmc-tab__dot {
    border-color: var(--mmc-blue);
}

.mmc-tab.is-active .mmc-tab__dot::after {
    opacity: 1;
    transform: scale(1);
}


.mmc-tab__label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--mmc-muted);
    transition: color .15s;
}

.mmc-tab.is-active {
    border-bottom-color: var(--mmc-blue);
}

.mmc-tab.is-active .mmc-tab__label {
    color: var(--mmc-blue);
}

.mmc-tab__badge {
    background: #00897b;
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--r-pill);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mmc-tabs__aside {
    margin-left: auto;
    font-size: .78rem;
    color: var(--mmc-muted);
    font-weight: 500;
    flex-shrink: 0;
    padding: 0 4px;
    white-space: nowrap;
}

.mmc-panel {
    display: none;
}

.mmc-panel.is-active {
    display: block;
    animation: mmcPI .2s ease;
}

@keyframes mmcPI {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mmc-fields {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--mmc-border);
    border-inline: 1px solid var(--mmc-border);
    border-top: 1px solid var(--mmc-border);
    border-radius: 15px;
}

.mmc-field {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    border-right: 1px solid var(--mmc-border);
}
.mmc-panel form{
  padding-inline: 15px;
}
.mmc-field:last-child {
    border-right: none;
}

.mmc-field--loc {
    flex: 1.2 1 0;
}

.mmc-fi {
    display: flex;
    flex-direction: column;
    padding: 20px 8px 16px;
    min-height: 96px;
    height: 100%;
    cursor: text;
    transition: background .13s;
}

.mmc-fi:hover {
    background: #ffffff;
}

.mmc-field:focus-within .mmc-fi {
    background: rgba(255, 204, 0, .04);
}

.mmc-fi__label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--mmc-muted);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.mmc-fi__label i {
    font-size: 8px;
    color: var(--mmc-light);
}

.mmc-fi__val {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--mmc-text);
    width: 100%;
    padding: 0;
    line-height: 1.15;
    caret-color: var(--mmc-blue);
}

.mmc-fi__val::placeholder {
    color: #c5ccd6;
    font-weight: 600;
    font-size: 1.4rem;
}

input[type="date"].mmc-fi__val {
    font-size: 1.3rem;
}
.mmc-fi__val{
    font-size: 1.3rem;
}
input[type="date"].mmc-fi__val::-webkit-calendar-picker-indicator {
    opacity: .44;
    cursor: pointer;
    margin-left: 4px;
}

select.mmc-fi__val {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6'%3E%3Cpath d='M0 0l5.5 6L11 0z' fill='%236e7e8c'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 18px;
    padding-left: 8px;
    margin-left: -8px;
}

.mmc-fi__sub {
    font-size: .7rem;
    color: var(--mmc-muted);
    margin-top: 3px;
    font-weight: 500;
    min-height: 14px;
}

.mmc-swap-wrap {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.mmc-swap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--mmc-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--mmc-muted);
    transition: all .2s;
}

.mmc-swap:hover {
    background: var(--mmc-red);
    color: #fff;
    border-color: var(--mmc-red);
    transform: rotate(180deg);
    box-shadow: 0 4px 12px var(--mmc-red-glow);
}

.mmc-airsugg {
    position: absolute;
    top: calc(100% + 4px);
    left: -100%;
    right: auto !important;
    background: #ffffff;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    border-top: 3px solid #FFCC00;
    padding: 6px 0 8px;
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
    width: auto;
}

.mmc-airsugg__item {
    padding: 11px 16px;
    font-size: .82rem;
    color: var(--mmc-text);
    cursor: pointer;
    border-bottom: 1px solid var(--mmc-border);
    transition: background .12s;
}

.mmc-airsugg__item:last-child {
    border-bottom: none;
}

.mmc-airsugg__item:hover {
    background: #e3f2fd;
    color: var(--mmc-blue);
}

.mmc-stops-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    font-family: var(--font-body);
    font-size: .8rem;
    color: var(--mmc-muted);
    font-weight: 600;
}

.mmc-stops-bar small {
    font-weight: 400;
    margin-left: 4px;
}

.mmc-addstop {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid var(--mmc-blue);
    color: var(--mmc-blue);
    border-radius: var(--r-pill);
    padding: 5px 14px;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .15s;
    font-family: var(--font-body);
}

.mmc-addstop:hover {
    background: var(--mmc-blue);
    color: #fff;
}

.mmc-stop-row {
    margin-bottom: 8px;
}

.mmc-stop-field {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--mmc-off);
    border: 1px solid var(--mmc-border);
    border-radius: var(--r-sm);
    padding: 9px 14px;
}

.mmc-stop-inp {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--mmc-text);
}

.mmc-stop-rm {
    background: none;
    border: none;
    color: var(--mmc-light);
    cursor: pointer;
    font-size: 12px;
    padding: 2px;
    transition: color .13s;
}

.mmc-stop-rm:hover {
    color: var(--mmc-red);
}

.mmc-searchbar {
    display: flex;
    justify-content: center;
    padding: 22px 22px 0px;
}

.mmc-searchbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--mmc-blue);
    color: #fff;
    border: none;
    border-radius: var(--r-pill);
    padding: 15px 90px;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .14em;
    cursor: pointer;
    box-shadow: 0 6px 24px rgb(0 0 0 / 38%);
    transition: all .2s;
    margin-bottom: -27px;
}

.mmc-searchbtn:hover {
    background: var(--mmc-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px var(--mmc-blue-glow);
}
*/

/* ================================================================
   UPGRADED PREMIUM DESIGN STYLING (Outfit & Poppins fonts)
   ================================================================ */
.mmc-widget {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  /* UPGRADED PREMIUM SOFT SHADOW */
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.05), 0 4px 14px rgba(0, 0, 0, 0.02);
  margin: 0 auto;
  padding-bottom: 25px;
  position: relative;
}

.mmc-tabs {
  display: flex;
  align-items: center;
  padding: 6px;
  /* OLD GREY BACKGROUND COMMENTED OUT
  background: #f1f5f9;
  */
  background: var(--mmc-blue);
  /* Original Blue Container */
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  border-radius: 100px;
  justify-content: center;
  width: max-content;
  margin-inline: auto;
  transform: translateY(-32px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
  margin-bottom: -15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.mmc-tabs::-webkit-scrollbar {
  display: none;
}

.mmc-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  flex-direction: row;
  /* Horizontal flow */
}

.mmc-tab__img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mmc-tab__img img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.mmc-tab__dot {
  display: none !important;
  /* Hide original radio button dots */
}

.mmc-tab__label {
  font-size: 0.85rem;
  font-weight: 600;
  /* OLD GREY TEXT COMMENTED OUT
  color: #64748b;
  */
  color: rgba(255, 255, 255, 0.85);
  /* Light text on blue container */
  transition: color 0.25s ease;
}

.mmc-tab:hover {
  /* OLD HOVER COMMENTED OUT
  background: rgba(0, 0, 0, 0.03);
  */
  background: rgba(255, 255, 255, 0.15);
  /* Semi-transparent white hover */
}

.mmc-tab.is-active {
  background: #FFCC00;
  /* Gold background for active tab */
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.25);
}

.mmc-tab.is-active .mmc-tab__label {
  color: #1A1A24;
  /* Charcoal text for active tab */
  font-weight: 800;
}

.mmc-tab.is-active .mmc-tab__img img {
  filter: brightness(0.1);
}

.mmc-tab__badge {
  background: #0d9488;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mmc-tabs__aside {
  margin-left: auto;
  font-size: .78rem;
  color: var(--mmc-muted);
  font-weight: 500;
  flex-shrink: 0;
  padding: 0 4px;
  white-space: nowrap;
}

.mmc-panel {
  display: none;
}

.mmc-panel.is-active {
  display: block;
  animation: mmcPI .2s ease;
}

@keyframes mmcPI {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mmc-fields {
  flex: 1;
  display: flex;
  align-items: stretch;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

.mmc-field {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  /* OLD BLUE DIVIDER COMMENTED OUT
  border-right: 1.5px solid #FFCC00;
  */
  border-right: 1.5px solid #FFCC00;
  /* Gold divider */
  transition: background 0.2s ease;
}

.mmc-panel form {
  display: flex;
  flex-wrap: wrap;
  /* Allows the stops bar to wrap below main inputs */
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding-inline: 0 !important;
  border: 1.5px solid rgba(255, 204, 0, 0.35);
  /* Gold border wrapper */
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.mmc-panel form:focus-within {
  border-color: var(--mmc-gold) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.05), 0 0 0 3px #FFCC00;
  /* Soft gold glow */
}

.mmc-field:last-child {
  border-right: none;
}

.mmc-field--loc {
  flex: 1.25 1 0;
}

.mmc-fi {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  min-height: 94px;
  height: 100%;
  cursor: text;
  transition: background 0.2s ease;
}

.mmc-fi:hover {
  /* OLD BLUE HOVER COMMENTED OUT
  background: #ffffff;
  */
  background: #ffffff;
  /* Soft gold hover tint */
}

.mmc-field:focus-within .mmc-fi {
  /* OLD BLUE FOCUS COMMENTED OUT
  background: #ffffff;
  */
  background: #ffffff;
  /* Soft gold focus tint */
}

.mmc-fi__sub {
  display: none !important;
  /* Hide extra helper description texts for cleaner look */
}

.mmc-fi__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.mmc-fi__label i {
  font-size: 8px;
  color: var(--mmc-light);
}

.mmc-fi__val {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-head);
  font-size: 1.2rem;
  /* Clean text scale */
  font-weight: 700;
  color: #0f172a;
  width: 100%;
  padding: 0;
  line-height: 1.25;
  caret-color: var(--mmc-blue);
}

.mmc-fi__val::placeholder {
  color: #94a3b8;
  font-weight: 600;
  font-size: 1.15rem;
}

input[type="date"].mmc-fi__val {
  font-size: 1.1rem;
  color: #0f172a;
}

select.mmc-fi__val {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6'%3E%3Cpath d='M0 0l5.5 6L11 0z' fill='%2364748b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
  padding-left: 2px;
}

.mmc-fi__sub {
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 4px;
  font-weight: 500;
  min-height: 14px;
}

.mmc-swap-wrap {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

.mmc-swap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  color: #64748b;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mmc-swap:hover {
  background: var(--mmc-blue);
  color: #fff;
  border-color: var(--mmc-blue);
  transform: rotate(180deg);
  box-shadow: 0 4px 12px #FFCC00;
}

.mmc-airsugg {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  max-height: 260px;
  overflow-y: auto;
  border-top: 3px solid var(--mmc-blue);
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  width: 100%;
  min-width: 250px;
}

.mmc-airsugg__item {
  padding: 10px 16px;
  font-size: .82rem;
  color: var(--mmc-text);
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: background .15s;
}

.mmc-airsugg__item:last-child {
  border-bottom: none;
}

.mmc-airsugg__item:hover {
  background: #f0f7ff;
  color: var(--mmc-blue);
}

.mmc-stops-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 12px 20px !important;
  border-top: 1.5px dashed #FFCC00 !important;
  background: #fafafa !important;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.mmc-stops-wrap {
  width: 100% !important;
  background: #fafafa !important;
  padding: 0 20px 12px !important;
}

.mmc-stops-bar small {
  font-weight: 400;
  margin-left: 4px;
}

.mmc-addstop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid var(--mmc-blue);
  color: var(--mmc-blue);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body);
}

.mmc-addstop:hover {
  background: var(--mmc-blue);
  color: #fff;
}

.mmc-stop-row {
  margin-bottom: 8px;
}

.mmc-stop-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 14px;
}

.mmc-stop-inp {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--mmc-text);
}

.mmc-stop-rm {
  background: none;
  border: none;
  color: var(--mmc-light);
  cursor: pointer;
  font-size: 12px;
  padding: 2px;
  transition: color .13s;
}

.mmc-stop-rm:hover {
  color: var(--mmc-red);
}

.mmc-searchbar {
  display: flex;
  align-items: stretch;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.mmc-searchbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFCC00 !important;
  /* Orange accent background inspired by EaseMyTrip */
  color: #1A1A24 !important;
  border: none !important;
  border-radius: 0 !important;
  /* Container handles rounding */
  padding: 0 60px !important;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  box-shadow: none !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 100% !important;
  transition: background 0.2s ease;
  z-index: 1;
}

.mmc-searchbtn:hover {
  background: #e6b800 !important;
  transform: none !important;
  box-shadow: none !important;
}

.mmc-searchbtn:active {
  transform: none !important;
  box-shadow: none !important;
}

/* ================================================================
COMMON TYPOGRAPHY + BUTTON UTILITIES  (use anywhere)
================================================================ */

.mmc-h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: var(--mmc-text);
  line-height: 1.2;
}

.mmc-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--mmc-text);
  line-height: 1.3;
}

.mmc-h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mmc-text);
}

.mmc-tag {
  display: inline-block;
  background: rgba(232, 23, 63, .10);
  color: var(--mmc-red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.mmc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  padding: 11px 26px;
}

.mmc-btn-red {
  background: var(--mmc-red);
  color: #fff;
  box-shadow: 0 4px 14px var(--mmc-red-glow);
}

.mmc-btn-red:hover {
  background: var(--mmc-red-dark);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.mmc-btn-blue {
  background: var(--mmc-blue);
  color: #fff;
  box-shadow: 0 4px 14px var(--mmc-blue-glow);
}

.mmc-btn-blue:hover {
  background: var(--mmc-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.mmc-btn-outline {
  background: transparent;
  color: var(--mmc-red);
  border: 2px solid var(--mmc-red);
}

.mmc-btn-outline:hover {
  background: var(--mmc-red);
  color: #fff;
  text-decoration: none;
}

/* ================================================================
RESPONSIVE
================================================================ */

@media (max-width: 1024px) {
  .mmc-promo {
    padding: 6px 12px;
  }

  .mmc-cat {
    padding: 10px 10px;
  }

  .mmc-cat__icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .mmc-navlink {
    padding: 6px 8px;
    font-size: .8rem;
  }
}

@media (max-width: 1150px) {
  .mmc-promos {
    display: none;
  }

  .mmc-socials {
    display: none;
  }

  .mmc-util__right.desctop .mmc-acct,
  .mmc-util__right.desctop .mmc-loginbtn {
    display: none;
  }

  .mmc-booknow {
    display: none;
  }

  .mmc-ham {
    display: flex;
  }

  .mmc-nav {
    display: none;
  }

  .mmc-catbar__inner {
    justify-content: flex-start;
  }

  .mmc-panel form {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    border-radius: 0 !important;
    padding-inline: 0 !important;
  }

  .mmc-fields {
    flex-wrap: wrap;
    flex: none !important;
    width: 100% !important;
    border: 1.5px solid rgba(255, 204, 0, 0.35) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01) !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
  }

  .mmc-field {
    flex: 1 1 calc(50% - 1px);
    border-right: none;
    border-bottom: 1px solid var(--mmc-border);
  }

  .mmc-field:nth-child(odd) {
    border-right: 1px solid var(--mmc-border);
  }

  .mmc-field--loc {
    flex: 1 1 calc(50% - 1px);
  }

  .mmc-swap-wrap {
    display: none;
  }

  .mmc-tab {
    padding: 14px 14px 13px;
  }

  .mmc-tabs__aside {
    display: none;
  }

  .mmc-searchbar {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mmc-searchbtn {
    width: 100% !important;
    padding: 16px 20px !important;
    border-radius: 100px !important;
    min-height: unset !important;
    height: auto !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 24px rgba(225, 107, 43, 0.25) !important;
  }
}

@media (max-width: 600px) {
  .mmc-logo img {
    height: 34px;
  }

  .mmc-util__inner {
    padding: 0 14px;
  }

  .mmc-hero {
    min-height: unset;
    padding: 36px 0 56px;
  }

  .mmc-hero__title {
    font-size: 1.55rem;
  }

  .mmc-hero__sub {
    font-size: .88rem;
  }

  .mmc-widget {
    border-radius: var(--r-md);
  }

  .mmc-fields {
    flex-direction: column;
  }

  .mmc-field {
    flex: unset;
    width: 100%;
    border-right: none !important;
  }

  .mmc-fi {
    min-height: 78px;
    padding: 16px 18px 13px;
  }

  .mmc-fi__val {
    font-size: 1.2rem;
  }

  .mmc-fi__val::placeholder {
    font-size: 1rem;
  }

  .mmc-tab {
    padding: 12px 10px 11px;
  }

  .mmc-tab__label {
    font-size: .76rem;
  }

  .mmc-tab__badge {
    display: none;
  }

  .mmc-searchbtn {
    width: 100% !important;
    padding: 14px 20px !important;
    border-radius: 100px !important;
    min-height: unset !important;
    height: auto !important;
  }

  .mmc-searchbar {
    padding: 0 !important;
    margin: 0 !important;
  }

  .mmc-cat__icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .mmc-cat {
    padding: 8px 9px;
  }

  .mmc-cat__name {
    font-size: .63rem;
  }
}

.field__date .mmc-fi {
  padding-inline: 7px 0;
}

.pac-container {
  font-family: 'Poppins', sans-serif !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 0 0 14px 14px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18) !important;
  overflow: hidden !important;
  margin-top: 2px !important;
  z-index: 9999 !important;
  padding: 6px 0 8px !important;
  border-top: 3px solid #FFCC00 !important;
  /* blue accent line */
  min-width: 250px !important;
}

/* Hide the Google logo at bottom */
.pac-container::after {
  display: none !important;
}

/* Each suggestion row */
.pac-item {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 !important;
  border-top: none !important;
  border-bottom: 1px solid #f0f2f5 !important;
  cursor: pointer !important;
  transition: background .14s !important;
  min-height: 35px !important;
  line-height: 1 !important;
  padding-inline: 15px !important;
}

.pac-item:last-child {
  border-bottom: none !important;
}

.pac-item:hover,
.pac-item-selected {
  background: #e8f0fe !important;
}

/* The map-pin icon on the left */
.pac-icon {
  width: 42px !important;
  min-width: 42px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  background-image: none !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  display: none !important;
}

/* Replace Google's icon with a clean FontAwesome-style pin using CSS */
.pac-icon::before {
  content: '' !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% 50% 50% 0 !important;
  background: #FFCC00 !important;
  transform: rotate(-45deg) !important;
  display: block !important;
}

.pac-icon-marker {
  background-image: none !important;
}

/* Text container */
.pac-item-query {
  font-size: .9rem !important;
  font-weight: 700 !important;
  color: #1a1a2e !important;
  padding: 0 !important;
  display: inline !important;
}

/* The "matched" portion in blue */
.pac-matched {
  color: #FFCC00 !important;
  font-weight: 800 !important;
}

/* Secondary text (state, country) */
.pac-item>span:last-child {
  font-size: .76rem !important;
  color: #6e7e8c !important;
  font-weight: 400 !important;
  display: block !important;
  line-height: 1.3 !important;
  padding: 12px 14px 12px 0 !important;
  margin-left: 5px;
}

/* Full item text area (query + secondary together) */
.pac-item-query+span {
  padding: 0 !important;
}


/* ── 2. AIRPORT CUSTOM SUGGESTIONS  (.mmc-airsugg) ─────────────
Your own dropdown for #airport-suggestions
─────────────────────────────────────────────────────────────── */

.mmc-airsugg {
  position: absolute;
  top: calc(100% + 4px);
  left: -100%;
  right: auto !important;
  background: #ffffff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
  z-index: 9999;
  max-height: 260px;
  overflow-y: auto;
  border-top: 3px solid #FFCC00;
  padding: 6px 0 8px;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
  width: auto;
}

.mmc-airsugg::-webkit-scrollbar {
  width: 4px;
}

.mmc-airsugg::-webkit-scrollbar-track {
  background: transparent;
}

.mmc-airsugg::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

/* Empty state */
.mmc-airsugg:empty {
  display: none;
}

/* Each airport row */
.mmc-airsugg__item {
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .86rem;
  color: #1a1a2e;
  cursor: pointer;
  border-bottom: 1px solid #f0f2f5;
  transition: background .13s, padding-left .13s;
  line-height: 1.4;
}

.mmc-airsugg__item:last-child {
  border-bottom: none;
}

/* Left icon */
.mmc-airsugg__item::before {
  content: '\f072';
  /* fa-plane */
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 5 Pro';
  font-weight: 900;
  font-size: 13px;
  color: #FFCC00;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 28px;
}

.mmc-airsugg__item:hover {
  background: #e8f0fe;
  padding-left: 22px;
  color: #FFCC00;
}

/* "No results" message (add this class manually if needed) */
.mmc-airsugg__empty {
  padding: 16px 18px;
  font-size: .82rem;
  color: #9aa5b1;
  font-style: italic;
  text-align: center;
}


.mmc-field:focus-within .mmc-fi {
  background: rgba(255, 204, 0, .04);
}

.mmc-field:focus-within .mmc-fi__label {
  color: #FFCC00;
}


/* ── 4. RESPONSIVE ──────────────────────────────────────────────*/

@media (max-width: 600px) {
  .pac-container {
    border-radius: 0 0 10px 10px !important;
  }

  .pac-item {
    min-height: 46px !important;
  }

  .mmc-airsugg {
    left: -16px;
    border-radius: 0 0 10px 10px;
  }

  .mmc-airsugg__item {
    padding: 10px 14px;
    font-size: .82rem;
  }
}

select.mmc-fi__val option {
  font-size: 15px;
}

.offers-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.offers-header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #393939;
  margin: 0;
}

.view-all-link {
  color: #008cff;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

/* Tabs */
.offers-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid #eee;
}

.offers-tabs li {
  flex-shrink: 0;
}

.offers-tabs button {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

/* ================================================================
   COMMENTED OUT ORIGINAL OFFERS SECTION STYLING FOR EASY UNDO
   ================================================================
.offers-tabs button.active {
    color: #ff6600;
    border-bottom-color: #ff6600;
}

.offers-tabs button:hover:not(.active) {
    color: #008cff;
}

.slider-wrapper {
    position: relative;
    padding: 0 4px;
}

.offer-card {
    display: flex;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    min-height: 128px;
    background: #fff;
}

.offer-card__img {
    min-width: 100px;
    max-width: 100px;
    overflow: hidden;
}

.offer-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card__body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.offer-card__badge {
    font-size: 0.63rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.offer-card__title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 4px;
}

.offer-card__desc {
    font-size: 0.72rem;
    color: #666;
    line-height: 1.4;
}

.offer-card__cta {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #008cff;
    text-decoration: none;
}

.swiper-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.swiper-nav-prev { left: -18px; }
.swiper-nav-next { right: -18px; }

.swiper-nav-btn:hover {
    background: #f0f0f0;
}
*/

/* ================================================================
   UPGRADED PREMIUM OFFERS SECTION STYLING (Outfit & Poppins fonts)
   ================================================================ */
.offers-tabs button {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.offers-tabs button.active {
  color: var(--mmc-blue) !important;
  border-bottom-color: var(--mmc-blue) !important;
}

.offers-tabs button:hover:not(.active) {
  color: var(--mmc-blue);
  opacity: 0.85;
}

.slider-wrapper {
  position: relative;
  padding: 12px 4px;
}

.offer-card {
  display: flex;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 136px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #FFCC00;
}

.offer-card__img {
  min-width: 110px;
  max-width: 110px;
  overflow: hidden;
  position: relative;
}

.offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-card:hover .offer-card__img img {
  transform: scale(1.06);
}

.offer-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.offer-card__badge {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.offer-card__title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 6px;
}

.offer-card__desc {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: #475569;
  line-height: 1.45;
}

.offer-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--mmc-blue);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.offer-card__cta:hover {
  color: var(--mmc-blue-dark);
  text-decoration: underline;
}

.offers-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  font-size: 1.4rem;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.25s ease;
  padding-bottom: 2px;
  outline: none !important;
}

.offers-nav-btn:hover {
  background: #FFCC00;
  color: #1A1A24;
  border-color: #FFCC00;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.35);
}

.offers-nav-btn:active {
  transform: scale(0.92);
}

.offers-nav-buttons .offers-nav-btn + .offers-nav-btn {
  margin-left: 8px;
}


/* Placeholder tab message */
.tab-placeholder {
  text-align: center;
  padding: 32px 0;
  color: #999;
  font-size: 0.9rem;
}

/* ================================================================
   COMMENTED OUT ORIGINAL mmc Luxe Section FOR EASY UNDO
   ================================================================
/* ─── mmc Luxe Section ─── */
.luxe-section {
  background: linear-gradient(135deg, #fdf6ec 0%, #fcecd5 100%);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.luxe-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #aaa;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.luxe-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c8873a;
  line-height: 1.25;
  margin: 0;
}

.luxe-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 190px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.luxe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.luxe-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  padding: 10px 12px;
}

.luxe-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px 0;
  line-height: 1.3;
}

.luxe-card__desc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

*/

/* ================================================================
   UPGRADED PREMIUM LUXE CAB SELECTIONS SECTION (Outfit & Poppins)
   ================================================================ */
.luxe-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(26, 26, 36, 0.05);
  border: 1px solid #e2e8f0;
}

.luxe-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #FFCC00;
  /* Solid Gold accent */
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.luxe-heading {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: #1A1A24;
  /* Charcoal text */
  line-height: 1.2;
  margin: 0;
}

.luxe-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 230px;
  /* Taller card design */
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxe-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(245, 158, 11, 0.3);
  /* Gold hover highlight */
}

.luxe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxe-card:hover img {
  transform: scale(1.08);
}

.luxe-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  padding: 20px;
  transition: background 0.3s ease;
}

.luxe-card:hover .luxe-card__overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.5) 60%, transparent 100%);
}

.luxe-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.luxe-card__desc {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

.routes_section {
  background-color: #f8fafc;
  position: relative;
}

.routes_main_box {
  position: relative;
  background-color: transparent;
  padding: 0;
  box-shadow: none;
}

.routes_main_box .route_box {
  position: relative;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.routes_main_box .route_box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: #FFCC00;
}

.routes_main_box .route_box .image {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.routes_main_box .route_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.routes_main_box .route_box:hover .image img {
  transform: scale(1.08);
}

.routes_main_box .route_box .image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.routes_main_box .route_box .title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: #1e293b;
  text-transform: capitalize;
  line-height: 1.2;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.routes_main_box .route_box .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.routes_main_box .route_box .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.4;
  gap: 8px;
}

.routes_main_box .route_box .links a {
  display: inline-block;
  font-size: 13px;
  color: #475569;
  font-weight: 600;
  background-color: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.routes_main_box .route_box .links a:hover {
  background-color: #FFCC00;
  color: #1A1A24;
  border-color: #FFCC00;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 204, 0, 0.2);
}

.links_grid {
  margin-bottom: 20px;
}

.links_grid h4 {
  font-size: 20px;
  font-weight: 700;
}

.links_grid .lists {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.2;
  gap: 0 5px;
}

.links_grid .lists a {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  position: relative;
}

.links_grid .lists a:after {
  content: ',';

}

.links_grid .lists a:last-child:after {
  display: none;
}

.main__boxes {
  padding: 0px;
  margin-bottom: 30px;
  border-bottom: none !important;
  padding-bottom: 0px;
}

.main__boxes.last {
  padding-bottom: 0;
  border-bottom: 0;
}

.main__boxes .main__title {
  font-size: 24px;
  font-weight: 800;
  color: #1A1A24;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.main__boxes .main__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 4px;
  background: #FFCC00;
  border-radius: 2px;
}

.context__box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.context__box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.08);
  border-color: #FFCC00;
}

.main__boxes .title {
  font-weight: 800;
  font-size: 1.1rem;
  color: #1A1A24;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid #FFCC00;
  line-height: 1.35;
}

.main__boxes .content {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Expanded state */
.main__boxes .content.expanded {
  -webkit-line-clamp: unset;
  max-height: 2000px;
  color: #334155;
}

/* Collapsed state */
.main__boxes .content.collapsed {
  max-height: 9.6em;
}

.context__box::before {
  content: 'Read More ➔';
  position: absolute;
  right: 24px;
  bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #FFCC00;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.25s ease;
}

.context__box:hover::before {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .gy-3.gx-lg-5 {
    --bs-gutter-x: 7rem;
  }
}

footer {
  background-color: #000;
  padding: 40px 0;
}

footer .social_icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer .social_icons a i {
  color: #fff;
  font-size: 45px;
}

footer p {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  text-align: right;
  margin-bottom: 0;
}

.field__time .mmc-fi {
  padding-inline: 8px;
}

.field__number .mmc-fi {
  padding-inline: 10px;
}

/* ═══════════════════════════════════════════════════════════
   CAB RESULTS  —  MMT-ACCURATE SHARED CSS
   ═══════════════════════════════════════════════════════════ */

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

body {
  font-family: 'Segoe UI', -apple-system, sans-serif;
  background: #f5f6f8;
  color: #1a1a2e;
}

/* ════════════════════════════════════════════════════════════
   MMT-STYLE MOBILE CAB BOOKING WIDGET — mmt-widget.css
   Scoped under .mmt-app — will NOT affect other page styles
   ════════════════════════════════════════════════════════════ */

/* ── RESET INSIDE WIDGET ────────────────────────────────── */
.mmt-app *,
.mmt-overlay * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── ROOT WIDGET ────────────────────────────────────────── */
.mmt-app {
  width: 100%;
  max-width: 420px;
  background: #fff;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ── TOP BAR ────────────────────────────────────────────── */
.mmt-topbar {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 43px;
  z-index: 10;
  justify-content: center;
}

.mmt-topbar__title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

/* ── TRIP TYPE TABS ─────────────────────────────────────── */
.mmt-tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 0px;
  position: sticky;
  top: 87px;
  z-index: 2;
  max-width: 91%;
  border-radius: 14px;
  margin-inline: auto;
  width: 100%;
  margin-top: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 8px;
}

.mmt-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px 8px;
  background: none;
  border: none;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  gap: 4px;
  border-radius: 13px;
}

.mmt-tab__icon {
  font-size: 18px;
  color: #888;
  line-height: 1;
}

.mmt-tab__txt {
  font-size: 10.5px;
  font-weight: 600;
  color: #888;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.1px;
}

.mmt-tab__badge {
  position: absolute;
  top: 6px;
  right: 10%;
  background: #e63946;
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.mmt-tab--active,
.mmt-tab.mmt-tab--active {
  border-color: #008cff;
  background-color: #eaf5ff;
}

.mmt-tab--active .mmt-tab__icon,
.mmt-tab.mmt-tab--active .mmt-tab__icon {
  color: #008cff;
}

.mmt-tab--active .mmt-tab__txt,
.mmt-tab.mmt-tab--active .mmt-tab__txt {
  color: #008cff;
}

/* ── PANEL ──────────────────────────────────────────────── */
.mmt-panel {
  display: none;
  flex-direction: column;
  padding: 5px 12px 20px;
  gap: 4px;
  flex: 1;
}

.mmt-panel--active {
  display: flex;
}

/* ── INFO BAR ───────────────────────────────────────────── */
.mmt-infobar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: #7a5800;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.mmt-infobar i {
  font-size: 13px;
  color: #f9a825;
  flex-shrink: 0;
}

/* ── SUB-TABS (One Way / Round Trip) ───────────────────── */
.mmt-subtabs {
  display: flex;
  gap: 5px;
  padding: 4px 0;
  margin-bottom: 10px;
  margin-bottom: 6px;
  justify-content: start;
  align-items: center;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 8px 15px;
  border: 1px solid #d6d6d6;
}

.mmt-subtab {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  user-select: none;
}

.mmt-subtab input[type="radio"] {
  display: none;
}

.mmt-subtabs_icon img {
  width: 24px;
  margin-right: 15px;

}

.mmt-subtab span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.18s;
  font-size: 14.5px;
  justify-content: center;
  font-weight: 500;
  letter-spacing: -0.02em;
  background-color: #fff;
}

.mmt-subtab span i {
  font-weight: 400;
}

.mmt-subtab input[type="radio"]:checked+span {
  border-color: #008cff;
  background: #e8f4ff;
  color: #008cff;
}

.mmt-subtab input[type="radio"]:checked+span i {
  font-weight: 900;
}

.mmt-subtab span i {
  font-size: 18px;
}

/* ── LOCATION CARD ──────────────────────────────────────── */
.mmt-loc-card {
  position: relative;
  z-index: 1;
}

.mmt-loc-card::before {
  position: absolute;
  content: '';
  height: 95%;
  z-index: -1;
  width: 1px;
  background: #606060;
  left: 21px;
  top: 50%;
  transform: translateY(-50%);
}

.mmt-loc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 6px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
  background: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 6px;
  border: 1px solid #d6d6d6;
  line-height: 1;
}

.mmt-loc-row:active {
  background: #f7f9ff;
}


.mmt-loc-dot--to {
  transform: rotate(180deg);
}


.mmt-loc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mmt-loc-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  color: #757575;
}

.mmt-loc-val {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mmt-loc-val::placeholder {
  color: #c0c0c0;
  font-weight: 400;
  font-size: 13px;
}

.mmt-loc-select {
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  cursor: pointer;
  padding: 0;
  padding-inline: 10px;
  margin-inline: -10px;
}

.mmt-loc-select option {
  font-weight: 400;
  color: #1a1a1a;
}

/* Divider with swap */
.mmt-loc-divider {
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

.mmt-loc-line {
  flex: 1;
  height: 1px;
  background: #eee;
  display: none;
  margin-left: 24px;
}

.mmt-swap-btn {
  position: absolute;
  right: 12px;
  /* top: 26%; */
  transform: translateY(-19%);
  width: 32px;
  height: 35px;
  border-radius: 4px;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgb(0 0 0 / 14%);
  z-index: 2;
}

.mmt-swap-btn i {
  font-size: 13px;
  color: #555;
  transform: rotate(90deg);
}

/* Add stop row */
.mmt-add-stop {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 0px;
  font-size: 12.5px;
  font-weight: 700;
  color: #008cff;
  background-color: #fff;
  cursor: pointer;
  margin-block: 7px 8px;
}

.mmt-add-stop i {
  font-size: 15px;
}

.mmt-add-stop span {
  background-color: #fff;
  border: 1px solid #008cff;
  border-radius: 5px;
  padding: 6px 13px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 0 5px #008cff1c;
}

/* Stop rows injected dynamically */
.mmt-stop-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
  background: #f7f7f7;
  border-radius: 8px;
  margin-bottom: 6px;
  border: 1px solid #d6d6d6;
  line-height: 1;
  max-width: 88%;
}

.mmt-stop-inp {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
}

.mmt-stop-inp::placeholder {
  color: #bbb;
  font-weight: 400;
}

.mmt-stop-rm {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 0;
  background: #8c8c8c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: -15%;
}

.mmt-stop-rm i {
  font-size: 11px;
  color: #fff;
}

/* ── DATE / TIME ROW ────────────────────────────────────── */
.mmt-dt-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.mmt-dt-block {
  flex: 1;
  background: #f7f7f7;
  border-radius: 7px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background 0.15s;
  border: 1px solid #d6d6d6;
}

.mmt-dt-block:active {
  background: #f7f9ff;
}

.mmt-dt-icon {
  font-size: 18px;
  color: #4c4c4c;
  flex-shrink: 0;
}

.mmt-dt-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mmt-dt-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  color: #757575;
}

.mmt-dt-val {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mmt-dt-val.mmt-dt-placeholder {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
}

/* ── MOBILE FIELD ───────────────────────────────────────── */
.mmt-mob-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid #d6d6d6;
}

.mmt-mob-field>i {
  font-size: 18px;
  color: #4c4c4c;
  flex-shrink: 0;
}

.mmt-mob-inp {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
}

.mmt-mob-inp::placeholder {
  color: #bbb;
  font-weight: 400;
  font-size: 13px;
}

/* ── SEARCH BUTTON ──────────────────────────────────────── */
.mmt-search-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.35);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mmt-search-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 114, 255, 0.25);
}

.mmt-search-btn i {
  font-size: 14px;
}

/* ── SELECT ROW (Airport direction) ─────────────────────── */
.mmt-select-row {
  position: relative;
  background: #f7f7f7;
  border-radius: 5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid #d6d6d6;
}

.mmt-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  border: none;
  outline: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.mmt-sel-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #888;
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   OVERLAYS (Location Picker / Date-Time / Airport)
══════════════════════════════════════════════════════════ */
.mmt-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  align-items: flex-end;
  animation: mmtOverlayIn 0.22s ease;
}

.mmt-overlay--open {
  display: flex;
}

@keyframes mmtOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mmt-overlay__sheet {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px 20px 0 0;
  min-height: 55dvh;
  max-height: 90dvh;
  display: flex;
  flex-direction: column;
  animation: mmtSheetUp 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

@keyframes mmtSheetUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.mmt-overlay__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.mmt-overlay__back {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mmt-overlay__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.mmt-overlay__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.mmt-overlay__search i {
  font-size: 16px;
  color: #008cff;
  flex-shrink: 0;
}

.mmt-overlay__search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #1a1a1a;
  background: transparent;
}

.mmt-overlay__search input::placeholder {
  color: #bbb;
  font-size: 14px;
}

.mmt-overlay__suggestions {
  overflow-y: auto;
  padding: 8px 0;
}

.mmt-sugg-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.12s;
}

.mmt-sugg-item:active {
  background: #f5f5f5;
}

.mmt-sugg-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mmt-sugg-item__icon i {
  font-size: 14px;
  color: #008cff;
}

.mmt-sugg-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mmt-sugg-item__main {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.mmt-sugg-item__sub {
  font-size: 11.5px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* recent section */
.mmt-overlay__recent {
  padding: 8px 0;
  border-top: 1px solid #f0f0f0;
}

.mmt-recent-head {
  font-size: 10.5px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.8px;
  padding: 8px 16px 6px;
}

/* ── DATE-TIME PICKER ───────────────────────────────────── */
.mmt-dt-sheet {
  min-height: 50dvh;
}

.mmt-dt-picker {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 8px;
  overflow: hidden;
}

/* Scrollable date strip */
.mmt-dt-scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  width: 100%;
  padding: 0 16px 12px;
  scrollbar-width: none;
}

.mmt-dt-scroll::-webkit-scrollbar {
  display: none;
}

.mmt-dt-date-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 58px;
  gap: 3px;
}

.mmt-dt-date-item__day {
  font-size: 11px;
  font-weight: 600;
  color: #888;
}

.mmt-dt-date-item__num {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.mmt-dt-date-item__mon {
  font-size: 10.5px;
  color: #888;
  font-weight: 600;
}

.mmt-dt-date-item--today .mmt-dt-date-item__day {
  color: #008cff;
}

.mmt-dt-date-item--selected {
  background: #008cff;
  box-shadow: 0 4px 12px rgba(0, 140, 255, 0.3);
}

.mmt-dt-date-item--selected .mmt-dt-date-item__day,
.mmt-dt-date-item--selected .mmt-dt-date-item__num,
.mmt-dt-date-item--selected .mmt-dt-date-item__mon {
  color: #fff;
}

/* Time scroll drums */
.mmt-dt-time-row {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0 24px;
  position: relative;
}

.mmt-dt-time-row::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  background: rgba(0, 140, 255, 0.07);
  border-radius: 10px;
  border: 1px solid rgba(0, 140, 255, 0.15);
  pointer-events: none;
}

.mmt-time-scroll {
  flex: 1;
  height: 150px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  position: relative;
}

.mmt-time-scroll--ampm {
  flex: 0.7;
}

.mmt-time-scroll::-webkit-scrollbar {
  display: none;
}

.mmt-time-item {
  scroll-snap-align: center;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #ccc;
  cursor: pointer;
  transition: color 0.15s, font-size 0.15s;
  padding: 0 4px;
}

.mmt-time-item--selected {
  color: #1a1a1a;
  font-size: 22px;
}

.mmt-time-colon {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Preview bar */
.mmt-dt-preview {
  padding: 12px 16px 8px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  gap: 16px;
}

.mmt-dt-prev-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mmt-dt-prev-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #008cff;
  letter-spacing: 0.6px;
}

.mmt-dt-prev-val {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}

.mmt-dt-done {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
  padding: 15px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
}

/* ── LOADING SPINNER in suggestions ─────────────────────── */
.mmt-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 10px;
  font-size: 13px;
  color: #888;
}

.mmt-loading i {
  color: #008cff;
}

/* ── RESPONSIVE: if used on desktop wrap nicely ─────────── */
@media (min-width: 500px) {
  .mmt-app {
    min-height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }
}

.mmt-dt-block--selected .mmt-dt-val {
  font-size: 12px;
  line-height: 1.1;
}

.mmt-dt-block--selected .mmt-dt-val strong {
  font-size: 15px;
  font-weight: 700;
}

.mmt-dt-block--selected .mmt-dt-val span {
  display: block;
  font-weight: 400;
  font-size: 12px;

}

/* ════════════════════════════════════════════════════════════
   MOBILE SECTIONS — mob-sections.css
   Scoped under .msec-wrap & .msec-faq-overlay
   Zero conflict with existing styles
   ════════════════════════════════════════════════════════════ */

.msec-wrap *,
.msec-faq-overlay * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* ── WRAP ───────────────────────────────────────────────── */
.msec-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── SECTION BASE ───────────────────────────────────────── */
.msec {
  background: #fff;
  margin-bottom: 8px;
  padding: 14px 0 6px;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.msec__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 10px;
}

.msec__title {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.2px;
}

.msec__viewall {
  font-size: 11.5px;
  font-weight: 700;
  color: #008cff;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════════════════════
   DRAG SLIDER BASE
════════════════════════════════════════════════════════════ */
.msec-slider {
  overflow: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.msec-slider:active {
  cursor: grabbing;
}

.msec-slider__track {
  display: flex;
  gap: 10px;
  padding: 0 14px 10px;
  user-select: none;
  will-change: transform;
  transition: none;
}

/* ════════════════════════════════════════════════════════════
   SECTION 1 — OFFERS
════════════════════════════════════════════════════════════ */
.msec--offers .msec-slider__track {
  gap: 12px;
}

.msec-offer-card {
  flex-shrink: 0;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.msec-offer-card__img {
  position: relative;
  height: 110px;
  overflow: hidden;
}

.msec-offer-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.msec-offer-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.4px;
}

.msec-offer-card__body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.msec-offer-card__tag {
  font-size: 9px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.msec-offer-card__name {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
}

.msec-offer-card__desc {
  font-size: 11px;
  color: #777;
  line-height: 1.4;
}

.msec-offer-card__cta {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 800;
  color: #008cff;
  text-decoration: none;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 — WHAT'S NEW
════════════════════════════════════════════════════════════ */
.msec--whatsnew .msec-slider__track {
  gap: 10px;
}

.msec-wn-card {
  flex-shrink: 0;
  width: 175px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msec-wn-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  overflow: hidden;
}

.msec-wn-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.msec-wn-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.msec-wn-card__title {
  font-size: 12.5px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.35;
}

.msec-wn-card__desc {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 — BANNER SLIDER (auto-play)
════════════════════════════════════════════════════════════ */
.msec--banner {
  padding: 8px 0;
  background: #f5f5f5;
}

.msec-banner-slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 14px;
}

.msec-banner-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.msec-banner-slide {
  flex-shrink: 0;
  width: 100%;
}

.msec-banner-slide img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  pointer-events: none;
}

.msec-banner-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-top: 8px;
}

.msec-banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.25s;
  cursor: pointer;
}

.msec-banner-dot--active {
  background: #008cff;
  width: 18px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 — FAQ LIST
════════════════════════════════════════════════════════════ */
.msec--faq {
  padding-bottom: 4px;
  margin-bottom: 0;
  display: none;
}

.msec-faq-list {
  display: flex;
  flex-direction: column;
}

.msec-faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background 0.15s;
  gap: 10px;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #00000030;
  line-height: 1;
}

.msec-faq-item:active {
  background: #f8f8f8;
}

.msec-faq-item__q {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
  flex: 1;
}

.msec-faq-item__arr {
  font-size: 12px;
  color: #bbb;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   FAQ SIDEBAR OVERLAY
════════════════════════════════════════════════════════════ */
.msec-faq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  animation: msecOverlayIn 0.22s ease;
}

.msec-faq-overlay--open {
  display: block;
}

@keyframes msecOverlayIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.msec-faq-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: msecSlideIn 0.3s cubic-bezier(0.34, 1.1, 0.64, 1);
  overflow: hidden;
}

@keyframes msecSlideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.msec-faq-sidebar__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}

.msec-faq-sidebar__back {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.msec-faq-sidebar__title {
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.2px;
}

.msec-faq-sidebar__content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px;
}

/* Sidebar FAQ accordion items */
.msec-sb-faq {
  border-bottom: 1px solid #f5f5f5;
}

.msec-sb-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 16px;
  cursor: pointer;
  transition: background 0.15s;
}

.msec-sb-faq__q:active {
  background: #f8f8f8;
}

.msec-sb-faq__q span {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  flex: 1;
}

.msec-sb-faq__icon {
  font-size: 12px;
  color: #aaa;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.msec-sb-faq--open .msec-sb-faq__icon {
  transform: rotate(180deg);
  color: #008cff;
}

.msec-sb-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 16px;
}

.msec-sb-faq--open .msec-sb-faq__a {
  max-height: 400px;
  padding: 0 16px 16px;
}

.msec-sb-faq__a p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  background: #f8fbff;
  border-left: 3px solid #008cff;
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
}

/* ── Auto-open first FAQ in sidebar highlight ─────────── */
.msec-sb-faq--active .msec-sb-faq__q span {
  color: #008cff;
}

.msec-faq-readmore {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 16px;
  cursor: pointer;
  color: #008cff;
  font-size: 13.5px;
  font-weight: 700;
  border-top: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.msec-faq-readmore:active {
  background: #f0f8ff;
}

.msec-faq-readmore .fa-list-ul {
  font-size: 15px;
}

.msec-faq-readmore .fa-chevron-right {
  margin-left: auto;
  font-size: 12px;
  color: #bbb;
}

/* ================================================================
   TAXI ROUTE — cab results page styles
   All classes scoped under .tr-* to avoid conflicts
   ================================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --tr-blue: #1A1A24;
  --tr-blue-dk: #101018;
  --tr-orange: #FFCC00;
  --tr-green: #27ae60;
  --tr-red: #e74c3c;
  --tr-gray-50: #f8f9fa;
  --tr-gray-100: #f1f3f4;
  --tr-gray-200: #e8eaed;
  --tr-gray-400: #9aa0a6;
  --tr-gray-600: #5f6368;
  --tr-gray-800: #3c4043;
  --tr-gray-900: #202124;
  --tr-white: #ffffff;
  --tr-shadow-sm: 0 1px 3px rgba(0, 0, 0, .12), 0 1px 2px rgba(0, 0, 0, .08);
  --tr-shadow: 0 2px 8px rgba(0, 0, 0, .14), 0 1px 4px rgba(0, 0, 0, .08);
  --tr-shadow-lg: 0 4px 16px rgba(0, 0, 0, .14);
  --tr-radius: 8px;
  --tr-radius-lg: 12px;
}

/* ── RESET / BASE ──────────────────────────────────────────────── */
.tr-page * {
  box-sizing: border-box;
}

.tr-page {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--tr-gray-100);
  min-height: 100vh;
  color: var(--tr-gray-900);
}

/* ================================================================
   MAIN LAYOUT
   ================================================================ */
.tr-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ── SIDEBAR FILTERS ── */
.tr-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e3e9;
  overflow: hidden;
  position: relative;
  flex-direction: column;
  margin-top: 20px;
}

.tr-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f2f5;
}

.tr-sidebar__head h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1e26;
  margin: 0;
}

.tr-clear-all {
  font-size: 13px;
  font-weight: 500;
  color: #2490ff;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
}

.tr-filter-sec {
  padding: 18px 20px;
  border-bottom: 1px solid #f0f2f5;
}

.tr-filter-sec:last-child {
  border-bottom: none;
}

.tr-filter-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tr-filter-sec-head h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1e26;
  margin: 0;
}

.tr-clear-sec {
  font-size: 12px;
  font-weight: 500;
  color: #2490ff;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: none;
}

.tr-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}

.tr-filter-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tr-gray-800);
  cursor: pointer;
}

.tr-filter-row input[type="checkbox"] {
  accent-color: #FFCC00;
  width: 15px;
  height: 15px;
}

.tr-filter-count {
  font-size: 12px;
  color: var(--tr-gray-400);
}

/* ── RESULTS AREA ── */
.tr-results {
  flex: 1;
  min-width: 0;
}

.tr-results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.tr-results-top p {
  font-size: 14px;
  color: var(--tr-gray-600);
  margin: 0;
}

.tr-dist-pill {
  background: var(--tr-gray-100);
  border: 1px solid var(--tr-gray-200);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tr-gray-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── CAB CARD ── */
.tr-card {
  background: var(--tr-white);
  border-radius: var(--tr-radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
  border: .5px solid #d8d8d8;
}

.tr-card-body {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 16px;
}

/* Image */
.tr-cab-img-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  text-align: center;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.tr-cab-img-wrap img {
  width: 100px;
  max-width: 100px;
  height: 100px;
  object-fit: contain;
}

.tr-fuel {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 6px;
  text-transform: capitalize;
  letter-spacing: .3px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.tr-fuel--cng {
  background: #e8f5e9;
  color: #2e7d32;
}

.tr-fuel--ev {
  background: #e3f2fd;
  color: #1565c0;
}

.tr-fuel--diesel {
  background: #ffffff;
  color: #e65100;
}

.tr-fuel--petrol {
  background: #009997;
  color: #fff;
}

/* Info */
.tr-cab-info {
  flex: 1;
  min-width: 0;
}

.tr-cab-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--tr-gray-900);
}

.tr-cab-similar {
  font-size: 12px;
  color: var(--tr-gray-400);
  margin-bottom: 6px;
  line-height: 1;
}

.tr-cab-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.tr-cab-spec {
  font-size: 12px;
  color: var(--tr-gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tr-cab-km {
  font-size: 12px;
  color: var(--tr-gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tr-cab-km i {
  color: var(--tr-blue);
}

/* Rating badge */
.tr-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #FFCC00;
  color: #1A1A24;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.tr-rating i {
  font-size: 9px;
}

/* Price */
.tr-cab-price {
  text-align: right;
  flex-shrink: 0;
  min-width: 140px;
}

.tr-price-off {
  font-size: 12px;
  color: var(--tr-green);
  font-weight: 600;
  margin-bottom: 2px;
  font-style: italic;
}

.tr-price-was {
  text-decoration: line-through;
  color: var(--tr-gray-400);
  font-size: 15px;
  font-style: normal;
  text-decoration-color: #ff0000;
}

.tr-price-main {
  font-size: 19px;
  font-weight: 700;
  color: var(--tr-gray-900);
  line-height: 1;
  margin-bottom: 3px;
  font-family: 'Poppins';
}

.tr-price-taxes {
  font-size: 11px;
  color: var(--tr-gray-400);
  margin-bottom: 10px;
}

.tr-select-btn {
  padding: 16px;
  border-radius: 8px;
  border: 0;
  max-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-weight: 800;
  padding: 12px 16px;
  font-size: .75rem;
  background: var(--tr-orange);
  color: #1A1A24;
  width: 100%;
  box-shadow: 0 4px 10px rgba(26, 26, 36, 0.12);
  transition: all 0.2s ease;
}

.tr-select-btn:hover {
  background: #FFCC00;
  color: var(--tr-white);
  box-shadow: 0 6px 16px rgba(26, 26, 36, 0.15);
}

/* Roof carrier row */
.tr-info-row {
  gap: 4px;
  padding: 8px 8px 8px 12px;
  background-color: #eaf5ff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1;
}

.tr-info-row i {
  color: var(--tr-orange);
}

/* Empty state */
.tr-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--tr-gray-400);
}

.tr-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.tr-empty p {
  font-size: 16px;
}

/* ================================================================
   MOBILE SEARCH BAR (fixed top)
   ================================================================ */
.tr-mob-header {
  color: #000;
  position: sticky;
  background-color: #fff;
  top: 44px;
  z-index: 99;
  padding: 5px 10px;
}

.tr-mob-header__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.tr-mob-back {
  background: none;
  border: none;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.tr-mob-route {
  flex: 1;
  min-width: 0;
}

.tr-mob-route__cities {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tr-mob-route__meta {
  font-size: 11px;
  opacity: .8;
  margin-top: 1px;
}

.tr-mob-edit {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

/* Expandable edit panel */
.tr-mob-editpanel {
  background: var(--tr-white);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.tr-mob-editpanel.is-open {
  max-height: 600px;
  padding: 16px;
  border-bottom: 1px solid var(--tr-gray-200);
}

/* Mobile trip type tabs in edit panel */
.tr-mob-triptabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.tr-mob-triptabs::-webkit-scrollbar {
  display: none;
}

.tr-mob-triptab {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border: 1.5px solid var(--tr-gray-200);
  border-radius: 20px;
  background: var(--tr-white);
  color: var(--tr-gray-600);
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}

.tr-mob-triptab.is-active {
  background: var(--tr-blue);
  border-color: var(--tr-blue);
  color: var(--tr-white);
}

/* Mobile edit form fields */
.tr-mob-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.tr-mob-field label {
  font-size: 10px;
  font-weight: 700;
  color: var(--tr-gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.tr-mob-field input,
.tr-mob-field select {
  border: 1.5px solid var(--tr-gray-200);
  border-radius: var(--tr-radius);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tr-gray-900);
  background: var(--tr-white);
  outline: none;
  width: 100%;
}

.tr-mob-field input:focus,
.tr-mob-field select:focus {
  border-color: var(--tr-blue);
}

.tr-mob-row {
  display: flex;
  gap: 10px;
}

.tr-mob-row .tr-mob-field {
  flex: 1;
}

.tr-mob-search-btn {
  width: 100%;
  background: var(--tr-blue);
  color: var(--tr-white);
  border: none;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--tr-radius);
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: .5px;
}

/* Mobile trust bar */
.tr-mob-trust {
  background: #0d3880;
  color: var(--tr-white);
  padding: 8px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.tr-mob-trust::-webkit-scrollbar {
  display: none;
}

.tr-mob-trust-inner {
  display: inline-flex;
  gap: 20px;
}

.tr-mob-trust-item {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tr-mob-trust-item i {
  font-size: 13px;
}

/* Mobile rate bar */
.tr-mob-ratebar {
  background: var(--tr-gray-50);
  border-bottom: 1px solid var(--tr-gray-200);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--tr-gray-600);
}

/* Mobile results */
.tr-mob-results {
  padding: 12px 12px 100px;
}

.tr-mob-results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tr-mob-results-top p {
  font-size: 13px;
  color: var(--tr-gray-600);
  margin: 0;
}

/* Mobile cab card */
.tr-mob-card {
  background: var(--tr-white);
  border-radius: var(--tr-radius-lg);
  box-shadow: var(--tr-shadow-sm);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--tr-gray-200);
}

.tr-mob-card-body {
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.tr-mob-img-wrap {
  width: 90px;
  flex-shrink: 0;
  text-align: center;
}

.tr-mob-img-wrap img {
  width: 90px;
  height: 56px;
  object-fit: contain;
}

.tr-mob-info {
  flex: 1;
  min-width: 0;
}

.tr-mob-name {
  font-size: 14px;
  font-weight: 700;
}

.tr-mob-similar {
  font-size: 11px;
  color: var(--tr-gray-400);
  margin-bottom: 4px;
}

.tr-mob-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.tr-mob-spec {
  font-size: 11px;
  color: var(--tr-gray-600);
  display: flex;
  align-items: center;
  gap: 3px;
}

.tr-mob-km {
  font-size: 11px;
  color: var(--tr-gray-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

.tr-mob-km i {
  color: var(--tr-blue);
}

.tr-mob-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-top: 1px solid var(--tr-gray-100);
  background: var(--tr-gray-50);
}

.tr-mob-price-left {}

.tr-mob-price-off {
  font-size: 11px;
  color: var(--tr-green);
  font-weight: 600;
}

.tr-mob-price-was {
  font-size: 11px;
  text-decoration: line-through;
  color: var(--tr-gray-400);
}

.tr-mob-price-main {
  font-size: 20px;
  font-weight: 800;
  color: var(--tr-gray-900);
  line-height: 1;
}

.tr-mob-price-tax {
  font-size: 10px;
  color: var(--tr-gray-400);
}

.tr-mob-select-btn {
  background: var(--tr-blue);
  color: var(--tr-white);
  border: none;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--tr-radius);
  cursor: pointer;
  white-space: nowrap;
}

/* Mobile roof carrier */
.tr-mob-info-row {
  border-top: 1px solid var(--tr-gray-100);
  padding: 6px 12px;
  font-size: 11px;
  color: var(--tr-gray-500);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tr-mob-info-row i {
  color: var(--tr-orange);
}

/* ── MOBILE BOTTOM FILTER BAR ── */
.tr-mob-filterbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--tr-white);
  border-top: 1px solid var(--tr-gray-200);
  display: flex;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, .1);
}

.tr-mob-filterbtn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--tr-gray-700);
  border: none;
  background: none;
  cursor: pointer;
  border-right: 1px solid var(--tr-gray-200);
}

.tr-mob-filterbtn:last-child {
  border-right: none;
}

.tr-mob-filterbtn i {
  font-size: 14px;
}

.tr-mob-filterbtn.has-active {
  color: var(--tr-blue);
}

/* ── MOBILE FILTER OVERLAY ── */
.tr-mob-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
}

.tr-mob-filter-overlay.is-open {
  display: block;
}

.tr-mob-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.tr-mob-filter-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--tr-white);
  border-radius: 16px 16px 0 0;
  max-height: 80vh;
  overflow-y: auto;
  padding: 0 0 24px;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.tr-mob-filter-overlay.is-open .tr-mob-filter-sheet {
  transform: translateY(0);
}

.tr-mob-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--tr-gray-200);
  position: sticky;
  top: 0;
  background: var(--tr-white);
  z-index: 1;
}

.tr-mob-filter-head h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.tr-mob-filter-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--tr-gray-600);
}

.tr-mob-filter-sec {
  padding: 14px 16px;
  border-bottom: 1px solid var(--tr-gray-100);
}

.tr-mob-filter-sec h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
}

.tr-mob-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tr-mob-filter-chip {
  padding: 7px 14px;
  border: 1.5px solid var(--tr-gray-200);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tr-gray-700);
  cursor: pointer;
  transition: all .15s;
  background: var(--tr-white);
}

.tr-mob-filter-chip.is-active {
  background: var(--tr-blue);
  border-color: var(--tr-blue);
  color: var(--tr-white);
}

.tr-mob-filter-apply {
  margin: 16px 16px 0;
  width: calc(100% - 32px);
  background: var(--tr-blue);
  color: var(--tr-white);
  border: none;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--tr-radius);
  cursor: pointer;
}

/* ── MOBILE SORT OVERLAY ── */
.tr-mob-sort-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
}

.tr-mob-sort-overlay.is-open {
  display: block;
}

.tr-mob-sort-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--tr-white);
  border-radius: 16px 16px 0 0;
  padding: 0 0 24px;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.tr-mob-sort-overlay.is-open .tr-mob-sort-sheet {
  transform: translateY(0);
}

.tr-mob-sort-head {
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--tr-gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tr-mob-sort-head h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.tr-mob-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--tr-gray-100);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.tr-mob-sort-option.is-active {
  color: var(--tr-blue);
  font-weight: 700;
}

.tr-mob-sort-option.is-active::after {
  content: '✓';
  font-size: 16px;
}

/* ── HIDDEN WHEN MOBILE / DESKTOP ── */
.tr-desktop-only {
  display: flex;
}

.tr-mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .tr-desktop-only {
    display: none !important;
  }

  .tr-mobile-only {
    display: block !important;
  }
}

@media (min-width: 768px) {
  .tr-mobile-only {
    display: none !important;
  }
}

/* ══════════════════════════════════════════════════════════
   MMT-STYLE DESKTOP SEARCH BAR  —  tr-searchbar.css
   Scoped under .tr-searchbar — zero conflict with existing styles
══════════════════════════════════════════════════════════ */

/* ── OUTER WRAPPER ─────────────────────────────────────── */
.tr-searchbar {
  background: #1A1A24;
  border-bottom: 1px solid #e0e3e9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 99;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ffffff14;
}

.tr-searchbar__inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  display: flex;
  gap: 5px;
  padding: 8px 0;
}

/* ── FORM ROW ──────────────────────────────────────────── */
.tr-searchform {
  display: flex;
  gap: 5px;
  padding: 15px 0;
}

.tr-sb-panel form {
  display: flex;
  width: 100%;
  gap: 5px;
}

#trTimePicker {
  position: absolute !important;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e3e9;
  z-index: 10000 !important;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  display: none;
  flex-direction: column;
  width: 280px;
  padding: 10px 0 0;
}

#trTimePicker.open {
  display: flex !important;
}

.tr-tp-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px 14px;
  border-bottom: 1px solid #edf0f5;
}

.tr-tp-preview-box {
  background: #f1f3f6;
  padding: 6px 16px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

#trTpPreview {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
}

.tr-tp-ampm-toggle {
  display: flex;
  background: #f1f3f6;
  border-radius: 20px;
  padding: 3px;
  border: 1px solid #e2e8f0;
}

.tr-tp-ampm-btn {
  background: transparent;
  border: none;
  outline: none;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  min-width: 50px;
  text-align: center;
}

.tr-tp-ampm-btn.active {
  background: #FFCC00;
  color: #fff;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.tr-tp-body {
  display: flex;
  height: 180px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: 5px;
}

.tr-tp-body::before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 70px;
  height: 40px;
  border-top: 1.5px solid #edf0f5;
  border-bottom: 1.5px solid #edf0f5;
  pointer-events: none;
  background: rgba(59, 130, 246, 0.02);
}

.tr-tp-divider {
  width: 1px;
  background: #edf0f5;
  height: 100%;
}

.tr-tp-col {
  flex: 1;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  text-align: center;
  padding: 5px 0;
}

.tr-tp-col::-webkit-scrollbar {
  display: none;
}

.tr-tp-item {
  height: 40px;
  font-size: 15px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0;
}

.tr-tp-item:hover {
  color: #1e293b;
}

.tr-tp-item--sel {
  background: #FFCC00 !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-weight: 700;
  width: 80%;
  margin: 2px auto;
  height: 34px;
  line-height: 34px;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

.tr-tp-footer {
  padding: 10px 16px 12px;
  border-top: 1px solid #edf0f5;
  background: #ffffff;
}

.tr-tp-apply {
  background: #FFCC00;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 0;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(239, 102, 20, 0.2);
}

.tr-tp-apply:hover {
  background: #FFCC00;
  box-shadow: 0 6px 16px rgba(26, 26, 36, 0.15);
}

/* ── CALENDAR POPUPS SAFETY ── */
.flatpickr-calendar,
.ui-datepicker,
.datepicker,
#ui-datepicker-div {
  position: absolute !important;
  z-index: 99999 !important;
}

.tr-sf-sub {

  font-size: .68rem;
  color: #6e7e8c;
  margin-top: 2px;
  font-weight: 500;
}

/* ── INDIVIDUAL SEGMENT ────────────────────────────────── */
.tr-sf-seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 5px;
  position: relative;
  flex: 1 1 0;
  cursor: pointer;
  transition: background .13s;
  background: hsla(0, 0%, 100%, .1);
  line-height: 1;
  border-radius: 8px;
  width: 100%;
}



/* Wider segments for location */
.tr-sf-seg--loc {
  flex: 1.5 1 0;
}

/* Trip type segment — slightly wider */
.tr-sf-seg--triptype {
  flex: 1.6 1 0;
  cursor: default;
  max-width: 200px;
  min-width: 200px;
}

.tr-sf-seg--hidden {
  display: none !important;
}

/* ── LABEL ─────────────────────────────────────────────── */
.tr-sf-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #008cff;
  white-space: nowrap;
  margin-bottom: 6px;
  line-height: 1;
}

/* ── TEXT INPUTS ───────────────────────────────────────── */
.tr-sf-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  padding: 0;
  line-height: 1.2;
  caret-color: #FFCC00;
}

.tr-sf-input::placeholder {
  color: #c5ccd6;
  font-weight: 500;
  font-size: .95rem;
}

/* ── DATE INPUTS ───────────────────────────────────────── */
.tr-sf-date {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  padding: 0;
  cursor: pointer;
}

.tr-sf-date::-webkit-calendar-picker-indicator {
  opacity: .4;
  cursor: pointer;
}

.tr-sf-daylabel {
  font-size: .68rem;
  color: #6e7e8c;
  margin-top: 2px;
  font-weight: 500;
}

/* ── SELECT INPUTS ─────────────────────────────────────── */
.tr-sf-select {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  color: #fff !important;
  width: 100%;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='5'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%236e7e8c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-inline: 10px;
  margin-inline: -10px;
  background-color: transparent !important;

}

.tr-sf-select option {
  font-size: 14px;
  color: #000;
}

/* ── TRIP TYPE DROPDOWN ────────────────────────────────── */
.tr-triptype-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.tr-triptype-display span {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tr-tt-arrow {
  font-size: 10px;
  color: #6e7e8c;
  flex-shrink: 0;
  transition: transform .2s;
}

.tr-tt-arrow.open {
  transform: rotate(180deg);
}

/* Dropdown panel */
.tr-triptype-drop {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .16);
  border: 1px solid #e0e3e9;
  border-top: 3px solid #FFCC00;
  z-index: 500;
  overflow: hidden;
  animation: trDropIn .15s ease;
}

.tr-triptype-drop.open {
  display: block;
}

@keyframes trDropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tr-tt-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 13px 18px;
  cursor: pointer;
  border-bottom: 1px solid #f0f2f5;
  transition: background .13s;
}

.tr-tt-option:last-child {
  border-bottom: none;
}

.tr-tt-option:hover,
.tr-tt-option--active {
  background: #ffffff;
}

.tr-tt-option strong {
  font-size: .88rem;
  font-weight: 700;
  color: #1a1a2e;
}

.tr-tt-option--active strong {
  color: #FFCC00;
}

.tr-tt-option span {
  font-size: .74rem;
  color: #6e7e8c;
  font-weight: 400;
}

/* ── ADD STOPS BUTTON (inline in FROM field) ───────────── */
.tr-addstops-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  /* margin-top: 4px; */
  background: hsla(0, 0%, 100%, .1);
  border: 0;
  color: #FFCC00;
  font-size: .7rem;
  font-weight: 700;
  border-radius: 7px;
  padding: 3px 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .04em;
  transition: all .15s;
  position: relative;
}

.tr-addstops-btn:hover {
  background: #FFCC00;
  color: #fff;
}

.tr-addstops-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e8173f;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── SEARCH BUTTON ─────────────────────────────────────── */
.tr-sf-submit {
  flex-shrink: 0;
  background: #FFCC00;
  color: #1A1A24;
  border: none;
  padding: 0 41px;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(26, 26, 36, 0.08);
}

.tr-sf-submit:hover {
  background: #FFCC00;
  box-shadow: 0 6px 16px rgba(26, 26, 36, 0.15);
}

/* ══════════════════════════════════════════════════════════
   STOPS MODAL
══════════════════════════════════════════════════════════ */

.tr-stops-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 800;
}

.tr-stops-modal-backdrop.open {
  display: block;
}

.tr-stops-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
  z-index: 900;
  overflow: hidden;
  animation: trModalIn .22s cubic-bezier(.34, 1.2, .64, 1);
}

.tr-stops-modal.open {
  display: block;
}

@keyframes trModalIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(.97);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.tr-stops-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid #e0e3e9;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  font-family: 'Outfit', 'Poppins', sans-serif;
}

.tr-stops-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f5f6f8;
  color: #6e7e8c;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .13s;
}

.tr-stops-modal__close:hover {
  background: #e0e3e9;
}

.tr-stops-modal__body {
  padding: 16px 22px 8px;
  min-height: 60px;
  max-height: 260px;
  overflow-y: auto;
}

/* Individual stop row inside modal */
.tr-stop-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f6f8;
  border: 1px solid #e0e3e9;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
}

.tr-stop-row i.tr-stop-pin {
  color: #f59e0b;
  font-size: 14px;
  flex-shrink: 0;
}

.tr-stop-inp {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: #1a1a2e;
  font-weight: 500;
}

.tr-stop-inp::placeholder {
  color: #aab4be;
  font-weight: 400;
}

.tr-stop-rm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #e0e3e9;
  color: #6e7e8c;
  cursor: pointer;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .13s;
}

.tr-stop-rm:hover {
  background: #e8173f;
  color: #fff;
}

.tr-stops-modal__add {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 22px 14px;
  background: none;
  border: 1.5px solid #FFCC00;
  color: #FFCC00;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 18px;
  cursor: pointer;
  transition: all .15s;
}

.tr-stops-modal__add:hover {
  background: #FFCC00;
  color: #fff;
}

.tr-stops-modal__foot {
  padding: 12px 22px 18px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #e0e3e9;
}

.tr-stops-modal__done {
  background: #FFCC00;
  color: #1A1A24;
  border: none;
  border-radius: 100px;
  padding: 11px 60px;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .18s;
}
.tr-stops-modal__done:hover {
  background: #e6b800;
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .tr-sf-seg {
    padding: 8px 10px;
  }

  .tr-sf-input {
    font-size: .9rem;
  }

  .tr-sf-date {
    font-size: .85rem;
  }
}

@media (max-width: 900px) {
  .tr-searchbar.tr-desktop-only {
    display: none !important;
  }
}

.tr-trustbar {
  background: #1A1A24;
  border-radius: 16px;
  padding: 12px;
  cursor: pointer;
  position: relative;
}

.tr-trustbar__inner {

  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tr-trust-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
  min-width: 230px;
  font-size: 19px;
  font-weight: 600;
}

.tr-ratebar__inner {
  margin-block: 8px;
  margin: 12px 0 12px;
  color: #4a4a4a;
  font-size: .875rem;
  font-weight: 400;
}

.tr-trust-item i {
  font-size: 14px;
  background: #FFCC00;
  color: #1A1A24;
  width: 30px;
  height: 30px;
  border: 1px solid #FFCC00;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-weight: 500;

}

/* ═══════════════════════════════════════════
   Main Files Css
═══════════════════════════════════════════ */
.swiper-wrapper {
  height: auto;
}

.phone_header_login {
  display: none;
}

@media (max-width: 1150px) {
  .phone_header_login {
    display: block;
  }

  .phone_header_login {

    .mmc-acct,
    .mmc-loginbtn {
      display: flex !important;
    }
  }

  .phone_header_login {

    .mmc-acct:hover,
    .mmc-loginbtn:hover {
      color: #555 !important;
    }
  }

  .mmc-util__right .phone_header_login .mmc-loginbtn {
    display: flex;
    padding-inline: 0;
    background: transparent;
    border: 0;
  }

  .mmc-util__inner {
    justify-content: space-between;
  }

  .mmc-hero {
    display: none;
  }

  .mmc-loginbtn {
    color: #000;
  }

  .mmc-loginbtn__av {
    color: #5f6368;
    background: #f1f3f4;
    border: 1px solid #dadce0;
  }

  .mmc-logo {
    margin-right: 90px;
  }

  .mmc-util__inner {
    min-height: auto;
  }

  .mmc-loginbtn {
    padding-inline: auto;
  }

  .mmc-util {
    min-height: 1px;
    background-color: #fff;
  }

  .mmc-header {

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  footer {
    padding: 20px 0;
  }

  footer .social_icons a i {
    font-size: 25px;
  }

  footer .social_icons {
    justify-content: center;
    margin-bottom: 15px;
  }

  footer p {
    text-align: center;
  }

  .tr-trust-item {
    min-width: 0;
  }

  .tr-trust-item {
    font-size: 13px;
  }

  .tr-trustbar {}

  .tr-trust-item i {
    margin-bottom: 4px;
  }

  .tr-ratebar__inner {}

  .tr-layout {
    padding: 15px;
  }

  .tr-card-body {
    padding: 10px;
  }

  .tr-select-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    max-height: 100%;
    background: transparent;
  }

  .tr-select-btn span {
    display: none;
  }

  .tr-card-body {
    position: relative;
  }

  .tr-cab-img-wrap {
    width: 70px;
    height: 80px;
    border-radius: 8px;
  }

  .tr-cab-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .tr-card-body {
    padding: 10px;
    gap: 6px;
  }

  .tr-cab-km {
    display: none;
  }

  .tr-cab-name {
    font-size: 14px;
    letter-spacing: -0.02em;
    /* word-spacing: -0.02em; */
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Poppins';
  }

  .tr-cab-price {
    min-width: 1px;
  }

  .tr-price-off {
    font-size: 10px;
  }

  .tr-price-main {
    font-size: 16px;
  }

  .tr-price-was {
    font-size: 13px;
  }

  .tr-rating {

    gap: 3px;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 3px;
    border-radius: 2px;
    margin-bottom: 0px;
  }

  .tr-cab-specs {
    gap: 5px;
  }

  .tr-cab-spec {
    font-size: 9px;
  }

  .tr-fuel {

    font-size: 9px;
    font-weight: 700;
    padding: 1px 6px;
  }

  .tr-cab-info {
    line-height: 1;
  }

  .tr-select-btn:hover {
    background: transparent;
  }

  .tr-cab-spec i {
    display: none;
  }

  .tr-trustbar {
    border-radius: 8px;
  }

}

@media(min-width:768px) {
  .mmc-loginbtn {
    /* OLD RED BACKGROUND COMMENTED OUT
    background: var(--mmc-red);
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 3px;
    */
    background: #FFCC00;
    /* Soft blue background */
    border: 1px solid #FFCC00;
    border-radius: var(--r-pill);
    /* Pill shaped */
    color: var(--mmc-blue);
  }

  .mmc-booknow {

    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 9px 22px;
    box-shadow: 0 4px 14px rgb(0 0 0 / 32%);
    border: 1px dashed rgba(255, 255, 255, 0.2);
  }

}



/* ── COUPON CARD — MMT banner style ─────────────────────── */
.ow-coupon-wrap {
  padding: 0 0 12px 0;
}

.ow-coupon-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e8f4ff 0%, #dbeeff 100%);
  border: 1px solid #b3d9ff;
  border-radius: 10px;
  padding: 14px 16px;
  gap: 12px;
}

.ow-coupon-left {
  display: none;
}

/* hide the old ticket left */
.ow-coupon-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ow-coupon-title {
  font-size: .9rem;
  font-weight: 700;
  color: #1A1A24;
}

.ow-coupon-desc {
  font-size: .75rem;
  color: #FFCC00;
  font-weight: 500;
}

.ow-coupon-code {
  font-size: .75rem;
  color: #444;
  margin-top: 2px;
}

.ow-coupon-code strong {
  color: #FFCC00;
  font-weight: 700;
  background: #fff;
  padding: 1px 7px;
  border-radius: 4px;
  border: 1px dashed #FFCC00;
  letter-spacing: .06em;
}

.ow-coupon-expiry {
  font-size: .68rem;
  color: #888;
  margin-top: 2px;
}

.ow-coupon-right-badge img {
  width: 47px;
}

.ow-coupon-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 14px;
  background: #FFCC00;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}

.ow-coupon-copy:hover {
  background: #101018;
}

.ow-coupon-copy i {
  font-size: 1rem;
}

.ow-coupon-copy.copied {
  background: #27ae60;
}

/* ── MOBILE SEARCH POPUP ─────────────────────────────────── */
.ow-search-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, .5);
}

.ow-search-popup-overlay.open {
  display: block;
}

.ow-search-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff;
  overflow-y: auto;
  display: none;
  flex-direction: column;
}

.ow-search-popup.open {
  display: flex;
}

.ow-search-popup-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2;
}

.ow-search-popup-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.ow-search-popup-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
}

.ow-search-popup-body {
  flex: 1;
  padding-bottom: 20px;
}

/* ── MMT BOTTOM BAR ─────────────────────────────────────── */
.ow-mob-bottombar {
  position: fixed;
  right: 0;
  z-index: 9;
  background: #09121f;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: calc(100vw - 32px);
  border-radius: 10px;
  padding: 5px;
  gap: 5px;
}

.ow-mob-bottombar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px;
  background-color: #202e3c;
  border-radius: 8px;
  cursor: pointer;
  margin: 0;
  border: 0;
  outline: 0;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.ow-mob-bottombar-btn i {}

.ow-mob-bottombar-btn:last-child {
  border-right: none;
}

.ow-mob-bottombar-btn i {
  font-size: 15px;
  color: #fff;
  font-weight: 200;
}

.ow-mob-bottombar-btn.has-active {
  color: #FFCC00;
}

.ow-mob-bottombar-btn.has-active i {
  color: #FFCC00;
}

/* ── MOBILE CAR MODEL FILTER SHEET ─────────────────────── */
.ow-mob-sheet-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
}

.ow-mob-sheet-overlay.open {
  display: block;
}

.ow-mob-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
}

.ow-mob-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px 16px 0 0;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.ow-mob-sheet-overlay.open .ow-mob-sheet {
  transform: translateY(0);
}

.ow-mob-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.ow-mob-sheet-head h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.ow-mob-sheet-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
}

.ow-mob-sheet-sec {
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
}

.ow-mob-sheet-sec h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #333;
}

.ow-mob-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ow-mob-filter-chip {
  padding: 7px 14px;
  border: 1.5px solid #e0e3e9;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: all .15s;
  background: #fff;
}

.ow-mob-filter-chip.active {
  background: #FFCC00;
  border-color: #FFCC00;
  color: #1A1A24;
}

.ow-mob-sheet-apply {
  margin: 14px 16px;
  width: calc(100% - 32px);
  background: #FFCC00;
  color: #fff;
  border: none;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ow-mob-sheet-apply:hover {
  background: #FFCC00;
}

/* ── SORT SHEET ─────────────────────────────────────────── */
.ow-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.ow-sort-option.active {
  color: #FFCC00;
  font-weight: 700;
}

.ow-sort-option.active::after {
  content: '✓';
  font-size: 16px;
}

/* hide old mobile filter bar */
.tr-mob-filterbar,
.tr-mob-filter-overlay,
.tr-mob-sort-overlay {
  display: none !important;
}

@media(max-width:768px) {
  .tr-results {
    padding-bottom: 70px;
  }
}

.ow-search-popup .mmt-topbar {
  display: none;
}

.ow-search-popup .mmt-tabs {
  top: 0;
}

/* ══════════════════════════════════════════════════
   LOCAL RENTAL PAGE — local.css
   Extends the shared tr-* styles from style.css
   ══════════════════════════════════════════════════ */

/* ── PACKAGE TABS BAR ───────────────────────────── */
.lc-pkg-bar {
  background: #fff;
  border-bottom: 1px solid #e0e3e9;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
}

.lc-pkg-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  padding: 0 4px;
}

.lc-pkg-tabs::-webkit-scrollbar {
  display: none;
}

.lc-pkg-tab {
  flex-shrink: 0;
  padding: 13px 20px;
  font-size: .82rem;
  font-weight: 600;
  color: #5f6368;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  font-family: 'Poppins', sans-serif;
}

.lc-pkg-tab:hover {
  color: #FFCC00;
  background: rgba(255, 204, 0, .04);
}

.lc-pkg-tab.active {
  color: #FFCC00;
  border-bottom-color: #FFCC00;
  background: rgba(255, 204, 0, .04);
}

/* ── LOADING STATE ──────────────────────────────── */
.lc-loading {
  text-align: center;
  padding: 60px 20px;
  color: #9aa0a6;
}

.lc-loading i {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  color: #FFCC00;
}

.lc-loading p {
  font-size: 14px;
}

/* ── MOBILE PKG CHIP ACTIVE ─────────────────────── */
.lc-pkg-chip.active {
  background: #FFCC00;
  border-color: #FFCC00;
  color: #fff;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 767px) {
  .lc-pkg-bar {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .lc-pkg-tab {
    padding: 10px 14px;
    font-size: .76rem;
  }
}

/* ══════════════════════════════════════════════════
   AIRPORT RENTAL PAGE — airport-rental.css
   Extends the shared tr-* styles from style.css
   ══════════════════════════════════════════════════ */

/* ── DIRECTION BADGE ────────────────────────────── */
.ap-dir-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFCC00;
  border: 1px solid #FFCC00;
  color: #FFCC00;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.ap-dir-badge i {
  font-size: 11px;
}

/* ── RATEBAR PLANE ICON ─────────────────────────── */
.tr-ratebar__inner .fa-plane {
  color: #FFCC00;
  margin-right: 4px;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 767px) {
  .ap-dir-badge {
    font-size: .7rem;
    padding: 3px 10px;
  }
}

/* ================================================================
   CUSTOM LOGIN POPUP  —  lp-* prefix
   Drop into your main style.css or a separate login-popup.css
   ================================================================ */

/* ── Overlay ──────────────────────────────────────────────────── */
.lp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 15, 30, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lp-overlay.lp-open {
  display: flex;
}

/* ── Popup box ────────────────────────────────────────────────── */
.lp-box {
  display: flex;
  width: 100%;
  max-width: 820px;
  min-height: 480px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
  position: relative;
  animation: lpSlideIn .32s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes lpSlideIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── Close button ─────────────────────────────────────────────── */
.lp-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  transition: background .15s, transform .15s;
}

.lp-close:hover {
  background: #f0f0f0;
  transform: scale(1.08);
}

/* ── Left image panel ─────────────────────────────────────────── */
.lp-image {
  width: 42%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1A1A24 0%, #FFCC00 100%);
}

.lp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay on image */
.lp-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(5, 18, 40, 0.75) 0%,
      rgba(5, 18, 40, 0.10) 55%,
      transparent 100%);
}

.lp-image-caption {
  position: absolute;
  bottom: 26px;
  left: 22px;
  right: 22px;
  color: #fff;
}

.lp-image-caption strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Outfit', 'Poppins', sans-serif;
  line-height: 1.3;
  margin-bottom: 6px;
}

.lp-image-caption span {
  display: block;
  font-size: 12.5px;
  opacity: .8;
  line-height: 1.5;
}

/* ── Right form panel ─────────────────────────────────────────── */
.lp-form-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 36px 32px;
  overflow-y: auto;
}

/* Logo + heading */
.lp-logo {
  max-height: 38px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 22px;
}

.lp-heading {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  font-family: 'Outfit', 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.lp-sub {
  font-size: 13px;
  color: #7a8899;
  margin-bottom: 28px;
}

/* Step panels */
#lp-step-phone,
#lp-step-otp {
  display: none;
}

#lp-step-phone.lp-active,
#lp-step-otp.lp-active {
  display: block;
}

/* Labels */
.lp-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5f6368;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 7px;
}

/* Phone input row */
.lp-phone-row {
  display: flex;
  border: 1.5px solid #dadce0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
  margin-bottom: 20px;
}

.lp-phone-row:focus-within {
  border-color: #FFCC00;
  box-shadow: 0 0 0 3px #FFCC00;
}

.lp-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #f8f9fa;
  border-right: 1.5px solid #dadce0;
  font-size: 14px;
  min-width: 82px;
  width: 82px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  flex-shrink: 0;
}

.lp-phone-prefix img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.lp-phone-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 14px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  background: #fff;
}

.lp-phone-input::placeholder {
  color: #aab4be;
}

/* OTP input */
.lp-otp-input {
  width: 100%;
  border: 1.5px solid #dadce0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 22px;
  letter-spacing: .3em;
  font-weight: 700;
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  outline: none;
  margin-bottom: 8px;
  text-align: center;
  transition: border-color .15s, box-shadow .15s;
}

.lp-otp-input:focus {
  border-color: #FFCC00;
  box-shadow: 0 0 0 3px #FFCC00;
}

.lp-otp-hint {
  font-size: 12.5px;
  color: #7a8899;
  margin-bottom: 20px;
}

.lp-otp-hint strong {
  color: #1a1a2e;
}

/* Resend row */
.lp-resend-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #7a8899;
  margin-bottom: 20px;
}

.lp-resend-btn {
  background: none;
  border: none;
  color: #FFCC00;
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.lp-resend-btn:disabled {
  color: #aab4be;
  text-decoration: none;
  cursor: not-allowed;
}

/* Primary button */
.lp-btn {
  width: 100%;
  padding: 14px;
  background: #FFCC00;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 4px 14px rgba(255, 204, 0, .3);
  margin-bottom: 16px;
}

.lp-btn:hover {
  background: #101018;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, .35);
}

.lp-btn:disabled {
  background: #dadce0;
  color: #9aa0a6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Back link */
.lp-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: #FFCC00;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 18px;
}

.lp-back:hover {
  text-decoration: underline;
}

/* Terms */
.lp-terms {
  font-size: 11.5px;
  color: #9aa0a6;
  margin-top: auto;
  padding-top: 16px;
  line-height: 1.6;
  border-top: 1px solid #f0f2f5;
}

.lp-terms a {
  color: #FFCC00;
  text-decoration: none;
}

.lp-terms a:hover {
  text-decoration: underline;
}

/* Error message */
.lp-error {
  display: none;
  font-size: 12.5px;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 10px;
  display: none;
  align-items: center;
  gap: 5px;
}

.lp-error.lp-show {
  display: flex;
}

/* ── Mobile: stack vertically ─────────────────────────────────── */
@media (max-width: 620px) {
  .lp-image {
    display: none;
  }

  .lp-form-panel {
    padding: 32px 24px 28px;
  }

  .lp-heading {
    font-size: 20px;
  }

  .lp-form-panel {
    padding: 20px;
  }
}

.mmc-header.is-scrolled .mmc-util {
  background: #ffffff !important;
  /* Force static white at all times when scrolled */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
  /* Premium drop-shadow when scrolled */
}

.breadcrumb-option {
  position: relative;
  padding: 138px 0 80px;
  background-size: cover !important;
  background-position: center !important;
  margin-top: -58px;
}

.breadcrumb-option .breadcrumb__text {
  text-align: center;
}

.breadcrumb-option .breadcrumb__links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.breadcrumb-option .breadcrumb__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-option .breadcrumb__links a:hover {
  color: #fff;
}

.breadcrumb-option .breadcrumb__links span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
}

.breadcrumb-option .breadcrumb__links span::before {
  content: '/';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-option h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ── SINGLE SERVICE SECTION ───────────────────────────────────── */
.single-section {
  padding: 50px 0;
}

.single-section.small-section {
  padding: 40px 0;
}

.single-section.bg-inner {
  background-color: #f5f6f8;
}

/* ── SERVICE DETAIL CONTENT ───────────────────────────────────── */
.single-service-details {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.single-service-details img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
  display: block;
}

.single-service-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.3;
  font-family: 'Outfit', sans-serif;
}

.single-service-details p {
  font-size: 15px;
  color: #4a4a5a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.single-service-details p:last-child {
  margin-bottom: 0;
}

.single-service-details p b {
  color: #1a1a2e;
  font-weight: 600;
}

.single-service-details p a {
  color: #FFCC00;
  text-decoration: none;
}

.single-service-details p a:hover {
  text-decoration: underline;
}


/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 991px) {

  .single-service-details {
    padding: 20px;
  }

  .single-service-details img {
    height: 220px;
  }

  .sidebar-item {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {


  .single-service-details {
    padding: 16px;
  }

  .single-service-details img {
    height: 180px;
    margin-bottom: 18px;
  }

  .single-service-details h3 {
    font-size: 1.2rem;
  }

  .single-service-details p {
    font-size: 14px;
  }

  .sidebar-item {
    padding: 18px;
  }
}




.breadcrumb-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 14, 40, 0.88) 0%,
      rgba(26, 60, 120, 0.72) 50%,
      rgba(10, 14, 40, 0.82) 100%);
  z-index: 0;
  opacity: 0.5;
}

.breadcrumb-option .container {
  position: relative;
  z-index: 2;
}

.breadcrumb__text {
  text-align: center;
}

.breadcrumb__links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 6px 18px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 500;
}

.breadcrumb__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb__links a:hover {
  color: #FFCC00;
}

.breadcrumb__links span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  position: relative;
  padding-left: 16px;
}

.breadcrumb__links span::before {
  content: '›';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  line-height: 1;
  top: 3px;
}

.breadcrumb__text h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  margin: 0;
}

/* Decorative accent line under heading */
.breadcrumb__text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #FFCC00;
  border-radius: 2px;
  margin: 14px auto 0;
}

/* Widget overlap pull-up */
.breadcrumb-option .mmc-widget {
  position: relative;
  z-index: 5;
  margin-top: 32px;
  border-radius: 16px;
}


/* ── SERVICE SECTION LAYOUT ───────────────────────────────────── */

.single-section {
  background: #f4f6fb;
  padding: 56px 0 64px;
}

.single-section.small-section {
  padding: 48px 0 60px;
}

.single-section.bg-inner {
  background: #f0f3fa;
}


/* ── ARTICLE / DETAIL CONTENT ─────────────────────────────────── */

.single-service-details {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.single-service-details>img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Content area inside the detail card */
.single-service-details h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #1A1A24;
  margin: 0 0 14px;
  line-height: 1.3;
  position: relative;
  padding-left: 16px;
}

.single-service-details h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: #FFCC00;
  border-radius: 4px;
}

.single-service-details p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4f6a;
  margin-bottom: 16px;
}

.single-service-details p b {
  color: #1A1A24;
  font-weight: 600;
}

.single-service-details p:last-child {
  margin-bottom: 0;
}

/* Wrap text content with padding */
.single-service-details>h3,
.single-service-details>p {
  padding-left: 28px;
  padding-right: 28px;
}

.single-service-details>h3:first-of-type {
  margin-top: 28px;
}

.single-service-details>p:last-of-type {
  padding-bottom: 28px;
}


/* ── SIDEBAR ──────────────────────────────────────────────────── */

.sidebar-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
}

.sidebar-item h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  background: #1A1A24;
  margin: 0;
  padding: 16px 20px;
  letter-spacing: 0.01em;
  position: relative;
  margin-bottom: 13px;
}

.sidebar-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 36px;
  height: 3px;
  background: #FFCC00;
  border-radius: 2px 2px 0 0;
}

.sidebar-category {
  list-style: none;
  margin: 0;
  padding: 8px 0 12px;
  max-height: 520px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #FFCC00 #f0f3fa;
}

.sidebar-category::-webkit-scrollbar {
  width: 4px;
}

.sidebar-category::-webkit-scrollbar-track {
  background: #f0f3fa;
}

.sidebar-category::-webkit-scrollbar-thumb {
  background: #FFCC00;
  border-radius: 4px;
}

.sidebar-category li {
  border-bottom: 1px solid #f3f4f8;
}

.sidebar-category li:last-child {
  border-bottom: none;
}

.sidebar-category li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #3a3f5a;
  text-decoration: none;
  transition: all 0.18s ease;
  position: relative;
}

.sidebar-category li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d4e8;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s;
}

.sidebar-category li a:hover {
  color: #1A1A24;
  background: #f9f9fd;
  padding-left: 24px;
}

.sidebar-category li a:hover::before {
  background: #FFCC00;
  transform: scale(1.3);
}

/* Active state — if you add .active class via JS */
.sidebar-category li.active a,
.sidebar-category li a.active {
  color: #FFCC00;
  background: #eef4ff;
  font-weight: 600;
}

.sidebar-category li.active a::before,
.sidebar-category li a.active::before {
  background: #FFCC00;
}



/* ── RESPONSIVE ───────────────────────────────────────────────── */

@media (max-width: 991px) {
  .single-service-details>img {
    max-height: 260px;
  }

  .sidebar-item {
    position: static;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {

  .single-service-details>h3,
  .single-service-details>p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single-service-details>h3:first-of-type {
    margin-top: 20px;
  }

  .single-service-details>p:last-of-type {
    padding-bottom: 20px;
  }


  .single-section {
    padding: 32px 0 40px;
  }
}


.breadcrumb-option .mmc-widget {
  max-width: 1200px;
  margin-inline: auto;
}

@media(max-width:768px) {
  .mmc-header.is-scrolled .mmc-util {
    background-color: #fff;
  }

  .breadcrumb-option {
    margin-top: 0;
    padding: 25px 0;
  }

  .breadcrumb-option .breadcrumb__links span,
  .breadcrumb-option .breadcrumb__links a,
  .breadcrumb__links span::before {
    font-size: 12px;
  }

  .breadcrumb-option .breadcrumb__links span {
    padding-left: 12px;
  }

  .breadcrumb-option .breadcrumb__links {
    gap: 3px;
  }

  .breadcrumb__text h2 {

    line-height: 1;
  }

  .breadcrumb-option .mmt-app {
    max-width: 92%;
    margin-inline: auto;
    border-radius: 10px;
    margin-top: 25px;
  }

  .mmt-topbar {
    border-radius: 10px;
  }

  .single-service-details {
    padding: 10px;
  }

  .single-section.small-section {
    padding: 20px 0 20px;
  }
}


/* ================================================================
   MAKE ME TRIP CABS — HOME/ABOUT SECTIONS
   Bold editorial design | Blue #FFCC00 · Navy #0a0f2e · Yellow #FFCC00
   All scoped: s-about / s-why / s-intro / s-trip / s-trusted
   ================================================================ */

/* ── GLOBAL TOKENS (only declare if not already in your root) ─── */
:root {
  --c-blue: #1A1A24;
  --c-blue-d: #101018;
  --c-blue-l: #ffffff;
  --c-navy: #1A1A24;
  --c-navy2: #101018;
  --c-yellow: #FFCC00;
  --c-yellow-d: #cca300;
  --c-white: #ffffff;
  --c-off: #fbfbfd;
  --c-ink: #1a1a2e;
  --c-muted: #6e7e8c;
  --c-border: rgba(0, 0, 0, 0.09);
  --f-display: "Outfit", sans-serif;
  --f-body: "Poppins", sans-serif;
}

/* ── SHARED BUTTON ─────────────────────────────────────────────── */
.s-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-blue);
  color: #fff;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.30);
}

.s-btn:hover {
  background: transparent;
  border-color: var(--c-blue);
  color: var(--c-blue);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 28px #FFCC00;
}

.s-btn--white {
  background: #fff;
  color: var(--c-navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.s-btn--white:hover {
  background: transparent;
  border-color: #fff;
  color: #fff;
}


/* ================================================================
   SECTION 1 — ABOUT  (full-bleed left image, right content)
   ================================================================ */

.s-about {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 700px;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}

/* ── Media side ── */
.s-about__media {
  position: relative;
  overflow: hidden;
}

.s-about__media>img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient over image */
.s-about__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 15, 46, 0.55) 0%,
      rgba(10, 15, 46, 0.20) 60%,
      transparent 100%);
}

/* Two stacked small thumbs — absolute bottom-right */
.s-about__media-stack {
  position: absolute;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.s-about__media-stack img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s;
}

.s-about__media-stack img:hover {
  transform: scale(1.04);
}

/* Experience badge — top-left of image */
.s-about__badge {
  position: absolute;
  top: 36px;
  left: 36px;
  z-index: 4;
  background: var(--c-yellow);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 24px #FFCC00;
  line-height: 1.2;
}

.s-about__badge b {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-navy);
  display: block;
  line-height: 1;
}

.s-about__badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--c-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── Content side ── */
.s-about__body {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-white);
  position: relative;
}

/* Blue vertical accent line left edge */
.s-about__body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 60px;
  width: 4px;
  background: linear-gradient(to bottom, var(--c-blue), var(--c-yellow));
  border-radius: 0 2px 2px 0;
}

.s-about__kicker {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.s-about__kicker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--c-blue);
  flex-shrink: 0;
}

.s-about__h {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.s-about__h em {
  font-style: normal;
  color: var(--c-blue);
  position: relative;
}

.s-about__lead {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--c-muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.s-about__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #6b7594;
  margin-bottom: 28px;
}

/* 2x2 feature mini grid */
.s-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.s-about__feat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-off);
  border-radius: 10px;
  padding: 13px 14px;
  border: 1px solid var(--c-border);
  transition: border-color 0.2s, transform 0.2s;
}

.s-about__feat:hover {
  border-color: var(--c-blue);
  transform: translateY(-2px);
}

.s-about__feat>i {
  font-size: 20px;
  color: var(--c-blue);
  width: 40px;
  height: 40px;
  background: var(--c-blue-l);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.s-about__feat b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 1px;
}

.s-about__feat span {
  font-size: 12px;
  color: var(--c-muted);
}

/* Stats row */
.s-about__stats {
  display: flex;
  gap: 0;
  background: var(--c-navy);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.s-about__stat {
  flex: 1;
  padding: 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.s-about__stat:last-child {
  border-right: none;
}

.s-about__stat b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
}

.s-about__stat b sup {
  font-size: 0.7em;
}

.s-about__stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}


/* ================================================================
   SECTION 2 — WHY CHOOSE US — Dark bg bento grid
   ================================================================ */

.s-why {
  background: var(--c-navy);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern bg */
.s-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.s-why__head {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.s-why__tag {
  display: inline-block;
  background: #FFCC00;
  border: 1px solid rgba(255, 204, 0, 0.35);
  color: var(--c-yellow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.s-why__h {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.s-why__h em {
  font-style: normal;
  color: var(--c-yellow);
}

.s-why__head p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Bento grid */
.s-why__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.s-why__card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.2s;
}

.s-why__card:hover {
  transform: translateY(-4px);
}

/* Image card */
.s-why__card--img {
  aspect-ratio: 16/9;
}

.s-why__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.s-why__card--img:hover img {
  transform: scale(1.04);
}

.s-why__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 46, 0.92) 0%, rgba(10, 15, 46, 0.2) 60%, transparent 100%);
}

.s-why__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.s-why__card-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
}

.s-why__card-ico {
  font-size: 22px;
  color: var(--c-yellow);
  margin-bottom: 8px;
  display: block;
}

.s-why__card-body h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.s-why__card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Span 2 columns */
.s-why__card--span2 {
  grid-column: span 2;
}

/* Stat cards */
.s-why__card--stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  min-height: 150px;
  position: relative;
}

.s-why__card--stat b {
  font-family: var(--f-display);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.s-why__card--stat b sup {
  font-size: 0.55em;
}

.s-why__card--stat span {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  opacity: 0.8;
}

.s-why__card--stat>i {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  opacity: 0.18;
}

.s-why__card--blue {
  background: var(--c-blue);
  color: #fff;
}

.s-why__card--blue b,
.s-why__card--blue span {
  color: #fff;
}

.s-why__card--yellow {
  background: var(--c-yellow);
}

.s-why__card--yellow b,
.s-why__card--yellow span {
  color: var(--c-navy);
}

/* Feature cards */
.s-why__card--feat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 26px 22px;
}

.s-why__feat-icon {
  width: 46px;
  height: 46px;
  background: #FFCC00;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--c-blue);
  margin-bottom: 14px;
  border: 1px solid #FFCC00;
}

.s-why__card--feat h4 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.s-why__card--feat p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin: 0;
}

/* CTA card */
.s-why__card--cta {
  background: linear-gradient(145deg, var(--c-blue) 0%, #101018 100%);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.s-why__cta-ico {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.s-why__card--cta h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.s-why__card--cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.55;
}

.s-why__cta-call {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.s-why__cta-call:hover {
  color: #fff;
  text-decoration: none;
}


/* ================================================================
   SECTION 3 — INTRO / SERVICES
   Diagonal split bg
   ================================================================ */

.s-intro {
  position: relative;
  background: var(--c-white);
  padding: 90px 0 100px;
  overflow: hidden;
}

/* Big diagonal bg shape */
.s-intro__diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--c-off);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.s-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content */
.s-intro__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.s-intro__h {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.s-intro__h em {
  font-style: normal;
  color: var(--c-blue);
}

.s-intro__rule {
  width: 52px;
  height: 4px;
  background: linear-gradient(to right, var(--c-blue), var(--c-yellow));
  border-radius: 2px;
  margin-bottom: 22px;
}

.s-intro__lead {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--c-muted);
  font-weight: 500;
  margin-bottom: 14px;
}

.s-intro__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #6b7594;
  margin-bottom: 14px;
}

.s-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.s-intro__tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-blue-l);
  color: var(--c-blue);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid #FFCC00;
}

.s-intro__tags span i {
  font-size: 11px;
  color: #27ae60;
}

/* Visual */
.s-intro__visual {
  position: relative;
}

.s-intro__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(10, 15, 46, 0.18);
  position: relative;
  aspect-ratio: 4/5;
}

.s-intro__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge overlaid on image */
.s-intro__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(10, 15, 46, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.s-intro__img-badge>i {
  font-size: 24px;
  color: var(--c-yellow);
  flex-shrink: 0;
}

.s-intro__img-badge b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.s-intro__img-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* Counter row below image */
.s-intro__counter-row {
  display: flex;
  align-items: center;
  background: var(--c-navy);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 16px;
}

.s-intro__counter {
  flex: 1;
  text-align: center;
}

.s-intro__counter b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
}

.s-intro__counter b sup {
  font-size: 0.65em;
}

.s-intro__counter span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}

.s-intro__counter-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* ================================================================
   SECTION 4 — TRIP TYPES
   ================================================================ */

.s-trip {
  background: var(--c-off);
  padding: 90px 0 100px;
}

.s-trip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Visual */
.s-trip__visual {
  position: relative;
  order: 1;
}

.s-trip__img-main {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 16px 56px rgba(10, 15, 46, 0.16);
}

.s-trip__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-trip__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 46, 0.7) 0%, transparent 60%);
}

/* Safe floating card */
.s-trip__img-safe {
  position: absolute;
  top: -18px;
  right: -18px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(10, 15, 46, 0.14);
  border: 1px solid var(--c-border);
  max-width: 200px;
}

.s-trip__img-safe>i {
  font-size: 22px;
  color: var(--c-blue);
  flex-shrink: 0;
}

.s-trip__img-safe b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
}

.s-trip__img-safe span {
  font-size: 11px;
  color: var(--c-muted);
}

/* Decorative driver count */
.s-trip__img-num {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.s-trip__img-num sup {
  font-size: 0.6em;
}

/* Content */
.s-trip__content {
  order: 2;
}

.s-trip__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.s-trip__h {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.s-trip__h em {
  font-style: normal;
  color: var(--c-blue);
}

.s-trip__rule {
  width: 52px;
  height: 4px;
  background: linear-gradient(to right, var(--c-blue), var(--c-yellow));
  border-radius: 2px;
  margin-bottom: 22px;
}

.s-trip__text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #6b7594;
  margin-bottom: 14px;
}

.s-trip__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 28px;
}

.s-trip__opt {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--c-border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}

.s-trip__opt:hover {
  border-color: var(--c-blue);
  transform: translateX(4px);
  box-shadow: 0 4px 20px #FFCC00;
}

.s-trip__opt--alt {
  border-color: #FFCC00;
  background: var(--c-blue-l);
}

.s-trip__opt--alt:hover {
  border-color: var(--c-blue);
}

.s-trip__opt-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--c-navy);
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.s-trip__opt--alt .s-trip__opt-icon {
  background: var(--c-blue);
  color: #fff;
}

.s-trip__opt-body h5 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-ink);
  margin-bottom: 4px;
}

.s-trip__opt-body p {
  font-size: 13.5px;
  color: var(--c-muted);
  line-height: 1.6;
  margin: 0;
}


/* ================================================================
   SECTION 5 — TRUSTED PARTNER
   Dark left band + image right
   ================================================================ */

.s-trusted {
  position: relative;
  background: var(--c-white);
  padding: 90px 0 100px;
  overflow: hidden;
}

/* Dark left bg band */
.s-trusted__band {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 51%;
  background: var(--c-navy);
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.s-trusted__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Content on dark side */
.s-trusted__content {
  position: relative;
}

.s-trusted__kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.s-trusted__h {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.s-trusted__h em {
  font-style: normal;
  color: var(--c-yellow);
}

.s-trusted__rule {
  width: 52px;
  height: 4px;
  background: linear-gradient(to right, var(--c-yellow), #FFCC00);
  border-radius: 2px;
  margin-bottom: 22px;
}

.s-trusted__lead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-bottom: 14px;
}

.s-trusted__text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.s-trusted__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-trusted__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.s-trusted__list li i {
  color: var(--c-yellow);
  font-size: 15px;
  flex-shrink: 0;
}

.s-trusted__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.s-trusted__call,
.s-trusted__wa {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 160px;
}

.s-trusted__call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.s-trusted__call:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.s-trusted__call>i {
  font-size: 22px;
  color: var(--c-yellow);
  flex-shrink: 0;
}

.s-trusted__wa {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.s-trusted__wa:hover {
  background: rgba(37, 211, 102, 0.2);
  text-decoration: none;
}

.s-trusted__wa>i {
  font-size: 24px;
  color: #25d366;
  flex-shrink: 0;
}

.s-trusted__call small,
.s-trusted__wa small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}

.s-trusted__call b,
.s-trusted__wa b {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Visual on light side */
.s-trusted__visual {
  position: relative;
}

.s-trusted__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 16px 56px rgba(10, 15, 46, 0.20);
  position: relative;
}

.s-trusted__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-trusted__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 46, 0.55) 0%, transparent 55%);
}

/* Floating cards */
.s-trusted__float {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  border: 1px solid var(--c-border);
  z-index: 3;
}

.s-trusted__float--a {
  top: 28px;
  left: -20px;
}

.s-trusted__float--b {
  bottom: 36px;
  right: -20px;
}

.s-trusted__float b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink);
}

.s-trusted__float span {
  font-size: 11.5px;
  color: var(--c-muted);
}

.s-trusted__float-ico {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.s-trusted__float-ico--y {
  background: #FFCC00;
  color: var(--c-yellow-d);
}

.s-trusted__float-ico--g {
  background: rgba(37, 211, 102, 0.12);
  color: #1a9e4a;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
  .s-about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .s-about__media {
    height: 400px;
  }

  .s-about__body {
    padding: 52px 40px;
  }

  .s-about__body::before {
    display: none;
  }

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

  .s-why__card--span2 {
    grid-column: span 2;
  }

  .s-intro__inner,
  .s-trip__inner,
  .s-trusted__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .s-trip__visual {
    order: 2;
  }

  .s-trip__content {
    order: 1;
  }

  .s-trip__img-main {
    aspect-ratio: 16/9;
  }

  .s-intro__diagonal {
    display: none;
  }

  .s-trusted__band {
    display: none;
  }

  .s-trusted {
    background: var(--c-navy);
  }

  .s-trusted__img-wrap {
    aspect-ratio: 16/9;
  }

  .s-trusted__float--a {
    top: -16px;
    left: 16px;
  }

  .s-trusted__float--b {
    bottom: -16px;
    right: 16px;
  }
}

@media (max-width: 767px) {

  .s-about,
  .s-why,
  .s-intro,
  .s-trip,
  .s-trusted {
    padding: 56px 0 64px;
  }

  .s-about__body {
    padding: 36px 20px;
  }

  .s-about__grid {
    grid-template-columns: 1fr;
  }

  .s-about__stats {
    flex-wrap: wrap;
  }

  .s-about__stat {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .s-why__bento {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .s-why__card--span2 {
    grid-column: span 2;
  }

  .s-why__card--cta {
    grid-column: span 2;
  }

  .s-intro__inner,
  .s-trip__inner,
  .s-trusted__inner {
    gap: 32px;
  }

  .s-trip__img-safe {
    right: 8px;
    top: 8px;
    max-width: 170px;
  }

  .s-trusted__float--a,
  .s-trusted__float--b {
    position: static;
    margin-bottom: 12px;
    display: flex;
  }

  .s-trusted__actions {
    flex-direction: column;
  }

  .s-trusted__call,
  .s-trusted__wa {
    flex: none;
  }

  .s-intro__img-wrap {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .s-why__bento {
    grid-template-columns: 1fr;
  }

  .s-why__card--span2,
  .s-why__card--cta {
    grid-column: span 1;
  }
}

.mmc-drawer__panel {
  padding-inline: 15px;
}

.sidebar_login_button button {
  position: relative;
  background: rgb(234, 245, 255);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 0;
  outline: 0;
  width: 100%;
}

.sidebar_login_button .login_logo {
  height: 53px;
  width: 53px;
  min-width: 53px;
  display: inline-block;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px 0px, rgba(0, 0, 0, 0.1) 0px 6px 20px 0px;
}

.sidebar_login_button .login_logo img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}

.sidebar_login_button .sing_in_text {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-right: 5px;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
}

.sidebar_login_button .sing_in_text .upper {

  color: #008CFF;
  margin-bottom: 5px;
}

.sidebar_login_button .sing_in_text .down {
  color: #000;
}

.sidebar_login_button .sing_in_text .name {
  font-size: 16px;
  color: #fff;
}

.sidebar_login_button .icon {
  margin-left: 8px;
}

.sidebar_login_button .icon i {
  color: #008CFF;
}

.sidebar_login_button a {
  position: relative;
  background: linear-gradient(85.23deg, rgb(0, 210, 255) 0%, rgb(58, 123, 213) 100%);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 14px;
  border: 0;
  outline: 0;
  width: 100%;
}

.sidebar_login_button.profile .icon i {
  color: #fff;
}

.sidebar_login_button.profile .login_logo {
  margin-right: 15px;
}

.sidebar_lists {
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.sidebar_lists li {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 15px;
  border: 1px solid rgb(226, 226, 226);
  padding: 12px;
  margin-bottom: 16px;
  gap: 7px;
  justify-content: start;
}

.sidebar_lists li .right_icon {
  margin-left: auto;
  color: rgb(0, 140, 255);
  font-size: 18px;
  font-weight: 600;
}

.sidebar_lists li .icon {
  font-size: 22px;
  color: #757575;
}

.sidebar_lists li .upper {
  font-weight: 600;
  font-size: 13px;
}

.sidebar_lists li .upper small {
  font-weight: 500;
  font-size: 11px;
}

.sidebar_lists li .bottom {
  font-size: 12px;
}

.polocies__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  font-size: 10px;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.polocies__list li:first-child {
  list-style-type: none;
  list-style: none;
}

.app_images {
  display: flex;
  gap: 5px;
}

.app_images a {
  display: block;
}

.app_images a img {
  width: 100%;
  border-radius: 10px;
}

@media(max-width:768px) {
  .lp-overlay {
    align-items: self-end;
    padding: 0;
  }

  .lp-box {
    border-radius: 18px 18px 0 0;
  }
}

.ap-clear-all,
.ap-clear-sec {
  font-size: 11px;
  font-weight: 700;
  color: var(--tr-blue);
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ================================================================
   CONTACT PAGE  —  ct-* prefix
   Theme: Navy #0a0f2e · Blue #FFCC00 · Yellow #FFCC00
   All scoped to .ct-page / .ct-* — zero conflict with other styles
   ================================================================ */

.ct-page {
  background: #f0f3fa;
  font-family: "Poppins", sans-serif;
}


/* ── HERO STRIP ────────────────────────────────────────────────── */

.ct-hero {
  background: #0a0f2e;
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}

/* Subtle dot-grid texture */
.ct-hero__noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Blue glow blob top-right */
.ct-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFCC00 0%, transparent 70%);
  pointer-events: none;
}

/* Yellow glow blob bottom-left */
.ct-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFCC00 0%, transparent 70%);
  pointer-events: none;
}

.ct-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.ct-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFCC00;
  background: #FFCC00;
  border: 1px solid #FFCC00;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  display: inline-flex;
}

.ct-hero__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.ct-hero__title em {
  font-style: normal;
  color: #FFCC00;
}

.ct-hero__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 380px;
}

/* Channel cards */
.ct-hero__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ct-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.ct-channel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s;
}

.ct-channel:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.ct-channel:hover::before {
  opacity: 1;
}

.ct-channel__ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ct-channel--call .ct-channel__ico {
  background: #FFCC00;
  color: #6ea8ff;
}

.ct-channel--wa .ct-channel__ico {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.ct-channel--mail .ct-channel__ico {
  background: #FFCC00;
  color: #FFCC00;
}

.ct-channel--loc .ct-channel__ico {
  background: rgba(232, 23, 63, 0.15);
  color: #ff6b8a;
}

.ct-channel__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.ct-channel__body strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.ct-channel__body span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.ct-channel__body small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  display: block;
}

.ct-channel__arr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: all 0.2s;
}

.ct-channel:hover .ct-channel__arr {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(3px);
}


/* ── BODY (form + map) ─────────────────────────────────────────── */

.ct-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 52px 0 72px;
  align-items: start;
}


/* ── FORM CARD ─────────────────────────────────────────────────── */

.ct-form-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(10, 15, 46, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-form-card__head {
  background: linear-gradient(135deg, #0a0f2e 0%, #1a2a6e 100%);
  padding: 32px 36px 28px;
  position: relative;
  overflow: hidden;
}

/* Diagonal stripe accent */
.ct-form-card__head::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #FFCC00;
}

.ct-form-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFCC00;
  margin-bottom: 10px;
}

.ct-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFCC00;
  flex-shrink: 0;
}

.ct-form-card__title {
  font-family: "Outfit", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.ct-form-card__title span {
  color: #FFCC00;
}

.ct-form-card__desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

/* Form body */
.ct-form {
  padding: 32px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ct-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #556080;
}

.ct-input-wrap {
  position: relative;
}

.ct-input-wrap>i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #9aa8c8;
  pointer-events: none;
  z-index: 1;
}

.ct-input-wrap--ta>i {
  top: 14px;
  transform: none;
}

.ct-input-wrap input,
.ct-input-wrap textarea {
  width: 100%;
  border: 1.5px solid #e0e6f0;
  border-radius: 10px;
  padding: 12px 14px 12px 40px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #0a0f2e;
  background: #f8f9fd;
  outline: none;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  resize: none;
}

.ct-input-wrap input::placeholder,
.ct-input-wrap textarea::placeholder {
  color: #b0bad4;
  font-size: 13px;
}

.ct-input-wrap input:focus,
.ct-input-wrap textarea:focus {
  border-color: #FFCC00;
  background: #fff;
  box-shadow: 0 0 0 3px #FFCC00;
}

.ct-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #FFCC00 0%, #101018 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Outfit", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(255, 204, 0, 0.35);
  margin-top: 4px;
}

.ct-submit:hover {
  background: linear-gradient(135deg, #101018 0%, #101018 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 204, 0, 0.45);
}

/* Form message */
#form-messages:not(:empty) {
  margin: 0 36px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
}


/* ── RIGHT COLUMN ─────────────────────────────────────────────── */

.ct-map-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 80px;
}

/* Stats strip */
.ct-stats-strip {
  display: flex;
  align-items: center;
  background: #0a0f2e;
  border-radius: 14px;
  padding: 20px 24px;
  gap: 0;
}

.ct-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-stat strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #FFCC00;
  line-height: 1;
}

.ct-stat strong sup {
  font-size: 0.65em;
}

.ct-stat span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.ct-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* Map card */
.ct-map-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 15, 46, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.ct-map-card__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f3fa;
  font-size: 13.5px;
  font-weight: 700;
  color: #0a0f2e;
}

.ct-map-card__label i {
  color: #FFCC00;
  font-size: 16px;
}

.ct-map-frame {
  position: relative;
  width: 100%;
  height: 340px;
}

.ct-map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* ── RESPONSIVE ─────────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .ct-hero__inner {
    gap: 40px;
  }

  .ct-hero__channels {
    grid-template-columns: 1fr;
  }

  .ct-body {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0 56px;
  }

  .ct-map-col {
    position: static;
  }

  .ct-stats-strip {
    order: -1;
  }
}

@media (max-width: 900px) {
  .ct-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ct-hero {
    padding: 52px 0 60px;
  }

  .ct-hero__sub {
    max-width: 100%;
  }

  .ct-hero__channels {
    grid-template-columns: 1fr 1fr;
  }

  .ct-map-frame {
    height: 280px;
  }
}

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

  .ct-hero__title {
    font-size: 2.4rem;
  }

  .ct-form-card__head {
    padding: 24px 22px 20px;
  }

  .ct-form {
    padding: 24px 22px 28px;
    gap: 14px;
  }

  .ct-form-row {
    grid-template-columns: 1fr;
  }

  .ct-form-card__title {
    font-size: 1.55rem;
  }

  .ct-stats-strip {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
  }

  .ct-stat-sep {
    display: none;
  }

  .ct-stat {
    flex: 0 0 calc(50% - 6px);
  }
}

/* ================================================================
   CHARDHAM WIDGET ADDITIONS  —  chardham.css
   Only new classes, zero override of existing styles
   ================================================================ */

/* ── Dham checkboxes container ─────────────────────────────────── */
.cd-dham-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}

.cd-dham-checks--mmt {
  padding: 8px 0 4px;
}

/* ── Individual dham label/checkbox ───────────────────────────── */
.cd-dham-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f6f8;
  border: 1.5px solid #e0e3e9;
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  user-select: none;
}

.cd-dham-label:hover {
  background: #edf2ff;
  border-color: #FFCC00;
}

/* Checked state — pill turns blue */
.cd-dham-label:has(.cd-dham-cb:checked) {
  background: #FFCC00;
  border-color: #FFCC00;
  color: #fff;
}

/* Hide native checkbox — use pill styling */
.cd-dham-cb {
  width: 14px;
  height: 14px;
  accent-color: #fff;
  cursor: pointer;
}

/* ── MMT select styling ───────────────────────────────────────── */
.mmt-cd-select {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  outline: none;
  padding: 2px 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.mmt-cd-select option {
  color: #1a1a1a;
}

/* ── Desktop mmc-field for chardham ──────────────────────────── */
#mmc-p-chardham .mmc-field {
  /* inherits existing .mmc-field styles — no override needed */
}

/* ================================================================
   STOPS MODAL FIXES — ensures popup works correctly
   ================================================================ */

/* ── Stops modal backdrop overlay ─────────────────────────────── */
.tr-stops-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  backdrop-filter: blur(2px);
}

.tr-stops-modal-backdrop.open {
  display: block;
}

/* ── Stops modal container ────────────────────────────────────── */
.tr-stops-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  max-height: 85vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  overflow: hidden;
  animation: trModalSlideIn 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.tr-stops-modal.open {
  display: flex;
  flex-direction: column;
}

@keyframes trModalSlideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* ── Modal header ─────────────────────────────────────────────── */
.tr-stops-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid #eef2f6;
  background: #fff;
  flex-shrink: 0;
}

.tr-stops-modal__head span {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
}

.tr-stops-modal__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f6f8;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6e7e8c;
  transition: all 0.2s;
}

.tr-stops-modal__close:hover {
  background: #e8eaed;
  color: #FFCC00;
}

/* ── Modal body (scrollable) ──────────────────────────────────── */
.tr-stops-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  max-height: 400px;
  min-height: 100px;
}

/* Individual stop row */
.tr-stop-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fc;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.tr-stop-row:hover {
  border-color: #FFCC00;
  background: #fff;
}

.tr-stop-pin {
  color: #f59e0b;
  font-size: 14px;
  flex-shrink: 0;
}

.tr-stop-inp {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  padding: 4px 0;
}

.tr-stop-inp::placeholder {
  color: #b0b8c5;
  font-weight: 400;
}

.tr-stop-rm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fee2e2;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.tr-stop-rm i {
  font-size: 12px;
  color: #e74c3c;
}

.tr-stop-rm:hover {
  background: #e74c3c;
}

.tr-stop-rm:hover i {
  color: #fff;
}

/* ── Add stop button ──────────────────────────────────────────── */
.tr-stops-modal__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 22px 16px;
  padding: 12px 18px;
  background: none;
  border: 1.5px dashed #FFCC00;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFCC00;
  cursor: pointer;
  transition: all 0.2s;
}

.tr-stops-modal__add i {
  font-size: 12px;
}

.tr-stops-modal__add:hover {
  background: #FFCC00;
  color: #fff;
  border-style: solid;
}

/* ── Modal footer ─────────────────────────────────────────────── */
.tr-stops-modal__foot {
  padding: 16px 22px 22px;
  border-top: 1px solid #eef2f6;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.tr-stops-modal__done {
  padding: 12px 48px;
  background: linear-gradient(135deg, #FFCC00, #101018);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px #FFCC00;
}

.tr-stops-modal__done:hover {
  background: linear-gradient(135deg, #101018, #0a3d8a);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #FFCC00;
}

/* ── Desktop search bar stops button adjustments ───────────────── */
.tr-addstops-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFCC00;
  border: 1px solid #FFCC00;
  color: #FFCC00;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  margin-top: 6px;
  position: relative;
}

.tr-addstops-btn:hover {
  background: #FFCC00;
  color: #fff;
  border-color: #FFCC00;
}

.tr-addstops-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #e74c3c;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tr-stops-bar span i {
  color: #FFCC00;
  margin-right: 6px;
}

.tr-stops-bar small {
  font-weight: 400;
  margin-left: 4px;
  color: #9aa0a6;
}

.tr-addstop {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background .13s;
  background: hsla(0, 0%, 100%, .1);
  padding: 8px;
  border: 0;
  color: #fff;
  border-radius: 8px;
  height: 100%;
  position: relative;
}

.tr-addstop:hover {
  background: #FFCC00;
  color: #fff;
}

/* ── Stops wrap container ─────────────────────────────────────── */
.tr-stops-wrap {
  margin-bottom: 16px;
  max-height: 180px;
  overflow-y: auto;
  padding: 4px 0;
}

.tr-stops-wrap .tr-stop-row {
  margin-bottom: 8px;
  padding: 10px 14px;
  background: #f8f9fc;
}

/* ── Swap button style ────────────────────────────────────────── */
.tr-swap-btn {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e3e9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}

.tr-swap-btn i {
  font-size: 12px;
  color: #6e7e8c;
  transition: all 0.2s;
}

.tr-swap-btn:hover {
  background: #FFCC00;
  border-color: #FFCC00;
  transform: translateY(-50%) rotate(180deg);
}

.tr-swap-btn:hover i {
  color: #fff;
}

/* ── For the location segment that contains swap button ───────── */
.tr-sf-seg--loc {
  position: relative;
}

/* ── Responsive adjustments ───────────────────────────────────── */
@media (max-width: 767px) {
  .tr-stops-modal {
    width: 95vw;
    max-height: 80vh;
  }

  .tr-stops-modal__head {
    padding: 14px 18px;
  }

  .tr-stops-modal__body {
    padding: 12px 18px;
  }

  .tr-stop-row {
    padding: 10px 12px;
    gap: 8px;
  }

  .tr-stops-modal__add {
    margin: 0 18px 12px;
    padding: 10px 16px;
  }

  .tr-stops-modal__foot {
    padding: 12px 18px 18px;
  }

  .tr-stops-modal__done {
    padding: 10px 32px;
  }

  .tr-swap-btn {
    right: -8px;
    width: 28px;
    height: 28px;
  }

  .tr-addstops-btn {
    font-size: 10px;
    padding: 4px 12px;
  }
}

/* ── DYNAMIC ROUTE LOADER SCREEN ── */
#routeLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 39, 74, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999999 !important;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#routeLoader.active {
  display: flex !important;
}

/* Moving Cab & Road Container */
.rl-anim-container {
  position: relative;
  width: 320px;
  height: 150px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

/* Sleek Cab SVG */
.rl-cab {
  width: 100px;
  height: auto;
  animation: rl-cab-bounce 0.4s infinite alternate ease-in-out;
  transform-origin: bottom center;
  z-index: 2;
  margin-bottom: -2px;
}

/* Road Line */
.rl-road {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* Dashed overlay that slides to make the road move */
.rl-road-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 10px, #FFCC00 10px, #FFCC00 25px);
  animation: rl-road-slide 0.6s infinite linear;
}

/* Speed Lines behind the cab */
.rl-speed-lines {
  position: absolute;
  left: 30px;
  top: 55px;
  width: 80px;
  height: 40px;
  pointer-events: none;
}

.rl-line {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  animation: rl-line-slide infinite linear;
}

.rl-line-1 {
  top: 5px;
  width: 30px;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
}

.rl-line-2 {
  top: 15px;
  width: 45px;
  animation-duration: 0.4s;
  animation-delay: 0.3s;
}

.rl-line-3 {
  top: 25px;
  width: 25px;
  animation-duration: 0.6s;
  animation-delay: 0.2s;
}

/* Text Animations */
.rl-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.rl-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #FFCC00;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
}

/* Animations Keyframes */
@keyframes rl-cab-bounce {
  0% {
    transform: translateY(0) scaleY(1);
  }

  100% {
    transform: translateY(-4px) scaleY(0.98);
  }
}

@keyframes rl-road-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes rl-line-slide {
  0% {
    transform: translateX(120px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}

/* ══════════════════════════════════════════════════════════
   UPGRADED HOMEPAGE EXTENSIONS (Orocab Premium Theme Styles)
   ══════════════════════════════════════════════════════════ */

/* Spacing Constraint Rules */
.s-services .container,
.s-fleet .container,
.s-testimonials .container,
.s-faq .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* A. FEATURED SERVICES */
.s-services {
  background-color: #f8f9fa !important;
}

.service-card {
  border-radius: 16px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08) !important;
  border-color: #FFCC00;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: #FFCC00;
  color: #1A1A24;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__icon {
  background: #1A1A24;
  color: #FFCC00;
  transform: scale(1.1) rotate(360deg);
}

.service-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #1A1A24;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 0;
}

.service-card__link {
  font-family: var(--font-body);
  font-weight: 700;
  color: #cca300;
  font-size: 0.9rem;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.service-card__link:hover {
  color: #1A1A24;
  gap: 10px;
}

/* B. OUR FLEET */
.fleet-filters {
  margin-bottom: 30px;
}

.fleet-filter-btn {
  background: #f1f3f5;
  border: none;
  padding: 8px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.fleet-filter-btn:hover {
  background: #e9ecef;
}

.fleet-filter-btn.active {
  background: #FFCC00;
  color: #1A1A24;
  box-shadow: 0 4px 12px #FFCC00;
}

.fleet-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

.fleet-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle, #ffffff 30%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.fleet-card:hover .fleet-card__img img {
  transform: scale(1.08);
}

.fleet-card__body {
  padding: 24px;
}

.fleet-card__tag {
  background: rgba(26, 26, 36, 0.05);
  color: #1A1A24;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.fleet-card__price {
  font-family: var(--font-head);
  font-weight: 800;
  color: #1A1A24;
  font-size: 1.15rem;
}

.fleet-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #1A1A24;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.fleet-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 15px;
}

.fleet-card__specs li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fleet-card__specs li i {
  color: #FFCC00;
}

.fleet-card__ctas a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.fleet-cta-call {
  background: #1A1A24;
  color: #ffffff;
}

.fleet-cta-call:hover {
  background: #101018;
  color: #ffffff;
}

.fleet-cta-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.fleet-cta-whatsapp:hover {
  background: #20ba5a;
  color: #ffffff;
}

/* C. TESTIMONIALS */
.testimonial-card {
  border-radius: 12px;
  transition: transform 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card__stars i {
  color: #FFCC00;
  font-size: 14px;
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #495057;
  font-style: italic;
}

.testimonial-card__user .user-info h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #1A1A24;
}

/* D. FAQ ACCORDION */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-acc-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: border-color 0.25s ease;
}

.faq-acc-item.active {
  border-color: #FFCC00;
}

.faq-acc-header {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: #1A1A24;
  transition: all 0.25s ease;
}

.faq-acc-header:hover {
  background-color: #ffffff !important;
}

.faq-acc-item.active .faq-acc-header {
  background-color: #ffffff !important;
  color: #cca300;
}

.faq-acc-header i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-acc-body p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: #495057;
}

/* ── BTN THEME (Gold Primary Actions) ── */
.btn-theme {
  background: #FFCC00 !important;
  color: #1A1A24 !important;
  border: none !important;
  padding: 10px 24px !important;
  font-family: 'Outfit', 'Poppins', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.btn-theme:hover {
  background: #e6b800 !important;
  color: #1A1A24 !important;
}

/* ================================================================
   REDESIGNED PREMIUM FOOTER STYLING
   ================================================================ */
footer {
  background-color: #0e131f !important;
  color: #94a3b8;
  padding: 60px 0 30px 0;
  border-top: 3px solid #FFCC00;
}

footer h4 {
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: #FFCC00;
}

.footer_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.footer_list a:before {
  content: '›';
  margin-right: 8px;
  font-size: 1.1rem;
  color: #FFCC00;
  line-height: 1;
}

.footer_list a:hover {
  color: #FFCC00;
  transform: translateX(4px);
}

/* Footer Social Icons */
footer .social_icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
}

footer .social_icons a i {
  font-size: 16px !important;
  color: #ffffff !important;
}

footer .social_icons a:hover {
  background: #FFCC00;
}

footer .social_icons a:hover i {
  color: #1A1A24 !important;
}

/* Routes Accordion (Light Theme below Popular Routes) */
.routes_accordion .accordion-item {
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.routes_accordion .accordion-item:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.routes_accordion .accordion-button {
  background: #f8fafc !important;
  color: #1A1A24 !important;
  font-family: var(--font-head);
  transition: all 0.25s ease;
}

.routes_accordion .accordion-button:not(.collapsed) {
  background-color: rgba(255, 204, 0, 0.08) !important;
  color: #cca300 !important;
}

.routes_accordion .accordion-button::after {
  filter: none;
}

.routes_accordion .accordion-button:not(.collapsed)::after {
  filter: invert(0.6) sepia(1) saturate(5) hue-rotate(10deg);
}

.routes_accordion .accordion-body {
  padding: 24px !important;
  background: #ffffff !important;
}

.routes_accordion .route-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #475569 !important;
  text-decoration: none !important;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.routes_accordion .route-link i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.routes_accordion .route-link:hover {
  background: rgba(255, 204, 0, 0.08);
  border-color: #FFCC00;
  color: #1A1A24 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
}

.routes_accordion .route-link:hover i {
  transform: translateX(3px);
  color: #FFCC00 !important;
}

/* Promotional Banner Slider */
.promo-ads-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.promo-slide-item {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: #1a1a24;
}

.promo-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.promoSwiper:hover .swiper-slide-active .promo-slide-item img {
  transform: scale(1.05);
}

.promo-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.promo-slide-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 550px;
  color: #ffffff;
  pointer-events: auto;
}

.promo-badge {
  display: inline-block;
  background-color: #FFCC00;
  color: #1A1A24;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.promo-slide-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.promo-slide-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-promo {
  background-color: #FFCC00 !important;
  border-color: #FFCC00 !important;
  color: #1A1A24 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
  text-decoration: none !important;
  display: inline-block;
}

.btn-promo:hover {
  background-color: #e6b800 !important;
  border-color: #e6b800 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 204, 0, 0.4);
  color: #1A1A24 !important;
}

/* Custom swiper navigation for promo ads */
.promo-next, .promo-prev {
  color: #FFCC00 !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(4px) !important;
  transition: all 0.3s ease !important;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}

.promo-next::after, .promo-prev::after {
  font-size: 16px !important;
  font-weight: 800 !important;
}

.promo-next:hover, .promo-prev:hover {
  background: #FFCC00 !important;
  color: #1A1A24 !important;
}

.promo-ads-container:hover .promo-next,
.promo-ads-container:hover .promo-prev {
  opacity: 1;
  visibility: visible;
}

.promo-pagination {
  bottom: 15px !important;
}

.promo-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.3s ease !important;
}

.promo-pagination .swiper-pagination-bullet-active {
  background: #FFCC00 !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Responsive adjustment for Mobile screens */
@media (max-width: 768px) {
  .promo-slide-item {
    height: 180px;
  }
  .promo-slide-content {
    left: 20px;
    max-width: 85%;
  }
  .promo-slide-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .promo-slide-content p {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .promo-badge {
    padding: 2px 6px;
    font-size: 9px;
    margin-bottom: 6px;
  }
  .btn-promo {
    padding: 6px 14px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
  }
  .promo-next, .promo-prev {
    display: none !important;
  }
}

/* Book Now Page Premium Styling */
.booking-page {
  background-color: #f8fafc;
}

.booking-page .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: #ffffff;
  padding: 24px;
}

.booking-page .form-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: #1A1A24;
  font-size: 26px;
  position: relative;
  margin-bottom: 24px;
}

.booking-page .form-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #FFCC00;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

.booking-page .form-group {
  position: relative;
  margin-bottom: 20px;
}

.booking-page .form-group i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.booking-page .form-group textarea + i {
  top: 24px;
  transform: none;
}

.booking-page .form-control, 
.booking-page .form-select {
  padding: 12px 16px 12px 42px !important;
  font-size: 14px;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 8px !important;
  background-color: #f8fafc;
  color: #334155;
  transition: all 0.3s ease;
  height: auto !important;
}

.booking-page .form-control::placeholder {
  color: #94a3b8;
}

.booking-page .form-control:focus, 
.booking-page .form-select:focus {
  background-color: #ffffff;
  border-color: #FFCC00 !important;
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.15) !important;
  color: #1a1a24;
}

.booking-page .form-control:focus + i {
  color: #FFCC00;
}

.booking-page label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
  display: block;
}

.btn-submit-booking {
  background-color: #FFCC00 !important;
  border-color: #FFCC00 !important;
  color: #1A1A24 !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 40px !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-submit-booking:hover {
  background-color: #e6b800 !important;
  border-color: #e6b800 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 204, 0, 0.4);
}

.booking-page .illustration-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 40px;
}

.booking-page .illustration-col img {
  max-width: 90%;
  animation: floatIllustration 4s ease-in-out infinite;
}

@keyframes floatIllustration {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
  .booking-page .illustration-col {
    display: none !important;
  }
}