/* =========================
   RESET & ROOT
========================= */
#why-us-en *,
#why-us-en *::before,
#why-us-en *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#why-us-en {
  /* الهوية اللونية الرسمية */
  --assc-bg: #f9f9fb;
  --assc-bg-soft: #f4f4f6;
  --assc-surface: rgba(255, 255, 255, .86);
  --assc-primary: #08151e;       /* Black Pearl */
  --assc-accent: #ae8768;        /* Hazel Brown */
  --assc-muted: #8c8c8c;         
  --assc-border: rgba(8, 21, 30, .10);
  font-family: 'Alexandria', sans-serif !important;
  min-height: 100vh;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 10% 18%, rgba(174, 135, 104, .10) 0%, transparent 30%),
    radial-gradient(circle at 88% 75%, rgba(8, 21, 30, .08) 0%, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f9f9fb 58%, #ffffff 100%);
  color: var(--assc-primary);
  direction: ltr; 
  line-height: 1.6;
}

#why-us-en .assc-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

#why-us-en .assc-section-title {
  text-align: center;
  margin-bottom: 64px;
}

#why-us-en .assc-section-title .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--assc-accent);
  margin-bottom: 16px;
}

#why-us-en .assc-section-title .kicker::before,
#why-us-en .assc-section-title .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--assc-accent), transparent);
}

#why-us-en .assc-section-title .title-line {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--assc-primary), var(--assc-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

#why-us-en .assc-section-title .subtitle {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--assc-muted);
  max-width: 800px;
  margin-inline: auto;
  font-weight: 500;
}

#why-us-en .why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

#why-us-en .why-us__text {
  background: var(--assc-surface);
  border: 1px solid var(--assc-border);
  border-radius: var(--radius-xl);
  padding: 45px 40px;
  box-shadow: 0 18px 44px rgba(8, 21, 30, .05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-left: 5px solid var(--assc-accent);
  transition: all .35s cubic-bezier(.19, 1, .22, 1);
}

#why-us-en .why-us__text p {
  color: var(--assc-primary);
  line-height: 2;
  font-size: 1.05rem;
  font-weight: 500;
}

#why-us-en .why-us__cards {
  display: grid;
  gap: 18px;
}

#why-us-en .why-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--assc-border);
  border-left: 4px solid var(--assc-accent);
  box-shadow: 0 14px 30px rgba(8, 21, 30, .04);
  transition: all .35s cubic-bezier(.19, 1, .22, 1);
}

#why-us-en .why-card:hover {
  transform: scale(1.02) translateX(8px);
  border-color: var(--assc-accent);
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(174, 135, 104, .12);
}

#why-us-en .why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(174, 135, 104, .1);
  color: var(--assc-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

#why-us-en .why-card__title {
  color: var(--assc-primary);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

#why-us-en .why-card__desc {
  color: var(--assc-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

#why-us-en .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s ease-out;
}

#why-us-en .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#why-us-en .why-us__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

#why-us-en .why-us__svg path {
  fill: none;
  stroke: var(--assc-accent);
  stroke-width: 1;
  stroke-dasharray: 10 10;
  opacity: 0.15;
}

@media (max-width: 992px) {
  #why-us-en .why-us__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #why-us-en .assc-section-title .title-line { font-size: 2.2rem; }
}
