/* ═══════════════════════════════════════════
   SHALINI CABS — PREMIUM UI v3 (style3.css)
   Iframe-based Hero & Premium Bento Box Categories
════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --orange:       #FF7B00;
  --orange-dark:  #E06800;
  --orange-light: rgba(255,123,0,0.08);
  --dark:         #111827;
  --gray-800:     #1F2937;
  --gray-700:     #374151;
  --gray-500:     #6B7280;
  --gray-200:     #E5E7EB;
  --gray-100:     #F3F4F6;
  --gray-50:      #F9FAFB;
  --white:        #FFFFFF;
  --green:        #25D366;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-xs:    0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.06);
  --shadow-md:    0 10px 32px rgba(0,0,0,0.08);
  --shadow-lg:    0 20px 56px rgba(0,0,0,0.10);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;}
body{font-family:'Inter',sans-serif;color:var(--dark);background:var(--gray-50);overflow-x:hidden;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{max-width:1280px;margin:0 auto;padding:0 28px}

/* ══ NAVBAR ══ */
.navbar{
  background:var(--white);
  padding:0;
  border-bottom:1px solid var(--gray-200);
  position:sticky;top:0;z-index:999;
  box-shadow:var(--shadow-sm);
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:96px;
}
.nav-brand img{height:84px;object-fit:contain}
.nav-actions{display:flex;align-items:center;gap:12px}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-app-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-app-links .app-badge {
  display: block;
  width: 140px;
  transition: transform 0.3s ease;
}
.header-app-links .app-badge:hover {
  transform: scale(1.05);
}
.header-app-links .app-badge img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.nav-phone{
  font-size:14px;font-weight:700;color:var(--dark);
  display:flex;align-items:center;gap:7px;
  padding:9px 18px;border-radius:30px;border:1.5px solid var(--gray-200);
  transition:all 0.2s;
}
.nav-phone i{color:var(--orange)}
.nav-phone:hover{border-color:var(--orange);color:var(--orange)}
.btn-wa{
  background:var(--green);color:#fff;
  padding:9px 20px;border-radius:30px;
  font-size:13.5px;font-weight:700;
  display:flex;align-items:center;gap:8px;
  transition:filter 0.2s;
}
.btn-wa:hover{background:#20b054;box-shadow:0 4px 12px rgba(37,211,102,0.3)}

/* ══ STICKY NAV BAR ══ */
.sticky-nav-bar {
    position: fixed;
    top: 96px; /* Below main navbar */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    z-index: 998;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--gray-200);
}
.sticky-nav-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.sticky-nav-bar .hero-tabs {
    margin-bottom: 0;
    box-shadow: none;
    border: 1px solid var(--gray-200);
}

/* ══ HERO SECTION ══ */
.hero{
  position:relative;
  min-height: 700px;
  background: url('../img/shalini-cabs-hero-section-1.png') no-repeat center center / cover;
  padding: 60px 0;
  display:flex;
  align-items:center;
  border-bottom: 1px solid var(--gray-200);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-right-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}
.hero-text{
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.hero-label{
  font-size:13px;font-weight:800;
  color:var(--orange);text-transform:uppercase;letter-spacing:1.5px;
  display:flex;align-items:center;gap:8px;margin-bottom:16px;
}
.hero-label::before{content:'';width:24px;height:2px;background:var(--orange);display:inline-block}
.hero-title{
  font-size:36px;font-weight:800;line-height:1.1;
  color:var(--dark);letter-spacing:-1px;
  margin-bottom: 16px;
}
.hero-title span {color: var(--orange);}
.hero-sub{
  font-size:16px;color:#000;font-weight:600;
  line-height: 1.6;
}
.hero-tabs-container {margin-bottom: 24px;}
.hero-tabs {
    display: inline-flex;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 40px;
    padding: 6px;
    box-shadow: var(--shadow-sm);
    gap: 4px;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
}
.hero-tabs::-webkit-scrollbar {display: none;}
.hero-tab {
    padding: 12px 20px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gray-500);
    background: transparent;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.hero-tab:hover {color: var(--dark);}
.hero-tab.active {
    background: var(--orange);
    color: white;
    box-shadow: 0 4px 10px rgba(255,123,0,0.3);
}

/* Booking Widget */
.booking-widget-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 10px;
    height: 520px;
    overflow: hidden;
    position: relative;
}
.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

/* ══ CATEGORY NAV CARDS ══ */
.cat-nav-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
}
.cat-nav-inner {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 16px;
  padding-top: 8px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
.cat-nav-inner::-webkit-scrollbar {display: none;}
.cat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-width: 190px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-decoration: none;
  background: var(--white);
  padding: 32px 16px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-pill:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255,123,0,0.12);
}
.cat-pill img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: all 0.3s;
}
.cat-pill:hover img {
  transform: scale(1.05);
}
.cat-pill span {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
  transition: color 0.2s;
}
.cat-pill:hover span {
  color: var(--orange);
}

/* ══ CATEGORIZED PACKAGES SECTION ══ */
.packages-section {
    padding: 60px 0 100px;
}
.category-block {
    margin-bottom: 80px;
    scroll-margin-top: 180px; /* Account for main navbar + sticky tabs */
}
.category-block:last-child {margin-bottom: 0;}
.cat-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}
.cat-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(255,123,0,0.3);
}
.cat-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

/* BENTO BOX GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 24px;
}
/* For categories with more emphasis */
.bento-grid.bento-large-left {
  grid-template-columns: 2fr 1fr 1fr;
}
.bento-grid.bento-large-right {
  grid-template-columns: 1fr 1fr 2fr;
}

/* Feature Image Card */
.bento-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  text-decoration: none;
  min-height: 320px;
}
.bento-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.bento-feature:hover img {
  transform: scale(1.05);
}
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0) 60%);
  z-index: 1;
}
.bento-feature-content {
  position: relative;
  z-index: 2;
}
.bento-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.bento-feature-title {
  color: white;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}
.bento-feature-sub {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

/* Link List Card */
.bento-list-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.bento-list-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-50);
}
.bento-list-header i {
  color: var(--orange);
  font-size: 20px;
}
.bento-list-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}
.bento-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bento-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--gray-800);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.bento-link i {
  color: var(--orange);
  font-size: 14px;
  margin-top: 3px;
  opacity: 0.6;
  transition: all 0.2s;
}
.bento-link:hover {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.bento-link:hover i {
  opacity: 1;
}

/* ══ FAQ SECTION ══ */
.faq-section { padding: 80px 0; background: var(--white); border-top: 1px solid var(--gray-200); }
.faq-grid { display: block; }
.faq-heading { font-size: 36px; color: var(--dark); font-weight: 800; line-height: 1.2; text-align: center; margin-bottom: 40px; }
.faq-heading span { color: var(--orange); }

.faq-tabs { display: flex; flex-wrap: nowrap; justify-content: center; gap: 12px; margin-bottom: 32px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; -ms-overflow-style: none; }
.faq-tabs::-webkit-scrollbar { display: none; }
.faq-tab-btn { white-space: nowrap; flex-shrink: 0; padding: 12px 24px; background: var(--white); color: var(--gray-600); border: 1px solid var(--gray-200); border-radius: 30px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; }
.faq-tab-btn:hover { border-color: var(--orange); color: var(--orange); }
.faq-tab-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 8px 24px rgba(255,123,0,0.25); transform: translateY(-2px); }

.faq-accordion details { background: var(--white); border: 1px solid var(--gray-200); border-bottom: none; transition: all 0.3s; }
.faq-accordion details:first-child { border-top-left-radius: var(--radius-md); border-top-right-radius: var(--radius-md); }
.faq-accordion details:last-child { border-bottom-left-radius: var(--radius-md); border-bottom-right-radius: var(--radius-md); border-bottom: 1px solid var(--gray-200); }
.faq-accordion summary { padding: 20px 24px; font-weight: 700; font-size: 15px; color: var(--dark); cursor: pointer; list-style: none; position: relative; transition: background 0.2s; }
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary:hover { background: var(--gray-50); }
.faq-accordion summary::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--gray-600); position: absolute; right: 24px; transition: transform 0.3s; }
.faq-accordion details[open] summary::after { content: '\f068'; color: var(--orange); }
.faq-accordion details[open] summary { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.faq-content { padding: 24px; font-size: 14.5px; color: var(--gray-600); line-height: 1.6; border-bottom: 1px solid var(--gray-200); }
.faq-accordion details:last-child .faq-content { border-bottom: none; }

/* ══ MOBILE APP SECTION ══ */
.app-section { padding: 80px 0; background: var(--white); border-top: 1px solid var(--gray-200); overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-heading h2 { font-size: 42px; color: var(--orange); font-weight: 800; margin-bottom: 8px; }
.app-heading p { font-size: 15px; color: var(--dark); font-weight: 700; margin-bottom: 16px; }
.app-heading .available-on { font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; display: block; }
.app-badges { display: flex; gap: 16px; margin-bottom: 40px; }
.app-badges img { height: 45px; border-radius: 8px; cursor: pointer; transition: transform 0.2s; box-shadow: var(--shadow-sm); }
.app-badges img:hover { transform: scale(1.05); }

.app-feature-box { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); margin-bottom: 16px; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,0,0,0.02); }
.app-feature-box:hover { border-color: var(--orange); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transform: translateY(-4px); }
.app-feature-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,123,0,0.1); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.app-feature-text h4 { font-size: 17px; color: var(--orange); margin-bottom: 6px; font-weight: 700; }
.app-feature-text p { font-size: 13.5px; color: var(--dark); line-height: 1.5; font-weight: 500; margin: 0; }
.app-image-col img { max-width: 100%; height: auto; transform: scale(1.1); transform-origin: bottom center; }

/* ══ FOOTER ══ */
.footer { background: #111418; color: #fff; padding: 80px 0 24px; position: relative; border-top: 4px solid var(--orange); }
.footer-inner { display: grid; grid-template-columns: 2.2fr 1.2fr 1fr 1fr 1.2fr; gap: 30px; margin-bottom: 60px; }
.footer-logo { height: 70px; margin-bottom: 20px; background: #fff; padding: 8px; border-radius: 8px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; font-weight: 400; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; transition: all 0.3s; }
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255,123,0,0.3); }
.footer-links h5 { font-size: 15px; font-weight: 700; text-transform: capitalize; color: #fff; margin-bottom: 24px; position: relative; }
.footer-links h5::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--orange); }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 12px; transition: all 0.3s; font-weight: 500; position: relative; padding-left: 16px; display: block; }
.footer-links a::before { content: '›'; position: absolute; left: 0; top: -2px; color: var(--orange); font-size: 18px; font-weight: bold; transition: all 0.3s; }
.footer-links a:hover { color: var(--orange); padding-left: 20px; }
.footer-app-badges { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.footer-app-badges img { height: 42px; width: fit-content; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s; }
.footer-app-badges img:hover { transform: scale(1.05); border-color: rgba(255,255,255,0.3); }

.footer-call-widget { display: flex; align-items: center; gap: 15px; margin-bottom: 24px; }
.footer-call-widget .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: 0 4px 15px rgba(255,123,0,0.3); flex-shrink: 0; }
.footer-call-widget .text { display: flex; flex-direction: column; }
.footer-call-widget .text span { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; margin-bottom: 2px; }
.footer-call-widget .text strong { font-size: 18px; color: #fff; font-weight: 800; letter-spacing: 0.5px; white-space: nowrap; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 14px; color: rgba(255,255,255,0.4); display: flex; justify-content: space-between; align-items: center; }
.footer-bar-links a { color: rgba(255,255,255,0.6); margin-left: 20px; transition: color 0.3s; }
.footer-bar-links a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
════════════════════════════════════════════ */

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger:hover { background: var(--orange); border-color: var(--orange); }
.hamburger:hover span { background: #fff; }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: sticky;
  top: 96px;
  z-index: 997;
  background: var(--white);
  border-bottom: 2px solid var(--orange);
  padding: 12px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-radius: 10px;
  transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--orange); color: #fff; }
.mobile-menu a i { font-size: 16px; color: var(--orange); width: 20px; text-align: center; }
.mobile-menu a:hover i { color: #fff; }

/* ── Tablet (≤ 1024px) ── */
@media(max-width:1024px){
  .bento-grid, .bento-grid.bento-large-left, .bento-grid.bento-large-right {
      grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-spacer { display: none; }
  .hero-right-stack { max-width: 100%; justify-self: stretch; }
}

/* ── Large tablet / small desktop (≤ 992px) ── */
@media (max-width: 992px) {
  .faq-grid, .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-image-col { order: -1; text-align: center; }
  .app-image-col img { max-width: 80%; transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-text-col { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-200); padding-top: 24px; }
  .fleet-3col { grid-template-columns: repeat(3, 1fr); }
  .why-choose-split { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Mobile (≤ 768px) ── */
@media(max-width:768px){
  .nav-inner { height: 70px; }
  .nav-brand img { height: 58px; }
  .sticky-nav-bar { top: 70px; }
  .mobile-menu { top: 70px; }
  .center-actions { display: none; }
  .hamburger { display: flex; }

  /* App links resizing for mobile */
  .header-right { gap: 8px; }
  .header-app-links { gap: 6px; }
  .header-app-links .app-badge { width: 90px; }

  /* Hero */
  .hero { min-height: auto; padding: 30px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-spacer { display: none; }
  .hero-right-stack { max-width: 100%; justify-self: stretch; padding: 0 8px; }
  .booking-widget-container { height: 440px; }
  .hero-tabs { flex-wrap: nowrap; border-radius: 20px; overflow-x: auto; }
  .hero-tab { padding: 10px 14px; font-size: 12px; }

  /* Category nav */
  .cat-nav-bar { padding: 20px 0; }
  .cat-nav-inner { justify-content: flex-start; padding: 0 12px 12px; gap: 12px; }
  .cat-pill { min-width: 130px; padding: 20px 10px; gap: 12px; border-radius: 16px; }
  .cat-pill img { width: 80px; height: 80px; }
  .cat-pill span { font-size: 12px; }

  /* Text headings */
  .hero-title { font-size: 28px; }
  .section-heading h2 { font-size: 28px; }
  .cat-title { font-size: 22px; }
  .about-heading-col h2 { font-size: 30px; }

  /* Feature icons */
  .features-4col { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-box { padding: 20px 14px; }
  .feature-icon-circle { width: 54px; height: 54px; font-size: 22px; }

  /* Fleet */
  .fleet-3col { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Why choose */
  .why-choose-split { grid-template-columns: 1fr; gap: 30px; }
  .feature-2x2 { grid-template-columns: 1fr; }
  .checklist-box { padding: 24px 20px; }

  /* Bento grid */
  .bento-grid, .bento-grid.bento-large-left, .bento-grid.bento-large-right {
    grid-template-columns: 1fr;
  }

  /* Service cards / carousels */
  .service-card { width: 270px; max-width: 270px; flex: 0 0 270px; }
  .package-scroller .service-card { flex: 0 0 260px; min-width: 260px; }
  .scroll-btn { display: none !important; }
  .promo-banner { height: 200px; border-radius: 12px; }

  /* Footer */
  .footer { padding: 48px 0 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bar-links a { margin: 0 8px; }
  .footer-call-widget .text strong { font-size: 16px; }

  /* App section */
  .app-heading h2 { font-size: 30px; }
  .app-badges { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Section paddings */
  .feature-icons-section { padding: 40px 0 24px; }
  .about-text-section { padding: 48px 0; }
  .fleet-section { padding: 40px 0; }
  .why-choose-section { padding: 48px 0; }
  .services-section { padding: 48px 0; }
  .packages-section { padding: 30px 0 60px; }
  .category-block { margin-bottom: 50px; }
}

/* ── Small mobile (≤ 480px) ── */
@media(max-width:480px){
  .container { padding: 0 16px; }
  .features-4col { grid-template-columns: 1fr; }
  .fleet-3col { grid-template-columns: 1fr 1fr; }
  .hero-tabs { width: 100%; justify-content: space-around; }
  .hero-tab { padding: 8px 10px; font-size: 11px; }
  .service-card { width: 240px; max-width: 240px; flex: 0 0 240px; }
  .package-scroller .service-card { flex: 0 0 240px; min-width: 240px; }
  .booking-widget-container { height: 400px; }
  .footer-inner { gap: 28px; }
}

/* ══ HOMEPAGE NEW SECTIONS ══ */
.feature-icons-section { padding: 60px 0 40px; background: var(--white); }
.features-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-box { text-align: center; padding: 30px 20px; background: var(--gray-50); border-radius: 16px; transition: transform 0.3s; }
.feature-box:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.feature-icon-circle { width: 70px; height: 70px; background: var(--orange); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
.feature-box h3 { font-size: 20px; color: var(--dark); margin-bottom: 12px; }
.feature-box p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

.about-text-section { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.subtitle-badge { display: inline-block; padding: 6px 16px; background: rgba(255,123,0,0.1); color: var(--orange); font-weight: 700; border-radius: 30px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.about-heading-col h2 { font-size: 42px; color: var(--dark); line-height: 1.2; font-weight: 800; margin-bottom: 0; }
.about-heading-col h2 span { color: var(--orange); }
.about-text-col { border-left: 1px solid var(--gray-200); padding-left: 40px; }
.about-text-col p.lead-text { font-size: 18px; color: var(--dark); font-weight: 500; margin-bottom: 20px; line-height: 1.6; }
.about-text-col p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.about-text-col p:last-child { margin-bottom: 0; }

.fleet-section { padding: 60px 0; background: var(--gray-50); }
.fleet-section .container { max-width: 1500px; }
.fleet-3col { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.fleet-card { background: var(--white); border-radius: 16px; padding: 24px 16px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.04); transition: transform 0.3s; }
.fleet-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.fleet-card h3 { font-size: 24px; color: var(--dark); margin-bottom: 5px; }
.fleet-card .fleet-type { font-size: 14px; font-weight: 700; color: var(--orange); text-transform: uppercase; margin-bottom: 20px; display: block; }
.fleet-card img { width: 100%; max-width: 250px; height: 140px; object-fit: contain; margin-bottom: 20px; transition: transform 0.3s; mix-blend-mode: multiply; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card .fleet-seats { display: inline-flex; align-items: center; gap: 8px; background: var(--gray-100); padding: 8px 16px; border-radius: 30px; font-size: 14px; font-weight: 600; color: var(--gray-700); }

.why-choose-section { padding: 80px 0; background: var(--white); }
.why-choose-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.checklist-box { background: var(--gray-50); padding: 40px; border-radius: 20px; }
.checklist-box h3 { font-size: 28px; color: var(--dark); margin-bottom: 30px; }
.checklist-items { list-style: none; padding: 0; margin: 0; }
.checklist-items li { display: flex; align-items: center; gap: 16px; font-size: 17px; color: var(--gray-700); font-weight: 500; margin-bottom: 20px; }
.checklist-items li:last-child { margin-bottom: 0; }
.checklist-items li i { color: #10b981; font-size: 20px; }

.feature-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.feature-mini-box h4 { font-size: 20px; color: var(--dark); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.feature-mini-box h4 i { color: var(--orange); font-size: 24px; }
.feature-mini-box p { font-size: 15px; color: var(--gray-600); line-height: 1.6; }

@media (max-width: 992px) {
  .features-4col { grid-template-columns: repeat(2, 1fr); }
  /* Removed fleet-3col grid override for mobile flex layout */
  .why-choose-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .features-4col { grid-template-columns: 1fr; }
  /* Removed fleet-3col grid override for mobile flex layout */
  .feature-2x2 { grid-template-columns: 1fr; }
}

/* ══ SERVICES SECTION ══ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.section-heading h2 span {
  color: var(--orange);
}
.section-heading p.section-description {
  font-size: 16px;
  color: var(--gray-600);
  font-weight: 400;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  column-count: 2;
  column-gap: 48px;
}
@media (max-width: 768px) {
  .section-heading p.section-description {
    column-count: 1;
    text-align: center;
  }
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.scroll-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.scroll-btn.left { left: 8px; }
.scroll-btn.right { right: 8px; }

.services-section .carousel-wrapper,
.packages-section .carousel-wrapper {
  padding: 0 64px;
}
.services-section .scroll-btn,
.packages-section .scroll-btn {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.services-section .scroll-btn:hover,
.packages-section .scroll-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.services-section .carousel-wrapper .scroll-btn,
.packages-section .carousel-wrapper .scroll-btn {
  top: 96px;
  transform: none;
}
.services-section .carousel-wrapper .scroll-btn.left,
.packages-section .carousel-wrapper .scroll-btn.left {
  left: 0;
}
.services-section .carousel-wrapper .scroll-btn.right,
.packages-section .carousel-wrapper .scroll-btn.right {
  right: 0;
}

.cat-nav-bar .carousel-wrapper {
  padding: 0 42px;
}
.cat-nav-bar .scroll-btn,
.sticky-nav-bar .scroll-btn {
  background: var(--white);
  color: var(--dark);
  border-color: var(--gray-200);
  box-shadow: 0 8px 22px rgba(0,0,0,0.14);
  width: 44px;
  height: 44px;
  font-size: 16px;
}
.cat-nav-bar .scroll-btn:hover,
.sticky-nav-bar .scroll-btn:hover {
  background: var(--white);
  color: var(--orange);
  border-color: var(--gray-200);
}
.cat-nav-bar .scroll-btn.left {
  left: 0;
}
.cat-nav-bar .scroll-btn.right {
  right: 0;
}

.service-grid {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  margin-bottom: 60px;
  padding: 0 0 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.service-grid::-webkit-scrollbar { display: none; }

.service-card {
  width: 320px;
  max-width: 320px;
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.service-img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-img-wrapper img {
  transform: scale(1.05);
}

/* Premium Styling for transparent cutout vehicle images */
.service-img-wrapper.product-shot {
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.service-img-wrapper.product-shot img {
  width: 90%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 15px rgba(0,0,0,0.12));
}
.service-card:hover .service-img-wrapper.product-shot img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.18));
}
.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.service-badge.green {
  background: var(--green);
}
.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
  min-height: 48px;
}
.service-title i {
  color: var(--orange);
  font-size: 18px;
  margin-right: 8px;
}
.service-desc {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 46px;
  flex: none;
}
.btn-primary-block {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--orange);
  color: white;
  padding: 14px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary-block:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 14px rgba(255,123,0,0.25);
}
.promo-banner {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  display: block;
}

@media(max-width:1024px) {
  /* Removed service-grid override */
  .promo-banner { height: 320px; }
}
@media(max-width:768px) {
  /* Removed service-grid override */
  .promo-banner { height: 240px; }
  .section-heading h2 { font-size: 32px; }
}

/* ══ PACKAGE SCROLLER (Horizontal Cards) ══ */
.package-scroller {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding: 0 0 24px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.package-scroller.two-rows {
  display: grid;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
}
.package-scroller::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.package-scroller .service-card {
  flex: 0 0 320px;
  min-width: 320px;
}
.package-scroller.two-rows .service-card {
  flex: none;
  min-width: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .package-scroller .service-card {
    flex: 0 0 280px;
    min-width: 280px;
  }
  .package-scroller.two-rows {
    grid-auto-columns: 280px;
  }
}

/* Scroller Controls */
.scroller-controls {
  display: flex;
  gap: 12px;
}
.scroller-controls .scroll-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.scroller-controls .scroll-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 12px rgba(255,123,0,0.2);
}
@media (max-width: 768px) {
  .scroller-controls {
    display: none;
  }
  .scroll-btn {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE POLISH — FINAL OVERRIDES
════════════════════════════════════════════ */
:root {
  --gray-600: #4B5563;
}

body {
  padding-bottom: 0;
}

.hamburger.active {
  background: var(--orange);
  border-color: var(--orange);
}
.hamburger.active span {
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mobile-menu .mobile-action {
  justify-content: center;
  color: #fff;
  min-height: 46px;
  border-radius: 12px;
}
.mobile-menu .mobile-action i {
  color: #fff;
}
.mobile-menu .mobile-action.call {
  background: var(--orange);
}
.mobile-menu .mobile-action.whatsapp {
  background: var(--green);
}
.mobile-menu .mobile-action:hover {
  filter: brightness(0.96);
}
.mobile-store-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 8px 0 2px;
}
.mobile-store-badges a {
  padding: 0;
  border-radius: 10px;
  background: transparent;
  overflow: hidden;
}
.mobile-store-badges a:hover {
  background: transparent;
  transform: translateY(-1px);
}
.mobile-store-badges img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.floating-contact {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 126px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.25);
}
.floating-call {
  background: var(--orange);
}
.floating-whatsapp {
  background: var(--green);
}

@media (max-width: 1180px) {
  .nav-inner {
    gap: 14px;
  }
  .nav-brand img {
    height: 72px;
  }
  .header-app-links .app-badge {
    width: 118px;
  }
  .nav-phone {
    padding: 9px 14px;
  }
  .btn-wa {
    padding: 9px 16px;
  }
  .hero {
    min-height: 620px;
    background-position: 39% center;
  }
  .hero-right-stack {
    max-width: 470px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 22px;
  }
  .nav-inner {
    height: 82px;
  }
  .nav-brand img {
    height: 68px;
  }
  .center-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .sticky-nav-bar,
  .mobile-menu {
    top: 82px;
  }
  .hero {
    min-height: auto;
    padding: 36px 0 46px;
    background-position: 20% center;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249,250,251,0.76), rgba(249,250,251,0.2) 44%, rgba(249,250,251,0.86));
    pointer-events: none;
  }
  .hero .container {
    position: relative;
    z-index: 1;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-right-stack {
    max-width: 620px;
    justify-self: end;
  }
  .booking-widget-container {
    height: 500px;
  }
  .features-4col,
  .fleet-3col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 68px;
  }
  .container {
    padding: 0 16px;
  }
  .nav-inner {
    height: 68px;
  }
  .nav-brand img {
    height: 56px;
  }
  .header-app-links {
    display: flex;
    gap: 6px;
  }
  .header-app-links .app-badge {
    width: clamp(72px, 22vw, 92px);
  }
  .header-right {
    gap: 8px;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .sticky-nav-bar,
  .mobile-menu {
    top: 68px;
  }
  .mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    padding: 14px 16px 16px;
  }
  .mobile-store-badges {
    display: none;
  }
  .sticky-nav-bar {
    display: flex;
    padding: 8px 12px;
    overflow-x: auto;
  }
  .sticky-nav-bar .hero-tabs {
    width: auto;
    max-width: 100%;
  }
  .hero {
    padding: 14px 0 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.9) 44%, var(--gray-50) 100%),
      url('../img/shalini-cabs-hero-section-1.png') no-repeat center top / cover;
  }
  .hero::before {
    display: none;
  }
  .hero-right-stack {
    padding: 0;
    max-width: none;
  }
  .hero-tabs-container {
    margin-bottom: 12px;
  }
  .hero-tabs {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    width: 100%;
    border-radius: 16px;
    padding: 5px;
  }
  .hero-tab {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
  }
  .hero-tabs-container .hero-tab.active {
    background: transparent;
    color: var(--gray-500);
    box-shadow: none;
  }
  .booking-widget-container {
    height: 430px;
    padding: 6px;
    border-radius: 16px;
  }
  .booking-iframe {
    border-radius: 12px;
  }
  .cat-nav-bar {
    padding: 16px 0;
  }
  .cat-nav-inner {
    gap: 10px;
    padding: 0 2px 12px !important;
  }
  .cat-pill {
    min-width: 112px;
    padding: 14px 10px;
    gap: 10px;
    border-radius: 14px;
  }
  .cat-pill img {
    width: 68px;
    height: 68px;
  }
  .cat-pill span {
    font-size: 11px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .section-heading h2,
  .faq-heading {
    font-size: 28px;
    letter-spacing: 0;
  }
  .section-heading p.section-description {
    font-size: 14.5px;
    line-height: 1.65;
    text-align: left;
  }
  .feature-icons-section,
  .about-text-section,
  .fleet-section,
  .why-choose-section,
  .services-section,
  .faq-section,
  .app-section {
    padding: 42px 0;
  }
  .features-4col,
  .about-grid,
  .fleet-3col,
  .why-choose-split,
  .feature-2x2,
  .app-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .feature-box,
  .fleet-card,
  .checklist-box,
  .app-feature-box {
    border-radius: 14px;
  }
  .fleet-card h3 {
    font-size: 20px;
  }
  .fleet-card img {
    height: 120px;
    margin: 0 auto 16px;
  }
  .about-grid {
    gap: 24px;
    align-items: start;
  }
  .about-heading-col h2 {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.15;
  }
  .about-text-col {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--gray-200);
    padding-top: 22px;
  }
  .about-text-col p.lead-text,
  .about-text-col p {
    font-size: 15px;
    line-height: 1.68;
  }
  .why-choose-split {
    gap: 28px;
  }
  .checklist-box {
    padding: 24px 18px;
  }
  .checklist-box h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .checklist-items li {
    align-items: flex-start;
    font-size: 15px;
    gap: 12px;
    margin-bottom: 15px;
  }
  .service-grid,
  .package-scroller {
    gap: 14px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
  }
  .package-scroller.two-rows {
    display: flex;
    grid-template-rows: none;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
  }
  .service-card,
  .package-scroller .service-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
  .package-scroller.two-rows .service-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
  .service-img-wrapper {
    height: 168px;
  }
  .service-content {
    padding: 18px;
  }
  .service-title {
    font-size: 17px;
    min-height: 44px;
  }
  .service-desc {
    font-size: 13.5px;
  }
  .category-block {
    scroll-margin-top: 84px;
    margin-bottom: 42px;
  }
  .cat-header {
    align-items: flex-start;
    margin-bottom: 18px;
  }
  .cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 18px;
  }
  .cat-title {
    font-size: 21px;
    letter-spacing: 0;
    line-height: 1.2;
  }
  .promo-banner {
    height: 180px;
    border-radius: 0;
    margin-top: 10px;
  }
  .app-image-col {
    order: -1;
  }
  .app-image-col img {
    max-width: 260px;
    margin: 0 auto;
    transform: none;
  }
  .app-heading h2 {
    font-size: 29px;
  }
  .app-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
  }
  .app-badges img {
    width: 100%;
    height: 44px;
    object-fit: contain;
  }
  .app-feature-box {
    padding: 18px;
    gap: 14px;
  }
  .app-feature-icon {
    width: 42px;
    height: 42px;
  }
  .footer {
    padding: 44px 0 22px;
  }
  .footer-logo {
    height: 58px;
  }
  .footer-call-widget .text strong {
    white-space: normal;
  }
  .footer-bar {
    align-items: flex-start;
    text-align: left;
  }
  .footer-bar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bar-links a {
    margin: 0;
  }
  .floating-contact {
    left: 16px;
    right: 16px;
    bottom: max(10px, env(safe-area-inset-bottom));
    flex-direction: row;
    gap: 8px;
  }
  .floating-btn {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    border-radius: 14px;
    padding: 0 8px;
    font-size: 14px;
  }
  .carousel-wrapper .scroll-btn {
    display: flex !important;
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .carousel-wrapper .scroll-btn.left {
    left: 0;
  }
  .carousel-wrapper .scroll-btn.right {
    right: 0;
  }
  .services-section .carousel-wrapper .scroll-btn,
  .packages-section .carousel-wrapper .scroll-btn {
    top: 96px;
    transform: none;
  }
  .cat-nav-bar .carousel-wrapper .scroll-btn {
    top: 50%;
    transform: translateY(-50%);
  }
  .services-section .carousel-wrapper,
  .packages-section .carousel-wrapper {
    padding: 0 44px;
  }
  .cat-nav-bar .carousel-wrapper {
    padding: 0 36px;
  }
  .cat-nav-bar .cat-nav-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-top: 12px;
  }
  .hero-right-stack {
    padding-top: 0;
  }
  .hero-tab {
    font-size: 11px;
    padding: 8px 10px;
  }
  .booking-widget-container {
    height: 405px;
  }
  .mobile-store-badges img,
  .app-badges img {
    height: 40px;
  }
  .fleet-3col {
    gap: 12px;
  }
  .fleet-card {
    padding: 18px 12px;
  }
}
