/*
 * about-style.css
 * کافه دنتیست — صفحه درباره ما
 * مسیر: wp-content/themes/woodmart-child/about-style.css
 */

/* ── Reset ── */
.cd-about * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cd-about {
  font-family: inherit;
  direction: rtl;
  text-align: right;
  color: #1a2b35;
  background: #f5fbfc;
  line-height: 1.9;
}

/* ── Hero ── */
.cd-hero {
  background: linear-gradient(135deg, #1a7f84 0%, #29adb2 50%, #4fc3e8 100%);
  padding: 72px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cd-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cd-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: rgba(123,104,170,0.12);
  border-radius: 50%;
}
.cd-hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cd-hero-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.cd-hero-title span {
  color: #e8f8fb;
  border-bottom: 3px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}
.cd-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Stats ── */
.cd-stats {
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-bottom: 1px solid #dce8ec;
  flex-wrap: wrap;
}
.cd-stat-item {
  flex: 1;
  min-width: 140px;
  padding: 28px 20px;
  text-align: center;
  border-left: 1px solid #dce8ec;
}
.cd-stat-item:last-child {
  border-left: none;
}
.cd-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #29adb2;
  display: block;
  line-height: 1;
}
.cd-stat-label {
  font-size: 13px;
  color: #5a7280;
  margin-top: 6px;
  display: block;
}

/* ── Body ── */
.cd-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
.cd-section {
  padding: 60px 0;
  border-bottom: 1px solid #dce8ec;
}
.cd-section:last-child {
  border-bottom: none;
}
.cd-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #29adb2;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cd-section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #dce8ec;
  max-width: 60px;
}
.cd-section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #1a2b35;
  margin-bottom: 20px;
  line-height: 1.4;
}
.cd-section-body {
  font-size: 15.5px;
  color: #3d5563;
  line-height: 2;
}
.cd-section-body p {
  margin-bottom: 16px;
}
.cd-section-body p:last-child {
  margin-bottom: 0;
}

/* ── Quote ── */
.cd-quote {
  background: #e8f8fb;
  border-right: 4px solid #29adb2;
  padding: 20px 24px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a7f84;
  line-height: 1.7;
}

/* ── Commitments ── */
.cd-commitments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.cd-commit-card {
  background: #ffffff;
  border: 1px solid #dce8ec;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.cd-commit-card:hover {
  box-shadow: 0 8px 32px rgba(41,173,178,0.12);
  border-color: #4fc3e8;
}
.cd-commit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #e8f8fb, #c2eff4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.cd-commit-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2b35;
  margin-bottom: 8px;
}
.cd-commit-desc {
  font-size: 14px;
  color: #5a7280;
  line-height: 1.8;
}

/* ── Media Grid ── */
.cd-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.cd-media-item {
  background: #ffffff;
  border: 1px solid #dce8ec;
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cd-media-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.cd-media-text {
  font-size: 14px;
  color: #3d5563;
  line-height: 1.8;
}
.cd-media-text strong {
  display: block;
  font-size: 15px;
  color: #1a2b35;
  margin-bottom: 4px;
}

/* ── CTA ── */
.cd-cta-wrapper {
  padding: 0 24px;
}
.cd-cta {
  background: linear-gradient(135deg, #1a2b35, #1a7f84);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin: 60px 0;
}
.cd-cta-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.cd-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.cd-cta-btn {
  display: inline-block;
  background: #4fc3e8;
  color: #1a2b35 !important;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cd-cta-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}
.cd-cta-phone {
  margin-top: 20px;
}
.cd-cta-phone a {
  color: rgba(255,255,255,0.85) !important;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}
.cd-cta-phone a:hover {
  color: #ffffff !important;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .cd-hero { padding: 52px 20px 60px; }
  .cd-body { padding: 0 16px; }
  .cd-section { padding: 44px 0; }
  .cd-media-grid { grid-template-columns: 1fr; }
  .cd-stat-item { min-width: 50%; border-left: none; border-bottom: 1px solid #dce8ec; }
  .cd-cta { padding: 36px 20px; }
  .cd-cta-wrapper { padding: 0 16px; }
}