/* ==========================================================================
   Emir - Self Drive Cars
   Responsive Breakdown & Mobile Stylesheet
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none; /* Hide topbar on mobile to save vertical height */
  }

  .navbar {
    height: 70px;
  }

  .nav-links, .nav-actions .btn-call-header {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-nav {
    top: 70px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.9rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
  }

  .hero-features-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .location-card {
    padding: 1.5rem;
    min-height: 320px;
  }

  .location-title {
    font-size: 1.6rem;
  }

  .vehicle-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.7rem;
  }
}
