/* =============================================
   RESPONSIVE — Uzmanlar Dış Ticaret
   =============================================
   wab-index.html referans alınmıştır.
   
   Ana responsive davranış zaten şu dosyalarda yönetiliyor:
   - style.css (wearebrand.min.css) → grid, hero, spacer, pop-up, CTA
   - wa-custom.css → contact form/info (991px, 768px)
   - index.html inline <style> → transition-container, about-w, content order
   
   Bu dosya SADECE yukarıdaki dosyaların kapsamadığı
   ek bileşenler için ince ayar yapar.
   ============================================= */


/* =============================================
   GLOBAL — Taşma engeli (tüm sayfalar)
   ============================================= */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

* {
    box-sizing: border-box;
}

/* =============================================
   TABİLET ≤ 991px
   ============================================= */
@media screen and (max-width: 991px) {

  /* Overflow koruması — yatay scroll engellensin */
  .transition-container,
  .intro_scroll-area,
  .section {
    overflow-x: hidden;
  }
}


/* =============================================
   MOBİL ≤ 479px
   ============================================= */
@media screen and (max-width: 479px) {

  /* Form kart padding azalt */
  .wab-form-card2 {
    padding: 24px 16px;
    border-radius: 18px;
  }

  /* WhatsApp CTA */
  .wab-wa-cta2 {
    padding: 12px 14px;
    gap: 10px;
  }
  .wab-wa-icon2 {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .wab-wa-label2 {
    font-size: 12px;
  }
  .wab-wa-desc2 {
    font-size: 11px;
  }

  /* Chips küçült */
  .wab-chip2 {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* İletişim ikonları küçült */
  .wab-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .wab-contact-icon svg {
    width: 16px;
    height: 16px;
  }
  .wab-contact-detail .detail-label {
    font-size: 10px;
  }
  .wab-contact-detail .detail-value {
    font-size: 12px;
  }

  /* Connected pill */
  .wab-connected-pill {
    padding: 8px 14px;
    gap: 8px;
  }
  .wab-connected-pill span {
    font-size: 11px;
  }

  /* Submit butonu */
  .wab-submit-btn2 {
    padding: 13px 20px;
    font-size: 14px;
  }

  /* Başarı ekranı */
  .wab-success-icon2 {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  .wab-success-icon2 svg {
    width: 30px;
    height: 30px;
  }
  .wab-success-title2 {
    font-size: 20px;
  }
  .wab-success-msg2 {
    font-size: 13px;
  }
}


/* =============================================
   ÇOK KÜÇÜK ≤ 360px
   ============================================= */
@media screen and (max-width: 360px) {

  .wab-form-card2 {
    padding: 16px 12px;
  }

  .wab-wa-cta2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .wab-wa-arrow2 {
    display: none;
  }
}


/* =============================================
   GLOBAL: Taşma koruması
   ============================================= */
img,
video,
iframe,
svg {
  max-width: 100%;
}
