:root{
  --theme-blue:#0066ff;
  --theme-blue-dark:#0050cc;
  --theme-text:#001536;
  --theme-muted:#576680;
  --theme-bg-light:#e9f2ff;
  --theme-border:#e5e5e5;
  --theme-bg:#ffffff;
  --theme-height:76px;
  --theme-font:'Inter', Arial, sans-serif;
}
a:hover{
  text-decoration: none;
}
p{
  font-weight: 500;
}
body{ padding-top:0; margin:0; font-family:var(--theme-font); }

/* ---------- Header bar ---------- */
.site-header{
  background:var(--theme-bg);
  border-bottom:1px solid var(--theme-border);
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.03);
}
.header-main-inner{
  display:flex;
  align-items:center;
  height:var(--theme-height);
  gap:28px;
}

/* ---------- Logo ---------- */
.site-branding{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  flex-shrink:0;
}
.site-branding img{ height:68px; width:auto; display:block; }
.site-branding .site-name{
  font-size:22px;
  font-weight:800;
  color:var(--theme-text);
  letter-spacing:-.3px;
}

/* ---------- Desktop nav ---------- */
.main-navigation{ flex:1; display:flex; justify-content:center; }
.main-menu{
  display:flex;
  align-items:center;
  list-style:none;
  margin:0; padding:0;
  gap:4px;
}
.main-menu > li{ position:relative; }
.main-menu > li > a{
  display:flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  color:var(--theme-text);
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  border-radius:4px;
  white-space:nowrap;
  transition:.15s;
}
.main-menu > li > a i{ font-size:10px; opacity:.6; transition:.2s; }
.main-menu > li:hover > a{ background:var(--theme-bg-light); }
.main-menu > li:hover > a i{ transform:rotate(180deg); }

.sub-menu{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  min-width:250px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.14);
  list-style:none;
  margin:0; padding:10px;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:.16s ease;
  z-index:1200;
}
.menu-parent:hover .sub-menu{ opacity:1; visibility:visible; transform:translateY(0); }
.sub-menu li a{
  display: block;
  padding: 6px 9px;
  border-radius: 5px;
  color: var(--theme-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.sub-menu li a:hover{ background:var(--theme-bg-light); }
.sub-menu.mega-menu{ columns:2; column-gap:4px; width:480px; }
.sub-menu.mega-menu li{ break-inside:avoid; }

/* ---------- Right actions ---------- */
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}

.icon-btn{
  width:42px; height:42px;
  border-radius:50%;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--theme-text);
  font-size:16px;
  cursor:pointer;
  transition:.15s;
}
.icon-btn:hover{ background:var(--theme-bg-light); }
.user-icon-btn{ background:var(--theme-blue); color:#fff; }
.user-icon-btn:hover{ background:var(--theme-blue-dark); }

.pill-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 22px;
  border:1.5px solid var(--theme-blue);
  border-radius:999px;
  background:#fff;
  color:var(--theme-blue) !important;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  cursor:pointer;
  transition:.15s;
}
.pill-btn:hover{ background:var(--theme-blue); color:#fff !important; }

/* filled variant used on drawer/modal buttons */
.drawer-book-btn,
.login-modal .pill-btn{
  background:var(--theme-blue);
  color:#fff !important;
  border-color:var(--theme-blue);
}
.drawer-book-btn:hover,
.login-modal .pill-btn:hover{ background:var(--theme-blue-dark); }

/* ---------- Login dropdown ---------- */
.login-dropdown .dropdown-menu{
  border:none;
  border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.16);
  padding:8px;
  margin-top:14px;
  min-width:200px;
}
.login-dropdown .dropdown-item{
  padding:12px 14px;
  border-radius:10px;
  font-weight:600;
  font-size:15px;
  color:var(--theme-text);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.login-dropdown .dropdown-item:hover{ background:var(--theme-bg-light); }

/* ---------- Search panel (desktop) ---------- */
.search-panel{
  position:fixed;
  top:var(--theme-height);
  left:0; right:0;
  background:#fff;
  border-bottom:1px solid var(--theme-border);
  box-shadow:0 16px 40px rgba(0,0,0,.08);
  z-index:999;
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.search-panel.active{ max-height:120px; }
.search-panel-inner{
  display:flex;
  gap:12px;
  padding:20px 0;
}
.search-panel-inner input{
  border-radius:10px;
  border:1px solid var(--theme-border);
  padding:12px 14px;
}

/* ---------- Hamburger ---------- */
.menu-toggle{
  width:42px; height:42px;
  border:none;
  background:transparent;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  border-radius:50%;
}
.menu-toggle:hover{ background:var(--theme-bg-light); }
.menu-toggle span{
  width:20px; height:2px;
  background:var(--theme-text);
  border-radius:2px;
  transition:.25s;
}
.menu-toggle.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity:0; }
.menu-toggle.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* =========================================================
MOBILE DRAWER
========================================================= */
.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  visibility:hidden;
  transition:.25s;
  z-index:999;
}
.drawer-overlay.active{ opacity:1; visibility:visible; }

.mobile-drawer{
  position:fixed;
  top:0; right:0;
  width:82%;
  max-width:340px;
  height:100%;
  background:#fff;
  z-index:1000;
  transform:translateX(100%);
  transition:transform .3s ease;
  display:flex;
  flex-direction:column;
}
.mobile-drawer.active{ transform:translateX(0); }

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid var(--theme-border);
}
.drawer-head img{ height:32px; }
.drawer-close{
  background:none; border:none;
  font-size:28px; line-height:1;
  color:var(--theme-text);
  cursor:pointer;
}

.drawer-login{ padding:14px 18px; border-bottom:1px solid var(--theme-border); }
.drawer-login-btn{
  display:flex; align-items:center; gap:10px;
  color:var(--theme-blue);
  font-weight:700;
  text-decoration:none;
  font-size:15px;
}

.drawer-menu{
  list-style:none;
  margin:0; padding:8px 0;
  overflow-y:auto;
  flex:1;
}
.drawer-menu > li > a,
.drawer-toggle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 18px;
  color:var(--theme-text);
  font-weight:600;
  font-size:15.5px;
  text-decoration:none;
  border-bottom:1px solid var(--theme-border);
}
.drawer-toggle i{ font-size:12px; transition:.2s; color:var(--theme-muted); }
.drawer-parent.open > .drawer-toggle i{ transform:rotate(180deg); }

.drawer-submenu{
  list-style:none;
  margin:0; padding:0;
  max-height:0;
  overflow:hidden;
  background:#f7f7f7;
  transition:max-height .25s ease;
}
.drawer-submenu li a{
  display:block;
  padding:12px 18px 12px 30px;
  color:var(--theme-muted);
  font-size:14.5px;
  text-decoration:none;
  border-bottom:1px solid var(--theme-border);
}
.drawer-submenu li a:hover{ color:var(--theme-blue); }

.drawer-footer{
  padding:16px 18px;
  border-top:1px solid var(--theme-border);
}
.drawer-book-btn{ width:100%; }

/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 991px){
  .header-main-inner{ height:64px; }
  .site-branding img{ height:58px; }
  .site-branding .site-name{ font-size:19px; }
}

@media (max-width: 575px){
  .mobile-drawer{ width:88%; }
}
/* =========================================================
BLABLACAR-STYLE BOOKING FORM (append to custom.css)
========================================================= */

.bbc-form-section{
  padding:0;
  margin-top: -60px;
}


/* ---- Main tab nav (Outstation / Sharing / Local & Airport) ---- */
.bbc-main-tabs{
  display:flex;
  gap:6px;
  margin-bottom:14px;
  border-bottom:none;
}
.bbc-main-tabs .tab-nav{
  border: none;
  background: #fff;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14.5px;
  color: #000;
  border-radius: 12px;
  cursor: pointer;
  transition: .15s;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}
.bbc-main-tabs .tab-nav:hover{ background:#d8e7ff; color:#0a0a0a; border: 1px solid #b1cfff; }
.bbc-main-tabs .tab-nav.active{
  background:var(--theme-blue, #0066ff);
  color:#fff;
  border-color: var(--theme-blue);
}

/* ---- Sub tab nav (One Way / Round Trip, Local / Airport) ---- */
.bbc-subtabs-nav{
  display:flex;
  gap:4px;
  margin-bottom:12px;
}
.bbc-subtabs-nav .subtab-nav{
  border: none;
  background: #fff;
  padding: 5px 14px;
  font-weight: 600;
  font-size: 11px;
  color: #000;
  border-radius: 10px;
  cursor: pointer;
  transition: .15s;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}
.bbc-subtabs-nav .subtab-nav.active{
  background:var(--theme-blue);
  color:#fff;
}

/* ---- Form row: BlaBlaCar single horizontal bar ---- */
.bbc-form-row{
  display:flex;
  align-items:stretch;
  flex-wrap:wrap;
  border:2px solid var(--theme-blue, #0066ff);
  border-radius:12px;
  overflow:hidden;
  background:#fff;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .16);
}

.bbc-field{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 12px 16px 10px 16px;
  min-width:150px;
  flex:1 1 150px;
}
.bbc-field-grow{
  flex:1.6 1 220px;
}

.bbc-label{
  font-size: 13px;
  font-weight: 700;
  color: #576680;
  text-transform: uppercase;
  letter-spacing: -.3px;
  margin-bottom: 0px;
  line-height: 1;
}

.bbc-input-wrap{
  display:flex;
  align-items:center;
  gap:8px;
}
.bbc-ico{
  color:var(--theme-blue, #0066ff);
  font-size:14px;
  flex-shrink:0;
}

.bbc-input.form-control{
  border: none !important;
  padding: 2px 0 !important;
  font-size: 17.5px;
  font-weight: 600;
  color: #001536;
  background: transparent !important;
  box-shadow: none !important;
  height: auto;
  width: 100%;
  letter-spacing: -0.03em;
}
.select2-container{
  
  border: none !important;
  padding: 2px 0 !important;
  font-size: 17.5px;
  font-weight: 600;
  color: #001536;
  background: transparent !important;
  box-shadow: none !important;
  height: auto;
  width: 100% !important;
  letter-spacing: -0.03em;
}
.select2-container--default .select2-selection--single{
  border: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  
  padding: 0;
  font-weight: 600;
  color: #001536;
}
.bbc-input.form-control:focus{
  outline:none;
  box-shadow:none;
}
.bbc-input.form-control::placeholder{
  color:#6a80a5;
  font-weight:600;
}
.bbc-input.form-control.input__clock{
  padding-inline: 5px !important;
  margin-inline: -5px !important;
}

/* Vertical divider between fields, BlaBlaCar-style */
.bbc-divider{
  width:1px;
  align-self:stretch;
  background:#e5e5e5;
  margin:10px 0;
  flex-shrink:0;
}

/* ---- Search button ---- */
.bbc-submit-wrap{
  display:flex;
  align-items:stretch;
  flex:0 0 auto;
}
.bbc-search-btn{
  border:none;
  background:var(--theme-blue, #0066ff);
  color:#fff;
  font-weight:700;
  font-size:15px;
  padding:0 26px;
  height:100%;
  min-height:56px;
  width:100%;
  border-radius:0;
  cursor:pointer;
  transition:.15s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.bbc-search-btn:hover{
  background:var(--theme-blue-dark, #0050cc);
}

/* ---- Hero section pairing (optional use in index.php) ---- */
.bbc-hero{
  background:#f2f6ff;
  padding:40px 0 30px;
  position: relative;
  z-index: 1;
}
.bbc-hero:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../images/hero_bg.png);
  background-size: contain;
  background-repeat: repeat;
  z-index: -1;
    opacity: 0.1;
}
.bbc-hero-inner{
  display:flex;
  align-items:center;
  gap:40px;
}
.bbc-hero-text{ flex:1; min-width:280px; }
.bbc-hero-text h1{
  font-size: 55px;
  font-weight: 800;
  color: #001536;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  margin-bottom: 8rem;
}
.bbc-hero-image{
  flex:1;
  min-width:280px;
}
.bbc-hero-image img{
  width:100%;
  height:auto;
  border-radius:20px;
  display:block;
  object-fit:cover;
  max-height:380px;
}

/* =========================================================
RESPONSIVE — mobile
========================================================= */
@media (max-width: 991px){
  .bbc-hero-inner{ flex-direction:column; }
  .bbc-hero-text h1{ font-size:30px; }
}

@media (max-width: 767px){
  .bbc-main-tabs{ overflow-x:auto; -webkit-overflow-scrolling:touch; }
  .bbc-main-tabs .tab-nav{ white-space:nowrap; font-size:13px; padding:7px 12px; }
  
  .bbc-form-row{
    flex-wrap: wrap;
  }
  .bbc-field{
    padding:12px 14px;
    border-bottom:1px solid #e5e5e5;
    min-width:100%;
  }
  .bbc-divider{
    display:none;
  }
  .bbc-submit-wrap{
    padding:12px;
  }
  .bbc-search-btn{
    border-radius:10px;
    min-height:48px;
  }
}
/* Force hide inactive tab panes — this was missing/overridden */
.ul-tab.ul-menu-tab{ display:none; }
.ul-tab.ul-menu-tab.active{ display:block; }

.subtabs-content .subtab{ display:none; }
.subtabs-content .subtab.active{ display:block; }

/* Fix icons not showing - ensure Font Awesome font renders inside flex wrap */
.bbc-ico{
  font-family:"Font Awesome 6 Pro","Font Awesome 5 Pro",FontAwesome !important;
  font-weight:900 !important;
  display:inline-block;
}

/* Fix phone number field getting cut off */
.bbc-field{ min-width:170px; }
.bbc-input.form-control{ min-width:0; }
.bbc-tab-ico{
  font-size:24px;
}

.bbc-subtabs-nav .subtab-nav i{
  color: var(--theme-blue);
  font-size: 15px;
}
.bbc-main-tabs .tab-nav i{
  color: var(--theme-blue);
}
.bbc-main-tabs .tab-nav.active i{
  color: #fff;
}
.bbc-subtabs-nav .subtab-nav.active i{
  color: #fff;
}
/* ---- Google Places Autocomplete dropdown styling ---- */
.pac-container{
  border: 1px solid rgba(48, 50, 51, .12);
  border-radius: 14px;
  margin-top: 6px;
  padding: 8px 4px;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, .16);
  font-family: var(--theme-font);
  z-index: 2000 !important;
  min-width: 300px;
  max-width: 500px;
  width: max-content !important;
}

.pac-item{
  display: flex;
  gap: 0 4px;
  border: none;
  border-top: none !important;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 13px;
  color: var(--theme-muted, #6a6a6a);
  cursor: pointer;
  flex-wrap: wrap;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
}
.pac-item:last-child{
  margin-bottom: 0;
}
.pac-item:hover,
.pac-item-selected{
  background:var(--theme-bg-light);
}

.pac-icon{
  margin-right: 0;
  margin-top: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  background: none !important;
}
.pac-icon:after{
  content: "\f105";
  font-family: 'Font Awesome 5 Pro';
  color: var(--theme-muted);
  font-size: 16px;
  font-weight: 600;
}
.pac-item-query{
  display:block;
  font-size:17px;
  font-weight:700;
  color:var(--theme-text, #0a0a0a);
  margin-bottom:2px;
  white-space: normal !important;
  width: 93%;
}
.pac-logo:after{
  display: none !important; 
}
.pac-matched{
  font-weight:700;
  color:var(--theme-text, #0a0a0a);
}

/* the region/state text that comes after pac-item-query */
.pac-item > span:not(.pac-icon):not(.pac-item-query){
  display: block;
  font-size: 16px;
  color: var(--theme-muted, #6a6a6a);
  font-weight: 500;
  width: 96%;
  white-space: normal;
  margin-top: 2px;
  line-height: 1.2;
}

/* hide/soften the "powered by Google" logo row */
.pac-logo:after{
  margin:6px 4px 2px;
  opacity:.5;
  transform:scale(.85);
  transform-origin:right center;
}
/* =========================================================
FOOTER REDESIGN (BlaBlaCar-style)
========================================================= */

/* ---- Blue CTA banner ---- */
.ftr-cta-banner{
  background:var(--theme-blue);
  padding:56px 0;
}
.ftr-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.ftr-cta-text{ flex:1; min-width:280px; }
.ftr-cta-text h2{
  color:#fff;
  font-size:32px;
  font-weight:800;
  margin:0 0 10px;
  letter-spacing:-.5px;
}
.ftr-cta-text p{
  color:rgba(255,255,255,.85);
  font-size:15px;
  margin:0 0 20px;
}
.ftr-cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.ftr-cta-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:14.5px;
  text-decoration:none;
  transition:.15s;
}
.ftr-cta-btn-dark{
  background:#0a0a0a;
  color:#fff;
}
.ftr-cta-btn-dark:hover{ background:#000; color:#fff; }
.ftr-cta-btn-outline{
  background:transparent;
  color:#fff;
  border:1.5px solid #fff;
}
.ftr-cta-btn-outline:hover{ background:#fff; color:var(--theme-blue); }

.ftr-cta-image{
  flex:0 0 auto;
}
.ftr-cta-image img{
  height:64px;
  width:64px;
  object-fit:contain;
  background:#fff;
  border-radius:16px;
  padding:10px;
}

/* ---- Footer link columns (existing structure, refined) ---- */
.ftr-main .bg-footer-color{
  background:var(--theme-bg, #fff);
  padding:48px 0 24px;
}
.ftr-main .widget_title{
  font-size:16px;
  font-weight:800;
  color:var(--theme-text);
  margin-bottom:16px;
}
.ftr-main .menu li a{
  color: var(--theme-muted);
  font-size: 14px;
  text-decoration: none;
  line-height: 2.1;
  display: block;
  font-weight: 600;
}
.ftr-main .menu li a:hover{ color:var(--theme-blue); }
.ftr-main .about-text{
  color: var(--theme-muted);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
}
.ftr-social{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:16px;
}
.ftr-social a{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--theme-bg-light, #e9f2ff);
  color:var(--theme-text);
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.15s;
}
.ftr-social a:hover{ background:var(--theme-text); color:#fff; }

.th-widget-contact .info-box{
  display:flex;
  gap:12px;
  margin-bottom:18px;
}
.th-widget-contact .info-box_icon{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--theme-bg-light, #e9f2ff);
  color:var(--theme-text);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.footer-info-title{
  font-size:13px;
  font-weight:700;
  color:var(--theme-text);
  margin:0 0 2px;
}
.info-box_text{
  font-size: 16px;
  color: var(--theme-muted);
  margin: 0;
  white-space: normal;
  max-width: 300px;
  font-weight: 600;
  line-height: 1.2;
}
.info-box_link{
  color:var(--theme-muted);
  text-decoration:none;
}
.info-box_link:hover{ color:var(--theme-blue); }

/* ---- Popular routes section ---- */
.ftr-routes-section{
  background: #f2f6ff;
  padding:32px 0;
  border-top:1px solid var(--theme-border);
}
.ftr-routes-title{
  font-size:18px;
  font-weight:800;
  color:var(--theme-text);
  margin-bottom:18px;
}
.ftr-routes-block{
  margin-bottom:16px;
}
.ftr-routes-city{
  font-weight:800;
  font-size:14.5px;
  color:var(--theme-text);
  margin-bottom:6px;
}
.ftr-routes-links{
  font-size:13px;
  line-height:1.9;
}
.ftr-routes-links a{
  text-decoration: none;
  color: #576680;
  font-weight: 600;
}
.ftr-routes-links a:hover{ color:var(--theme-blue); }
.ftr-routes-links a:not(:last-child)::after {
  content: "|";
  margin: 0 1px;
  color: #2c3b54;
  font-weight: 800;
  font-size: 10px;
}

/* ---- Bottom bar ---- */
.ftr-bottom-bar{
  background:var(--theme-bg, #fff);
  border-top:1px solid var(--theme-border);
  padding:10px 0;
}
.ftr-bottom-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}
.ftr-copy{
  font-size:13px;
  color:var(--theme-muted);
  margin:0;
}
.ftr-copy a{ color:var(--theme-muted); }
.ftr-bottom-social{
  display:flex;
  gap:14px;
}
.ftr-bottom-social a{
  color:var(--theme-text);
  font-size:16px;
}
.ftr-bottom-social a:hover{ color:var(--theme-blue); }

/* ---- Responsive ---- */
@media (max-width: 767px){
  .ftr-cta-banner{ padding:36px 0; text-align:center; }
  .ftr-cta-inner{ flex-direction:column; text-align:center; }
  .ftr-cta-text h2{ font-size:24px; }
  .ftr-cta-actions{ justify-content:center; }
  .ftr-bottom-inner{ flex-direction:column; text-align:center; }
}

/* =========================================================
QUICK CONTACT POPUP
========================================================= */
.popup_form{
  position:fixed;
  inset:0;
  background:rgba(0,10,30,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:3000;
  padding:20px;
}
.popup_form.active{ display:flex; }

.popup_content{
  position:relative;
  display:flex;
  width:100%;
  max-width:760px;
  max-height:90vh;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.3);
}

.qc-close{
  position:absolute;
  top:16px; right:16px;
  width:38px; height:38px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:var(--theme-text);
  font-size:20px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
  z-index:5;
  transition:.15s;
}
.qc-close:hover{ background:var(--theme-blue); color:#fff; }

/* ---------- Left panel ---------- */
.popup_left{
  flex: 1 1 46%;
  min-width: 280px;
  padding: 44px 36px;
  background-image: url(../images/popup.png);
  background-size: cover;
  background-position: center center;
  background-color: var(--theme-bg-light);
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.popup_left-title{
  font-size:32px;
  font-weight:800;
  color:var(--theme-text);
  line-height:1.2;
  margin:0 0 10px;
}
.popup_left-title span{
  color:var(--theme-blue);
  position:relative;
}
.popup_left-title span::after{
  content:"";
  position:absolute;
  left:0; bottom:-4px;
  width:100%; height:3px;
  background:var(--theme-blue);
  border-radius:3px;
}

.popup_left-sub{
  font-size:15px;
  font-weight:500;
  color:var(--theme-muted);
  margin:0;
}

.popup_features{
  list-style:none;
  margin:0; padding:0;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.popup_features li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:14px;
  color:var(--theme-muted);
}
.popup_features li strong{
  color:var(--theme-text);
  font-size:15px;
  font-weight:700;
}
.pf-ico{
  width:40px; height:40px;
  flex-shrink:0;
  border-radius:50%;
  background:#fff;
  color:var(--theme-blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.popup_stats{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border-radius:16px;
  padding:16px 10px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}
.stat-box{
  flex:1;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:4px;
  border-right:1px solid var(--theme-border);
}
.stat-box:last-child{ border-right:none; }
.stat-num{
  font-size:18px;
  font-weight:800;
  color:var(--theme-text);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
}
.stat-num i{ color:#ffb800; font-size:15px; }
.stat-box:nth-child(2) .stat-num i,
.stat-box:nth-child(3) .stat-num i{ color:var(--theme-blue); }
.stat-label{
  font-size:11.5px;
  font-weight:600;
  color:var(--theme-muted);
}

/* ---------- Right panel (form) ---------- */
.popup_right{
  flex:1 1 54%;
  min-width:300px;
  padding:44px 40px;
  overflow-y:auto;
}

.form-title{
  text-align:center;
  font-size:24px;
  font-weight:800;
  color:var(--theme-text);
  margin-bottom:8px;
  position:relative;
}
.form-title::after{
  content:"• • •";
  display:block;
  text-align:center;
  color:var(--theme-blue);
  font-size:12px;
  letter-spacing:6px;
  margin-top:8px;
}

.quick_contact_form{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.form_group{
  display:flex;
  align-items:center;
  gap:12px;
  border:1.5px solid var(--theme-border);
  border-radius:12px;
  padding:14px 16px;
  transition:.15s;
}
.form_group:focus-within{
  border-color:var(--theme-blue);
  box-shadow:0 0 0 3px rgba(0,102,255,.12);
}
.form_group i{
  color:var(--theme-blue);
  font-size:15px;
  width:18px;
  text-align:center;
  flex-shrink:0;
}
.form_group-textarea{ align-items:flex-start; }
.form_group-textarea i{ margin-top:3px; }

.form_group .form-control{
  border:none;
  outline:none;
  box-shadow:none;
  padding:0;
  font-size:14.5px;
  font-weight:600;
  color:var(--theme-text);
  width:100%;
  background:transparent;
}
.form_group textarea.form-control{
  resize:vertical;
  min-height:70px;
}
.form_group .form-control::placeholder{
  color:#8b98ad;
  font-weight:500;
}

.form_privacy{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  color:var(--theme-muted);
  margin:0;
}
.form_privacy i{ color:var(--theme-blue); }

.popup_submit-btn{
  border:none;
  background:var(--theme-blue);
  color:#fff;
  font-weight:700;
  font-size:15.5px;
  padding:16px;
  border-radius:999px;
  cursor:pointer;
  transition:.15s;
}
.popup_submit-btn span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.popup_submit-btn:hover{ background:var(--theme-blue-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .popup_content{ flex-direction:column; max-height:92vh; overflow-y:auto; }
  .popup_left{ padding:32px 24px; }
  .popup_left-title{ font-size:26px; }
}
@media (max-width: 480px){
  .popup_form{ padding:0; }
  .popup_content{ border-radius:0; max-height:100vh; height:100%; }
  .popup_right{ padding:30px 22px; }
}
.fixed__btns{
  position:fixed;
  z-index:900;
}

.d-md-flex.fixed__btns{
  right: 10px;
  bottom: 20px;
  /* transform: translateY(-50%); */
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 12px 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border: 1px solid #a7caff;
  width: max-content;
}

.float-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  text-decoration:none;
}

.float-ico{
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .2);
  transition: .2s;
}
.float-item:hover .float-ico{ transform:translateY(-3px) scale(1.05); }

.float-ico-telegram{ background:linear-gradient(135deg,#2f8dfd,#0066ff); }
.float-ico-whatsapp{ background:linear-gradient(135deg,#33d97a,#22b85f); }
.float-ico-call{ background:linear-gradient(135deg,#2f8dfd,#0066ff); }
.float-ico-mail{ background:linear-gradient(135deg,#8b7bff,#6a5bff); }

.float-label{
  font-size: 9px;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.2;
}

/* ---------- Mobile bottom bars ---------- */
.d-md-none.fixed__btns{
  left:0; right:0; bottom:0;
  display:flex;
  width:100%;
}

.float-bar{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 45px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.float-bar i{ font-size:17px; }

.float-bar-whatsapp{ background:#25d366; }
.float-bar-call{
  background-color: #6a5bff;
}
.float-bar-book{ background:var(--theme-blue); }

/* ---------- Visibility ---------- */
@media (min-width: 768px){
  .d-md-none.fixed__btns{ display:none !important; }
}
@media (max-width: 767px){
  .d-md-flex.fixed__btns{ display:none !important; }
}

/* =========================================================
LOGIN MODAL
========================================================= */
.login-modal .modal-content{
  display:flex;
  flex-direction:row;
  border:none;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.3);
  max-width:760px;
  margin:0 auto;
}
.login-modal .modal-dialog{
  width: 100%;
  max-width: 600px;
}
/* ---------- Left brand panel ---------- */
.login-modal .modal-left{
  flex:1 1 42%;
  min-width:260px;
  background:linear-gradient(160deg, var(--theme-blue), var(--theme-blue-dark));
  position:relative;
  display:flex;
  align-items:flex-end;
}
.login-modal .modal-left::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url('../images/popup.png');
  background-size:cover;
  background-position:center;
  opacity:.18;
}
.modal-left-overlay{
  position:relative;
  z-index:1;
  padding:36px 30px;
  color:#fff;
}
.modal-left-overlay h3{
  font-size:26px;
  font-weight:800;
  margin:0 0 10px;
}
.modal-left-overlay p{
  font-size:14px;
  color:rgba(255,255,255,.85);
  margin:0;
  line-height:1.5;
}

/* ---------- Right form panel ---------- */
.login-modal .modal-right{
  flex:1 1 58%;
  min-width:280px;
  position:relative;
  padding:44px 38px;
  background:#fff;
}

.modal-close-btn{
  position:absolute;
  top:14px; right:14px;
  width:36px; height:36px;
  border:none;
  border-radius:50%;
  background:var(--theme-bg-light);
  color:var(--theme-text);
  font-size:18px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.15s;
}
.modal-close-btn:hover{ background:var(--theme-blue); color:#fff; }

.modal-right-head{
  text-align:center;
  margin-bottom:26px;
}
.modal-right-head img{
  height:34px;
  margin-bottom:14px;
}
.modal-right-head .modal-title{
  font-size:21px;
  font-weight:800;
  color:var(--theme-text);
  margin:0 0 6px;
}
.modal-subtitle{
  font-size:13.5px;
  color:var(--theme-muted);
  margin:0;
}

.modal-right-body form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.otp-hint{
  font-size:13px;
  color:var(--theme-muted);
  text-align:center;
  margin:0 0 4px;
}

/* shared with popup form_group style */
.modal-right-body .form_group{
  display:flex;
  align-items:center;
  gap:12px;
  border:1.5px solid var(--theme-border);
  border-radius:12px;
  padding:14px 16px;
  transition:.15s;
}
.modal-right-body .form_group:focus-within{
  border-color:var(--theme-blue);
  box-shadow:0 0 0 3px rgba(0,102,255,.12);
}
.modal-right-body .form_group i{
  color:var(--theme-blue);
  font-size:15px;
  width:18px;
  text-align:center;
  flex-shrink:0;
}
.modal-right-body .form_group .form-control{
  border:none;
  outline:none;
  box-shadow:none;
  padding:0;
  font-size:14.5px;
  font-weight:600;
  color:var(--theme-text);
  width:100%;
  background:transparent;
}
.modal-right-body .form_group .form-control::placeholder{
  color:#8b98ad;
  font-weight:500;
}

.modal-submit-btn{
  border:none;
  background:var(--theme-blue);
  color:#fff !important;
  font-weight:700;
  font-size:15.5px;
  padding:15px;
  border-radius:999px;
  cursor:pointer;
  transition:.15s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.modal-submit-btn:hover{ background:var(--theme-blue-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 767px){
  .login-modal .modal-content{ border-radius:16px; }
  .login-modal .modal-right{ padding:36px 24px; }
}

.why__boxes{
    border: 1px solid var(--theme-text);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}
@media(max-width:768px){
  .why__boxes{
    height: auto;
  }
}
.why__boxes .icon{
  
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-bg-light);
  border-radius: 50%;
  font-size: 29px;
  color: var(--theme-text);
    border: 1px solid var(--theme-text);
  margin-bottom: 10px;
}
.why__boxes .title{
  font-size: 23px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--theme-text);
  text-transform: capitalize;
}
.why__boxes p{
  color: #576680;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.tcr-section{
  background:#001536;
}
.tcr-title{
  color:#fff;
  font-size:26px;
  font-weight:800;
  margin-bottom:24px;
  letter-spacing:-.3px;
}
.tcr-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.tcr-item.tcr-extra{
  display:none !important;
}
.tcr-grid.tcr-expanded .tcr-item.tcr-extra{
  display:flex !important;
}
.tcr-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:#fff;
  border-radius:12px;
  padding:16px 20px;
  text-decoration:none;
  color:var(--theme-text, #001536);
  font-weight:700;
  font-size:15px;
  transition:.15s;
}
.tcr-item:hover{
  background:var(--theme-bg-light, #e9f2ff);
  transform:translateY(-2px);
}
.tcr-item span{
  display:flex;
  align-items:center;
  gap:10px;
}
.tcr-item span i{
  font-size:12px;
  color:var(--theme-blue, #0066ff);
}
.tcr-chev{
  color:var(--theme-muted, #6a6a6a);
  font-size:13px;
}

.tcr-toggle-wrap{
  display:flex;
  justify-content:flex-end;
  margin-top:24px;
}
.tcr-toggle-btn{
  background:#fff;
  color:var(--theme-blue, #0066ff);
  border:none;
  border-radius:999px;
  padding:12px 26px;
  font-weight:700;
  font-size:14.5px;
  cursor:pointer;
  transition:.15s;
}
.tcr-toggle-btn:hover{
  background:var(--theme-bg-light, #e9f2ff);
}

/* ---- Responsive ---- */
@media (max-width: 991px){
  .tcr-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 575px){
  .tcr-grid{ grid-template-columns:1fr; }
  .tcr-item{ padding:14px 16px; font-size:14px; }
  .tcr-title{ font-size:21px; }
  .tcr-toggle-wrap{ justify-content:center; }
}
/* =========================================================
NEVER MISS A RIDE (BlaBlaCar style)
========================================================= */
.nmc-section{
  background:var(--theme-bg-light);
  padding:56px 0;
}
.nmc-inner{
  display:flex;
  align-items:center;
  gap:48px;
}
.nmc-image{
  flex:1;
  min-width:280px;
  position:relative;
  border-radius:20px;
  overflow:hidden;
}
.nmc-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}
.nmc-toast{
  position:absolute;
  left:20px;
  bottom:20px;
  background:#fff;
  border-radius:14px;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  max-width:280px;
}
.nmc-toast-ico{
  width:34px; height:34px;
  border-radius:50%;
  background:var(--theme-blue, #0066ff);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  flex-shrink:0;
}
.nmc-toast-text{
  font-size:12.5px;
  font-weight:600;
  color:var(--theme-text, #001536);
  line-height:1.3;
}
.nmc-toast-time{
  font-size:11px;
  color:var(--theme-muted, #6a80a5);
  flex-shrink:0;
  align-self:flex-start;
}

.nmc-text{
  flex:1;
  min-width:280px;
}
.nmc-text h2{
  font-size:36px;
  font-weight:800;
  color:var(--theme-text, #001536);
  letter-spacing:-.5px;
  margin-bottom:16px;
}
.nmc-text p{
  font-size: 17.5px;
  color: #576680;
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.nmc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--theme-blue, #0066ff);
  color:#fff !important;
  padding:14px 28px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  transition:.15s;
}
.nmc-btn:hover{
  background:var(--theme-blue-dark, #0050cc);
}

/* ---- Responsive ---- */
@media (max-width: 991px){
  .nmc-inner{ flex-direction:column; }
  .nmc-text{ text-align:center; }
  .nmc-image img{ height:300px; }
  .nmc-text h2{ font-size:28px; }
}
@media (max-width: 575px){
  .nmc-section{ padding:36px 0; }
  .nmc-toast{ max-width:220px; padding:10px 12px; }
  .nmc-toast-text{ font-size:11.5px; }
}
/* =========================================================
HELP CENTRE FAQ SECTION (BlaBlaCar style)
========================================================= */
.hc-section{
  background:#fff;
  padding:56px 0;
}
.hc-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  color:var(--theme-text, #001536);
  letter-spacing:-.5px;
  margin-bottom:40px;
}
.hc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px 48px;
}
.hc-item{}
.hc-q{
  font-size:19px;
  font-weight:800;
  color:var(--theme-text, #001536);
  margin-bottom:10px;
}
.hc-a{
  font-size:15px;
  color:var(--theme-muted, #576680);
  line-height:1.6;
  margin:0;
}
.hc-a-text{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.hc-item.hc-expanded .hc-a-text{
  display:block;
  -webkit-line-clamp:unset;
  overflow:visible;
}
.hc-read-more{
  display:inline-block;
  margin-top:6px;
  background:none;
  border:none;
  padding:0;
  color:var(--theme-blue, #0066ff);
  font-weight:700;
  font-size:14.5px;
  cursor:pointer;
}
.hc-read-more:hover{
  text-decoration:underline;
}
.hc-item.hc-expanded .hc-read-more{
  display:none;
}

.hc-cta-wrap{
  text-align:center;
  margin-top:44px;
}
.hc-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--theme-blue, #0066ff);
  color:#fff !important;
  padding:14px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  transition:.15s;
}
.hc-cta-btn:hover{
  background:var(--theme-blue-dark, #0050cc);
}

/* ---- Responsive ---- */
@media (max-width: 767px){
  .hc-grid{ grid-template-columns:1fr; gap:28px; }
  .hc-title{ font-size:24px; margin-bottom:28px; }
  .hc-section{ padding:36px 0; }
}


.rt-summary-section {
  background: var(--theme-bg-light, #e9f2ff);
  padding: 10px 0;
}
.rt-summary-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, .1);
  padding: 8px 15px;
  border: 1px solid #ddddddb8;
}
.rt-route-pill {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
}
.rt-route-point {
  display: flex;
  flex-direction: column;
}
.rt-route-point .rt-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--theme-muted, #576680);
  letter-spacing: .3px;
  margin-bottom: 2px;
}
.cab_card_container{
  padding: 14px;
}
.rt-route-point .rt-city {
  font-size: 16px;
  font-weight: 700;
  color: var(--theme-text, #001536);
}
.rt-route-point .rt-time {
  font-size: 12.5px;
  color: var(--theme-muted, #576680);
  font-weight: 500;
}
.rt-route-arrow {
  color: var(--theme-blue, #0066ff);
  font-size: 18px;
}
.rt-modify-btn {
  white-space: nowrap;
}

.rt-cab-card {
  background: #fff;
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .15s, transform .15s;
  margin-bottom: 20px;
}
.rt-cab-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}
.rt-cab-img {
  width: 100%;
  max-width: 150px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0px 14px rgba(0, 0, 0, .2);
  /* padding: 8px 15px; */
  border: 1px solid #a5a5a5b8;
}
.rt-cab-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.2px;
}
.rt-cab-subtitle {
  font-size: 13px;
  color: var(--theme-muted, #576680);
  font-weight: 600;
  margin-bottom: 8px;
}
.rt-cab-meta {
  font-size: 13.5px;
  color: var(--theme-muted, #576680);
  font-weight: 600;
}
.rt-cab-meta i {
  color: var(--theme-blue, #0066ff);
  margin-right: 4px;
}
.rt-price-old {
  font-size: 13px;
  color: #9aa7bd;
  text-decoration: line-through;
  font-weight: 600;
}
.rt-price-final {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.3px;
}
.rt-badge-discount {
  display: inline-block;
  background: #e9fbee;
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.rt-badge-save {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}
.rt-cab-footer {
  border-top: 1px solid var(--theme-border, #e5e5e5);
  background: #fafbfd;
  padding: 4px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.rt-cab-footer a {
  color: var(--theme-blue, #0066ff);
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
}
.rt-policy-box {
  background: #fafbfd;
  border-top: 1px dashed var(--theme-border, #e5e5e5);
}
.rt-policy-box ul {
  list-style: none;
  margin: 0;
  padding: 5px 15px;
}
.rt-policy-box ul li {
  font-size: 13.5px;
  color: var(--theme-muted, #576680);
  font-weight: 600;
  padding: 4px 0;
}
.rt-policy-box ul li i {
  color: var(--theme-blue, #0066ff);
  width: 18px;
}
.rt-select-btn {
  border-radius: 999px;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 14.5px;
}

@media (max-width: 767px) {
  .rt-summary-card { padding: 16px 18px; }
  .rt-price-final { font-size: 20px; }
  .rt-cab-title { font-size: 16px; }
}

/* ===================== Modify Trip Modal ===================== */
#myModal .modal-content {
  padding: 8px;
}
#myModal .modal-header {
  padding: 16px 20px 8px;
}
#myModal .form-heading {
  font-size: 22px;
  color: var(--theme-text, #001536);
}
#myModal .modal-body {
  padding: 12px 20px 20px;
}
#myModal .form-label {
  font-size: 14px;
  color: var(--theme-text);
  margin-bottom: 6px;
  line-height: 0;
  font-weight: 600;
}
#myModal .form-control,
#myModal select.form-control {
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--theme-text, #001536);
  border: 1.5px solid var(--theme-border, #e5e5e5);
  padding: 10px 16px;
}
#myModal .form-control:focus,
#myModal select.form-control:focus {
  border-color: var(--theme-blue, #0066ff);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, .12);
}
#myModal .exchange {
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-bg-light, #e9f2ff);
  border-radius: 50%;
  color: var(--theme-blue, #0066ff);
  font-size: 13px;
}
#myModal .exchange i:hover {
  transform: scale(1.1);
}
#myModal .modal-footer {
  padding: 4px 20px 20px;
}
#myModal .modal-footer input[type="submit"] {
  width: 100%;
  max-width: 280px;
  height: 52px;
  font-size: 16px;
}

/* Full height/width on phones */
@media (max-width: 575.98px) {
  #myModal.modal.fade .modal-dialog {
    margin: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    height: 100dvh;
  }
  #myModal .modal-content {
    height: 100%;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  #myModal .modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--theme-border, #e5e5e5) !important;
  }
  #myModal .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }
  #myModal .form-control,
  #myModal select.form-control {
    height: 52px;
    font-size: 16px;
  }
  #myModal .modal-footer {
    border-top: 1px solid var(--theme-border, #e5e5e5);
    padding: 14px 20px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }
  #myModal .modal-footer input[type="submit"] {
    max-width: 100%;
  }
}
/* =========================================================
LOCAL PAGE — package type pills (add to custom.css)
Matches rt-* card styling used in round-trip-route.php / taxi_route.php
========================================================= */
.rt-local-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 18px 0 6px;
  justify-content: center;
}

.rt-local-pills > li > a.local1 {
  border: 1.5px solid var(--theme-blue, #0066ff);
  color: var(--theme-blue, #0066ff);
  border-radius: 999px;
  font-weight: 700;
  padding: 10px 18px;
  display: block;
  text-decoration: none;
  transition: .15s;
}

.rt-local-pills > li > a.local1:hover,
.rt-local-pills > li > a.local1:focus,
.rt-local-pills > li > a.local1.active {
  background: var(--theme-blue, #0066ff) !important;
  color: #ffffff !important;
}

@media only screen and (max-width: 600px) {
  .rt-local-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  
  .rt-local-pills > li > a.local1 {
    padding: 8px 14px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
  }
}

/* =========================================================
REVIEW BOOKING PAGES
(local-booking.php, one-way-booking.php, round-way-booking.php,
airport-booking.php, sharing-cab-booking.php)
========================================================= */

.review-breadcrumb {
  background: var(--theme-text);
  padding: 10px 0;
}
.review-breadcrumb .breadcrumb__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.review-breadcrumb .breadcrumb__links a {
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.review-breadcrumb .breadcrumb__links a:hover { color: #fff; }
.review-breadcrumb .breadcrumb__links span {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.review-breadcrumb .breadcrumb__links span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255,255,255,.6);
}
.review-breadcrumb h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin: 0;
}

.review-area {
  background: #f7f9fc;
  padding-top: 32px;
  padding-bottom: 48px;
}

.review-area .card {
  background: #fff;
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
  overflow: hidden;
}

/* ---- Trip summary card ---- */
.trip-header {
  background: var(--theme-bg-light, #e9f2ff);
  padding: 16px 18px;
  border-bottom: 1px solid var(--theme-border, #e5e5e5);
}
.trip-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  margin-bottom: 4px;
}
.trip-header p {
  font-size: 15px;
  font-weight: 700;
  color: var(--theme-text, #001536);
  margin-bottom: 2px;
}
.trip-header small {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--theme-muted, #576680) !important;
}

.cardImg img {
  height: 62px;
  width: 90px;
  object-fit: contain;
}

.review-area .card .p-3 h6 {
  font-size: 17px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  margin-bottom: 4px;
}
.text-muted-small {
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-muted, #576680);
}

/* ---- Inclusions / Cancellation blocks ---- */
.inclusions,
.cancel-policy {
  background: #fff;
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.inclusions h6,
.cancel-policy h6 {
  font-size: 15px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  margin-bottom: 10px;
}
.inclusions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.inclusions ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-muted, #576680);
  margin-bottom: 8px;
  line-height: 1.4;
}
.inclusions ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: var(--theme-blue, #0066ff);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 12px;
}
.cancel-policy p {
  font-size: 13.5px;
  color: var(--theme-muted, #576680);
  font-weight: 500;
}
.cancel-policy a {
  color: var(--theme-blue, #0066ff);
  font-weight: 700;
  text-decoration: none;
}
.cancel-policy a:hover { text-decoration: underline; }

/* ---- Traveller details card ---- */
.traveller_details {
  padding: 20px 22px;
  margin-bottom: 16px;
}
.traveller_details .trip-title {
  margin-bottom: 16px;
}
.traveller_details label {
  font-size: 12px;
  font-weight: 700;
  color: var(--theme-muted, #576680);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 6px;
  display: block;
}
.traveller_details .form-group {
  margin-bottom: 18px;
}
.traveller_details .form-control {
  height: 50px;
  border: 1.5px solid var(--theme-border, #e5e5e5);
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--theme-text, #001536);
  padding: 10px 14px;
}
.traveller_details .form-control:focus {
  border-color: var(--theme-blue, #0066ff);
  box-shadow: 0 0 0 3px rgba(0,102,255,.12);
  outline: none;
}
.traveller_details .form-control::placeholder {
  color: #9aa7bd;
  font-weight: 500;
}
.traveller_contact_details .col {
  min-width: 200px;
  flex: 1 1 200px;
}

.footerText {
  font-size: 12.5px;
  color: var(--theme-muted, #576680);
  font-weight: 500;
  line-height: 1.6;
  padding: 0 4px;
}
.footerText a {
  color: var(--theme-blue, #0066ff);
  font-weight: 700;
  text-decoration: none;
}
.footerText a:hover { text-decoration: underline; }

/* ---- Payment sidebar ---- */
.right_card {
  padding: 18px;
  position: sticky;
  top: 90px;
}
.right_card .alert-warning {
  background: #fff8e6;
  border: 1px solid #ffe4a3;
  color: #8a6100;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 14px;
  margin-bottom: 18px;
}

.payment-box h6 {
  font-size: 15px;
  font-weight: 800;
  color: var(--theme-text, #001536);
}

.Payment_List {
  list-style: none;
  margin: 0;
  padding: 0;
}
.Payment_List li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--theme-border, #e5e5e5);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: .15s;
}
.Payment_List li:has(input:checked) {
  border-color: var(--theme-blue, #0066ff);
  background: var(--theme-bg-light, #e9f2ff);
}
.Payment_List li input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--theme-blue, #0066ff);
  margin: 0;
  flex-shrink: 0;
}
.Payment_List li label {
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-text, #001536);
  margin: 0;
  cursor: pointer;
  flex: 1;
}
.Payment_List li .fr {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  margin-left: auto;
}

.pay-btn {
  width: 100%;
  background: var(--theme-blue, #0066ff);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 15px;
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  transition: .15s;
}
.pay-btn:hover { background: var(--theme-blue-dark, #0050cc); }

.fare-toggle {
  text-align: center;
  color: var(--theme-blue, #0066ff);
  font-weight: 700;
  font-size: 13.5px;
  margin-top: 14px;
  cursor: pointer;
  user-select: none;
}
.fare-toggle:hover { text-decoration: underline; }

.fare-breakup {
  background: var(--theme-bg-light, #e9f2ff);
  border-radius: 12px;
  padding: 14px 16px;
}
.fareList {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--theme-muted, #576680);
  padding: 4px 0;
}
.TotalFare {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  border-top: 1px dashed var(--theme-border, #e5e5e5);
  margin-top: 8px;
  padding-top: 8px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .right_card { position: static; margin-top: 20px; }
}
@media (max-width: 767px) {
  .review-breadcrumb { padding: 24px 0; }
  .review-breadcrumb h2 { font-size: 21px; }
  .review-area { padding-top: 20px; }
  .traveller_details,
  .inclusions,
  .cancel-policy { padding: 16px; }
  .cardImg img { height: 48px; width: 70px; }
}
/* =========================================================
BREADCRUMB HERO (contact.jpg, etc.)
========================================================= */
.breadcrumb-option {
  padding: 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.breadcrumb-option .breadcrumb__text {
  text-align: center;
}

.breadcrumb-option .breadcrumb__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.breadcrumb-option .breadcrumb__links a {
  color: rgba(255, 255, 255, .8);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: .15s;
}

.breadcrumb-option .breadcrumb__links a:hover {
  color: #fff;
}

.breadcrumb-option .breadcrumb__links span {
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
}

.breadcrumb-option .breadcrumb__links span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, .55);
  font-weight: 400;
}

.breadcrumb-option .breadcrumb__text h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .breadcrumb-option {
    padding: 46px 0;
  }
  .breadcrumb-option .breadcrumb__text h2 {
    font-size: 26px;
  }
  .breadcrumb-option .breadcrumb__links a,
  .breadcrumb-option .breadcrumb__links span {
    font-size: 13px;
  }
}
/* =========================================================
ABOUT US SECTION (redesigned)
========================================================= */
.abt-section{
  background:#fff;
  overflow:hidden;
}

/* ---- Left media ---- */
.abt-media{
  position:relative;
  padding: 10px 0 30px 30px;
}
.abt-media-shape{
  position:absolute;
  top:0; left:0;
  width:88%;
  height:88%;
  background:var(--theme-bg-light, #e9f2ff);
  border-radius:24px;
  z-index:0;
}
.abt-media-img{
  position:relative;
  z-index:1;
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 24px 50px rgba(0,21,54,.14);
  display:block;
}
.abt-float-card{
  position:absolute;
  z-index:2;
  left:0;
  bottom:0;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  padding:16px 22px;
  border-radius:16px;
  box-shadow:0 16px 40px rgba(0,0,0,.14);
}
.abt-float-ico{
  width:48px; height:48px;
  border-radius:50%;
  background:var(--theme-blue, #0066ff);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  flex-shrink:0;
}
.abt-float-text h6{
  font-size:19px;
  font-weight:800;
  color:var(--theme-text, #001536);
  margin:0;
  line-height:1.2;
}
.abt-float-text p{
  font-size:12.5px;
  font-weight:600;
  color:var(--theme-muted, #576680);
  margin:0;
}

/* ---- Right content ---- */
.abt-subtitle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--theme-bg-light, #e9f2ff);
  color:var(--theme-blue, #0066ff);
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:8px 16px;
  border-radius:999px;
  margin-bottom:16px;
}

.abt-title{
  font-size:36px;
  font-weight:800;
  color:var(--theme-text, #001536);
  letter-spacing:-.5px;
  line-height:1.25;
  margin-bottom:16px;
}
.abt-title span{
  color:var(--theme-blue, #0066ff);
  position:relative;
}

.abt-desc{
  font-size:15.5px;
  color:var(--theme-muted, #576680);
  font-weight:500;
  line-height:1.7;
  margin-bottom:28px;
}

/* ---- Feature list ---- */
.abt-features{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:30px;
}
.abt-feature-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}
.abt-feature-ico{
  width:46px; height:46px;
  flex-shrink:0;
  border-radius:14px;
  background:var(--theme-bg-light, #e9f2ff);
  color:var(--theme-blue, #0066ff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.abt-feature-text h5{
  font-size:16px;
  font-weight:700;
  color:var(--theme-text, #001536);
  margin:0 0 4px;
}
.abt-feature-text p{
  font-size:13.5px;
  color:var(--theme-muted, #576680);
  font-weight:500;
  margin:0;
  line-height:1.5;
}

/* ---- Bottom row: stat + CTA ---- */
.abt-bottom-row{
  display:flex;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  padding-top:24px;
  border-top:1px solid var(--theme-border, #e5e5e5);
}
.abt-stat h4{
  font-size:32px;
  font-weight:800;
  color:var(--theme-text, #001536);
  margin:0;
  letter-spacing:-.5px;
}
.abt-stat h4 span{
  color:var(--theme-blue, #0066ff);
}
.abt-stat p{
  font-size:13px;
  font-weight:600;
  color:var(--theme-muted, #576680);
  margin:0;
}

.abt-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--theme-blue, #0066ff);
  color:#fff !important;
  font-weight:700;
  font-size:15px;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  transition:.15s;
  margin-left:auto;
}
.abt-cta i{
  font-size:13px;
  transition:.15s;
}
.abt-cta:hover{
  background:var(--theme-blue-dark, #0050cc);
}
.abt-cta:hover i{
  transform:translateX(4px);
}

/* ---- Responsive ---- */
@media (max-width: 991px){
  .abt-media{ padding:10px 0 24px 0; }
  .abt-media-shape{ width:100%; }
  .abt-media-img{ height:320px; }
  .abt-title{ font-size:28px; }
  .abt-bottom-row{ justify-content:center; text-align:center; }
  .abt-cta{ margin-left:0; width:100%; justify-content:center; }
}

@media (max-width: 575px){
  .abt-float-card{ padding:12px 16px; gap:10px; }
  .abt-float-ico{ width:38px; height:38px; font-size:15px; }
  .abt-float-text h6{ font-size:16px; }
  .abt-title{ font-size:23px; }
  .abt-desc{ font-size:14px; }
  .abt-feature-ico{ width:40px; height:40px; font-size:15px; border-radius:12px; }
  .abt-feature-text h5{ font-size:15px; }
  .abt-stat h4{ font-size:26px; }
}
/* =========================================================
CONTENT SECTIONS (SEO text block)
========================================================= */
.content_sections {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}

.content_sections .h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.3px;
}

.content_sections .h3.text-center {
  font-size: 26px;
  margin-bottom: 20px;
}

.content_sections p {
  font-size: 15px;
  color: var(--theme-muted, #576680);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 16px;
}

.content_sections p strong {
  color: var(--theme-text, #001536);
  font-weight: 700;
}

.content_sections ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}

.content_sections ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--theme-muted, #576680);
  line-height: 1.6;
  border-bottom: 1px dashed var(--theme-border, #e5e5e5);
}

.content_sections ul li:last-child {
  border-bottom: none;
}

.content_sections ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: var(--theme-blue, #0066ff);
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 12px;
}

.content_sections ul li strong {
  color: var(--theme-text, #001536);
  font-weight: 700;
}

.content_sections .btn-theme.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-blue, #0066ff);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: .15s;
}

.content_sections .btn-theme.btn-lg:hover {
  background: var(--theme-blue-dark, #0050cc);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .content_sections {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .content_sections .h3 {
    font-size: 19px;
  }
  .content_sections .h3.text-center {
    font-size: 21px;
  }
  .content_sections p,
  .content_sections ul li {
    font-size: 13.5px;
  }
}

/* =========================================================
SERVICE DETAIL PAGE — main section + content
========================================================= */
.single-section.small-section.bg-inner {
  background: #f7f9fc;
  padding: 48px 0;
}

.single-service-details {
  background: #fff;
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 20px;
  padding: 32px 36px 40px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.single-service-details img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 26px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .1);
}

.single-service-details h1.h3,
.single-service-details h2.h3,
.single-service-details div.h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.3px;
  margin: 34px 0 14px;
  padding-top: 6px;
  border-top: 1px dashed var(--theme-border, #e5e5e5);
}

.single-service-details h1.h3:first-of-type,
.single-service-details > div.h3:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.single-service-details h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.2px;
  margin: 28px 0 12px;
}

.single-service-details h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  margin: 22px 0 10px;
}

.single-service-details p {
  font-size: 15px;
  color: var(--theme-muted, #576680);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 14px;
}

.single-service-details p strong,
.single-service-details p Strong {
  color: var(--theme-text, #001536);
  font-weight: 700;
}

.single-service-details ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.single-service-details ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--theme-muted, #576680);
  line-height: 1.6;
  border-bottom: 1px dashed var(--theme-border, #e5e5e5);
}

.single-service-details ul li:last-child {
  border-bottom: none;
}

.single-service-details ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: var(--theme-blue, #0066ff);
  position: absolute;
  left: 0;
  top: 9px;
  font-size: 12px;
}

.single-service-details ul li strong {
  color: var(--theme-text, #001536);
  font-weight: 700;
}

.single-service-details a:not(.btn-theme) {
  color: var(--theme-blue, #0066ff);
  font-weight: 700;
  text-decoration: none;
}

.single-service-details a:not(.btn-theme):hover {
  text-decoration: underline;
}

.single-service-details .btn-theme.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-blue, #0066ff);
  color: #fff !important;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: 999px;
  text-decoration: none;
  transition: .15s;
}

.single-service-details .btn-theme.btn-lg:hover {
  background: var(--theme-blue-dark, #0050cc);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .single-section.small-section.bg-inner {
    padding: 28px 0;
  }
  .single-service-details {
    padding: 20px 18px 26px;
    border-radius: 16px;
  }
  .single-service-details img {
    height: 200px;
    margin-bottom: 18px;
  }
  .single-service-details h1.h3,
  .single-service-details h2.h3,
  .single-service-details div.h3 {
    font-size: 19px;
    margin: 24px 0 10px;
  }
  .single-service-details h3 {
    font-size: 16.5px;
  }
  .single-service-details p,
  .single-service-details ul li {
    font-size: 13.5px;
  }
}

/* =========================================================
SIDEBAR (services_sidelist.php / rishikesh_sidelist.php / delhi_sidelist.php)
========================================================= */
.common-booking-form {
  margin-bottom: 24px;
}

.sidebar-item {
  background: #fff;
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 16px;
  padding: 22px 22px 10px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.sidebar-item h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.2px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--theme-bg-light, #e9f2ff);
}

.sidebar-category {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 340px;
  overflow-y: auto;
}

.sidebar-category::-webkit-scrollbar {
  width: 5px;
}
.sidebar-category::-webkit-scrollbar-thumb {
  background: var(--theme-bg-light, #e9f2ff);
  border-radius: 10px;
}

.sidebar-category li {
  border-bottom: 1px dashed var(--theme-border, #e5e5e5);
}

.sidebar-category li:last-child {
  border-bottom: none;
}

.sidebar-category li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 4px 11px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-muted, #576680);
  text-decoration: none;
  transition: .15s;
}

.sidebar-category li a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: var(--theme-blue, #0066ff);
  position: absolute;
  left: 0;
  font-size: 12px;
}

.sidebar-category li a:hover {
  color: var(--theme-blue, #0066ff);
  padding-left: 22px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .sidebar-item {
    padding: 18px 18px 8px;
  }
}


.common-booking-form .bbc-form-section{
  margin-top: 0;
}


.common-booking-form .bbc-field-grow, .common-booking-form .bbc-field{
  flex: none;
}
.common-booking-form .bbc-field{
  min-width: 1px;
  width: 100%;
  padding: 12px 14px 10px 14px;
}

.common-booking-form  .bbc-field.resp__half{
  width: calc(50% - 1px);
  min-width: 1px;
}

.common-booking-form    .bbc-field {
  padding: 12px 14px;
  border-bottom: 1px solid #e5e5e5;
}
.common-booking-form .bbc-form-row{
  gap: 0;
}
.common-booking-form .bbc-divider{
  display: none;
}
.common-booking-form  .bbc-divider.cloc__divider{
  display: block;
}
.common-booking-form     .bbc-submit-wrap {
  padding: 12px;
}
.common-booking-form     .bbc-search-btn {
  border-radius: 10px;
  min-height: 48px;
}
/* =========================================================
CONTACT SECTION V2
========================================================= */
.rs-contact-v2 {
  background: #f7f9fc;
}

/* ---- Header ---- */
.cv2-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-bg-light, #e9f2ff);
  color: var(--theme-blue, #0066ff);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.cv2-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  letter-spacing: -.5px;
  margin: 0 0 10px;
}

.cv2-subtitle {
  font-size: 15.5px;
  color: var(--theme-muted, #576680);
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Info cards ---- */
.cv2-info-card {
  background: #fff;
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: .2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}

.cv2-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .1);
}

.cv2-info-ico {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--theme-blue, #0066ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.cv2-info-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--theme-text, #001536);
  margin-bottom: 6px;
}

.cv2-info-card a {
  color: var(--theme-muted, #576680);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
}
.cv2-info-card a:hover {
  color: var(--theme-blue, #0066ff);
}

.cv2-info-card p {
  color: var(--theme-muted, #576680);
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

/* ---- Form + Map panel ---- */
.cv2-panel {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 21, 54, .12);
}

.cv2-form-side {
  background: linear-gradient(150deg, var(--theme-blue, #0066ff), var(--theme-blue-dark, #0050cc));
  padding: 48px 42px;
  height: 100%;
}

.cv2-form-tag {
  display: inline-block;
  color: rgba(255, 255, 255, .8);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.cv2-form-title {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.3px;
  margin-bottom: 26px;
}

.cv2-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .25);
  border-radius: 12px;
  padding: 14px 16px;
  transition: .15s;
}

.cv2-field:focus-within {
  border-color: #fff;
  background: rgba(255, 255, 255, .18);
}

.cv2-field i {
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.cv2-field input,
.cv2-field textarea {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}

.cv2-field input::placeholder,
.cv2-field textarea::placeholder {
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.cv2-field-textarea {
  align-items: flex-start;
}
.cv2-field-textarea i {
  margin-top: 3px;
}
.cv2-field-textarea textarea {
  resize: vertical;
  min-height: 90px;
}

.cv2-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: var(--theme-blue, #0066ff) !important;
  border: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 34px;
  border-radius: 999px;
  cursor: pointer;
  transition: .15s;
  margin-top: 6px;
}

.cv2-submit-btn:hover {
  background: var(--theme-text, #001536);
  color: #fff !important;
}

.cv2-submit-btn i {
  font-size: 13px;
  transition: .15s;
}
.cv2-submit-btn:hover i {
  transform: translateX(4px);
}

/* ---- Map side ---- */
.cv2-map-side {
  position: relative;
  height: 100%;
  min-height: 420px;
}

.cv2-map-side iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: grayscale(15%);
}

.cv2-map-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--theme-text, #001536);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.cv2-map-badge i {
  color: var(--theme-blue, #0066ff);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .cv2-title { font-size: 27px; }
  .cv2-form-side { padding: 36px 26px; }
  .cv2-map-side, .cv2-map-side iframe { min-height: 320px; }
}

@media (max-width: 767px) {
  .rs-contact-v2 { padding: 36px 0; }
  .cv2-info-card { padding: 22px 16px; }
  .cv2-form-side { padding: 30px 20px; }
  .cv2-form-title { font-size: 21px; }
  .cv2-panel { border-radius: 18px; }
}
/* =========================================================
BOOKING PAGE FORM
========================================================= */
.booking-page {
  background: #f7f9fc;
}

.booking-page .card {
  border: 1px solid var(--theme-border, #e5e5e5);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 21, 54, .1);
  overflow: hidden;
}

.booking-page .form-title {
  background: linear-gradient(135deg, var(--theme-blue, #0066ff), var(--theme-blue-dark, #0050cc));
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.3px;
  padding: 24px 20px;
  margin: 0;
}

.booking-page .card-body {
  padding: 30px 28px;
}

.booking-page label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--theme-muted, #576680);
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 6px;
  display: block;
}

.booking-page .form-group {
  position: relative;
  margin-bottom: 20px;
}

.booking-page .form-group > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-blue, #0066ff);
  font-size: 14px;
  pointer-events: none;
}

.booking-page .form-control,
.booking-page select.form-control,
.booking-page .form-select {
  height: 52px;
  border: 1.5px solid var(--theme-border, #e5e5e5);
  border-radius: 10px;
  padding: 10px 16px 10px 42px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--theme-text, #001536);
  background: #fff;
  transition: .15s;
}

.booking-page textarea.form-control {
  height: auto;
  padding: 14px 16px 14px 42px;
  resize: vertical;
}

.booking-page .form-control:focus,
.booking-page select.form-control:focus,
.booking-page .form-select:focus {
  border-color: var(--theme-blue, #0066ff);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, .12);
  outline: none;
}

.booking-page .form-control::placeholder {
  color: #9aa7bd;
  font-weight: 500;
}

.booking-page select.form-control,
.booking-page .form-select {
  padding-left: 42px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23576680' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.booking-page .btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--theme-blue, #0066ff);
  color: #fff !important;
  font-weight: 700;
  font-size: 15.5px;
  text-transform: capitalize;
  padding: 15px 44px;
  border-radius: 999px;
  transition: .15s;
  cursor: pointer;
}

.booking-page .btn-theme:hover {
  background: var(--theme-blue-dark, #0050cc);
  transform: translateY(-2px);
}

.booking-page .col-lg-6 > img,
.booking-page .col-lg-6.d-none img {
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 21, 54, .14);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .booking-page .card-body {
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  .booking-page {
    padding: 30px 0;
  }
  .booking-page .form-title {
    font-size: 19px;
    padding: 20px 16px;
  }
  .booking-page .card {
    border-radius: 16px;
  }
}
/* =========================================================
FAQ SECTION V2 (faqx-*)
========================================================= */
.faqx-section{
  background:#f7f9fc;
  padding:64px 0;
}

.faqx-head{
  text-align:center;
  max-width:560px;
  margin:0 auto 40px;
}
.faqx-tag{
  display:inline-flex;
  align-items:center;
  background:var(--theme-bg-light, #e9f2ff);
  color:var(--theme-blue, #0066ff);
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  padding:7px 16px;
  border-radius:999px;
  margin-bottom:14px;
}
.faqx-title{
  font-size:32px;
  font-weight:800;
  color:var(--theme-text, #001536);
  letter-spacing:-.5px;
  margin:0 0 10px;
}
.faqx-sub{
  font-size:15px;
  color:var(--theme-muted, #576680);
  font-weight:500;
  margin:0;
}

.faqx-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 22px;
  align-items:start;   /* 👈 add this line */
}
.faqx-card{
  background:#fff;
  border:1px solid var(--theme-border, #e5e5e5);
  border-radius:16px;
  overflow:hidden;
  transition:.15s;
}
.faqx-card:hover{
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.faqx-card-head{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:none;
  border:none;
  padding:20px 22px;
  text-align:left;
  cursor:pointer;
}
.faqx-q{
  font-size:16.5px;
  font-weight:700;
  color:var(--theme-text, #001536);
  letter-spacing:-.2px;
}
.faqx-toggle{
  flex-shrink:0;
  width:32px; height:32px;
  border-radius:50%;
  background:var(--theme-bg-light, #e9f2ff);
  color:var(--theme-blue, #0066ff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  transition:.2s;
}
.faqx-card.faqx-open .faqx-toggle{
  background:var(--theme-blue, #0066ff);
  color:#fff;
  transform:rotate(135deg);
}

.faqx-card-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faqx-a{
  font-size:14.5px;
  color:var(--theme-muted, #576680);
  line-height:1.65;
  font-weight:500;
  margin:0;
  padding:0 22px 20px;
}

.faqx-cta-wrap{
  text-align:center;
  margin-top:40px;
}
.faqx-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--theme-blue, #0066ff);
  color:#fff !important;
  padding:14px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  transition:.15s;
}
.faqx-cta-btn:hover{
  background:var(--theme-blue-dark, #0050cc);
}

/* ---- Responsive ---- */
@media (max-width:767px){
  .faqx-grid{ grid-template-columns:1fr; gap:14px; }
  .faqx-title{ font-size:24px; }
  .faqx-section{ padding:40px 0; }
  .faqx-card-head{ padding:16px 18px; }
  .faqx-q{ font-size:15px; }
  .faqx-a{ padding:0 18px 18px; }
}
@media(max-width:768px) {
  body{
    
    overflow-x: hidden;
    overflow-y: auto;
  }
  .bbc-hero-text h1{
    margin-bottom: 0;
  }
  .bbc-hero-text h1 br{
    display: none;
  }
  .bbc-hero-image{
    display: none;
  }
  .header-main-inner{
    justify-content: space-between;
  }
  .bbc-form-section{
    margin-top: 20px;
  }
  .search-panel{
    display: none;
  }
  .bbc-field-grow, .bbc-field{
    flex: none;
  }
  .bbc-field{
    min-width: 1px;
    width: 100%;
    padding: 12px 14px 10px 14px;
  }
  
  .bbc-field.resp__half{
    width: calc(50% - 1px);
    min-width: 1px;
  }
  .bbc-divider.cloc__divider{
    display: block;
  }
  .popup_left{
    display: none;
  }
  .bbc-hero{
    padding: 20px 0;
  }
  .why__boxes{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
  }
  .why__boxes .title{
    
    font-size: 17px;
  }
  .why__boxes .icon{
    
    width: 45px;
    min-width: 45px;
    height: 45px;
    font-size: 23px;
  }
  .ftr-bottom-bar{
    padding-bottom: 60px;
  }
  .ftr-social{
    margin-bottom: 20px;
    justify-content: start;
  }
  .login-modal .modal-content{
    max-width: 95%;
  }
  .modal.show .modal-dialog{
    margin: 0;
  }
  .login-modal{
    padding:0 !important;
  }
  .login-modal .modal-dialog{
    max-width:100%;
    width:100%;
    height:100%;
    margin:0;
  }
  .login-modal .modal-content{
    max-width:100%;
    width:100%;
    height:100%;
    border-radius:0;
    display:flex;
    flex-direction:column;
  }
  .login-modal .modal-left{
    display:none;
  }
  .login-modal .modal-right{
    flex:1;
    width:100%;
    height:100%;
    overflow-y:auto;
    padding:32px 22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .modal-close-btn{
    top:16px;
    right:16px;
  }
  .pac-container{
    width: auto !important;
    max-width: 306px !important;
  }
  .pay-btn{
    border-radius: 10px 10px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    right: 0;
  }
  .single-section .col-lg-4{
    order: -1;
  }
      .rt-cab-card .p-3{
        padding: 7px !important;
    }
    .rt-cab-card .row{
    --bs-gutter-y: 5px;
    --bs-gutter-x: 5px;
    }
    .rt-cab-title{
      
        font-size: 12px;
        line-height: 1.2;
    }
    .rt-cab-meta{
      font-size: 9px;
    }
    .rt-cab-footer a{
      font-size: 12.5px;
    }
    .rt-select-btn{
    padding: 6px 20px;
    font-size: 12.5px;
    }
}