/* CSS مفصول من about-us.html */
#about-section {
  /* الهوية اللونية الجديدة */
  --assc-primary: #050E1A;
  --assc-accent: #A68B67;
  --assc-bg: #f4f5f7;
  --assc-text: #555;
  --assc-white: #ffffff;
  --assc-shadow: 0 30px 60px rgba(0, 0, 0, .08);
  --assc-shadow-soft: 0 18px 40px rgba(5, 14, 26, .06);

  font-family: 'Cairo', sans-serif;
  background: var(--assc-bg);
  color: #111;
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

#about-section *,
#about-section *::before,
#about-section *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#about-section .about-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  position: relative;
}

/* خلفية الشبكة */
#about-section .about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5, 14, 26, .02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 14, 26, .02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

#about-section .about-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  z-index: 1;
  position: relative;
}

#about-section .about-image {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 40px;
  border-top-left-radius: 200px;
  box-shadow: var(--assc-shadow);
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeInUp 0.8s ease forwards;
}

#about-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#about-section .about-content {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: aboutFadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

/* ABOUT US فوق العنوان العربي مباشرة */
#about-section .about-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--assc-accent);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

#about-section .about-kicker::before,
#about-section .about-kicker::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--assc-accent);
  opacity: 0.5;
}

/* العنوان العربي المتدرج */
#about-section .about-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--assc-primary) 30%, var(--assc-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

#about-section .about-subtitle {
  color: #6a7382;
  font-weight: 600;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
}

/* الصندوق الأبيض مع التحديد الذهبي */
#about-section .about-text {
  background: var(--assc-white);
  padding: 35px;
  border-radius: 30px;
  box-shadow: var(--assc-shadow-soft);
  text-align: right;
  border-right: 5px solid var(--assc-accent);
}

#about-section .about-text p {
  color: var(--assc-text);
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 2;
}

@keyframes aboutFadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 850px) {
  #about-section .about-container { grid-template-columns: 1fr; gap: 40px; }
  #about-section .about-image { height: 350px; border-top-left-radius: 100px; order: 2; }
  #about-section .about-content { order: 1; }
  #about-section .about-title { font-size: 2.2rem; }
}
