/* ═══════════════════════════════════════════════════════
   AviationHub — Features strip (کارت‌های شناور گرد)
═══════════════════════════════════════════════════════ */

.avhub-features {
  background: #eef2f8;
  font-family: 'Inter', -apple-system, sans-serif;
  padding: 44px 40px;
}
.avhub-features-in {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.avhub-feat {
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid #e4ebf3;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px -8px rgba(15,52,96,.18);
  transition: transform .25s cubic-bezier(.4,0,.2,1),
              box-shadow .25s cubic-bezier(.4,0,.2,1),
              border-color .25s;
}
.avhub-feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -12px rgba(15,52,96,.32);
  border-color: #cdd9e8;
}
.avhub-feat-ic {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0F3460 0%, #1A4A7A 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px -3px rgba(15,52,96,.5);
}
.avhub-feat-ic svg { width: 24px; height: 24px; }
.avhub-feat-title {
  font-size: 14.5px; font-weight: 600; color: #0F3460;
  margin: 0 0 3px; letter-spacing: -.01em; line-height: 1.2;
}
.avhub-feat-desc {
  font-size: 12.5px; font-weight: 400; color: #4A6B8A;
  margin: 0; line-height: 1.45;
}

/* ─ تبلت ─ */
@media (max-width: 1000px) {
  .avhub-features-in { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
/* ─ موبایل ─ */

/* ═══════════════════════════════════════════
   موبایل: دو ستونه، آیکون وسط بالا، متن وسط‌چین
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .avhub-features { padding: 26px 16px !important; }
  .avhub-features-in {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
  .avhub-feat {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
    gap: 14px !important;
    padding: 26px 16px !important;
    border-radius: 20px !important;
    box-shadow: 0 6px 20px -10px rgba(15,52,96,.22) !important;
  }
  .avhub-feat-ic {
    width: 62px !important;
    height: 62px !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 16px -6px rgba(15,52,96,.55) !important;
  }
  .avhub-feat-ic svg { width: 30px !important; height: 30px !important; }
  .avhub-feat-txt { width: 100%; }
  .avhub-feat-title {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 8px !important;
    color: #12233b !important;
  }
  .avhub-feat-desc {
    font-size: 14px !important;
    line-height: 1.45 !important;
    color: #4A6B8A !important;
  }
}

/* گوشی‌های خیلی باریک: متن کمی کوچک‌تر تا نشکند */
@media (max-width: 380px) {
  .avhub-features-in { gap: 11px !important; }
  .avhub-feat { padding: 22px 11px !important; }
  .avhub-feat-title { font-size: 14.5px !important; }
  .avhub-feat-desc { font-size: 12.5px !important; }
  .avhub-feat-ic { width: 56px !important; height: 56px !important; }
}
