/* ================= Fahad Academy ================= */
:root {
  --fahad-accent: #ef8b33;
  --fahad-text: #111827;
  --fahad-muted: #6b7280;
  --fahad-muted-2: #9ca3af;
  --fahad-card: #ffffff;
  --fahad-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.fahad-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.fahad-btn {
  display: inline-block;
  background: var(--fahad-accent);
  color: #fff;
  padding: 12px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: 0.25s;
  white-space: nowrap;
}

.fahad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 139, 51, 0.25);
}

.fahad-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fahad-show {
  opacity: 1;
  transform: translateY(0);
}

.fahad-hero {
  background: transparent;
  padding: 75px 20px 70px;
  text-align: center;
}

.fahad-hero-container {
  max-width: 700px;
  margin: 0 auto;
}

.fahad-hero-title {
  color: #000;
  font-size: 42px;
  font-weight: 900;
  margin: 0;
}

.fahad-hero-desc {
  color: var(--fahad-muted-2);
  margin-top: 12px;
  font-size: 18px;
}

.fahad-hero-btn {
  margin-top: 20px;
}

.fahad-hero-social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fahad-muted-2);
}

.fahad-why {
  background: transparent;
  padding: 55px 0 35px;
}

.fahad-why-title {
  text-align: center;
  margin: 0 0 18px;
  color: var(--fahad-text);
  font-size: 22px;
  font-weight: 900;
}

.fahad-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.fahad-feature {
  background: var(--fahad-card);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fahad-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(239, 139, 51, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fahad-feature-title {
  margin: 0 0 5px;
  color: var(--fahad-text);
  font-size: 15px;
  font-weight: 900;
}

.fahad-feature-desc {
  margin: 0;
  color: var(--fahad-muted);
  font-size: 13px;
  line-height: 1.6;
}

.fahad-card {
  background: transparent;
  padding: 12px 20px;
}

.fahad-card-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--fahad-card);
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: var(--fahad-shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.fahad-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 250px;
}

.fahad-card-iconbox {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(239, 139, 51, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fahad-card-title {
  margin: 0;
  color: var(--fahad-text);
  font-size: 24px;
  font-weight: 900;
}

.fahad-card-desc {
  margin: 8px 0 0;
  color: var(--fahad-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ================= CONTACT ================= */
.fahad-contact {
  background: transparent;
  padding: 34px 20px 80px;
}

.fahad-contact-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--fahad-card);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: var(--fahad-shadow);
  text-align: center;
}


html[dir="rtl"] .fahad-feature,
html[dir="rtl"] .fahad-card-left {
  text-align: right;
}

html[dir="rtl"] .fahad-hero-social {
  flex-direction: row; /* بدل row-reverse */
}

html[dir="ltr"] .fahad-feature,
html[dir="ltr"] .fahad-card-left {
  text-align: left;
}

html[dir="ltr"] .fahad-hero-social {
  flex-direction: row;
}
/* ================= FAQ ================= */
.fahad-faq {
  padding: 35px 20px 30px;
}

.fahad-faq-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--fahad-card);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: var(--fahad-shadow);
}

.fahad-faq-title {
  margin: 0 0 10px;
  color: var(--fahad-text);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.fahad-faq-subtitle {
  margin: 0 auto 18px;
  color: var(--fahad-muted);
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  max-width: 560px;
}

.fahad-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fahad-faq-item {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.fahad-faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fahad-faq-q span {
  font-weight: 900;
  color: var(--fahad-text);
  font-size: 14px;
}

.fahad-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(239, 139, 51, 0.12);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--fahad-accent);
  font-weight: 900;
  line-height: 1;
}

.fahad-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 14px;
}

.fahad-faq-a p {
  margin: 0;
  padding: 0 0 14px;
  color: var(--fahad-muted);
  font-size: 13px;
  line-height: 1.8;
}

.fahad-faq-item.open .fahad-faq-a {
  max-height: 260px;
}
/* ================= WhatsApp Floating Button ================= */
.fahad-whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 999999;
  text-decoration: none;
}

.fahad-whatsapp-float:hover {
  transform: translateY(-2px);
  transition: 0.25s;
}

html[dir="rtl"] .fahad-whatsapp-float {
  right: 18px;
  left: auto;
}

html[dir="rtl"] .fahad-faq-q { direction: rtl; text-align: right; }
html[dir="ltr"] .fahad-faq-q { direction: ltr; text-align: left; }