/* ============================================================
   mobile.css — Mobile-first overrides for all breakpoints
   All rules here are inside media queries only.
   ============================================================ */

/* ============================================================
   880px — tablet / large phone landscape
   ============================================================ */
@media (max-width: 880px) {

  /* --- Nav hamburger --- */
  .nav-inner  { padding: 14px 18px; }
  .nav-logo-img { height: 34px; }

  .hamburger {
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    gap:             5px;
    width:           38px;
    height:          38px;
    background:      none;
    border:          1px solid var(--border-strong);
    border-radius:   var(--radius-sm);
    padding:         8px;
    cursor:          pointer;
    flex-shrink:     0;
  }
  .hamburger span {
    display:          block;
    width:            100%;
    height:           1.5px;
    background:       var(--text-secondary);
    border-radius:    2px;
    transition:       all 0.25s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile nav drawer */
  .mobile-nav {
    display:        none;
    flex-direction: column;
    gap:            0;
    background:     var(--surface);
    border-bottom:  1px solid var(--border);
    padding:        8px 0 16px;
  }
  .mobile-nav.open { display: flex; }

  .mobile-nav .nav-link {
    display:        block;
    padding:        14px 20px;
    font-size:      14px;
    text-align:     left;
    border-bottom:  1px solid var(--border);
    width:          100%;
  }
  .mobile-nav .nav-link:last-child { border-bottom: none; }

  .mobile-nav-footer {
    display:         flex;
    align-items:     center;
    justify-content: space-between;
    padding:         14px 20px 0;
  }

  /* Show hamburger, hide desktop nav-right reserve space */
  .nav-right .btn-primary { display: none; }

  /* --- Hero --- */
  .hero { padding: 48px 0 40px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hero-title   { font-size: clamp(34px, 9vw, 52px); }
  .hero-sub     { font-size: 16px; margin-bottom: 28px; }
  .hero-cta     { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-cta .btn-primary,
  .hero-cta .btn-ghost {
    width:       auto;
    text-align:  center;
    padding:     10px 20px;
    font-size:   12px;
  }

  .hero-visual  { min-height: 280px; max-width: 100%; aspect-ratio: 16/9; }

  .hero-stat-value { font-size: 22px; }
  .hero-stat       { padding: 12px 8px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 0.1em; }

  /* --- Trust strip --- */
  .trust-inner { gap: 20px; justify-content: flex-start; padding: 0 4px; }
  .trust-item  { font-size: 11px; gap: 7px; }

  /* --- Services --- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card  { padding: 28px 22px 24px; }

  /* --- Process --- */
  .process-grid  { grid-template-columns: 1fr; gap: 32px; }

  /* --- Gallery --- */
  .gallery-grid  { grid-template-columns: 1fr; gap: 20px; }

  /* --- Booking --- */
  .booking-card  { padding: 24px 16px; }
  .booking-steps { margin-bottom: 32px; }
  .booking-step-label { display: none; }
  .booking-step-num   { width: 32px; height: 32px; font-size: 15px; }
  .option-grid   { grid-template-columns: 1fr; gap: 10px; }
  .addons-list   { grid-template-columns: 1fr; }
  .time-slots    { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .vehicle-type-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .vtype-card    { padding: 14px 8px; gap: 6px; }
  .vtype-card svg { width: 28px; height: 28px; }
  .form-row      { grid-template-columns: 1fr; }
  .location-toggle { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer        { padding: 50px 0 24px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   480px — phones portrait
   ============================================================ */
@media (max-width: 480px) {

  /* --- Base --- */
  .container   { padding: 0 16px; }
  .section     { padding: 60px 0; }
  .section-sub { font-size: 15px; margin-bottom: 40px; }

  /* --- Nav --- */
  .nav-logo-img { height: 30px; }

  /* --- Hero --- */
  .hero          { padding: 36px 0 32px; }
  .hero-title    { font-size: clamp(30px, 10vw, 44px); }
  .hero-visual   { aspect-ratio: 4/3; min-height: 220px; }
  .hero-stats    { grid-template-columns: 1fr 1fr 1fr; }
  .hero-stat     { padding: 10px 4px; }
  .hero-stat-value { font-size: 18px; }
  .hero-stat-label { font-size: 8px; letter-spacing: 0.06em; }

  /* --- Trust --- */
  .trust         { padding: 24px 0; }
  .trust-inner   { gap: 14px; flex-direction: column; align-items: flex-start; }

  /* --- Services --- */
  .service-card  { padding: 24px 18px 20px; }
  .service-name  { font-size: 22px; }
  .service-price .amount { font-size: 30px; }

  /* --- Booking --- */
  .booking-card  { padding: 20px 14px; }
  .booking-steps::before { left: 14px; right: 14px; }
  .time-slots    { grid-template-columns: repeat(2, 1fr); }
  .vehicle-type-grid { grid-template-columns: 1fr 1fr; }
  .booking-nav   { flex-direction: column-reverse; gap: 10px; }
  .booking-nav .btn-ghost,
  .booking-nav .btn-primary { width: 100%; text-align: center; }

  /* --- Gallery --- */
  .gallery-meta  { flex-direction: column; align-items: flex-start; gap: 4px; }
  .compare-label { font-size: 9px; padding: 4px 10px; }

  /* --- Footer --- */
  .footer-grid   { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand .nav-logo-img { height: 28px; }

  /* --- Calendar popup --- */
  .cal-popup     { width: calc(100vw - 32px); }
  .cal-cell      { font-size: 12px; }
}
