:root {
  --primary:    #0D2B52;
  --secondary:  #F4A340;
  --dark:       #111111;
  --light:      #ffffff;
  --gray:       #f5f5f5;
  --primary-dark: #091e3a;
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;
  --topbar-h:  42px;
  --navbar-h:  72px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  padding-top: calc(var(--topbar-h) + var(--navbar-h));
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-dark);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.top-bar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a,
.top-bar-right a,
.top-bar-right span {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 12.5px;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--secondary);
}

.top-bar-right a i {
  font-size: 14px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--light);
  height: var(--navbar-h);
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(13,43,82,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(13,43,82,0.14);
  background: rgba(255,255,255,0.98);
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ===== LOGO ===== */
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  background: var(--primary);
  color: var(--secondary);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-name span {
  color: var(--secondary);
}

/* ===== NAV MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  display: block;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 60%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--primary);
  background: rgba(13,43,82,0.05);
}

/* ===== HEADER ACTION BUTTONS ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-wa,
.btn-call {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-wa {
  background: #25D366;
  color: var(--light);
}

.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

.btn-call {
  background: var(--primary);
  color: var(--light);
}

.btn-call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(13,43,82,0.35);
}

/* ===== HAMBURGER (Mobile) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger:hover {
  background: var(--gray);
}

.bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
  transition: var(--transition);
}

/* Hamburger open state */
.hamburger.open .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 997;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .btn-wa span,
  .btn-call span {
    display: none;
  }
  .btn-wa,
  .btn-call {
    padding: 9px 12px;
  }
  .nav-menu li a {
    padding: 8px 10px;
    font-size: 13.5px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-about p {
    max-width: 100%;
  }
  .hero-content { margin-left: 40px; }
  .booking-fields { grid-template-columns: 1fr 1fr; }
  .bfield-btn { grid-column: 1 / -1; }
  .bikes-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card-highlight { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .timeline::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    gap: 40px;
  }

  .about-story-grid {
    gap: 40px;
  }

  .story-img-secondary {
    display: none; /* hide overlapping small image on smaller screens */
  }

  .story-img-badge {
    bottom: -16px;
    left: 16px;
  }

  .about-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .wrc-highlight {
    transform: none; /* remove upward shift on tablet */
  }

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pricing-card-featured {
    transform: scale(1.02);
  }

  .pricing-card-featured.visible {
    transform: translateY(-6px) scale(1.02);
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bikes-banner-content h1 { font-size: 38px; }
  .filter-price { margin-left: 0; }
}

/* Mobile */
@media (max-width: 768px) {

  :root {
    --topbar-h: 0px;
  }

  body {
    padding-top: var(--navbar-h);
  }

  .top-bar {
    display: none;
  }

  .navbar {
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  /* Mobile slide-in menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 20px 30px;
    z-index: 998;
    transition: right 0.35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    font-size: 15px;
    border-radius: 10px;
    color: var(--dark);
    width: 100%;
  }

  .nav-menu li a.active,
  .nav-menu li a:hover {
    background: rgba(13,43,82,0.07);
    color: var(--primary);
  }

  .nav-menu li a::after {
    display: none;
  }

  /* WhatsApp + Call buttons inside mobile menu bottom */
  .nav-menu::after {
    content: '';
    display: block;
    margin-top: auto;
  }

  /* Mobile bottom sticky bar */
  .mobile-bottom-bar {
    display: flex;
  }
  .mobile-bottom-bar {
    display: flex;
  }
  body {
    padding-bottom: 56px;
  }
  .footer-main {
    padding: 48px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
  .float-wa {
    display:none;  
    bottom: 76px;
    right: 16px;
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
  .back-to-top {
    bottom: 76px;
    left: 16px;
  }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 26px; }

  .hero-slide { min-height: 85vh; padding: 40px 20px; }
  .hero-content { margin: 0; }
  .hero-content h1 { font-size: 36px; }
  .hero-content > p { font-size: 15px; }
  .hero-btns { gap: 10px; }
  .btn-primary-lg, .btn-wa-lg, .btn-outline-lg { padding: 12px 20px; font-size: 14px; }
  .hero-stats { gap: 16px; padding: 14px 18px; }
  .hstat strong { font-size: 18px; }
  .hero-prev, .hero-next { display: none; }

  .quick-booking { margin-top: -30px; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-card-header span { display: none; }

  .bikes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .map-info-card { position: static; max-width: 100%; border-radius: 0 0 16px 16px; }
  .map-wrapper { border-radius: 16px; overflow: hidden; }

  .cta-content h2 { font-size: 28px; }
  .cta-btn-wa, .cta-btn-call { font-size: 14px; padding: 12px 22px;   backdrop-filter: blur(4px);
}

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-info-section {
    padding: 40px 0 16px;
  }

  .contact-main-section {
    padding: 50px 0;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .wa-strip-content {
    flex-direction: column;
    text-align: center;
  }

  .wa-strip-text {
    flex-direction: column;
    text-align: center;
  }

  .wa-strip-text h3 {
    font-size: 1.2rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-contact-wa,
  .btn-contact-email {
    width: 100%;
  }

  /* Banner */
  .about-banner {
    min-height: 260px;
  }

  .about-banner-content {
    padding: 60px 20px 40px;
  }

  /* Story */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 56px; /* space for floating badge */
  }

  .story-img-block {
    margin-bottom: 20px; /* badge peeche nahi jaaye */
  }

  .story-text-block {
    padding-left: 0;
  }

  .story-highlights {
    grid-template-columns: 1fr 1fr;
  }

  /* Why */
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wrc-highlight {
    transform: none;
  }

  /* Counters */
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .counter-card {
    padding: 28px 18px 24px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-table-section,
  .pricing-included,
  .pricing-faq {
    padding: 56px 0;
  }

  /* Banner */
  .pricing-banner {
    min-height: 300px;
  }

  .pricing-banner-content {
    padding: 80px 20px 60px;
  }

  /* Cards */
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card-featured {
    transform: none;
    order: -1; /* Featured card pehle dikhao */
  }

  .pricing-card-featured.visible {
    transform: translateY(-6px);
  }

  /* Included */
  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .pricing-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .pricing-cta-btns {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .cta-btn-wa,
  .cta-btn-call {
    justify-content: center;
  }
  .bikes-page-banner { padding: 56px 0 52px; }
  .bikes-banner-content h1 { font-size: 30px; }
  .bikes-banner-content p { font-size: 14.5px; }
  .bstat strong { font-size: 20px; }

  .bikes-filter-bar { padding: 12px 0; }
  .filter-inner { gap: 10px; }
  .filter-search { max-width: 100%; min-width: 0; flex: 1 1 100%; }
  .filter-tabs { flex: 1 1 100%; }
  .filter-price { width: 100%; }
  .filter-price select { flex: 1; }

  .bikes-result-bar { flex-direction: column; align-items: flex-start; gap: 6px; }

  .wa-strip-actions { flex-direction: column; width: 100%; }
  .btn-wa-strip,
  .btn-call-strip { width: 100%; justify-content: center; }
}

/* ===== MOBILE BOTTOM STICKY CALL/WA BAR ===== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 996;
  background: var(--light);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--light);
}

.mobile-bottom-bar .mbb-call {
  background: var(--primary);
}

.mobile-bottom-bar .mbb-wa {
  background: #25D366;
}

/*-------------------------*/
/* ===== FOOTER MAIN ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
}

.footer-main {
  padding: 64px 0 40px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 64px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  background: var(--secondary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--light);
  line-height: 1.2;
}

.footer-logo-name span {
  color: var(--secondary);
}

/* ===== FOOTER ABOUT COL ===== */
.footer-about p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  max-width: 280px;
}

/* ===== SOCIAL ICONS ===== */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== FOOTER HEADING ===== */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a,
.footer-links li span {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links li a i,
.footer-links li span i {
  font-size: 10px;
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

/* ===== FOOTER CONTACT LIST ===== */
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact li a:hover {
  color: var(--secondary);
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

.footer-bottom .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-bottom p i {
  color: var(--secondary);
  margin: 0 2px;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.float-wa {
  position: fixed;
  bottom: 88px;
  right: 20px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 995;
  transition: var(--transition);
  animation: float-pulse 2.5s ease-in-out infinite;
}

.float-wa:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 88px;
  left: 20px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13,43,82,0.3);
  z-index: 994;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

/* Tablet */

/* Mobile */

/* =============================================
   ===== HOMEPAGE — INDEX.PHP SECTIONS =====
   ============================================= */

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(244,163,64,0.12);
  color: var(--secondary);
  border: 1px solid rgba(244,163,64,0.3);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  font-size: 15.5px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-view-all:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,43,82,0.2);
}

/* ===== HERO ===== */
.hero { position: relative; width: 100%; }

.hero-slide {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 60px 20px;
}

.hero-content {
  max-width: 650px;
  margin-left: calc((100vw - 1200px) / 2 + 20px);
  color: var(--light);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(244,163,64,0.18);
  border: 1px solid rgba(244,163,64,0.4);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--light);
  margin-bottom: 20px;
}

.hero-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 34px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244,163,64,0.35);
}
.btn-primary-lg:hover {
  background: #e8962e;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,163,64,0.5);
}

.btn-wa-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa-lg:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-outline-lg:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hstat { text-align: center; }
.hstat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
}
.hstat span { font-size: 12px; color: rgba(255,255,255,0.65); }
.hstat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-prev, .hero-next {
  color: var(--light);
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 46px; height: 46px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}
.hero-prev:hover, .hero-next:hover { background: var(--secondary); color: var(--primary); }
.hero-prev::after, .hero-next::after { font-size: 16px; font-weight: 700; }

.hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5); width: 10px; height: 10px; opacity: 1; transition: var(--transition);
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--secondary); width: 30px; border-radius: 5px;
}

/* ===== QUICK BOOKING ===== */
.quick-booking {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.booking-card {
  background: var(--light);
  border-radius: 18px;
  box-shadow: 0 16px 60px rgba(13,43,82,0.14);
  overflow: hidden;
}

.booking-card-header {
  background: var(--primary);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light);
}
.booking-card-header i { font-size: 20px; color: var(--secondary); }
.booking-card-header h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 600; }
.booking-card-header span { font-size: 13px; color: rgba(255,255,255,0.7); margin-left: auto; }

.booking-form { padding: 24px 28px; }

.booking-fields {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
  gap: 16px;
  align-items: end;
}

.bfield label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bfield select,
.bfield input[type="date"] {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e6ef;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: var(--gray);
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}
.bfield select:focus, .bfield input[type="date"]:focus {
  border-color: var(--primary);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(13,43,82,0.08);
}

.btn-book-now {
  width: 100%;
  padding: 12px 20px;
  background: #25D366;
  color: var(--light);
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  text-decoration: none;
}
.btn-book-now:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.booking-note {
  font-size: 12.5px;
  color: #999;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.booking-note i { color: var(--secondary); }

/* ===== FEATURED BIKES ===== */
.featured-bikes { background: var(--gray); }

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bike-card {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,43,82,0.07);
  transition: var(--transition);
  border: 1.5px solid transparent;
  animation: cardFadeIn 0.35s ease both;
}
.bike-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13,43,82,0.13);
  border-color: rgba(13,43,82,0.08);
}
.bike-card-featured {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(244,163,64,0.18);
}

.bike-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.bike-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.bike-card:hover .bike-card-img img { transform: scale(1.06); }

.bike-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-scooty  { background: #e8f5e9; color: #2e7d32; }
.badge-sports  { background: #fff3e0; color: #e65100; }
.badge-cruiser { background: #e3f2fd; color: #1565c0; }

.bike-popular {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 10.5px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.bike-card-body { padding: 20px; }
.bike-card-body h3 {
  font-family: var(--font-heading);
  font-size: 17px; font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.bike-specs {
  list-style: none;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.bike-specs li {
  font-size: 12.5px; color: #666;
  display: flex; align-items: center; gap: 5px;
}
.bike-specs li i { color: var(--secondary); font-size: 11px; }

.bike-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.bike-price { display: flex; flex-direction: column; }
.price-label { font-size: 11px; color: #999; margin-bottom: 2px; }
.bike-price strong {
  font-family: var(--font-heading);
  font-size: 22px; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.bike-price strong small { font-size: 13px; font-weight: 500; color: #888; }
.price-day { font-size: 12px; color: #888; margin-top: 2px; }

.btn-rent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-rent:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}

/* ===== PRICING SECTION ===== */
.pricing-section { background: var(--light); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--gray);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(13,43,82,0.12);
  box-shadow: 0 12px 40px rgba(13,43,82,0.08);
}
.pricing-card-highlight {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(13,43,82,0.25);
}
.pricing-card-highlight:hover {
  transform: translateY(-12px);
  border-color: var(--secondary);
}

.pricing-popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-icon {
  width: 64px; height: 64px;
  background: rgba(13,43,82,0.07);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--primary);
  margin: 0 auto 18px;
}
.pricing-card-highlight .pricing-icon {
  background: rgba(255,255,255,0.12);
  color: var(--secondary);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.pricing-card-highlight h3 { color: var(--light); }

.pricing-subtitle { font-size: 13px; color: #888; margin-bottom: 24px; }
.pricing-card-highlight .pricing-subtitle { color: rgba(255,255,255,0.6); }

.pricing-rates {
  background: var(--light);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.pricing-card-highlight .pricing-rates { background: rgba(255,255,255,0.1); }

.rate-item { flex: 1; text-align: center; }
.rate-label {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 12px; color: #888; margin-bottom: 6px;
}
.pricing-card-highlight .rate-label { color: rgba(255,255,255,0.6); }
.rate-value {
  font-family: var(--font-heading);
  font-size: 26px; font-weight: 800; color: var(--primary);
}
.pricing-card-highlight .rate-value { color: var(--secondary); }
.rate-divider { width: 1px; height: 40px; background: #e0e0e0; }
.pricing-card-highlight .rate-divider { background: rgba(255,255,255,0.2); }

.pricing-features {
  list-style: none; text-align: left;
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.pricing-features li {
  font-size: 13.5px; color: #555;
  display: flex; align-items: center; gap: 8px;
}
.pricing-card-highlight .pricing-features li { color: #ffffff !important; }
.pricing-features li i { color: #25D366; font-size: 12px; flex-shrink: 0; }
.pricing-card-highlight .pricing-features li i { color: #F4A340; font-size: 12px; flex-shrink: 0; }

.btn-pricing-wa {
  display: flex;
  align-items: center; justify-content: center;
  gap: 8px;
  background: #25D366; color: var(--light);
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-pricing-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ===== WHY US ===== */
.why-us { background: var(--gray); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13,43,82,0.1);
  box-shadow: 0 12px 36px rgba(13,43,82,0.09);
}

.why-icon {
  width: 62px; height: 62px;
  background: rgba(13,43,82,0.06);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--primary);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--secondary);
}
.why-card h4 {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.why-card p { font-size: 13.5px; color: #666; line-height: 1.7; }

/* ===== HOW TO BOOK (TIMELINE) ===== */
.how-to-book { background: var(--light); }

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(10% + 10px);
  right: calc(10% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}

.timeline-item { text-align: center; position: relative; z-index: 1; }

.timeline-number {
  font-family: var(--font-heading);
  font-size: 11px; font-weight: 700;
  color: var(--secondary);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-icon {
  width: 54px; height: 54px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--secondary);
  margin: 0 auto 16px;
  border: 3px solid var(--light);
  box-shadow: 0 4px 16px rgba(13,43,82,0.2);
  transition: var(--transition);
}
.timeline-item:hover .timeline-icon {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.1);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 13.5px; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.timeline-content p { font-size: 12.5px; color: #666; line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray); }

.testimonials-slider { padding-bottom: 44px !important; }

.testimonial-card {
  background: var(--light);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(13,43,82,0.07);
  border: 1.5px solid transparent;
  transition: var(--transition);
  height: auto;
}
.testimonial-card:hover {
  border-color: rgba(244,163,64,0.25);
  box-shadow: 0 10px 36px rgba(13,43,82,0.1);
}

.tcard-top {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 18px;
}
.tcard-avatar {
  width: 56px; height: 56px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--secondary);
}
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-info h5 {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 2px;
}
.tcard-info span { font-size: 12px; color: #999; display: block; margin-bottom: 6px; }
.tcard-stars i { color: var(--secondary); font-size: 12px; }
.testimonial-card > p { font-size: 14px; color: #555; line-height: 1.75; font-style: italic; }

.testimonials-pagination .swiper-pagination-bullet { background: #ccc; opacity: 1; }
.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--secondary); width: 24px; border-radius: 5px;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.4s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,43,82,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-overlay i { font-size: 28px; color: var(--light); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; border-radius: 8px; object-fit: contain; }

.lightbox-close {
  position: absolute; top: 18px; right: 20px;
  background: rgba(255,255,255,0.12); color: var(--light);
  border: none; width: 42px; height: 42px;
  border-radius: 50%; font-size: 16px; cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); color: var(--light);
  border: none; width: 48px; height: 48px;
  border-radius: 50%; font-size: 18px; cursor: pointer;
  transition: var(--transition);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--secondary); color: var(--primary); }

/* ===== MAP SECTION ===== */
.map-section { background: var(--gray); }

.map-wrapper {
  position: relative;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(13,43,82,0.12);
}
.map-wrapper iframe { display: block; }

.map-info-card {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--light);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 8px 28px rgba(13,43,82,0.15);
  max-width: 260px;
}
.map-info-card h4 {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700;
  color: var(--primary); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.map-info-card h4 i { color: var(--secondary); }
.map-info-card p { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 14px; }

.btn-directions {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: var(--light);
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 8px;
  text-decoration: none; transition: var(--transition);
}
.btn-directions:hover { background: var(--secondary); color: var(--primary); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: var(--primary);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(244,163,64,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(244,163,64,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }

.cta-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,163,64,0.15);
  border: 1px solid rgba(244,163,64,0.3);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 20px;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 40px; font-weight: 800;
  color: var(--light); margin-bottom: 14px; line-height: 1.2;
}
.cta-content h2 span { color: var(--secondary); }
.cta-content > p { font-size: 16px; color: rgba(255,255,255,0.72); margin-bottom: 34px; }

.cta-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: var(--light);
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  padding: 15px 32px; border-radius: 12px;
  text-decoration: none; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.cta-btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.cta-btn-call {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--light);
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  padding: 13px 30px; border-radius: 12px;
  text-decoration: none; transition: var(--transition);
}
.cta-btn-call:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.cta-note {
  font-size: 13px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-note i { color: var(--secondary); }

/* =============================================
   ===== HOMEPAGE RESPONSIVE =====
   ============================================= */

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .timeline-icon { flex-shrink: 0; margin: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 10px; }
  .hstat-divider { width: 60px; height: 1px; }
  .contact-banner .banner-content h1 {
    font-size: 1.8rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 24px 18px;
  }

  .map-embed iframe {
    height: 280px;
  }

  .about-banner-content h1 {
    font-size: 1.8rem;
  }

  .story-highlights {
    grid-template-columns: 1fr;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .counter-card {
    padding: 22px 14px 18px;
  }

  .counter-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img-wrap {
    height: 260px;
  }
  .pricing-banner-content h1 {
    font-size: 1.8rem;
  }

  .pricing-cards-grid {
    max-width: 100%;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-top,
  .pricing-features {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-book-now {
    margin-left: 20px;
    margin-right: 20px;
  }

  .pricing-table-heading {
    padding: 16px 20px;
  }
  .bikes-banner-content h1 { font-size: 26px; }
  .bikes-banner-stats { gap: 16px; }
  .bstat-divider { height: 28px; }
  .ftab { padding: 7px 12px; font-size: 12px; }
}
/*------------*/
/* ============================================================
   === CONTACT PAGE ===
   Add this block inside style.css before the RESPONSIVE section
   ============================================================ */

/* ----- Page Banner ----- */
.contact-banner {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244,163,64,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.contact-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,30,58,0.45);
}

.contact-banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px 40px;
}

.contact-banner .banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--light);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.contact-banner .banner-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--light); }

.breadcrumb i {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
}

.breadcrumb span {
  color: rgba(255,255,255,0.75);
}

/* ----- Shared Container ----- */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ----- Section Label ----- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ----- Contact Info Cards ----- */
.contact-info-section {
  padding: 60px 0 20px;
  background: var(--gray);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-info-card {
  background: var(--light);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13,43,82,0.07);
  transition: var(--transition);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13,43,82,0.13);
  border-top-color: var(--secondary);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #1a4a8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.contact-icon i {
  color: var(--light);
  font-size: 1.3rem;
}

.contact-icon.phone-icon { background: linear-gradient(135deg, #22c55e, #16a34a); }
.contact-icon.email-icon { background: linear-gradient(135deg, var(--secondary), #e8892a); }
.contact-icon.clock-icon { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 4px;
}

.info-link {
  display: block;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin-top: 4px;
}

.info-link:hover { color: var(--secondary); }

.info-link.wa-link {
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.info-link.wa-link:hover { color: #16a34a; }

.hours-text {
  font-size: 0.95rem !important;
  font-weight: 700;
  color: var(--secondary) !important;
}

/* ----- Contact Main Section ----- */
.contact-main-section {
  padding: 70px 0;
  background: var(--light);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ----- Form Side ----- */
.contact-form-wrapper,
.contact-map-wrapper {
  /* no extra needed */
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.25;
}

.contact-form-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

/* ----- Form Styles ----- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--secondary);
  font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: #fafafa;
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(13,43,82,0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.error-msg {
  font-size: 0.78rem;
  color: #ef4444;
  display: none;
  align-items: center;
  gap: 4px;
}

.error-msg.show {
  display: flex;
}

/* ----- Form Buttons ----- */
.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-contact-wa,
.btn-contact-email {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-contact-wa {
  background: #22c55e;
  color: var(--light);
}

.btn-contact-wa:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.35);
}

.btn-contact-email {
  background: var(--primary);
  color: var(--light);
}

.btn-contact-email:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,43,82,0.3);
}

.form-note {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
  background: #fffbf5;
  border: 1px solid #fde9c8;
  border-radius: 8px;
  padding: 10px 14px;
}

.form-note i {
  color: var(--secondary);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ----- Map Side ----- */
.map-embed {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,43,82,0.1);
  margin-bottom: 16px;
  border: 2px solid #e8edf5;
}

.map-embed iframe {
  display: block;
}

.map-address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray);
  border-radius: 12px;
  padding: 18px 20px;
}

.map-address-card > i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.map-address-card > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.map-address-card strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.map-address-card span {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

.map-address-card a {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  transition: var(--transition);
}

.map-address-card a:hover { color: var(--secondary); }

/* ----- WhatsApp Strip ----- */
.contact-wa-strip {
  padding: 50px 0;
  background: linear-gradient(135deg, #0a5c2e 0%, #22c55e 100%);
  position: relative;
  overflow: hidden;
}

.contact-wa-strip::before {
  content: '\f232';
  font-family: 'Font Awesome 6 Brands';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 220px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}

.wa-strip-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.wa-strip-text {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wa-strip-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-strip-icon i {
  font-size: 2rem;
  color: var(--light);
}

.wa-strip-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--light);
  margin-bottom: 4px;
}

.wa-strip-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.btn-wa-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light);
  color: #16a34a;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.btn-wa-large:hover {
  background: var(--secondary);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ============================================================
   === CONTACT — RESPONSIVE ===
   Add inside your existing @media blocks
   ============================================================ */

/*------------*/
/*
==========================================================
  ABOUT PAGE — CSS
  File: assets/css/about.css  (ya style.css mein paste karo
        "=== ABOUT ===" section ke andar)
  
  Yeh CSS existing style.css ke saath kaam karta hai.
  Variables, buttons, .section, .container, .section-tag,
  .section-header, .breadcrumb, .btn-wa-lg, .cta-section —
  ye sab already style.css mein hain, repeat nahi kiya.
==========================================================
*/

/* =============================================
   1. PAGE BANNER
   ============================================= */

.about-banner {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(
      135deg,
      rgba(9, 30, 58, 0.88) 0%,
      rgba(13, 43, 82, 0.72) 60%,
      rgba(26, 74, 138, 0.80) 100%
    ),
    url('../images/sliders/slide-3.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Subtle radial glow overlay */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244, 163, 64, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.about-banner-content {
  position: relative;
  z-index: 2;
  padding: 70px 20px 50px;
}

.about-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  color: var(--light);
  margin: 12px 0 10px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.about-banner-content h1 span {
  color: var(--secondary);
}

.about-banner-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  margin-bottom: 22px;
}

/* =============================================
   2. COMPANY STORY
   ============================================= */

.about-story {
  background: var(--light);
}

/* Two-column grid */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Left: Image Block --- */
.story-img-block {
  position: relative;
}

.story-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(13, 43, 82, 0.18);
  aspect-ratio: 4 / 3;
}

.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.story-img-main:hover img {
  transform: scale(1.04);
}

/* Floating badge bottom-left on main image */
.story-img-badge {
  position: absolute;
  bottom: -22px;
  left: 24px;
  background: var(--light);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(13, 43, 82, 0.15);
  border-left: 4px solid var(--secondary);
  min-width: 200px;
}

.story-img-badge > i {
  font-size: 1.6rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.story-img-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.story-img-badge span {
  font-size: 0.78rem;
  color: #888;
}

/* Small secondary image — bottom-right, overlapping */
.story-img-secondary {
  position: absolute;
  bottom: -44px;
  right: -20px;
  width: 160px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 4px solid var(--light);
  box-shadow: 0 8px 28px rgba(13, 43, 82, 0.18);
}

.story-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Right: Text Block --- */
.story-text-block {
  padding-left: 8px;
}

.story-text-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  margin: 14px 0 20px;
  line-height: 1.2;
}

.story-text-block h2 span {
  color: var(--primary);
}

.story-lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 14px;
}

.story-body {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* 4 highlight pills */
.story-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 32px;
}

.story-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(13, 43, 82, 0.05);
  border: 1px solid rgba(13, 43, 82, 0.09);
  border-radius: 8px;
  padding: 10px 14px;
  transition: var(--transition);
}

.story-highlights li:hover {
  background: var(--primary);
  color: var(--light);
  border-color: var(--primary);
}

.story-highlights li i {
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.story-highlights li:hover i {
  color: var(--secondary);
}

/* =============================================
   3. WHY WE STARTED
   ============================================= */

.about-why {
  background: var(--gray);
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Base card */
.why-reason-card {
  background: var(--light);
  border-radius: 18px;
  padding: 36px 28px 28px;
  position: relative;
  border: 2px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}

.why-reason-card::before {
  /* Top accent bar (hidden by default, shown on hover) */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.why-reason-card:hover::before,
.wrc-highlight::before {
  transform: scaleX(1);
}

.why-reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 43, 82, 0.11);
  border-color: rgba(13, 43, 82, 0.08);
}

/* Highlighted middle card */
.wrc-highlight {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 44px rgba(13, 43, 82, 0.28);
  transform: translateY(-10px);
}

.wrc-highlight:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 56px rgba(13, 43, 82, 0.34);
  border-color: var(--secondary);
}

/* Top row: number + icon */
.wrc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.wrc-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(13, 43, 82, 0.06);
  line-height: 1;
  transition: var(--transition);
}

.wrc-highlight .wrc-number {
  color: rgba(255, 255, 255, 0.10);
}

.why-reason-card:hover .wrc-number {
  color: rgba(13, 43, 82, 0.10);
}

.wrc-icon {
  width: 56px;
  height: 56px;
  background: rgba(13, 43, 82, 0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

.why-reason-card:hover .wrc-icon {
  background: var(--primary);
  color: var(--secondary);
}

.wrc-highlight .wrc-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--secondary);
}

.wrc-highlight:hover .wrc-icon {
  background: var(--secondary);
  color: var(--primary);
}

/* Card text */
.why-reason-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.wrc-highlight h3 {
  color: var(--light);
}

.why-reason-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}

.wrc-highlight p {
  color: rgba(255, 255, 255, 0.75);
}

/* Small bottom tag */
.wrc-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(244, 163, 64, 0.12);
  border: 1px solid rgba(244, 163, 64, 0.3);
  color: var(--secondary);
  padding: 5px 14px;
  border-radius: 20px;
}

.wrc-highlight .wrc-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--light);
}

/* =============================================
   4. ANIMATED COUNTERS
   ============================================= */

.about-counters {
  position: relative;
  background:
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4a8a 100%);
  overflow: hidden;
}

/* Decorative background texture */
.counters-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(244, 163, 64, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Section heading overrides for dark bg */
.about-counters .section-header {
  margin-bottom: 56px;
}

.about-counters-tag {
  background: rgba(244, 163, 64, 0.15) !important;
  border-color: rgba(244, 163, 64, 0.35) !important;
}

.counters-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--light) !important;
  line-height: 1.25;
}

.counters-heading span {
  color: var(--secondary) !important;
}

.counters-sub {
  color: rgba(255, 255, 255, 0.60) !important;
}

/* 4-column counter grid */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.counter-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 40px 24px 32px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.counter-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(244, 163, 64, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.counter-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(244, 163, 64, 0.15);
  border: 1px solid rgba(244, 163, 64, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--secondary);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.counter-card:hover .counter-icon-wrap {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* Number row */
.counter-val-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--light);
  line-height: 1;
}

.counter-suffix {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

.counter-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
  font-weight: 500;
}

/* =============================================
   5. TEAM SECTION
   ============================================= */

.about-team {
  background: var(--light);
}

/* 4-column team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #eef0f6;
  box-shadow: 0 4px 20px rgba(13, 43, 82, 0.06);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(13, 43, 82, 0.12);
  border-color: rgba(244, 163, 64, 0.30);
}

/* Image wrapper with overlay */
.team-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--gray);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
  display: block;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

/* Social icons overlay */
.team-social-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 82, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-social-overlay {
  opacity: 1;
}

.team-social-overlay a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.team-social-overlay a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
  transform: scale(1.12);
}

/* Team info below image */
.team-info {
  padding: 20px 20px 24px;
}

.team-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(244, 163, 64, 0.10);
  border: 1px solid rgba(244, 163, 64, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.7;
}

/* =============================================
   ABOUT PAGE — RESPONSIVE
   ============================================= */

/* Tablet landscape */

/* Tablet portrait */

/* Mobile */
/*---------------*/
/* ==========================================================
   PRICING PAGE — CSS
   Paste this into assets/css/style.css under:
   /* === PRICING === */
   ========================================================== */

/* =============================================
   1. PAGE BANNER
   ============================================= */

.pricing-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.pricing-banner-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1a4a8a 100%);
  z-index: 0;
}

.pricing-banner-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px 80px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pricing-banner-tag {
  background: rgba(244, 163, 64, 0.15) !important;
  border-color: rgba(244, 163, 64, 0.35) !important;
  color: var(--secondary) !important;
  margin-bottom: 16px;
}

.pricing-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pricing-banner-content h1 span {
  color: var(--secondary);
}

.pricing-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* =============================================
   2. PRICING TABLE SECTION
   ============================================= */

.pricing-table-section {
  background: var(--gray);
}

/* ---- TOGGLE (Hourly / Daily) ---- */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 52px;
}

.toggle-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #999;
  transition: var(--transition);
  cursor: pointer;
}

.toggle-label.active {
  color: var(--primary);
}

.pricing-toggle {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.pricing-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: var(--secondary);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.pricing-toggle input:checked + .pricing-toggle-slider::before {
  transform: translateX(26px);
}

/* ---- Cards Grid ---- */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* ---- Pricing Card ---- */
/*.pricing-card {*/
/*  background: var(--light);*/
/*  border-radius: 20px;*/
/*  border: 1.5px solid #e8eaf0;*/
/*  overflow: hidden;*/
/*  transition: var(--transition);*/
/*  display: flex;*/
/*  flex-direction: column;*/
  /* Scroll reveal starting state */
/*  opacity: 0;*/
/*  transform: translateY(36px);*/
/*}*/

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card.visible:hover {
  transform: translateY(-6px);
}

 Featured card 
.pricing-card-featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(0) scale(1.04);
  box-shadow: 0 24px 56px rgba(13, 43, 82, 0.22);
  opacity: 0;
}

.pricing-card-featured.visible {
    background: #161613;
    /* opacity: 1; */
    transform: translateY(-10px) scale(1.04);
}

.pricing-card-featured:hover {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 32px 64px rgba(13, 43, 82, 0.28);
}

 ---- Card Top ---- 
.pricing-card-top {
  padding: 32px 28px 20px;
  position: relative;
  text-align: center;
}

.pricing-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(13, 43, 82, 0.07);
  border: 1.5px solid rgba(13, 43, 82, 0.10);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.pricing-card-featured .pricing-card-icon {
  background: rgba(244, 163, 64, 0.15);
  border-color: rgba(244, 163, 64, 0.3);
  color: var(--secondary);
}

.pricing-card:hover .pricing-card-icon {
  background: var(--primary);
  color: var(--secondary);
  border-color: var(--primary);
}

.pricing-card-featured:hover .pricing-card-icon {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

/* Badge */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(13, 43, 82, 0.08);
  color: var(--primary);
  border: 1px solid rgba(13, 43, 82, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-badge-gold {
  background: rgba(244, 163, 64, 0.18);
  color: var(--secondary);
  border-color: rgba(244, 163, 64, 0.35);
}

.pricing-badge-premium {
  background: rgba(220, 50, 50, 0.08);
  color: #c0392b;
  border-color: rgba(220, 50, 50, 0.2);
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.pricing-card-featured .pricing-card-title {
  color: var(--light);
}

.pricing-card-sub {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.5;
}

.pricing-card-featured .pricing-card-sub {
  color: rgba(255,255,255,0.65);
}

/* ---- Price Display ---- */
.pricing-card-price {
  padding: 16px 28px 20px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card-featured .pricing-card-price {
  border-color: rgba(255,255,255,0.12);
}

.price-hourly,
.price-daily {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-card-featured .price-amount {
  color: var(--light);
}

.price-unit {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  margin-left: 2px;
}

.pricing-card-featured .price-unit {
  color: rgba(255,255,255,0.55);
}

/* ---- Features List ---- */

.pricing-card-featured .pricing-features li {
  color: rgba(255,255,255,0.8);
}

.pricing-card-featured .pricing-features li i {
  color: var(--secondary);
}

/* ---- Book Button ---- */

.btn-book-featured {
  background: var(--secondary);
  color: var(--primary);
}

.btn-book-featured:hover {
  background: #e8962e;
  box-shadow: 0 6px 20px rgba(244, 163, 64, 0.45);
}

/* ---- Quick Reference Table ---- */
.pricing-table-wrap {
  margin-top: 64px;
  background: var(--light);
  border-radius: 18px;
  border: 1.5px solid #e8eaf0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 43, 82, 0.06);
}

.pricing-table-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  padding: 20px 28px 16px;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-table-scroll {
  overflow-x: auto;
}

.pricing-ref-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.pricing-ref-table thead tr {
  background: var(--primary);
}

.pricing-ref-table thead th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 14px 20px;
  text-align: left;
}

.pricing-ref-table thead th i {
  margin-right: 6px;
  color: var(--secondary);
}

.pricing-ref-table tbody tr {
  border-bottom: 1px solid #f4f4f4;
  transition: var(--transition);
}

.pricing-ref-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-ref-table tbody tr:hover {
  background: rgba(13, 43, 82, 0.03);
}

.table-row-featured {
  background: rgba(244, 163, 64, 0.04);
}

.pricing-ref-table tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--dark);
}

.vehicle-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.vehicle-icon-sm {
  width: 36px;
  height: 36px;
  background: rgba(13, 43, 82, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.price-cell {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #555;
}

.highlight-cell {
  color: var(--primary);
  font-size: 1rem;
}

.table-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #25D366;
  color: var(--light);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.table-book-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* =============================================
   3. INCLUDED FEATURES
   ============================================= */

.pricing-included {
  background: var(--light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.included-card {
  background: var(--gray);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid transparent;
  transition: var(--transition);
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(24px);
}

.included-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.included-card:hover {
  border-color: rgba(244, 163, 64, 0.3);
  box-shadow: 0 8px 28px rgba(13, 43, 82, 0.08);
  background: var(--light);
  transform: translateY(-4px);
}

.included-card.visible:hover {
  transform: translateY(-4px);
}

.included-icon {
  width: 58px;
  height: 58px;
  background: rgba(13, 43, 82, 0.07);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 18px;
  transition: var(--transition);
  border: 1px solid rgba(13, 43, 82, 0.08);
}

.included-card:hover .included-icon {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}

.included-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.included-card p {
  font-size: 0.86rem;
  color: #777;
  line-height: 1.65;
}

/* =============================================
   4. FAQ SECTION
   ============================================= */

.pricing-faq {
  background: var(--gray);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border-radius: 14px;
  border: 1.5px solid #e8eaf0;
  overflow: hidden;
  transition: border-color 0.3s ease;
  /* Scroll reveal */
  opacity: 0;
  transform: translateY(20px);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.open {
  border-color: rgba(13, 43, 82, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-icon {
  font-size: 0.8rem;
  color: var(--secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: #666;
  line-height: 1.75;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

.faq-answer strong {
  color: var(--primary);
  font-weight: 600;
}

/* =============================================
   5. CTA STRIP
   ============================================= */

.pricing-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1a4a8a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.pricing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.pricing-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.pricing-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--light);
  margin-bottom: 8px;
  line-height: 1.25;
}

.pricing-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.pricing-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* =============================================

/* =============================================
   PRICING PAGE — RESPONSIVE
   ============================================= */

/* Tablet */

/* Tablet portrait */

/* Mobile */
.pricing-banner-bg-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1a4a8a 100%);
    z-index: 0;
}
/*----------------*/
/* ================================================
   BIKES PAGE — bikes-page.css
   Add this block into style.css under:
   /* === BIKES PAGE === */
   ================================================ */

/* ===== BIKES PAGE BANNER ===== */
.bikes-page-banner {
  position: relative;
  background: linear-gradient(135deg, #091e3a 0%, #0D2B52 50%, #0f3260 100%);
  padding: 80px 0 72px;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bikes-banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Decorative circle — top right */
.bikes-banner-overlay::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,163,64,0.12) 0%, transparent 70%);
}

/* Decorative circle — bottom left */
.bikes-banner-overlay::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,163,64,0.07) 0%, transparent 70%);
}

.bikes-banner-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  width: 100%;
}

.bikes-banner-content .section-tag {
  background: rgba(244,163,64,0.15);
  border-color: rgba(244,163,64,0.4);
  color: var(--secondary);
}

.bikes-banner-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--light);
  line-height: 1.15;
  margin: 14px 0 16px;
  letter-spacing: -0.5px;
}

.bikes-banner-content h1 span {
  color: var(--secondary);
}

.bikes-banner-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Banner Stats */
.bikes-banner-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.bstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bstat strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.bstat span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}

.bstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===== FILTER BAR ===== */
.bikes-filter-bar {
  background: var(--light);
  border-bottom: 1px solid rgba(13,43,82,0.09);
  padding: 14px 0;
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h));
  z-index: 90;
  box-shadow: 0 2px 16px rgba(13,43,82,0.06);
}

.filter-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Search */
.filter-search {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

.filter-search i {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
  pointer-events: none;
}

.filter-search input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--dark);
  background: var(--gray);
  outline: none;
  transition: var(--transition);
}

.filter-search input:focus {
  border-color: var(--primary);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(13,43,82,0.07);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ftab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  background: var(--light);
  color: #666;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.ftab:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(13,43,82,0.04);
}

.ftab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  box-shadow: 0 4px 12px rgba(13,43,82,0.2);
}

.ftab i { font-size: 12px; }

/* Price Filter */
.filter-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.filter-price label {
  color: #888;
  font-size: 13px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
}

.filter-price label i { color: var(--secondary); }

.filter-price select {
  padding: 8px 32px 8px 12px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  background: var(--gray);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.filter-price select:focus {
  border-color: var(--primary);
  background-color: var(--light);
  box-shadow: 0 0 0 3px rgba(13,43,82,0.07);
}

/* ===== BIKES LISTING SECTION ===== */
.bikes-listing-section {
  background: var(--gray);
}

/* Result Bar */
.bikes-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.bikes-result-bar p {
  font-family: var(--font-body);
  font-size: 14px;
  color: #777;
}

.bikes-result-bar p strong {
  color: var(--primary);
  font-weight: 700;
}

.result-note {
  font-size: 12.5px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.result-note i { color: var(--secondary); }

/* ===== NO RESULTS STATE ===== */
.bikes-no-result {
  text-align: center;
  padding: 80px 20px;
  color: #aaa;
}

.bikes-no-result i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.bikes-no-result h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #bbb;
  margin-bottom: 10px;
}

.bikes-no-result p {
  font-size: 14.5px;
  color: #bbb;
}

.bikes-no-result p a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.bikes-no-result p a:hover {
  text-decoration: underline;
}

/* ===== BIKE CARD — FADE ANIMATION ===== */

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== WA STRIP — BIKES PAGE ===== */
/* (Reuses existing .contact-wa-strip styles from style.css) */
/* Extra actions layout: */
.wa-strip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-wa-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-wa-strip:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.btn-call-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-call-strip:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE — BIKES PAGE ===== */

/* ================================================================
   TERMS & CONDITIONS PAGE
   Add this block to style.css before the RESPONSIVE section
   ================================================================ */

/* ===== TERMS BANNER ===== */
.terms-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.terms-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, #1a4a8a 100%);
  z-index: 0;
}

.terms-banner-content {
  position: relative;
  z-index: 1;
  padding: 80px 20px 60px;
}

.terms-banner-tag {
  background: rgba(244, 163, 64, 0.15) !important;
  border-color: rgba(244, 163, 64, 0.35) !important;
  color: var(--secondary) !important;
  margin-bottom: 16px;
}

.terms-banner-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--light);
  line-height: 1.2;
  margin-bottom: 12px;
}

.terms-banner-content h1 span {
  color: var(--secondary);
}

.terms-banner-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

/* ===== TERMS INTRO STRIP ===== */
.terms-intro-strip {
  background: var(--primary);
  padding: 28px 0;
}

.terms-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.terms-intro-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.terms-intro-card:last-child {
  border-right: none;
}

.terms-intro-icon {
  width: 48px;
  height: 48px;
  background: rgba(244,163,64,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.terms-intro-card h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 3px;
}

.terms-intro-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ===== TERMS CONTENT LAYOUT ===== */
.terms-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* ===== TABLE OF CONTENTS (sticky sidebar) ===== */
.terms-toc {
  position: sticky;
  top: calc(var(--topbar-h) + var(--navbar-h) + 24px);
}

.terms-toc-inner {
  background: var(--gray);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(13,43,82,0.08);
}

.terms-toc-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.terms-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  color: #555;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition);
}

.toc-link span {
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  background: rgba(244,163,64,0.12);
  border-radius: 4px;
  padding: 2px 6px;
  flex-shrink: 0;
}

.toc-link:hover,
.toc-link.active {
  background: var(--primary);
  color: var(--light);
}

.toc-link:hover span,
.toc-link.active span {
  background: rgba(255,255,255,0.15);
  color: var(--secondary);
}

/* ===== TERMS BODY ===== */
.terms-body {
  min-width: 0;
}

/* Last updated notice */
.terms-updated-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,43,82,0.05);
  border-left: 4px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13.5px;
  color: #555;
  margin-bottom: 40px;
}

.terms-updated-notice i {
  color: var(--secondary);
  font-size: 16px;
  flex-shrink: 0;
}

/* ===== TERMS SECTION ===== */
.terms-section {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--topbar-h) + var(--navbar-h) + 24px);
}

.terms-section:last-of-type {
  margin-bottom: 0;
}

/* Section header row */
.terms-section-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray);
}

.terms-section-num {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--light);
  background: var(--primary);
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.terms-section-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Section body */
.terms-section-body {
  padding-left: 64px;
}

/* ===== TERMS LIST ===== */
.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terms-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
}

.terms-list li i {
  color: var(--secondary);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.terms-list li strong {
  color: var(--primary);
}

.terms-list li a {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== DOCS GRID ===== */
.terms-docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.terms-doc-card {
  background: var(--gray);
  border: 1px solid rgba(13,43,82,0.07);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.terms-doc-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 6px 24px rgba(13,43,82,0.08);
  transform: translateY(-3px);
}

.terms-doc-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.terms-doc-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.terms-doc-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ===== TERMS ALERTS ===== */
.terms-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 10px;
  padding: 16px 18px;
  margin-top: 20px;
  font-size: 13.5px;
  line-height: 1.6;
}

.terms-alert i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.terms-alert p {
  margin: 0;
}

.terms-alert-warning {
  background: rgba(244,163,64,0.10);
  border: 1px solid rgba(244,163,64,0.30);
  color: #7a4f00;
}

.terms-alert-warning i {
  color: #e08900;
}

.terms-alert-info {
  background: rgba(13,43,82,0.05);
  border: 1px solid rgba(13,43,82,0.12);
  color: #2a3a55;
}

.terms-alert-info i {
  color: var(--primary);
}

/* ===== TERMS AGREEMENT BOX ===== */
.terms-agreement-box {
  margin-top: 52px;
  background: var(--primary);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.terms-agreement-box > i {
  font-size: 36px;
  color: var(--secondary);
  flex-shrink: 0;
}

.terms-agreement-box h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 6px;
}

.terms-agreement-box p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.terms-agreement-box p a {
  color: var(--secondary);
  text-decoration: none;
}

.btn-wa-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #25D366;
  color: var(--light);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-wa-sm:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE: TERMS ===== */
@media (max-width: 992px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-toc {
    position: static;
    display: none; /* hidden on mobile — TOC takes too much space */
  }

  .terms-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .terms-intro-card {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .terms-intro-card:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .terms-intro-card:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .terms-docs-grid {
    grid-template-columns: 1fr;
  }

  .terms-section-body {
    padding-left: 0;
  }

  .terms-section-header {
    gap: 14px;
  }

  .terms-agreement-box {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .terms-intro-grid {
    grid-template-columns: 1fr;
  }

  .terms-intro-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .terms-intro-card:last-child {
    border-bottom: none;
  }
/* ============================================================
   MOBILE FIXES — June 2026
   Fixes: navbar logo, menu overlay, hero height, card overflow,
   body padding, wa-strip, booking form, bike details
   ============================================================ */

/* ---- 1. Logo size fix — navbar 72px pe fit karo ---- */
.logo img {
  height: 52px;
  width: auto;
}

/* ---- 2. Navbar container mobile padding ---- */
@media (max-width: 768px) {
  .navbar-container {
    padding: 0 16px;
    gap: 12px;
  }

  /* ---- 3. Logo and hamburger ---- */
  .logo img {
    height: 64px;
  }

  /* ---- 4. Hamburger clearly visible ---- */
  .hamburger {
    display: flex;
    flex-shrink: 0;
    padding: 8px;
    margin-left: auto;
  }

  /* ---- 5. Mobile nav-menu — pura screen cover kare ---- */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 16px 100px;
    z-index: 998;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    overflow-y: auto;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    color: var(--dark);
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-menu li a.active,
  .nav-menu li a:hover {
    background: rgba(13,43,82,0.07);
    color: var(--primary);
  }

  /* ---- 6. Hero section — mobile height fix ---- */
  .hero-slide {
    min-height: 100svh;
    min-height: 100vh;
    padding: 80px 16px 100px;
    display: flex;
    align-items: center;
  }

  .hero-content {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-content > p {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .btn-primary-lg,
  .btn-wa-lg,
  .btn-outline-lg {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  /* ---- 7. Container padding mobile ---- */
  .container {
    padding: 0 16px;
  }

  /* ---- 8. Quick booking card ---- */
  .quick-booking {
    margin: -20px 16px 0;
    border-radius: 14px;
  }

  .booking-card {
    border-radius: 14px;
    padding: 20px 16px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bfield-btn {
    grid-column: 1;
  }

  /* ---- 9. Section padding mobile ---- */
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-tag {
    font-size: 11px;
  }

  /* ---- 10. Bikes grid — single column ---- */
  .bikes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Bike card fix */
  .bike-card {
    max-width: 100%;
    width: 100%;
  }

  .bike-card-img {
    height: 200px;
  }

  .bike-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bike-card-footer {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .bike-card-footer .btn-rent,
  .bike-card-footer .btn-details {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ---- 11. Featured bikes section ---- */
  .featured-bikes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---- 12. Why choose us grid ---- */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    padding: 20px 16px;
  }

  /* ---- 13. Testimonials ---- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  /* ---- 14. Gallery grid ---- */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* ---- 15. CTA section ---- */
  .cta-section,
  .cta-inner {
    padding: 40px 16px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-btn-wa,
  .cta-btn-call {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }

  /* ---- 16. Pricing cards ---- */
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
    padding: 0 4px;
  }

  .pricing-card {
    max-width: 100%;
  }

  .pricing-card-featured {
    transform: none;
    order: -1;
  }

  /* ---- 17. Pricing table scroll ---- */
  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table-scroll {
    min-width: 480px;
  }

  /* ---- 18. About page ---- */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-img-block {
    width: 100%;
  }

  .story-img-main {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
  }

  .story-img-secondary {
    display: none;
  }

  .story-text-block {
    padding-left: 0;
  }

  .story-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ---- 19. Contact page ---- */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* ---- 20. Bike Details page ---- */
  .bd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bd-sidebar {
    position: static;
  }

  .bd-specs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bd-price-row {
    grid-template-columns: 1fr 1fr;
  }

  /* ---- 21. Footer ---- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main {
    padding: 40px 0 24px;
  }

  /* ---- 22. Mobile bottom bar ---- */
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  /* ---- 23. Breadcrumb ---- */
  .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
  }

  /* ---- 24. Section tag center on mobile ---- */
  .section-header {
    text-align: center;
  }

  /* ---- 25. Filter bar on bikes page ---- */
  .filter-inner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .filter-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    width: 100%;
  }

  .filter-search {
    width: 100%;
  }

  .filter-price {
    width: 100%;
  }

  /* ---- 26. About banner ---- */
  .about-banner-content h1 {
    font-size: 1.7rem;
  }

  .about-banner-content p {
    font-size: 14px;
  }

  /* ---- 27. Overflow fix — horizontal scroll rokna ---- */
  body, html {
    overflow-x: hidden;
    max-width: 100%;
  }

  * {
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/* ============================================================
   EXTRA SMALL — 480px
   ============================================================ */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary-lg,
  .btn-wa-lg,
  .btn-outline-lg {
    width: 100%;
    font-size: 13px;
    padding: 12px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .story-highlights {
    grid-template-columns: 1fr;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .bd-specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-toggle-wrap {
    gap: 10px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  /* WA strip */
  .wa-strip-content {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .wa-strip-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-wa-strip,
  .btn-call-strip {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   MOBILE UX FIXES v2 — Pricing scroll, booking button, alignment
   ============================================================ */

/* ====================================================
   1. PRICING TABLE — Touch scroll fix
   ==================================================== */
.pricing-table-wrap {
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
}

.pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  cursor: grab;
}

.pricing-table-scroll:active {
  cursor: grabbing;
}

/* ====================================================
   2. MOBILE — Pricing, Booking, Alignment Fixes
   ==================================================== */
@media (max-width: 768px) {

  /* ---- Pricing table scroll ---- */
  .pricing-table-wrap {
    margin-top: 40px;
    border-radius: 14px;
    overflow: visible;
  }

  .pricing-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    border-radius: 0 0 14px 14px;
    /* Scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f0f0f0;
  }

  .pricing-table-scroll::-webkit-scrollbar {
    height: 4px;
  }

  .pricing-table-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .pricing-table-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
  }

  .pricing-ref-table {
    min-width: 480px;
  }

  /* Scroll hint text */
  .pricing-table-heading::after {
    content: '← Scroll to see more →';
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--secondary);
    margin-top: 3px;
    font-family: var(--font-body);
    letter-spacing: 0.3px;
  }

  /* ---- Pricing cards — better mobile UI ---- */
  .pricing-table-section {
    padding: 48px 0;
  }

  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    padding: 0;
  }

  /* Featured card pehle dikhao */
  .pricing-card-featured {
    order: -1;
    transform: none !important;
    border-radius: 18px;
  }

  .pricing-card-featured.visible {
    transform: none !important;
  }

  .pricing-card {
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
  }

  /* Card top padding reduce on mobile */
  .pricing-card-top {
    padding: 24px 20px 16px;
  }

  .pricing-card-top,
  .pricing-features,
  .btn-book-now {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-book-now {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
  }

  /* Toggle wrap */
  .pricing-toggle-wrap {
    margin-bottom: 32px;
    gap: 12px;
  }

  .toggle-label {
    font-size: 0.9rem;
  }

  /* ---- Quick booking section ---- */
  .quick-booking {
    margin-top: -24px;
    padding: 0 12px;
  }

  .booking-card {
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(13,43,82,0.12);
  }

  .booking-card-header {
    padding: 14px 20px;
    border-radius: 16px 16px 0 0;
  }

  .booking-card-header h3 {
    font-size: 15px;
  }

  .booking-form {
    padding: 20px 16px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bfield-btn {
    grid-column: 1;
    margin-top: 4px;
  }

  /* Book Now button — CENTER ALIGN */
  .bfield-btn .btn-book-now {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 14px 20px;
    font-size: 15px;
    justify-content: center;
    border-radius: 12px;
  }

  .booking-note {
    justify-content: center;
    text-align: center;
    margin-top: 10px;
  }

  /* ---- Section headers — center align ---- */
  .section-header {
    text-align: center;
  }

  .section-header h2,
  .section-header p,
  .section-header .section-tag {
    text-align: center;
  }

  /* ---- Pricing included grid ---- */
  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .included-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .included-card h4 {
    font-size: 14px;
    margin: 10px 0 6px;
  }

  .included-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .included-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  /* ---- FAQ ---- */
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-item {
    border-radius: 0;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* ---- Pricing CTA ---- */
  .pricing-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px 20px;
  }

  .pricing-cta-text h2 {
    font-size: 22px;
  }

  .pricing-cta-btns {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .cta-btn-wa,
  .cta-btn-call {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  /* ---- Bikes page filter bar ---- */
  .bikes-filter-bar {
    padding: 12px 0;
  }

  .filter-inner {
    flex-direction: column;
    gap: 10px;
    padding: 0 4px;
  }

  .filter-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    gap: 6px;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .ftab {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .filter-search,
  .filter-price {
    width: 100%;
  }

  /* ---- Bike card footer — center buttons ---- */
  .bike-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px;
  }

  .bike-price {
    text-align: center;
  }

  .btn-rent,
  .btn-details {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ---- Hero stats bar ---- */
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 12px;
  }

  .hstat {
    min-width: 80px;
    text-align: center;
  }

  .hstat-divider {
    display: none;
  }

  /* ---- WA strip ---- */
  .wa-strip {
    padding: 24px 16px;
  }

  .wa-strip-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    align-items: center;
  }

  .wa-strip-text {
    align-items: center;
    text-align: center;
  }

  .wa-strip-text h3 {
    font-size: 1.1rem;
  }

  .wa-strip-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 10px;
  }

  .btn-wa-strip,
  .btn-call-strip {
    width: 100%;
    justify-content: center;
  }

  /* ---- Contact info grid ---- */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ---- Horizontal overflow kill ---- */
  .pricing-table-section,
  .pricing-included,
  .pricing-faq,
  .pricing-cta {
    overflow: hidden;
  }

  /* Allow inner scroll */
  .pricing-table-scroll {
    overflow-x: auto;
  }
}

/* ====================================================
   3. EXTRA SMALL — 480px
   ==================================================== */
@media (max-width: 480px) {

  /* Pricing cards */
  .pricing-card-top {
    padding: 20px 16px 14px;
  }

  .pricing-card-top,
  .pricing-features,
  .btn-book-now {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn-book-now {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
  }

  .pricing-card-price {
    padding: 0 16px 16px;
  }

  .price-amount {
    font-size: 2.4rem;
  }

  /* Included 1 col on very small */
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Booking note small */
  .booking-note {
    font-size: 11px;
  }

  /* Quick booking top margin */
  .quick-booking {
    margin-top: -16px;
    padding: 0 10px;
  }
}
/* ================================================================
   COMPREHENSIVE MOBILE FIX — June 05 2026
   Issues fixed:
   1. Hero — slider bullets covered by booking form, stats horizontal
   2. Home pricing section — swipe, button size, layout
   3. Pricing page — table right side cut, touch scroll
   4. About page — image cut, content cut, counters, team grid
   5. General alignment issues across all pages
   ================================================================ */

/* ================================================================
   ROOT FIXES — prevent horizontal overflow everywhere
   ================================================================ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}

/* ================================================================
   768px — MAIN MOBILE BREAKPOINT
   ================================================================ */
@media (max-width: 768px) {

  /* ---- Container ---- */
  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    overflow: visible;
  }

  /* ==============================================================
     1. HERO SLIDER — Bullets not covered, stats horizontal
     ============================================================== */
  .hero {
    position: relative;
  }

  .hero-slide {
    min-height: 100svh;
    min-height: 100vh;
    padding: 80px 16px 130px; /* extra bottom so bullets stay above form */
    display: flex;
    align-items: center;
  }

  .hero-content {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .hero-content h1 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-content > p {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  /* Hero buttons — stack vertically, full width */
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
  }

  .btn-primary-lg,
  .btn-wa-lg,
  .btn-outline-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Hero stats — HORIZONTAL on mobile (issue fix) */
  .hero-stats {
    display: flex;
    flex-direction: row !important;  /* force horizontal */
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    padding: 12px 16px;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: visible;
  }

  .hstat {
    flex: 1;
    text-align: center;
    padding: 0 8px;
  }

  .hstat strong {
    font-size: 16px;
    display: block;
  }

  .hstat span {
    font-size: 10px;
    line-height: 1.3;
    display: block;
  }

  .hstat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
    display: block; /* show divider on horizontal */
  }

  /* Slider pagination — push above booking form */
  .hero-pagination {
    bottom: 80px !important; /* above quick booking overlap area */
  }

  .swiper-pagination {
    bottom: 80px !important;
  }

  .hero-prev,
  .hero-next {
    display: none;
  }

  /* ==============================================================
     2. QUICK BOOKING FORM — center button
     ============================================================== */
  .quick-booking {
    margin-top: -20px;
    padding: 0 12px;
    position: relative;
    z-index: 10;
  }

  .booking-card {
    border-radius: 16px;
  }

  .booking-card-header {
    padding: 14px 18px;
  }

  .booking-card-header h3 {
    font-size: 15px;
  }

  .booking-card-header span {
    display: none;
  }

  .booking-form {
    padding: 18px 16px 16px;
  }

  .booking-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bfield-btn {
    grid-column: 1;
  }

  .bfield-btn .btn-book-now {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 15px;
    border-radius: 12px;
    margin: 0;
  }

  .booking-note {
    justify-content: center;
    text-align: center;
    font-size: 11px;
    margin-top: 8px;
  }

  /* ==============================================================
     3. HOME — PRICING SECTION — Swipe + button fix
     ============================================================== */
  .pricing-section {
    padding: 48px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 8px 4px;
  }

  .pricing-card {
    padding: 28px 20px 24px;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
    /* Remove transform that clips cards */
    transform: none !important;
  }

  .pricing-card-highlight {
    transform: none !important;
    order: -1; /* featured card pehle */
  }

  .pricing-popular-tag {
    top: -12px;
  }

  .pricing-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

  .pricing-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .pricing-rates {
    padding: 14px 12px;
    gap: 10px;
    margin-bottom: 18px;
  }

  .rate-value {
    font-size: 22px;
  }

  .rate-label {
    font-size: 11px;
  }

  .pricing-features {
    margin-bottom: 20px;
  }

  .pricing-features li {
    font-size: 13px;
  }

  /* Book button — full width, proper size */
  .btn-pricing-wa {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* ==============================================================
     4. PRICING PAGE — Table scroll fix (right side cut)
     ============================================================== */
  .pricing-table-section {
    overflow: visible !important;
  }

  .pricing-table-wrap {
    margin: 32px -16px 0; /* extend to edges */
    border-radius: 0;
    border-left: none;
    border-right: none;
    overflow: visible;
  }

  .pricing-table-scroll {
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
    width: 100%;
    padding-bottom: 8px;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #0D2B52 #f0f0f0;
  }

  .pricing-table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .pricing-table-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
  }

  .pricing-table-scroll::-webkit-scrollbar-thumb {
    background: #0D2B52;
    border-radius: 4px;
  }

  .pricing-ref-table {
    min-width: 500px;
    width: max-content;
  }

  /* Scroll hint */
  .pricing-table-heading {
    padding: 14px 16px 12px;
    font-size: 14px;
  }

  .pricing-table-heading::after {
    content: '← Swipe to scroll →';
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #F4A340;
    margin-top: 2px;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
  }

  /* Pricing cards on pricing page */
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .pricing-card-featured {
    transform: none !important;
    order: -1;
  }

  .pricing-card-featured.visible {
    transform: none !important;
  }

  .pricing-toggle-wrap {
    margin-bottom: 28px;
    gap: 12px;
  }

  /* Included grid */
  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .included-card {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .included-card h4 { font-size: 13px; }
  .included-card p  { font-size: 12px; }

  /* ==============================================================
     5. ABOUT PAGE — Image, content, counters, team
     ============================================================== */

  /* Story section */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px; /* space for floating badge */
  }

  .story-img-block {
    position: relative;
    width: 100%;
    padding-bottom: 28px; /* space for badge */
  }

  .story-img-main {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4/3;
    overflow: hidden;
  }

  .story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Badge — reposition so it doesn't overflow */
  .story-img-badge {
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    min-width: unset;
    width: calc(100% - 24px);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .story-img-badge strong { font-size: 0.9rem; }
  .story-img-badge span   { font-size: 0.72rem; }

  /* Secondary image — hide on mobile */
  .story-img-secondary {
    display: none !important;
  }

  /* Text block */
  .story-text-block {
    padding-left: 0;
  }

  .story-text-block h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .story-lead {
    font-size: 0.93rem;
  }

  .story-body {
    font-size: 0.88rem;
  }

  .story-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 18px 0 24px;
  }

  .story-highlights li {
    font-size: 0.78rem;
    padding: 9px 10px;
    gap: 7px;
  }

  /* Why section */
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wrc-highlight {
    transform: none;
  }

  .why-reason-card {
    padding: 24px 18px;
  }

  /* Counters — 2 columns on mobile */
  .about-counters {
    padding: 48px 0;
  }

  .about-counters .section-header {
    margin-bottom: 32px;
  }

  .counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .counter-card {
    padding: 28px 16px 22px;
    border-radius: 14px;
  }

  .counter-icon-wrap {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    margin-bottom: 14px;
    border-radius: 13px;
  }

  .counter-num {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .counter-suffix {
    font-size: 1.2rem;
  }

  .counter-label {
    font-size: 0.78rem;
  }

  /* Team section — 2 columns */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .team-card {
    border-radius: 14px;
  }

  .team-img-wrap {
    height: 180px;
  }

  .team-info {
    padding: 14px 12px;
  }

  .team-info h4 {
    font-size: 14px;
  }

  .team-role {
    font-size: 11px;
  }

  .team-info p {
    font-size: 12px;
    display: none; /* hide desc on very small to save space */
  }

  /* ==============================================================
     6. SECTION HEADERS — center align
     ============================================================== */
  .section-header {
    text-align: center;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .section-header p {
    font-size: 13.5px;
  }

  /* ==============================================================
     7. WHY US GRID (home page)
     ============================================================== */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .why-card h4 { font-size: 14px; }
  .why-card p  { font-size: 12px; line-height: 1.5; }

  .why-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin: 0 auto 12px;
  }

  /* ==============================================================
     8. HOW TO BOOK / TIMELINE
     ============================================================== */
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .timeline-item:last-child {
    border-bottom: none;
  }

  .timeline-icon {
    flex-shrink: 0;
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .timeline-number {
    display: none;
  }

  .timeline-content h4 { font-size: 14px; }
  .timeline-content p  { font-size: 13px; }

  /* ==============================================================
     9. BIKES GRID (home + bikes page)
     ============================================================== */
  .bikes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bike-card {
    max-width: 100%;
  }

  .bike-card-img {
    height: 200px;
  }

  .bike-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
  }

  .bike-price {
    text-align: center;
  }

  .btn-rent {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ==============================================================
     10. TESTIMONIALS
     ============================================================== */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  /* ==============================================================
     11. GALLERY
     ============================================================== */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* ==============================================================
     12. CTA SECTION
     ============================================================== */
  .cta-section {
    padding: 48px 0;
  }

  .cta-content {
    padding: 0 16px;
  }

  .cta-content h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-btn-wa,
  .cta-btn-call {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
  }

  /* ==============================================================
     13. FOOTER
     ============================================================== */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* ==============================================================
     14. MOBILE BOTTOM BAR
     ============================================================== */
  .mobile-bottom-bar {
    display: flex !important;
  }

  body {
    padding-bottom: 56px;
  }

  /* ==============================================================
     15. CONTACT PAGE
     ============================================================== */
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .wa-strip-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    align-items: center;
  }

  .wa-strip-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 10px;
  }

  .btn-wa-strip,
  .btn-call-strip {
    width: 100%;
    justify-content: center;
  }

  /* ==============================================================
     16. ABOUT BANNER
     ============================================================== */
  .about-banner {
    min-height: 260px;
  }

  .about-banner-content {
    padding: 70px 20px 44px;
  }

  .about-banner-content h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  /* ==============================================================
     17. BIKES PAGE FILTER
     ============================================================== */
  .filter-inner {
    flex-direction: column;
    gap: 10px;
  }

  .filter-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    flex-wrap: nowrap;
    gap: 6px;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .filter-tabs::-webkit-scrollbar { display: none; }

  .ftab { flex-shrink: 0; white-space: nowrap; }

  .filter-search,
  .filter-price { width: 100%; }

  /* ==============================================================
     18. BREADCRUMB
     ============================================================== */
  .breadcrumb {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
  }
}

/* ================================================================
   480px — EXTRA SMALL
   ================================================================ */
@media (max-width: 480px) {

  /* Hero */
  .hero-slide {
    padding: 70px 14px 120px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-stats {
    padding: 10px 12px;
  }

  .hstat strong { font-size: 14px; }
  .hstat span   { font-size: 9px; }

  /* Home pricing */
  .pricing-card {
    padding: 24px 16px 20px;
  }

  .rate-value { font-size: 20px; }

  /* About counters — still 2 col */
  .counters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .counter-card {
    padding: 22px 12px 18px;
  }

  .counter-num { font-size: 1.9rem; }

  /* Team — single col on very small */
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .team-img-wrap { height: 150px; }

  /* Pricing table */
  .pricing-table-wrap {
    margin: 24px -14px 0;
  }

  /* Story highlights — single col */
  .story-highlights {
    grid-template-columns: 1fr;
  }

  /* Why grid — single col */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  /* Included */
  .included-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Section padding */
  .section {
    padding: 40px 0;
  }

  /* Booking form note */
  .booking-note { font-size: 10.5px; }
}

/* ================================================================
   HAMBURGER CLOSE BUTTON FIX
   ================================================================ */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;           /* exact gap for cross animation */
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
    z-index: 1000;      /* above nav menu */
  }

  .hamburger:hover {
    background: rgba(13,43,82,0.07);
  }

  .bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  /* ---- OPEN STATE — X cross ---- */
  .hamburger.open .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.open .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
}