/* =======================
   ABOUT SECTION - FULL RESPONSIVE
======================= */

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Vazir', sans-serif;
}

* {
  box-sizing: border-box;
}

/* جلوگیری از بیرون زدن عناصر */
img, video, iframe, .showcase-display, .showcase-main {
  max-width: 100%;
}

/* محتوا */
.about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  color: white;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header h2 {
  font-size: clamp(26px, 5vw, 48px);
  margin-top: 60px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #efb782 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-header p {
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(244, 209, 183, 0.8);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Layout */
.about-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* تصویر اصلی */
.about-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-display {
  position: relative;
  width: 100%;
  max-width: 1200px; /* بزرگ روی دسکتاپ */
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-main {
  width: 100%;
  max-width: 1200px; /* بزرگ روی دسکتاپ */
  aspect-ratio: 1 / 1.2;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.showcase-logo {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #314fd6, #b96708);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* متن کناری */
.about-info {
  padding-left: 40px;
}

.about-info h3 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 25px;
  line-height: 1.4;
}

.about-info p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Features */
.feature-list {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3051e8, #ea7922);
  border-radius: 50%;
}

/* دکمه */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3255f1, #b66507);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Stats */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.stat-number {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  background: linear-gradient(135deg, #3c5ce9, #c26a07);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========== Responsive ========== */

/* تبلت و موبایل بزرگ */
@media (max-width: 992px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-info {
    padding-left: 0;
  }

  .showcase-main {
    max-width: 350px; /* کاهش اندازه برای تبلت */
    padding: 30px 15px;
  }
}

/* موبایل <= 768px */
@media (max-width: 768px) {
  .about-content {
    padding: 30px 15px;
  }

  .feature-list li {
    justify-content: center;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 24px;
  }

  .showcase-main {
    max-width: 300px; /* موبایل */
    padding: 25px;
  }
}

/* موبایل خیلی کوچک <= 480px */
@media (max-width: 480px) {
  .showcase-main {
    max-width: 220px; /* موبایل خیلی کوچک */
    padding: 20px;
    border-radius: 20px;
  }

  .feature-list li {
    font-size: 14px;
  }

  .stat-label {
    font-size: 13px;
  }
}
