/* ============================================
   FAST TOURS — Responsive Breakpoints
   ============================================ */

/* ── Tablet (max-width: 1024px) ── */
@media (max-width: 1024px) {
  :root {
    --section-padding: 70px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-glass);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-split {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-booking-widget {
    max-width: 480px;
  }

  .hero-stats {
    gap: 25px;
  }

  .hero-stat .number {
    font-size: 1.8rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* About */
  .about-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    max-width: 100%;
  }

  /* Services */
  .service-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-features {
    justify-content: center;
  }
}

/* ── Mobile (max-width: 768px) ── */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --nav-height: 70px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 30px;
  }

  .hero-split {
    gap: 25px;
  }

  .hero-booking-widget {
    padding: 22px;
  }

  .booking-widget-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

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

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-stat {
    flex: 1;
    min-width: 120px;
  }

  /* Vehicle Cards */
  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card-image {
    height: 200px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-item::after {
    display: none;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  /* About */
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-intro-image img {
    height: 280px;
  }

  /* Booking */
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    flex-wrap: wrap;
    gap: 10px;
  }

  .booking-step::after {
    display: none;
  }

  .booking-form-container {
    padding: 25px;
  }

  .booking-form-actions {
    flex-direction: column;
  }

  .booking-form-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 50px 0;
  }

  /* Page Header */
  .page-header {
    min-height: 35vh;
  }

  /* Filter Tabs */
  .filter-tabs {
    gap: 8px;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  /* Section Header */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header .subtitle::before,
  .section-header .subtitle::after {
    width: 15px;
  }

  /* Navbar */
  .navbar {
    padding: 0 16px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
  }

  /* Contact Form */
  .contact-form-wrapper {
    padding: 25px;
  }
}

/* ── Small Mobile (max-width: 480px) ── */
@media (max-width: 480px) {
  :root {
    --section-padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .vehicle-card-body {
    padding: 18px;
  }

  .vehicle-specs {
    gap: 8px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .testimonial-text::before {
    font-size: 3rem;
    top: -15px;
  }

  /* Scroll indicator hidden on small screens */
  .scroll-indicator {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger-children > * {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
