/* ══════════════════════════════════════════════════
   BidayaTech WordPress Theme — main.css
   Faithful port of the original design
══════════════════════════════════════════════════ */

:root {
  --orange:       #E87722;
  --orange-light: #F4A351;
  --orange-dark:  #C45E0A;
  --blue:         #3BA8D8;
  --blue-dark:    #1A7BAF;
  --blue-light:   #7DCBEE;
  --sand:         #F5E6C8;
  --sand-dark:    #D4B483;
  --charcoal:     #1A1A2E;
  --charcoal-mid: #2D2D45;
  --white:        #FFFFFF;
  --off-white:    #FAF8F5;
  --text-body:    #3A3A4A;
  --text-muted:   #7A7A8A;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--text-body); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
/* Containers that must clip/fill their fixed-height box */
.person-avatar img,
.news-image img,
.mentor-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* Logos — never stretch */
.partner-card img,
.footer-brand img,
.nav-logo img { width: auto; object-fit: contain; }
a     { color: inherit; }
ul    { list-style: none; }

/* Accessibility */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  height: 1px; width: 1px;
  overflow: hidden; position: absolute;
  white-space: nowrap; word-wrap: normal;
}

/* ── RTL / Font overrides ── */
[dir="rtl"] body, [dir="rtl"] p, [dir="rtl"] .section-sub,
[dir="rtl"] .mission-cell p, [dir="rtl"] .hero-subtitle,
[dir="rtl"] .person-bio, [dir="rtl"] .value-card p,
[dir="rtl"] .footer-brand p, [dir="rtl"] .news-body p,
[dir="rtl"] .event-body p, [dir="rtl"] .contact-detail-text p { font-family: 'Noto Sans Arabic', sans-serif; }

html[lang="he"] body, html[lang="he"] p, html[lang="he"] .section-sub,
html[lang="he"] .mission-cell p, html[lang="he"] .hero-subtitle,
html[lang="he"] .person-bio, html[lang="he"] .value-card p,
html[lang="he"] .footer-brand p, html[lang="he"] .news-body p,
html[lang="he"] .event-body p, html[lang="he"] .contact-detail-text p { font-family: 'Noto Sans Hebrew', sans-serif; }

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .hero-title, [dir="rtl"] .section-title, [dir="rtl"] .mission-cell h3,
[dir="rtl"] .person-name, [dir="rtl"] .about-section-title, [dir="rtl"] .contact-form h3 { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; }

html[lang="he"] h1, html[lang="he"] h2, html[lang="he"] h3, html[lang="he"] h4,
html[lang="he"] .hero-title, html[lang="he"] .section-title, html[lang="he"] .mission-cell h3,
html[lang="he"] .person-name, html[lang="he"] .about-section-title, html[lang="he"] .contact-form h3 { font-family: 'Noto Sans Hebrew', sans-serif; letter-spacing: 0; }


/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav.bt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(26,26,46,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59,168,216,0.15);
  padding: 0 48px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 48px; width: auto; max-width: 160px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(232,119,34,0.4)); }
.nav-logo-text { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--orange-light); }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s;
}
[dir="rtl"] .nav-links a { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; text-transform: none; }
html[lang="he"] .nav-links a { font-family: 'Noto Sans Hebrew', sans-serif; letter-spacing: 0; text-transform: none; }
.nav-links a:hover, .nav-links a.active { color: var(--orange-light); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; padding: 10px 22px; text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
[dir="rtl"] .nav-cta { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; text-transform: none; }
html[lang="he"] .nav-cta { font-family: 'Noto Sans Hebrew', sans-serif; letter-spacing: 0; text-transform: none; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,119,34,0.4); }

.lang-switcher { display: flex; gap: 4px; background: rgba(255,255,255,0.08); border-radius: 6px; padding: 3px; }
.lang-btn {
  background: transparent; border: none; color: rgba(255,255,255,0.55);
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; padding: 5px 9px; border-radius: 4px;
  cursor: pointer; transition: all 0.18s;
}
.lang-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.lang-btn.active { background: var(--orange); color: white; }

/* Hamburger button */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; border-radius: 4px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8); border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.bt-mobile-nav {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--charcoal); z-index: 300;
  padding: 80px 32px 48px;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(59,168,216,0.15);
  overflow-y: auto;
}
[dir="rtl"] .bt-mobile-nav { right: auto; left: -320px; border-left: none; border-right: 1px solid rgba(59,168,216,0.15); transition: left 0.35s cubic-bezier(0.4,0,0.2,1); }
.bt-mobile-nav.open { right: 0; }
[dir="rtl"] .bt-mobile-nav.open { right: auto; left: 0; }

.bt-mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 20px; cursor: pointer; padding: 8px;
  border-radius: 4px; transition: color 0.2s;
}
.bt-mobile-close:hover { color: white; }

.bt-mobile-links { display: flex; flex-direction: column; gap: 4px; }
.bt-mobile-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.bt-mobile-links a:hover, .bt-mobile-links a.active { color: var(--orange-light); }

.bt-mobile-lang { display: flex; gap: 8px; margin-top: 32px; }
.bt-mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 250; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.bt-mobile-overlay.visible { opacity: 1; pointer-events: all; }


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--charcoal); position: relative;
  overflow: hidden; display: flex; align-items: center; padding: 140px 120px 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,168,216,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(232,119,34,0.15) 0%, transparent 50%);
}
.hero-dunes {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: linear-gradient(180deg, transparent, rgba(232,119,34,0.06));
}
.hero-dunes::before {
  content: ''; position: absolute; bottom: 0; left: -5%; right: -5%; height: 180px;
  background: radial-gradient(ellipse 40% 80px at 30% 100%, rgba(212,180,131,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 35% 70px at 65% 100%, rgba(212,180,131,0.12) 0%, transparent 70%);
}
.circuit-dot {
  position: absolute; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%; opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%       { transform: translateY(-20px) scale(1.3); opacity: 0.7; }
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,168,216,0.12); border: 1px solid rgba(59,168,216,0.3);
  border-radius: 100px; padding: 6px 18px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 32px; animation: fadeUp 0.8s ease both;
}
[dir="rtl"] .hero-eyebrow { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .hero-eyebrow { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Hebrew', sans-serif; }
.hero-eyebrow::before { content: '◆'; font-size: 8px; }

.hero-title {
  font-family: 'Syne', sans-serif; font-size: clamp(48px,6vw,80px);
  font-weight: 700; line-height: 1.05; color: var(--white);
  margin-bottom: 24px; animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title span.orange { color: var(--orange-light); }
.hero-title span.blue   { color: var(--blue-light); }

.hero-subtitle {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65); max-width: 520px;
  margin-bottom: 48px; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
[dir="rtl"] .hero-buttons { flex-direction: row-reverse; }

.hero-stats {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 40px;
  animation: fadeIn 1s 0.5s ease both; z-index: 2;
}
[dir="rtl"] .hero-stats { right: auto; left: 80px; }
.stat-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); border-radius: 12px; padding: 24px 32px; text-align: center;
}
.stat-number {
  font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 700;
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
[dir="rtl"] .stat-label { letter-spacing: 0; font-family: 'Noto Sans Arabic', sans-serif; text-transform: none; }
html[lang="he"] .stat-label { letter-spacing: 0; font-family: 'Noto Sans Hebrew', sans-serif; text-transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite; z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid rgba(255,255,255,0.3); border-bottom: 2px solid rgba(255,255,255,0.3); transform: rotate(45deg); }


/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; padding: 16px 36px;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
[dir="rtl"] .btn-primary, [dir="rtl"] .btn-outline { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; text-transform: none; }
html[lang="he"] .btn-primary, html[lang="he"] .btn-outline { font-family: 'Noto Sans Hebrew', sans-serif; letter-spacing: 0; text-transform: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,119,34,0.4); color: white; }

.btn-outline {
  background: transparent; color: var(--blue-light);
  border: 1px solid rgba(59,168,216,0.5); padding: 16px 36px;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: rgba(59,168,216,0.1); border-color: var(--blue); color: var(--blue-light); }


/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
section { padding: 100px 120px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
[dir="rtl"] .section-label { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .section-label { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Hebrew', sans-serif; }
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--orange); }

.section-title { font-family: 'Syne', sans-serif; font-size: clamp(32px,4vw,52px); font-weight: 700; line-height: 1.1; color: var(--charcoal); }
.section-title span { color: var(--orange); }
.section-title span.blue { color: var(--blue-dark); }
.section-sub { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--text-muted); max-width: 620px; margin-top: 16px; }
.section-divider { border: none; border-top: 1px solid rgba(0,0,0,0.08); margin: 80px 0; }


/* ═══════════════════════════════════════
   MISSION STRIP
═══════════════════════════════════════ */
.mission-strip {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  padding: 48px 40px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px;
}
.mission-cell { padding: 48px 40px; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
[dir="rtl"] .mission-cell { border-right: none; border-left: 1px solid rgba(255,255,255,0.08); }
.mission-cell:last-child { border-right: none; }
[dir="rtl"] .mission-cell:last-child { border-left: none; }
.mission-cell::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue)); opacity: 0; transition: opacity 0.3s;
}
.mission-cell:hover::before { opacity: 1; }
.mission-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.mission-icon.orange { background: rgba(232,119,34,0.15); }
.mission-icon.blue   { background: rgba(59,168,216,0.15); }
.mission-icon.sand   { background: rgba(212,180,131,0.15); }
.mission-cell h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.mission-cell p  { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; }


/* ═══════════════════════════════════════
   PROGRAM CARDS
═══════════════════════════════════════ */
.programs-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 60px; }
.prog-card { overflow: hidden; border: 1px solid rgba(0,0,0,0.07); position: relative; background: white; }
.prog-card.featured { background: var(--charcoal); transform: scale(1.03); z-index: 2; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.prog-top-bar { height: 8px; }
.prog-top-bar.orange { background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.prog-top-bar.blue   { background: linear-gradient(90deg, var(--blue-dark), var(--blue-light)); }
.prog-top-bar.dark   { background: linear-gradient(90deg, var(--orange-dark), var(--blue-dark)); }
.prog-body  { padding: 40px 36px; }
.prog-icon  { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 24px; }
.prog-icon.o { background: rgba(232,119,34,0.1); }
.prog-icon.b { background: rgba(59,168,216,0.15); }
.prog-icon.d { background: rgba(196,94,10,0.1); }
.prog-stage  { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
[dir="rtl"] .prog-stage { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .prog-stage { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Hebrew', sans-serif; }
.prog-stage.o { color: var(--orange); }
.prog-stage.b { color: var(--blue-light); }
.prog-stage.d { color: var(--orange-dark); }
.prog-title   { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 16px; }
.prog-card:not(.featured) .prog-title { color: var(--charcoal); }
.prog-card.featured .prog-title { color: white; }
.prog-desc { font-size: 15px; line-height: 1.8; }
.prog-card:not(.featured) .prog-desc { color: var(--text-muted); }
.prog-card.featured .prog-desc { color: rgba(255,255,255,0.6); }
.prog-tags { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
.prog-tag-pill { font-size: 12px; padding: 4px 12px; border-radius: 100px; font-weight: 700; }
.prog-tag-pill.o { background: rgba(232,119,34,0.08); color: var(--orange-dark); }
.prog-tag-pill.b { background: rgba(59,168,216,0.15); color: var(--blue-light); }
.prog-tag-pill.d { background: rgba(196,94,10,0.08); color: var(--orange-dark); }
.prog-apply-btn {
  display: inline-block; margin-top: 32px; padding: 14px 28px; border: none; border-radius: 4px;
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
[dir="rtl"] .prog-apply-btn { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .prog-apply-btn { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Hebrew', sans-serif; }
.prog-apply-btn.o { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: white; }
.prog-apply-btn.b { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: white; }
.prog-apply-btn.d { background: linear-gradient(135deg, var(--orange-dark), var(--charcoal)); color: white; }
.prog-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }


/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 48px 40px; text-align: center;
}
.cta-title {
  font-family: 'Syne', sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 600;
  color: white; margin-bottom: 20px;
}
.cta-sub {
  font-size: 17px; color: rgba(255,255,255,0.8); max-width: 540px;
  margin: 0 auto 40px; font-weight: 300;
}
.cta-btn { border-color: rgba(255,255,255,0.6); color: white; font-size: 15px; padding: 18px 48px; }
.cta-btn:hover { background: rgba(255,255,255,0.15); border-color: white; color: white; }


/* ═══════════════════════════════════════
   PERSON CARDS
═══════════════════════════════════════ */
.directors-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.directors-row2  { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 28px; max-width: 780px; margin-left: auto; margin-right: auto; }
.team-grid       { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.person-card {
  text-align: center; background: white; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s;
  padding: 32px 20px 24px;
}
.person-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

/* Fixed-size circular avatar — never zooms at large screens */
.person-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  flex-shrink: 0;
}
.person-avatar.dir { width: 140px; height: 140px; font-size: 52px; }
.person-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
  display: block;
}
.person-emoji { font-size: inherit; }
.person-avatar.grad-a { background: linear-gradient(135deg, #1A1A2E, #2D2D45); }
.person-avatar.grad-b { background: linear-gradient(135deg, #C45E0A, #E87722); }
.person-avatar.grad-c { background: linear-gradient(135deg, #1A7BAF, #3BA8D8); }
.person-avatar.grad-d { background: linear-gradient(135deg, #2D2D45, #3BA8D8); }
.person-avatar.grad-e { background: linear-gradient(135deg, #E87722, #F4A351); }
.person-avatar.grad-f { background: linear-gradient(135deg, #1A7BAF, #2D2D45); }
.person-info { padding: 20px 16px 24px; }
.person-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: 6px;
}
[dir="rtl"] .person-role { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .person-role { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Hebrew', sans-serif; }
.person-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.person-name.large { font-size: 20px; }
.person-bio  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.about-section-title { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.about-section-sub   { font-size: 15px; color: var(--text-muted); }


/* ═══════════════════════════════════════
   VALUES GRID
═══════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.value-card {
  background: white; border-radius: 14px; padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06); border-top: 3px solid var(--orange);
  transition: transform 0.3s;
}
.value-card:hover { transform: translateY(-3px); }
.value-card.blue  { border-top-color: var(--blue); }
.value-emoji { font-size: 32px; margin-bottom: 16px; display: block; }
.value-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }


/* ═══════════════════════════════════════
   ABOUT — story layout
═══════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  border-radius: 20px; padding: 60px; display: flex; flex-direction: column;
  gap: 24px; position: relative; overflow: hidden; border: 1px solid rgba(59,168,216,0.15);
}
.about-visual::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; background: radial-gradient(circle, rgba(59,168,216,0.2), transparent 70%);
}
.about-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-visual-stat { text-align: center; padding: 20px; background: rgba(255,255,255,0.05); border-radius: 12px; }
.about-visual-stat .num {
  font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700;
  background: linear-gradient(135deg, var(--orange-light), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-visual-stat .lab { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
[dir="rtl"] .about-visual-stat .lab { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .about-visual-stat .lab { letter-spacing: 0; text-transform: none; font-family: 'Noto Sans Hebrew', sans-serif; }


/* ═══════════════════════════════════════
   NEWS & EVENTS
═══════════════════════════════════════ */
.news-grid  { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; margin-top: 60px; }
.news-card  {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.news-image { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card.featured .news-image { height: 280px; font-size: 56px; }
.ni-a { background: linear-gradient(135deg, #E87722, #F4A351); }
.ni-b { background: linear-gradient(135deg, #1A7BAF, #3BA8D8); }
.ni-c { background: linear-gradient(135deg, #C45E0A, #2D2D45); }
.ni-d { background: linear-gradient(135deg, #2D2D45, #1A7BAF); }
.ni-e { background: linear-gradient(135deg, #3BA8D8, #7DCBEE); }
.ni-f { background: linear-gradient(135deg, #E87722, #C45E0A); }
.news-body { padding: 24px; }
.news-meta  { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
[dir="rtl"] .news-meta { flex-direction: row-reverse; }
.news-tag   { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: rgba(232,119,34,0.1); padding: 3px 10px; border-radius: 100px; }
[dir="rtl"] .news-tag { letter-spacing: 0; text-transform: none; }
html[lang="he"] .news-tag { letter-spacing: 0; text-transform: none; }
.news-date  { font-size: 12px; color: var(--text-muted); }
.news-body h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; line-height: 1.3; }
.news-card.featured .news-body h3 { font-size: 24px; }
.news-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Events */
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.event-card  {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06); display: flex;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.event-date-block {
  width: 90px; min-width: 90px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 20px 10px; font-family: 'Syne', sans-serif;
}
.event-date-block.ob { background: rgba(232,119,34,0.08); }
.event-date-block.bb { background: rgba(59,168,216,0.08); }
.event-day   { font-size: 36px; font-weight: 700; line-height: 1; color: var(--orange); }
.event-date-block.bb .event-day { color: var(--blue-dark); }
.event-month { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.event-body  { padding: 20px 24px; flex: 1; }
.event-type  { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 6px; }
[dir="rtl"] .event-type { letter-spacing: 0; text-transform: none; }
html[lang="he"] .event-type { letter-spacing: 0; text-transform: none; }
.event-body h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.event-body p  { font-size: 13px; color: var(--text-muted); }


/* ═══════════════════════════════════════
   PARTNER CARDS
═══════════════════════════════════════ */
.partners-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px;
}
.partner-card {
  background: white; border-radius: 14px; padding: 28px 24px;
  text-align: center; border: 1px solid rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; transition: transform 0.3s, box-shadow 0.3s;
}
.partner-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.partner-card img { height: 60px; max-width: 160px; object-fit: contain; }
.partner-name { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--charcoal); font-size: 14px; }
.partner-role { font-size: 12px; color: var(--text-muted); }


/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-detail { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 40px; }
[dir="rtl"] .contact-detail { flex-direction: row-reverse; }
[dir="rtl"] .contact-detail-text { text-align: right; direction: rtl; }
[dir="rtl"] .contact-detail-text h4 { font-family: 'Noto Sans Arabic', sans-serif; letter-spacing: 0; }
html[lang="he"] .contact-detail { flex-direction: row-reverse; }
html[lang="he"] .contact-detail-text { text-align: right; direction: rtl; }
html[lang="he"] .contact-detail-text h4 { font-family: 'Noto Sans Hebrew', sans-serif; letter-spacing: 0; }
html[lang="he"] .contact-detail-text p { font-family: 'Noto Sans Hebrew', sans-serif; }
.contact-icon   { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,119,34,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-icon.b { background: rgba(59,168,216,0.1); }
.contact-detail-text h4 { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.contact-detail-text p  { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.contact-form { background: white; border-radius: 20px; padding: 48px; border: 1px solid rgba(0,0,0,0.06); }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 8px;
}
[dir="rtl"] .form-group label { letter-spacing: 0; text-transform: none; text-align: right; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .form-group label { letter-spacing: 0; text-transform: none; text-align: right; font-family: 'Noto Sans Hebrew', sans-serif; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--text-body); background: var(--off-white); transition: border-color 0.2s; outline: none;
}
[dir="rtl"] .form-group input, [dir="rtl"] .form-group textarea, [dir="rtl"] .form-group select { text-align: right; font-family: 'Noto Sans Arabic', sans-serif; }
html[lang="he"] .form-group input, html[lang="he"] .form-group textarea, html[lang="he"] .form-group select { text-align: right; font-family: 'Noto Sans Hebrew', sans-serif; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,119,34,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }

.map-placeholder {
  margin-top: 48px; height: 220px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 12px; border: 1px solid rgba(59,168,216,0.2);
}
.map-placeholder span    { font-size: 36px; }
.map-placeholder p       { color: rgba(255,255,255,0.6); font-size: 14px; }
.map-placeholder strong  { color: var(--blue-light); font-family: 'Syne', sans-serif; }

/* Form status */
#bt-form-status.success { background: rgba(59,168,216,0.1); color: var(--blue-dark); border: 1px solid rgba(59,168,216,0.3); }
#bt-form-status.error   { background: rgba(232,119,34,0.1); color: var(--orange-dark); border: 1px solid rgba(232,119,34,0.3); }


/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero { padding: 160px 120px 100px; background: var(--charcoal); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--blue)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(40px,5vw,68px); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 20px; }
.page-hero h1 span { color: var(--orange-light); }
.page-hero p  { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.7; }
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(59,168,216,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(232,119,34,0.12) 0%, transparent 50%);
}


/* ═══════════════════════════════════════
   APPLICATION STEPS
═══════════════════════════════════════ */
.apply-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 50px;
}
.apply-step {
  text-align: center; padding: 32px 20px; background: white;
  border-radius: 16px; border: 1px solid rgba(0,0,0,0.06);
}
.apply-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 22px; color: white;
}
.apply-step h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.apply-step p  { font-size: 14px; color: var(--text-muted); }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.bt-footer { background: var(--charcoal); padding: 60px 120px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-simple { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-nav a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange-light); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p  { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-tagline   { font-family: 'Noto Sans Arabic', sans-serif; direction: rtl; font-size: 12px; color: rgba(255,255,255,0.3); }


/* ═══════════════════════════════════════
   SCROLL ANIMATION
═══════════════════════════════════════ */
.bt-animate-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bt-animate-up.visible { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════
   WORDPRESS CORE CLASSES
═══════════════════════════════════════ */
.alignleft   { float: left; margin: 0 24px 16px 0; }
.alignright  { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: 6px; }
/* WordPress uploaded images — constrain to container */
.wp-block-image img,
figure img,
.entry-content img { max-width: 100%; height: auto; width: auto; }
.single-content img { border-radius: 8px; margin: 24px 0; }
.single-content h2, .single-content h3 { font-family: 'Syne', sans-serif; color: var(--charcoal); margin: 32px 0 16px; }
.single-content p  { margin-bottom: 20px; line-height: 1.85; }
.single-content a  { color: var(--blue-dark); }
.single-content ul, .single-content ol { padding-left: 28px; margin-bottom: 20px; }
.single-content li { margin-bottom: 8px; line-height: 1.7; }
.single-content blockquote {
  border-left: 4px solid var(--orange); padding: 16px 24px;
  background: rgba(232,119,34,0.06); border-radius: 0 8px 8px 0; margin: 24px 0;
  font-style: italic; color: var(--text-muted);
}
[dir="rtl"] .single-content blockquote { border-left: none; border-right: 4px solid var(--orange); }


/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-simple { flex-direction: column; align-items: flex-start; }
  .apply-steps { grid-template-columns: repeat(2,1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
  nav.bt-nav { padding: 0 20px; }
  .nav-links  { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }

  section { padding: 80px 40px; }
  .hero   { padding: 140px 40px 100px; }
  .hero-stats { display: none; }
  .cta-banner { padding: 60px 24px; }

  .programs-3 { grid-template-columns: 1fr; }
  .prog-card.featured { transform: none; }

  .directors-grid, .directors-row2 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .news-grid  { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-nav { gap: 8px 16px; }
  .mission-strip { grid-template-columns: 1fr; padding: 40px 24px; }
  .about-story   { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .apply-steps   { grid-template-columns: 1fr 1fr; }
  .page-hero     { padding: 140px 40px 80px; }
  .contact-form  { padding: 32px 24px; }
  .bt-footer     { padding: 60px 40px 40px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .directors-grid, .directors-row2 { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .partners-grid  { grid-template-columns: 1fr; }
  .apply-steps    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; align-items: center; text-align: center; }
  .form-row       { grid-template-columns: 1fr; }
  .about-visual   { padding: 32px 24px; }
  .mission-cell   { padding: 32px 24px; }
  .hero-buttons   { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { text-align: center; }
}
/* Hero override */
.mentorship-hero { padding-top: 130px; }

/* CTA button */
.mentor-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; text-decoration: none;
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mentor-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,119,34,0.45); }
.mentor-cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
}
.mentor-cta-btn--outline:hover { background: rgba(255,255,255,0.1); box-shadow: none; }

/* Search bar */
.mentor-search-bar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
  background: white; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px; padding: 18px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.mentor-search-input-wrap {
  display: flex; align-items: center; gap: 10px;
  flex: 1 1 240px; min-width: 200px;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 6px;
  padding: 10px 14px; background: var(--off-white);
  color: var(--text-muted);
}
.mentor-search-input-wrap input {
  border: none; background: transparent; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text-body); width: 100%;
}
.mentor-search-input-wrap input::placeholder { color: var(--text-muted); }
.mentor-filter-group { display: flex; flex-direction: column; gap: 4px; }
.mentor-filter-label {
  font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
}
.mentor-select {
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 6px;
  padding: 10px 36px 10px 14px; background: var(--off-white);
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-body);
  cursor: pointer; outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  min-width: 160px;
}
.mentor-select:focus { border-color: var(--blue); }
.mentor-clear-btn {
  background: transparent; border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 6px; padding: 10px 18px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s; align-self: flex-end;
}
.mentor-clear-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Active filter badges */
.mentor-active-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; min-height: 0; }
.mentor-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(59,168,216,0.1); border: 1px solid rgba(59,168,216,0.3);
  color: var(--blue-dark); border-radius: 100px;
  font-size: 12px; font-weight: 500; padding: 4px 12px;
}
.mentor-badge button {
  background: none; border: none; cursor: pointer; color: var(--blue-dark);
  font-size: 14px; line-height: 1; padding: 0; display: flex; align-items: center;
}

/* Count label */
.mentor-count {
  font-size: 13px; color: var(--text-muted); margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

/* Grid */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Card */
.mentor-card {
  background: white; border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.mentor-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.1); }
.mentor-card-header { display: flex; align-items: center; gap: 14px; }
.mentor-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: white;
  overflow: hidden;
}
.mentor-avatar img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover; object-position: center top;
  display: block;
}
.mentor-name {
  font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700;
  color: var(--charcoal); line-height: 1.2;
}
.mentor-title { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.mentor-bio { font-size: 13px; color: var(--text-body); line-height: 1.65; flex: 1; }
.mentor-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mentor-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 100px;
  background: rgba(232,119,34,0.1); color: var(--orange-dark);
  border: 1px solid rgba(232,119,34,0.2);
}
.mentor-card-footer { display: flex; align-items: center; justify-content: flex-end; padding-top: 4px; border-top: 1px solid rgba(0,0,0,0.06); }
.mentor-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; font-family: 'Syne', sans-serif;
  color: var(--blue-dark); text-decoration: none; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.mentor-linkedin:hover { color: var(--blue); }
.mentor-linkedin svg { flex-shrink: 0; }

/* Empty state */
.mentor-empty {
  text-align: center; padding: 64px 24px;
  color: var(--text-muted); font-size: 15px; line-height: 1.8;
}
.mentor-link-btn {
  background: none; border: none; cursor: pointer;
  color: var(--blue-dark); font-size: 15px; text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
}

/* Join Banner */
.mentor-join-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  padding: 48px 40px;
  position: relative; overflow: hidden;
}
.mentor-join-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(59,168,216,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 70%, rgba(232,119,34,0.12) 0%, transparent 50%);
}
.mentor-join-inner {
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .mentor-join-banner { padding: 56px 32px; }
}
@media (max-width: 768px) {
  .mentor-search-bar { flex-direction: column; align-items: stretch; }
  .mentor-search-input-wrap, .mentor-select { width: 100%; }
  .mentor-clear-btn { align-self: stretch; }
  .mentor-grid { grid-template-columns: 1fr; }
  section[style*="padding:56px 80px"],
  section[style*="padding:24px 80px"] { padding-left: 20px !important; padding-right: 20px !important; }
  .mentor-join-banner { padding: 48px 24px; }
  .mentor-join-inner { flex-direction: column; text-align: center; align-items: center; }
}
