/* =====================================================
   NOVA CABS — RESPONSIVE STYLESHEET
===================================================== */

/* -----------------------------------------------------
   LARGE DESKTOP / LAPTOP (max 1200px)
----------------------------------------------------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 48px;
  }

  :root {
    --section-padding: 90px;
  }
}

/* -----------------------------------------------------
   TABLET (max 991px)
----------------------------------------------------- */
@media (max-width: 991px) {
  :root {
    --section-padding: 70px;
  }

  .navbar-toggler {
    display: flex;
  }

  .nav-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 999;
    gap: 30px;
  }

  .nav-collapse.open {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    color: var(--color-dark) !important;
    font-size: 16px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
  }

  .nav-icon-btn {
    background: var(--color-bg) !important;
    color: var(--color-dark) !important;
  }

  .btn-block-mobile,
  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero {
    padding-top: 130px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .process-line {
    display: none;
  }

  .process-track .row {
    gap: 40px 0;
  }

  .cta-box h2 {
    font-size: 34px;
  }
}

/* -----------------------------------------------------
   MOBILE LANDSCAPE / SMALL TABLET (max 767px)
----------------------------------------------------- */
@media (max-width: 767px) {
  :root {
    --section-padding: 56px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-trust {
    gap: 12px;
  }

  .trust-item {
    font-size: 12.5px;
  }

  .booking-card {
    padding: 24px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 14px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-plus {
    font-size: 22px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    right: 18px;
  }

  .whatsapp-float {
    bottom: 84px;
  }

  .call-float {
    bottom: 22px;
  }

  .back-to-top {
    left: 18px;
    bottom: 22px;
    width: 42px;
    height: 42px;
  }
}

/* -----------------------------------------------------
   MOBILE (max 575px)
----------------------------------------------------- */
@media (max-width: 575px) {
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .booking-card-header h4 {
    font-size: 19px;
  }

  .booking-tabs {
    flex-wrap: wrap;
  }

  .feature-card,
  .service-card {
    padding: 28px 22px;
  }

  .fleet-img-wrap {
    height: 160px;
  }

  .route-card {
    padding: 22px;
  }

  .stat-box {
    margin-bottom: 10px;
  }

  .navbar-brand {
    font-size: 19px;
  }

  .navbar-brand i {
    font-size: 22px;
  }
}

/* -----------------------------------------------------
   EXTRA SMALL (max 400px)
----------------------------------------------------- */
@media (max-width: 400px) {
  .hero-title {
    font-size: 25px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-box h2 {
    font-size: 24px;
  }
}