/* ===== TABLET (769 - 1024) ===== */
@media (max-width: 1024px) {
  /* Hero */
  .hero-content-form { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-left { order: 1; }
  .hero-right { order: 2; max-width: 520px; margin: 0 auto; width: 100%; text-align: left; }
  .hero h1 { font-size: 36px; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin: 0 auto 28px; max-width: 500px; }
  .hero-badge { margin: 0 auto 28px; }

  /* Grids */
  .services-home-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-home-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-visual { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-search { display: none; }
}

/* ===== MOBILE (max 768) ===== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .container { padding: 0 16px; }

  /* ---- HEADER ---- */
  .header-inner { gap: 12px; }
  .logo { gap: 8px; }
  .logo-icon svg { width: 34px; height: 34px; }
  .logo-brand { font-size: 14px; }
  .logo-sub { font-size: 14px; }
  #site-logo-img { height: 32px; max-width: 160px; }

  .mobile-toggle { display: flex; }
  #main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: white; flex-direction: column; padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: all 0.3s var(--ease); z-index: 999;
    border-top: 1px solid var(--light-200);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  #main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link {
    padding: 14px 16px; width: 100%;
    font-size: 15px; border-radius: var(--radius-sm);
  }
  .nav-link:active { background: var(--primary-ghost); }

  .header-actions .btn { display: none; }
  .header-search { display: none; }
  .header-mobile-auth { display: flex; gap: 6px; align-items: center; }

  /* Mobil menüde giriş butonları */
  #main-nav .mobile-auth-btns {
    display: flex;
    gap: 10px;
    padding: 16px 0 6px;
    margin-top: 8px;
    border-top: 1px solid var(--light-200);
  }
  #main-nav .mobile-auth-btns .btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    display: block;
  }
  #main-nav .mobile-auth-btns .btn-mob-login {
    background: var(--primary);
    color: white;
  }
  #main-nav .mobile-auth-btns .btn-mob-firma {
    background: var(--accent);
    color: white;
  }

  /* ---- HERO ---- */
  .hero { 
    min-height: 100svh;
    min-height: 100vh;
    padding: var(--header-h) 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content-form { gap: 24px; }
  .hero h1 { font-size: 26px; line-height: 1.2; margin-bottom: 14px; }
  .hero-desc { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
  .hero-badge { font-size: 11px; padding: 5px 12px; margin-bottom: 16px; }

  .hero-stats { 
    gap: 16px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 0;
  }
  .hero-stat-num { font-size: 20px; }
  .hero-stat-label { font-size: 11px; }

  /* ---- HERO FORM ---- */
  .hero-right { max-width: 100%; }
  .hero-form-card { border-radius: var(--radius-md); }
  .hero-form-header { padding: 14px 16px; }
  .hero-form-header h2 { font-size: 17px; }
  .hero-form-header p { font-size: 12px; }
  .hero-form-body { padding: 16px; }

  .hf-row { margin-bottom: 12px; }
  .hf-group label { font-size: 12px; margin-bottom: 5px; }
  .hf-split { grid-template-columns: 1fr 1fr; gap: 6px; }
  .hf-select, .hf-input { padding: 9px 10px; font-size: 13px; }
  .hf-row-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hf-chip { padding: 6px 12px; font-size: 12px; }
  .hf-home-types { gap: 6px; }
  .hf-submit { padding: 12px 20px; font-size: 15px; }
  .hf-privacy { font-size: 11px; margin-top: 10px; }

  /* ---- SECTIONS ---- */
  .section { padding: 28px 0; }
  .section-tag { font-size: 11px; letter-spacing: 1px; margin-bottom: 8px; }
  .section-title { font-size: 24px; margin-bottom: 8px; }
  .section-desc { font-size: 14px; }
  .section-header { margin-bottom: 32px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 20px 16px; }
  .feature-icon { width: 48px; height: 48px; margin-bottom: 12px; }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-title { font-size: 14px; margin-bottom: 6px; }
  .feature-desc { font-size: 12px; line-height: 1.5; }

  /* Steps */
  .steps-visual { gap: 20px; }
  .step-num { font-size: 48px; margin-bottom: 10px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 13px; }
  .step-card { padding: 20px 16px; }

  /* Services home */
  .service-home-card { flex-direction: column; padding: 20px; gap: 16px; }
  .shc-icon { width: 56px; height: 56px; font-size: 36px; }
  .shc-content h3 { font-size: 16px; }
  .shc-content p { font-size: 13px; }
  .shc-features span { font-size: 11px; padding: 3px 8px; }

  /* Routes */
  .routes-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .route-card { padding: 14px; }
  .route-from, .route-to { font-size: 13px; }
  .route-price { font-size: 13px; }
  .route-time { font-size: 11px; }
  .route-badge { font-size: 10px; }

  /* Stats banner */
  .stats-banner { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-icon { font-size: 24px; margin-bottom: 6px; }
  .stat-num { font-size: 22px; }
  .stat-text { font-size: 11px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
  .review-card { padding: 18px; }
  .review-avatar { width: 38px; height: 38px; font-size: 16px; }
  .review-text { font-size: 13px; }

  /* Guide */
  .guide-grid { grid-template-columns: 1fr; gap: 12px; }
  .guide-card { padding: 20px; }
  .guide-card h3 { font-size: 15px; }
  .guide-card p { font-size: 12px; }
  .guide-num { font-size: 32px; }

  /* Price table */
  .price-table th, .price-table td { padding: 8px 6px; font-size: 11px; }
  .price-table th { font-size: 11px; }
  .price-table td:first-child { font-size: 12px; }
  .price-note { font-size: 11px; }

  /* Cities */
  .city-chip { padding: 8px 14px; font-size: 13px; }
  .cities-grid { gap: 8px; }

  /* FAQ */
  .faq-question { padding: 14px 18px; font-size: 14px; }
  .faq-answer p { font-size: 13px; }
  .faq-item.open .faq-answer { padding: 0 18px 14px; }

  /* Blog */
  .blog-home-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bhc-image { height: 100px; font-size: 36px; }
  .bhc-content { padding: 14px; }
  .bhc-content h3 { font-size: 13px; }
  .bhc-content p { font-size: 12px; }

  /* CTA */
  .cta-section { padding: 32px 20px; margin: 0; border-radius: var(--radius-lg); }
  .cta-section h2 { font-size: 22px; }
  .cta-section p { font-size: 14px; margin-bottom: 20px; }
  .cta-actions { flex-direction: column; align-items: center; gap: 10px; }

  /* SEO */
  .seo-content h2 { font-size: 20px; }
  .seo-content p { font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  #main-footer { padding-top: 28px; margin-top: 32px; }
  
  .footer-brand { padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,0.06); text-align: center; }
  .footer-brand .logo { justify-content: center; }
  .footer-desc { text-align: center; }
  .footer-email { text-align: center; }

  .footer-grid > .footer-links { display: inline-block; }
  .footer-grid { display: flex; flex-direction: column; }
  .footer-grid::after { content: ''; display: block; clear: both; }

  .footer-links { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .footer-links h4 { font-size: 12px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.5; }
  .footer-links a { display: inline-block; font-size: 13px; padding: 3px 14px 3px 0; }

  .footer-bottom { font-size: 11px; padding: 12px 0; text-align: center; flex-direction: column; }
  .footer-trust-inline { justify-content: center; }

  /* Auth / Form pages */
  .auth-page { padding-top: calc(var(--header-h) + 16px); }
  .auth-card { padding: 24px 18px; margin: 16px; max-width: none; }
  .auth-card h2 { font-size: 20px; }
  .quote-page { padding-top: calc(var(--header-h) + 16px); }
  .quote-form-header { padding: 20px 18px; }
  .quote-form-header h1 { font-size: 22px; }
  .quote-form-body { padding: 18px; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .company-card { flex-direction: column; }

  /* Blog list page grid */
  div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
}

/* ===== SMALL MOBILE (max 420) ===== */
@media (max-width: 420px) {
  .hero h1 { font-size: 22px; }
  .hero-stats { gap: 12px; }
  .hero-stat-num { font-size: 18px; }
  .btn-lg { padding: 12px 20px; font-size: 14px; }
  .logo-brand { font-size: 12px; }
  .logo-sub { font-size: 12px; }
  .logo-icon svg { width: 30px; height: 30px; }
  .logo { gap: 6px; }

  .hf-split { grid-template-columns: 1fr; }
  .hf-row-2 { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .routes-grid { grid-template-columns: 1fr; }
  .blog-home-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: 1fr; }
}
