/* ============================================================
   ABOUT PAGE — WHO ARE WE
   ============================================================ */

/* Hero Image */
.mc-hero-image {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 0 0 var(--mc-radius) var(--mc-radius);
  margin-top: -1.25rem;
}

.mc-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 92, 102, 0.92), rgba(10, 92, 102, 0.35));
}

.mc-hero-image .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.mc-hero-image .badge {
  display: inline-block;
  background: rgba(22, 167, 184, 0.18);
  color: #d1eaeb;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(22, 167, 184, 0.35);
  backdrop-filter: blur(8px);
}

.mc-hero-image h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--mc-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 700px;
}

.mc-hero-image p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* Philosophy Section */
.philosophy-section {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.mc-intro-box {
  max-width: 850px;
  border-left: 4px solid var(--mc-primary);
  padding-left: 2.5rem;
  margin-bottom: 3rem;
}

html[dir='rtl'] .mc-intro-box {
  border-left: none;
  border-right: 4px solid var(--mc-primary);
  padding-left: 0;
  padding-right: 2.5rem;
}

.mc-intro-box h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--mc-dark);
}

.mc-intro-box p {
  font-size: 1.1rem;
  color: var(--mc-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

/* Mission & Vision Grid */
.mc-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 4rem 0 2rem;
}

.mc-mv-card {
  background: var(--mc-slate);
  padding: 2.5rem;
  border-radius: var(--mc-radius);
  border: 1px solid var(--mc-border);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.mc-mv-card:hover {
  transform: translateY(-6px);
  border-color: var(--mc-primary);
  box-shadow: 0 20px 50px rgba(10, 92, 102, 0.08);
}

.mc-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mc-primary), var(--mc-star-teal));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mc-mv-card:hover::before {
  opacity: 1;
}

.mc-mv-icon {
  width: 56px;
  height: 56px;
  background: var(--mc-mint);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--mc-primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.mc-mv-card:hover .mc-mv-icon {
  background: var(--mc-primary);
  color: var(--mc-white);
  transform: scale(1.05);
}

.mc-mv-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--mc-dark);
}

.mc-mv-card p {
  color: var(--mc-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Core Values */
.values-section {
  padding-top: 4rem;
  padding-bottom: 8rem;
}

.section-header {
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  white-space: nowrap;
  color: var(--mc-dark);
}

.section-header::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: var(--mc-border);
}

.mc-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.mc-value-card {
  background: var(--mc-white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--mc-border);
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden;
}

.mc-value-card:hover {
  border-color: var(--mc-primary);
  background: var(--mc-slate);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 92, 102, 0.06);
}

.mc-value-num {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', serif;
  font-size: 3.5rem;
  color: var(--mc-mint);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
  transition: all 0.3s ease;
  user-select: none;
}

html[dir='rtl'] .mc-value-num {
  right: auto;
  left: 1.5rem;
}

.mc-value-card:hover .mc-value-num {
  color: var(--mc-primary);
  opacity: 0.15;
  transform: scale(1.1);
}

.mc-value-card h3 {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--mc-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
}

html[dir='rtl'] .mc-value-card h3 {
  padding-right: 0;
  padding-left: 2rem;
}

.mc-value-card p {
  font-size: 0.95rem;
  color: var(--mc-text-muted);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* CEO / Founder Section */
.mc-ceo-section {
  background: var(--mc-dark);
  border-radius: 40px;
  padding: 4rem 5rem;
  color: var(--mc-white);
  position: relative;
  overflow: hidden;
  margin-bottom: 6rem;
}

.mc-ceo-section::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 40px;
  font-size: 200px;
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', serif;
  color: var(--mc-primary);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

html[dir='rtl'] .mc-ceo-section::before {
  left: auto;
  right: 40px;
}

.mc-ceo-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.mc-ceo-section h2 {
  color: var(--mc-white);
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.mc-ceo-section p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.ceo-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ceo-footer img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--mc-primary);
  object-fit: cover;
  flex-shrink: 0;
}

.ceo-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mc-white);
  margin-bottom: 0.25rem;
}

.ceo-title {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mc-mint);
}

/* Responsive */
@media (max-width: 900px) {
  .mc-hero-image {
    height: 420px;
    border-radius: 0 0 20px 20px;
  }
  .mc-mv-grid {
    grid-template-columns: 1fr;
  }
  .mc-ceo-section {
    padding: 3rem 2rem;
    border-radius: 24px;
  }
  .mc-ceo-section h2 {
    font-size: 1.8rem;
  }
  .mc-intro-box {
    padding-left: 1.5rem;
  }
  html[dir='rtl'] .mc-intro-box {
    padding-right: 1.5rem;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 640px) {
  .mc-hero-image {
    height: 380px;
    padding: 0 1.5rem;
  }
  .mc-hero-image h1 {
    font-size: 2rem;
  }
  .mc-hero-image p {
    font-size: 1rem;
  }
  .mc-values-grid {
    grid-template-columns: 1fr;
  }
  .mc-value-card {
    padding: 1.75rem;
  }
  .mc-ceo-section {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  .ceo-footer {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* Scroll-reveal */
.mc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.mc-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.mc-mv-card:nth-child(1) {
  transition-delay: 0.1s;
}
.mc-mv-card:nth-child(2) {
  transition-delay: 0.2s;
}
.mc-value-card:nth-child(1) {
  transition-delay: 0.05s;
}
.mc-value-card:nth-child(2) {
  transition-delay: 0.1s;
}
.mc-value-card:nth-child(3) {
  transition-delay: 0.15s;
}
.mc-value-card:nth-child(4) {
  transition-delay: 0.2s;
}
.mc-value-card:nth-child(5) {
  transition-delay: 0.25s;
}
