:root{
  --ink:#051329;
  --ink-soft:#0b2240;
  --saffron:#ff4f00;
  --saffron-deep:#ef4323;
  --gold:#ffc107;
  --ivory:#f4f6f9;
  --cream:#eaf5ff;
  --teal:#008cff; /* Blue active highlights */
  --paper:#FFFFFF;
  --line:#e0e0e0;
  --text:#1c1c1c;
  --text-soft:#4a4a4a;
  --text-faint:#9b9b9b;
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 3px 15px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.18);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--ivory);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.serif{font-family:'Fraunces',serif;}
img{display:block;max-width:100%;height:auto;}
a{text-decoration:none;color:inherit;}
button{font-family:inherit;}

/* ===== reduced motion ===== */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

/* ===== focus visibility ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline:3px solid var(--teal); outline-offset:2px; border-radius:6px;
}

/* ===================== TOPBAR / NAVBAR ===================== */
header.nav{
  position:sticky; top:0; z-index:300;
  background:#ffffff;
  border-bottom:1px solid var(--line);
  height:64px;
}
.nav-inner{
  max-width:1240px; margin:0 auto; padding:0 24px;
  height:100%; display:flex; align-items:center; justify-content:space-between;
}
.logo-wrap{display:flex; align-items:center; gap:8px; cursor:pointer;}
.logo-circle{
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg, var(--teal), var(--saffron));
  color:#fff; font-weight:900; font-size:20px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 8px rgba(0,140,255,0.3);
}
.logo-word{line-height:1; display:flex; flex-direction:column;}
.logo-word .a1{font-weight:900; font-size:20px; color:var(--ink); letter-spacing:-0.5px;}
.logo-word .a2{font-size:8px; font-weight:700; color:var(--text-faint); letter-spacing:1.5px; text-transform:uppercase; margin-top:2px;}

.nav-right{
  display:flex; align-items:center; gap:16px;
}
.btn-my-trips{
  background:transparent; border:none; color:var(--text-soft); font-weight:600; font-size:13.5px;
  cursor:pointer; padding:8px 12px; border-radius:6px; transition:.15s;
}
.btn-my-trips:hover{ background:#f5f5f5; color:var(--teal); }

.btn-login-mmt{
  background:linear-gradient(93deg, #008cff, #005cbb);
  color:#fff; border:none; border-radius:6px; padding:8px 16px;
  font-weight:700; font-size:12px; cursor:pointer;
  display:flex; align-items:center; gap:8px;
  box-shadow:0 2px 8px rgba(0,140,255,0.25);
  transition:transform .15s;
}
.btn-login-mmt:hover{ transform:translateY(-1px); box-shadow:0 3px 12px rgba(0,140,255,0.35); }
.btn-login-mmt .login-user-icon{ font-size:14px; }

/* ===================== LOGIN MODAL ===================== */
.modal-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:5000;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(4px);
}
.login-modal-card{
  background:#fff; border-radius:12px; width:680px; max-width:90%;
  display:grid; grid-template-columns: 2fr 3fr; overflow:hidden;
  box-shadow:var(--shadow-lg); position:relative;
  animation: modalShow .3s ease-out;
}
@keyframes modalShow {
  from {transform:scale(0.9) translateY(20px); opacity:0;}
  to {transform:scale(1) translateY(0); opacity:1;}
}
.modal-close-btn{
  position:absolute; top:12px; right:16px; border:none; background:transparent;
  font-size:24px; color:var(--text-faint); cursor:pointer; font-weight:700;
  line-height:1;
}
.login-banner-side{
  background:linear-gradient(135deg, var(--ink-soft), var(--ink));
  padding:36px 24px; color:#fff; display:flex; flex-direction:column; justify-content:center;
}
.login-banner-side h3{ font-size:20px; font-weight:800; line-height:1.3; margin-bottom:12px; color:var(--gold); }
.login-banner-side p{ font-size:12.5px; opacity:0.8; line-height:1.5; }
.login-form-side{ padding:40px 36px; }
.login-form-side h4{ font-size:18px; font-weight:800; margin-bottom:24px; color:var(--ink); }
.login-input-group{ margin-bottom:20px; }
.login-input-group label{ font-size:11px; font-weight:800; color:var(--text-faint); text-transform:uppercase; margin-bottom:8px; display:block; }
.phone-input-wrap{
  display:flex; border:1px solid var(--line); border-radius:6px; overflow:hidden;
}
.country-code{ background:#f5f5f5; padding:12px; font-weight:700; font-size:14px; border-right:1px solid var(--line); color:var(--text-soft); }
.phone-input-wrap input{ flex:1; border:none; padding:12px; outline:none; font-size:14px; font-weight:700; }
.login-error{ color:var(--saffron-deep); font-size:11px; margin-top:6px; font-weight:600; }
.login-submit-btn{
  width:100%; padding:14px; border:none; border-radius:6px;
  background:linear-gradient(93deg, #008cff, #8a2be2);
  color:#fff; font-weight:800; font-size:14px; cursor:pointer;
  box-shadow:0 4px 12px rgba(0, 140, 255, 0.25); transition:.2s;
}
.login-submit-btn:hover{ transform:translateY(-1px); box-shadow:0 6px 16px rgba(138, 43, 226, 0.4); }
.login-terms{ font-size:10px; color:var(--text-faint); margin-top:20px; text-align:center; line-height:1.4; }

/* ===================== HERO / DEEP BLUE AREA ===================== */
.hero{
  position:relative;
  background: linear-gradient(180deg, rgba(2, 6, 18, 0.45) 0%, rgba(7, 17, 34, 0.85) 100%), 
              url('../images/travel_hero_bg.png') no-repeat center center;
  background-size: cover;
  padding:34px 24px 84px;
  min-height:360px;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events:none;
}

/* Centered Floating Category Menu (MMT Style) */
@keyframes gentleFloat {
  0% {
    transform: translateY(0px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,140,255,0.15);
  }
  100% {
    transform: translateY(0px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
}

.services-nav-container {
  max-width: 1200px;
  margin: 0 auto 20px; /* Floating 20px separate from the search card! */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px; /* Clean rounded card shape! */
  padding: 14px 20px 2px 20px;
  position: relative;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  animation: gentleFloat 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-nav-container:hover {
  animation-play-state: paused;
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 140, 255, 0.2);
}
.services-nav-tabs {
  display: flex;
  flex-wrap: nowrap; /* Single row layout on desktop! */
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px 12px;
  overflow-x: auto;
  scrollbar-width: none; /* Hide scrollbars */
}
.services-nav-tabs::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}
.service-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0 8px 10px 8px;
  color: #4a4a4a;
  font-weight: 700;
  font-size: 12px;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.service-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: width 0.2s ease;
  border-radius: 3px 3px 0 0;
}
.service-nav-item.active {
  color: var(--teal);
}
.service-nav-item.active::after {
  width: 100%;
}

/* Nav SVG Icons */
.nav-svg-icon {
  width: 32px;
  height: 32px;
  color: #4a4a4a;
  display: block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.service-nav-item:hover .nav-svg-icon {
  color: var(--teal);
  transform: translateY(-2px);
}
.service-nav-item.active .nav-svg-icon {
  color: var(--teal);
}
.service-nav-item .label {
  line-height: 1.2;
}

/* Badge New (MMT style) */
.badge-new {
  position: absolute;
  top: -12px;
  right: -2px;
  background: #a346ff;
  color: #ffffff;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(163, 70, 255, 0.3);
  animation: miniPulse 2s infinite;
  z-index: 5;
}
@keyframes miniPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Search Shell Layout */
.search-shell {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.search-card {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px; /* Separate clean rounded card corners! */
  padding: 32px 36px 40px;
  box-shadow: 0 20px 50px rgba(0, 40, 100, 0.16);
  position: relative;
}

/* Individual Search Panel Boxes */
.search-panel-box{
  position:relative;
}

/* Trip Type Selector */
.trip-toggle-row{
  display:flex; gap:20px; margin-bottom:20px;
}
.trip-toggle-row label{
  display:flex; align-items:center; gap:6px; font-size:13px; font-weight:700;
  color:var(--text-soft); cursor:pointer;
}
.trip-toggle-row input{ accent-color:var(--teal); width:15px; height:15px; }
.trip-toggle-row label.on{ color:var(--teal); }

/* MakeMyTrip Grid Style Inputs */
.mmt-search-grid{
  display:flex; border:1px solid var(--line); border-radius:8px;
  overflow:visible; background:#fff; position:relative;
}
.grid-cell{
  flex:1; padding:14px 20px; cursor:pointer;
  border-right:1px solid var(--line); transition:.15s;
  position:relative; display:flex; flex-direction:column; justify-content:center;
  min-width:0;
}
.grid-cell:last-child{ border-right:none; }
.grid-cell:hover{ background:var(--cream); }
.cell-label{
  font-size:11px; font-weight:800; color:var(--text-soft); text-transform:uppercase;
  letter-spacing:0.5px; margin-bottom:6px; display:block;
}
.cell-value-main{
  font-size:18px; font-weight:900; color:var(--ink);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cell-value-sub{
  font-size:11px; color:var(--text-faint); font-weight:500; margin-top:4px;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cell-date-input, .cell-select{
  border:none; background:transparent; font-size:15px; font-weight:900;
  color:var(--ink); width:100%; outline:none; cursor:pointer; padding:2px 0;
  font-family:inherit;
}

/* Swap Cities button */
.swap-icon-container{
  position:absolute; top:50%; transform:translate(-50%, -50%);
  z-index:15; width:28px; height:28px; border-radius:50%;
  background:#ffffff; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; box-shadow:var(--shadow-sm);
  transition:transform .2s;
}
.swap-icon-container:hover{ transform:translate(-50%, -50%) rotate(180deg); }
#searchPanelFlights .swap-icon-container { left: 16.666%; }
#searchPanelTrains .swap-icon-container { left: 25%; }
#searchPanelBuses .swap-icon-container { left: 33.333%; }
#searchPanelCabs .swap-icon-container { left: 25%; }
.swap-icon-btn{ color:var(--teal); font-weight:900; font-size:16px; }

/* Custom Dropdown Overlay Panel */
.mmt-dropdown{
  position:absolute; top:100%; left:0; z-index:1000;
  background:#ffffff; border:1px solid var(--line); border-radius:8px;
  box-shadow:var(--shadow-lg); width:320px; padding:12px; margin-top:8px;
  animation: dropShow 0.18s ease-out;
}
@keyframes dropShow {
  from {opacity:0; transform:translateY(10px);}
  to {opacity:1; transform:translateY(0);}
}
.dropdown-search{
  width:100%; padding:10px 12px; border:1px solid var(--line); border-radius:6px;
  outline:none; font-size:13px; font-weight:700; margin-bottom:10px;
}
.dropdown-search:focus{ border-color:var(--teal); }
.dropdown-list{
  max-height:220px; overflow-y:auto;
}
.city-item{
  padding:10px 12px; border-radius:6px; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center;
  transition:.15s;
}
.city-item:hover{ background:var(--cream); }
.city-item .city-name{ font-weight:800; font-size:13.5px; color:var(--ink); }
.city-item .airport-code{ font-weight:800; font-size:11px; color:var(--teal); background:var(--cream); padding:2px 6px; border-radius:4px; }
.city-item .sub-desc{ font-size:11px; color:var(--text-faint); margin-top:2px; font-weight:500; }

/* Travellers & Class Dropdown */
.pax-dropdown{
  width:320px; padding:18px;
}
.pax-section{
  margin-bottom:16px; display:flex; flex-direction:column; gap:8px;
}
.pax-title{
  font-size:10px; font-weight:800; color:var(--text-faint); letter-spacing:0.5px;
}
.pax-counter{
  display:flex; align-items:center; gap:16px;
}
.pax-counter button{
  width:32px; height:32px; border-radius:50%; border:1px solid var(--line);
  background:#fff; font-size:18px; font-weight:700; color:var(--teal);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:.15s;
}
.pax-counter button:hover{ background:var(--cream); border-color:var(--teal); }
.pax-counter span{ font-size:16px; font-weight:900; color:var(--ink); min-width:20px; text-align:center; }
.pax-select{
  width:100%; padding:10px; border-radius:6px; border:1px solid var(--line);
  font-weight:700; color:var(--ink); outline:none; background:#fff;
}
.btn-pax-apply{
  width:100%; padding:10px; border:none; border-radius:6px;
  background:linear-gradient(93deg, #008cff, #8a2be2);
  color:#fff; font-weight:900; font-size:13px; cursor:pointer;
  box-shadow:0 3px 8px rgba(0, 140, 255, 0.2); transition:.15s;
  margin-top:10px; text-transform:uppercase;
}
.btn-pax-apply:hover{ box-shadow:0 4px 12px rgba(0, 140, 255, 0.35); }

/* Special Fares selection below grids */
.special-fares-row{
  display:flex; align-items:center; gap:10px; margin-top:20px; flex-wrap:wrap;
}
.special-fares-row .lbl{ font-size:12px; font-weight:800; color:var(--text-soft); }
.special-fares-row label{
  background:#f5f5f5; border:1px solid #e5e5e5; border-radius:4px;
  padding:6px 12px; font-size:11.5px; font-weight:700; color:var(--text-soft);
  cursor:pointer; transition:.15s; display:flex; align-items:center; gap:6px;
}
.special-fares-row label:hover{ background:#eee; }
.special-fares-row label.active{
  background:var(--cream); border-color:var(--teal); color:var(--teal);
}
.special-fares-row input{ display:none; }

/* The Central Floating Search Button (MMT Signature) */
.btn-search-mmt{
  position:absolute; bottom:0; left:50%; transform:translate(-50%, 50%);
  background:linear-gradient(93deg, #008cff, #8a2be2);
  color:#ffffff; font-size:22px; font-weight:900; letter-spacing:1px;
  border:none; border-radius:100px; padding:14px 72px; cursor:pointer;
  box-shadow:0 6px 25px rgba(0, 140, 255, 0.45);
  transition:transform 0.15s, box-shadow 0.15s;
  z-index:20;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.btn-search-mmt:hover{
  transform:translate(-50%, 45%) scale(1.02);
  box-shadow:0 8px 30px rgba(138, 43, 226, 0.6);
}

/* Extra space below hero section to account for hanging search button */
.section.tight{ padding-top:80px; }

/* ===================== SECTIONS ===================== */
.section{ max-width:1240px; margin:0 auto; padding:60px 24px 0; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:28px; flex-wrap:wrap; gap:16px; }
.eyebrow{
  font-size:11px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--saffron-deep);
  display:flex; align-items:center; gap:9px; margin-bottom:8px;
}
.eyebrow::before{ content:""; width:18px; height:2px; background:var(--saffron-deep); display:inline-block; }
.section-title{ font-family:'Fraunces',serif; font-size:28px; font-weight:600; color:var(--ink); letter-spacing:-0.5px; }
.section-link{ font-size:13px; font-weight:700; color:var(--teal); display:flex; align-items:center; gap:5px; }

/* destination cards */
.dest-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:18px; }
.dest-grid .dest-card:nth-child(1){ grid-column:span 3; grid-row:span 2; }
.dest-grid .dest-card:nth-child(2){ grid-column:span 3; }
.dest-grid .dest-card:nth-child(3){ grid-column:span 3; }
.dest-grid .dest-card:nth-child(4){ grid-column:span 2; }
.dest-grid .dest-card:nth-child(5){ grid-column:span 2; }
.dest-grid .dest-card:nth-child(6){ grid-column:span 2; }

.dest-card{
  position:relative; border-radius:12px; overflow:hidden; cursor:pointer;
  min-height:180px; box-shadow:var(--shadow-sm); transition:transform .3s, box-shadow .3s;
}
.dest-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
.dest-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.dest-card:hover img{ transform:scale(1.07); }
.dest-card .overlay{
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(5,19,41,0.85) 0%, rgba(5,19,41,0.1) 60%, transparent 80%);
}
.dest-card .tag{
  position:absolute; top:12px; left:12px; background:rgba(255,255,255,0.92); color:var(--ink);
  font-size:10px; font-weight:800; padding:4px 10px; border-radius:999px; letter-spacing:.3px;
}
.dest-card .info{ position:absolute; bottom:16px; left:18px; right:18px; color:#fff; }
.dest-card .info .city{ font-family:'Fraunces',serif; font-size:22px; font-weight:600; }
.dest-card .info .price{ font-size:12px; opacity:.85; margin-top:3px; }
.dest-card .info .price b{ color:var(--gold); font-weight:700; }
.dest-card:nth-child(1) .info .city{ font-size:28px; }

/* offers */
.offer-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.offer-card{
  border-radius:12px; padding:20px; position:relative; overflow:hidden; border:1.5px dashed;
  cursor:pointer; transition:transform .25s;
}
.offer-card:hover{ transform:translateY(-4px); }
.offer-card .bgicon{ position:absolute; right:-10px; top:-10px; font-size:64px; opacity:.1; }
.offer-card .icon{ font-size:26px; margin-bottom:8px; }
.offer-card .title{ font-family:'Fraunces',serif; font-weight:700; font-size:18px; margin-bottom:5px; }
.offer-card .desc{ font-size:12.5px; color:var(--text-soft); line-height:1.5; margin-bottom:14px; min-height:38px; }
.offer-card .code-row{ display:flex; align-items:center; justify-content:space-between; }
.offer-code{
  font-family:'JetBrains Mono',monospace; font-size:11.5px; font-weight:700; letter-spacing:1px;
  background:#fff; padding:4px 10px; border-radius:4px; border:1.5px dashed;
}
.copy-btn{
  border:none; border-radius:4px; padding:5px 12px; font-size:11px; font-weight:800; color:#fff; cursor:pointer;
}

/* why us */
.why-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why-card{
  background:#fff; border-radius:12px; padding:24px 20px; border-top:3px solid var(--teal);
  box-shadow:var(--shadow-sm); transition:.25s;
}
.why-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-3px); }
.why-card .ic{ font-size:28px; margin-bottom:12px; }
.why-card h4{ font-family:'Fraunces',serif; font-size:16px; color:var(--ink); margin-bottom:8px; }
.why-card p{ font-size:13px; color:var(--text-soft); line-height:1.6; }

/* testimonials */
.testi-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{
  background:var(--paper); border-radius:12px; padding:24px; box-shadow:var(--shadow-sm);
  border:1px solid var(--line);
}
.testi-stars{ color:var(--gold); font-size:13px; margin-bottom:12px; letter-spacing:2px; }
.testi-quote{ font-size:14px; line-height:1.65; color:var(--text); margin-bottom:18px; font-style:italic; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family:'Fraunces',serif; font-weight:700; color:#fff; font-size:15px;
}
.testi-name{ font-weight:700; font-size:13px; color:var(--ink); }
.testi-loc{ font-size:11px; color:var(--text-faint); }

/* app CTA band */
.app-band{
  margin:60px 24px 0; max-width:1240px; margin-left:auto; margin-right:auto;
  background:linear-gradient(120deg, var(--ink) 0%, var(--ink-soft) 100%);
  border-radius:16px; padding:44px 50px; display:flex; align-items:center; justify-content:space-between;
  gap:40px; position:relative; overflow:hidden;
}
.app-band::before{
  content:""; position:absolute; right:-80px; top:-80px; width:280px; height:280px; border-radius:50%;
  background:radial-gradient(circle, rgba(0,140,255,0.2), transparent 70%);
}
.app-band .eyebrow{ color:var(--gold); }
.app-band .eyebrow::before{ background:var(--gold); }
.app-band h3{ font-family:'Fraunces',serif; color:#fff; font-size:26px; font-weight:600; max-width:400px; line-height:1.3; }
.app-band p{ color:rgba(255,255,255,0.65); margin-top:10px; font-size:14px; max-width:360px; }
.store-btns{ display:flex; gap:12px; flex-shrink:0; }
.store-btn{
  background:#fff; color:var(--ink); border:none; border-radius:8px; padding:12px 20px;
  font-weight:700; font-size:13px; cursor:pointer; display:flex; align-items:center; gap:8px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

/* footer */
footer{ background:var(--ink); color:#9b9b9b; margin-top:70px; }
.footer-inner{ max-width:1240px; margin:0 auto; padding:48px 24px 24px; }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:36px; margin-bottom:36px; }
.footer-brand p{ font-size:12.5px; line-height:1.7; margin-top:14px; max-width:280px; color:#6b6b6b; }
.social-row{ display:flex; gap:10px; margin-top:16px; }
.social-row .s{
  width:34px; height:34px; border-radius:8px; background:rgba(255,255,255,0.06); display:flex;
  align-items:center; justify-content:center; cursor:pointer; transition:.2s;
}
.social-row .s:hover{ background:var(--teal); }
.footer-col h5{ color:#fff; font-size:13px; font-weight:800; margin-bottom:14px; letter-spacing:.3px; }
.footer-col a{ display:block; font-size:12.5px; margin-bottom:9px; color:#9b9b9b; transition:.2s; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08); padding-top:18px; display:flex; justify-content:space-between;
  flex-wrap:wrap; gap:12px; font-size:11.5px;
}
.footer-bottom .links{ display:flex; gap:20px; }
.footer-bottom a:hover{ color:var(--gold); }

/* ===================== RESULTS PAGES ===================== */
.page{ display:none; min-height:100vh; background:#f4f6f9; padding-bottom:50px; }
.page.show{ display:block; }
.results-top{
  background:linear-gradient(120deg, var(--ink), var(--ink-soft)); padding:18px 24px;
}
.results-top-inner{ max-width:1240px; margin:0 auto; display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
.back-btn{
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); color:#fff; border-radius:6px;
  padding:8px 14px; font-weight:700; font-size:12.5px; cursor:pointer; display:flex; align-items:center; gap:6px;
}
.results-route{ color:#fff; font-family:'Fraunces',serif; font-weight:600; font-size:22px; }
.results-meta{ color:rgba(255,255,255,0.6); font-size:12.5px; margin-top:2px; }
.results-help{
  margin-left:auto; background:rgba(255,255,255,0.08); border-radius:6px; padding:8px 14px; color:#fff;
  font-size:12.5px; font-weight:600;
}

.results-body{ max-width:1240px; margin:24px auto; padding:0 24px; display:flex; gap:24px; align-items:flex-start; }
.filters-card{
  width:250px; flex-shrink:0; background:#fff; border-radius:12px; padding:20px; box-shadow:var(--shadow-sm);
  position:sticky; top:88px;
}
.filters-card h4{ font-family:'Fraunces',serif; font-size:16px; color:var(--ink); margin-bottom:16px; padding-bottom:10px; border-bottom:1.5px solid var(--ivory); }
.filter-group{ margin-bottom:20px; }
.filter-label{ font-size:10px; font-weight:800; color:var(--text-faint); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.radio-row, .check-row{ display:flex; align-items:center; gap:8px; margin-bottom:9px; font-size:13px; cursor:pointer; color:var(--text-soft); }
.radio-row input, .check-row input{ accent-color:var(--teal); width:14px; height:14px; }
.price-display{ font-family:'Fraunces',serif; font-size:22px; font-weight:700; color:var(--saffron-deep); margin-bottom:6px; }
.range-input{ width:100%; accent-color:var(--teal); }
.range-labels{ display:flex; justify-content:space-between; font-size:10px; color:var(--text-faint); margin-top:2px; }

.results-list{ flex:1; min-width:0; }
.results-count{ font-size:13px; color:var(--text-soft); margin-bottom:14px; font-weight:700; }

/* Flight Cards */
.flight-card{
  background:#fff; border-radius:12px; padding:20px 24px; margin-bottom:14px; box-shadow:var(--shadow-sm);
  display:flex; align-items:center; gap:20px; flex-wrap:wrap; border-left:4px solid var(--teal);
  transition:box-shadow .2s;
}
.flight-card:hover{ box-shadow:var(--shadow-md); }
.fc-airline{ min-width:130px; }
.fc-airline .name{ font-weight:800; color:var(--ink); font-size:14.5px; }
.fc-airline .code{ font-size:11.5px; color:var(--text-faint); margin-top:2px; }
.fc-airline .cls{ font-size:10px; background:var(--cream); border-radius:4px; padding:2px 8px; display:inline-block; margin-top:6px; color:var(--teal); font-weight:700; }
.fc-time{ text-align:center; min-width:68px; }
.fc-time .t{ font-family:'Fraunces',serif; font-weight:700; font-size:22px; color:var(--ink); }
.fc-time .l{ font-size:11px; color:var(--text-faint); font-weight:600; margin-top:2px; }
.fc-path{ flex:1; text-align:center; min-width:110px; }
.fc-path .dur{ font-size:11px; color:var(--text-faint); margin-bottom:4px; }
.fc-path .line{ display:flex; align-items:center; gap:6px; }
.fc-path .line .l{ flex:1; height:1.5px; background:#e0e0e0; }
.fc-path .stop{ font-size:11px; color:#0e7c66; font-weight:700; margin-top:4px; }
.fc-price{ text-align:right; min-width:130px; }
.fc-price .p{ font-family:'Fraunces',serif; font-weight:700; font-size:24px; color:var(--ink); }
.fc-price .sub{ font-size:10.5px; color:var(--text-faint); margin-bottom:8px; }
.book-btn{
  background:linear-gradient(93deg, #008cff, #8a2be2); color:#fff; border:none;
  border-radius:6px; padding:8px 20px; font-weight:800; font-size:12px; cursor:pointer;
  box-shadow:0 3px 8px rgba(0, 140, 255, 0.25); transition:.2s;
}
.book-btn:hover{ transform:translateY(-1px); box-shadow:0 4px 12px rgba(138, 43, 226, 0.4); }
.urgency-tag{
  width:100%; font-size:11.5px; font-weight:700; color:#A5650A; background:#FEF3DD; border-radius:6px;
  padding:6px 12px; margin-top:10px;
}

/* Hotel Cards */
.hotel-card{
  background:#fff; border-radius:12px; overflow:hidden; display:flex; margin-bottom:18px;
  box-shadow:var(--shadow-sm); transition:box-shadow .2s;
}
.hotel-card:hover{ box-shadow:var(--shadow-md); }
.hotel-img{ width:230px; flex-shrink:0; position:relative; }
.hotel-img img{ width:100%; height:100%; object-fit:cover; }
.hotel-img .tag{ position:absolute; top:12px; left:12px; background:var(--saffron); color:#fff; font-size:10px; font-weight:800; padding:4px 10px; border-radius:4px; }
.hotel-info{ padding:20px 24px; flex:1; display:flex; justify-content:space-between; align-items:center; }
.hotel-name{ font-family:'Fraunces',serif; font-weight:700; font-size:18px; color:var(--ink); margin-bottom:4px; }
.hotel-area{ font-size:12.5px; color:var(--text-faint); margin-bottom:8px; }
.hotel-stars{ margin-bottom:10px; color:var(--gold); }
.hotel-rating{ display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.rating-pill{ background:#0e7c66; color:#fff; font-weight:800; font-size:11.5px; padding:2px 8px; border-radius:4px; }
.hotel-amenities{ display:flex; gap:6px; flex-wrap:wrap; }
.hotel-amenities span{ font-size:10.5px; background:var(--ivory); border-radius:4px; padding:3px 8px; color:var(--text-soft); }
.hotel-price-box{ text-align:right; }
.hotel-price-box .pn{ font-size:11px; color:var(--text-faint); }
.hotel-price-box .p{ font-family:'Fraunces',serif; font-weight:700; font-size:26px; color:var(--ink); }
.hotel-price-box .tx{ font-size:10.5px; color:var(--text-faint); margin-bottom:12px; }

/* Train, Bus, and Cab Cards styling */
.train-card, .bus-card, .cab-card {
  background:#fff; border-radius:12px; padding:20px 24px; margin-bottom:14px; box-shadow:var(--shadow-sm);
  display:flex; align-items:center; gap:20px; flex-wrap:wrap; border-left:4px solid var(--teal);
  transition:box-shadow .2s;
}
.train-card:hover, .bus-card:hover, .cab-card:hover { box-shadow:var(--shadow-md); }

/* booking */
.booking-wrap{ max-width:980px; margin:24px auto; padding:0 24px; }
.steps-bar{ display:flex; align-items:center; background:#fff; border-radius:12px; padding:16px 24px; box-shadow:var(--shadow-sm); margin-bottom:24px; }
.step-item{ display:flex; align-items:center; flex:1; }
.step-circle{ width:30px; height:30px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:13px; color:#fff; flex-shrink:0; transition:.3s; }
.step-text{ margin-left:10px; font-weight:600; font-size:13.5px; transition:.3s; }
.step-line{ flex:1; height:2px; margin:0 14px; transition:.3s; }

.booking-grid{ display:flex; gap:24px; align-items:flex-start; }
.booking-form{ flex:1; background:#fff; border-radius:12px; padding:28px; box-shadow:var(--shadow-sm); }
.booking-form h3{ font-family:'Fraunces',serif; font-size:19px; color:var(--ink); margin-bottom:20px; }
.form-group{ margin-bottom:16px; }
.form-label{ font-size:10px; font-weight:800; color:var(--text-faint); text-transform:uppercase; letter-spacing:.8px; display:block; margin-bottom:6px; }
.form-input{
  width:100%; border:1.5px solid var(--line); border-radius:6px; padding:12px 14px; font-size:14.5px;
  outline:none; font-family:'Inter',sans-serif; transition:.2s; background:#fafafa;
}
.form-input:focus{ border-color:var(--teal); background:#fff; box-shadow:0 0 0 4px rgba(0,140,255,0.08); }
.form-error{ font-size:11px; color:var(--saffron-deep); margin-top:4px; font-weight:600; }
.info-banner{
  background:var(--cream); border:1px solid var(--teal); border-radius:6px; padding:10px 14px; font-size:12.5px;
  color:#005cbb; margin-bottom:20px; display:flex; gap:8px; align-items:center; font-weight:600;
}
.cta-full{
  width:100%; border:none; border-radius:6px; padding:14px 0; font-weight:800; font-size:14px; color:#fff;
  cursor:pointer; transition:transform .15s;
}
.cta-full:hover{ transform:translateY(-1px); }

.pay-option{
  display:flex; align-items:center; gap:12px; padding:12px 16px; border:1.5px solid var(--line); border-radius:8px;
  margin-bottom:10px; cursor:pointer; transition:.2s;
}
.pay-option.active{ border-color:var(--teal); background:var(--cream); }
.pay-option input{ accent-color:var(--teal); width:16px; height:16px; }
.pay-option .pl{ font-weight:700; font-size:13.5px; color:var(--ink); }
.pay-option .ps{ font-size:11px; color:var(--text-faint); margin-top:2px; }

.price-side{ width:300px; flex-shrink:0; position:sticky; top:88px; }
.price-card{ background:#fff; border-radius:12px; overflow:hidden; box-shadow:var(--shadow-sm); }
.price-card-head{ background:linear-gradient(120deg, var(--ink), var(--ink-soft)); padding:16px 20px; color:#fff; font-weight:700; font-size:13.5px; }
.price-card-body{ padding:20px; }
.price-item-block{ margin-bottom:16px; padding-bottom:16px; border-bottom:1.5px solid var(--ivory); }
.price-item-name{ font-weight:700; font-size:14.5px; color:var(--ink); }
.price-item-sub{ font-size:12px; color:var(--text-faint); margin-top:4px; }
.price-row{ display:flex; justify-content:space-between; font-size:13px; margin-bottom:9px; color:var(--text-soft); }
.price-total{ display:flex; justify-content:space-between; font-family:'Fraunces',serif; font-weight:700; font-size:20px; color:var(--ink); border-top:2.5px solid var(--ivory); padding-top:14px; margin-top:4px; }
.savings-banner{ background:#eaf7f2; border:1px solid #0e7c66; border-radius:6px; padding:8px 12px; font-size:11.5px; color:#0e5c4c; margin-top:12px; font-weight:600; }

/* confirmation */
.confirm-wrap{ min-height:80vh; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:30px 24px; }
.confirm-card{ background:#fff; border-radius:16px; padding:44px 36px; max-width:520px; width:100%; text-align:center; box-shadow:var(--shadow-lg); }
.confirm-check{
  width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg, #0e7c66, #0a6354);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px; box-shadow:0 8px 24px rgba(14,124,102,0.3);
}
.confirm-title{ font-family:'Fraunces',serif; font-size:26px; font-weight:700; color:#0e7c66; margin-bottom:8px; }
.confirm-sub{ color:var(--text-soft); font-size:14px; line-height:1.6; margin-bottom:24px; }
.confirm-detail{ background:var(--ivory); border-radius:12px; padding:18px 22px; text-align:left; margin-bottom:24px; }
.confirm-row{ display:flex; justify-content:space-between; margin-bottom:10px; font-size:13.5px; }
.confirm-row:last-child { margin-bottom:0; }
.confirm-actions{ display:flex; gap:12px; justify-content:center; }

/* ===================== RESPONSIVE / MEDIA QUERIES ===================== */

/* Tablet Viewport (max-width: 1024px) */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dest-grid .dest-card:nth-child(1) {
    grid-column: span 3;
  }
  .dest-grid .dest-card:nth-child(2),
  .dest-grid .dest-card:nth-child(3) {
    grid-column: span 3;
  }
  .dest-grid .dest-card:nth-child(4),
  .dest-grid .dest-card:nth-child(5),
  .dest-grid .dest-card:nth-child(6) {
    grid-column: span 1;
  }
  .offer-strip, .why-grid, .testi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .results-body, .booking-grid {
    flex-direction: column;
  }
  .filters-card, .price-side {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  
  .app-band {
    flex-direction: column;
    text-align: center;
    padding: 36px 20px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile & Small Tablet Viewport (max-width: 768px) */
@media (max-width: 768px) {
  /* Header Nav Mobile adjustments */
  .pill-phone { display: none; }
  .btn-my-trips { display: none; }
  .btn-login-mmt .login-text { display: none; }
  .btn-login-mmt { padding: 8px 12px; }
  .nav-inner { padding: 0 12px; }

  /* Category tabs shape and spacing */
  .services-nav-container {
    max-width: 96%;
    margin-bottom: 20px;
    border-radius: 12px;
    padding: 6px;
  }
  .services-nav-tabs {
    flex-wrap: nowrap;
    padding: 4px;
    gap: 6px 12px;
  }
  .service-nav-item {
    padding: 4px 10px;
    font-size: 11px;
  }
  .nav-svg-icon {
    width: 24px;
    height: 24px;
  }
  
  .mmt-search-grid {
    flex-direction: column;
  }
  .grid-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
  }
  .grid-cell:last-child {
    border-bottom: none;
  }
  .swap-icon-container {
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .swap-icon-container:hover {
    transform: translate(-50%, -50%) rotate(270deg);
  }
  #searchPanelFlights .swap-icon-container { top: 16.666%; }
  #searchPanelTrains .swap-icon-container { top: 25%; }
  #searchPanelBuses .swap-icon-container { top: 33.333%; }
  #searchPanelCabs .swap-icon-container { top: 25%; }
  
  .btn-search-mmt {
    width: 85%;
    padding: 12px 0;
    font-size: 18px;
  }
  .section.tight {
    padding-top: 60px;
  }
  
  .login-modal-card {
    grid-template-columns: 1fr;
  }
  .login-banner-side {
    display: none;
  }
  .login-form-side {
    padding: 28px 20px;
  }
  
  .confirm-actions {
    flex-direction: column;
  }
  .confirm-actions button {
    width: 100%;
  }

  /* Transformed Listing Cards for mobile screen sizes */
  .flight-card, .train-card, .bus-card, .cab-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }
  .fc-airline, .fc-time, .fc-path, .fc-price {
    min-width: 0 !important;
    text-align: left !important;
    width: 100%;
  }
  .fc-path .line {
    justify-content: flex-start;
  }
  .fc-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed var(--line);
    padding-top: 14px;
    margin-top: 4px;
  }
  .fc-price .sub {
    margin-bottom: 0;
  }

  /* Hotel Cards Mobile adjustments */
  .hotel-card {
    flex-direction: column;
  }
  .hotel-img {
    width: 100%;
    height: 180px;
  }
  .hotel-info {
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hotel-price-box {
    text-align: left;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }

  /* Constrain search dropdown widths */
  .mmt-dropdown {
    max-width: calc(100vw - 32px);
  }
}

/* Extra Small Mobile Viewport (max-width: 480px) */
@media (max-width: 480px) {
  /* Stepper progress simplification on mobile */
  .step-text { display: none; }
  .step-line { margin: 0 8px; }

  /* Force single-column on main landing grids */
  .dest-grid, .offer-strip, .why-grid, .testi-row, .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .dest-grid .dest-card {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 150px;
  }
  
  /* Reduce margins & padding on very small viewports */
  .search-card {
    padding: 20px 16px 28px 16px;
  }
  .bottom-protection-banner {
    margin: 20px -16px -28px -16px;
    padding: 12px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: center;
  }
  .flight-tracker-pill {
    align-self: center;
  }
  .section {
    padding: 40px 16px 0;
  }
  .section-head {
    margin-bottom: 16px;
  }
  .section-title {
    font-size: 22px;
  }
  .logo-word .a1 {
    font-size: 16px;
  }
  .hero {
    padding: 20px 12px 60px;
    min-height: 300px;
  }
  .btn-search-mmt {
    width: 90%;
    font-size: 16px;
    padding: 10px 0;
  }
}

/* Trip Toggles Row adjustment */
.trip-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trip-toggle-left {
  display: flex;
  gap: 20px;
}
.trip-toggle-right {
  font-size: 12px;
  color: var(--text-faint);
  font-weight: 700;
}

/* Date alignment values stacked */
.date-value-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  height: 38px;
}
.date-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.5px;
}
.date-month-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.date-month-wrap.flex-start {
  align-items: flex-start;
}
.date-month-year {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
}
.date-day-name {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
}
.arrow-down {
  color: var(--teal);
  font-size: 10px;
  margin-left: 2px;
}

/* Class value layout */
.class-value-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  height: 38px;
  justify-content: center;
}
.class-title-main {
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.class-title-sub {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.return-placeholder-text {
  font-size: 11px;
  color: var(--text-faint);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 4px;
  display: block;
}

.hidden-date-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* Special fares cards layout details */
.special-fares-row label {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  transition: .15s;
}
.special-fares-row label input {
  margin-top: 3px;
  accent-color: var(--teal);
}
.special-fares-row label b {
  font-size: 11.5px;
  color: var(--ink);
  display: block;
  line-height: 1.2;
}
.special-fares-row label .sub {
  font-size: 9px;
  color: var(--text-faint);
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.1;
}

/* Price protection checkbox drop banner at card bottom */
.bottom-protection-banner {
  background: linear-gradient(90deg, var(--cream), #ffffff);
  border-top: 1px solid var(--line);
  margin: 24px -36px -40px -36px;
  padding: 16px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 12px 12px;
}
.protection-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.protection-checkbox input {
  display: none;
}
.custom-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-radius: 4px;
  background: #ffffff;
  display: inline-block;
  position: relative;
  transition: .15s;
}
.protection-checkbox input:checked + .custom-checkbox {
  background: var(--teal);
  border-color: var(--teal);
}
.protection-checkbox input:checked + .custom-checkbox::after {
  content: '✓';
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.protection-text {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 500;
}
.protection-text a {
  color: var(--teal);
  font-weight: 700;
}
.flight-tracker-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.flight-tracker-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}
