/* ============================================================
   Design Tokens — National Committee for Care of Prisoners
   Color palette aligned with DGA (Digital Government Authority)
   Primary: #006C35 (Saudi Gov Official Green)
   ============================================================ */
:root {
  /* Primary – Saudi Gov Official Green (#006C35) */
  --green-25:  #F3FCF6;
  --green-50:  #E6F2EA;
  --green-100: #B3D9C0;
  --green-200: #80C091;
  --green-300: #4DA767;
  --green-400: #1A8E48;
  --green-500: #006C35;  /* Brand primary — DGA Official */
  --green-600: #005A2C;
  --green-700: #004722;
  --green-800: #003519;  /* Navbar dark border / footer */
  --green-900: #00220F;  /* Utility bar / darkest */

  /* Secondary – Gold */
  --gold-100:  #F5E5B8;
  --gold-300:  #E7BF53;
  --gold-400:  #E1B02A;
  --gold-500:  #C89A1B;

  /* Neutral */
  --neutral-50:  #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E8E8E8;
  --neutral-400: #A0A0A0;
  --neutral-600: #6B6B6B;
  --neutral-800: #333333;

  /* Bootstrap token overrides — align with DGA palette */
  --bs-success:     #006C35;
  --bs-success-rgb: 0, 108, 53;

  /* Typography */
  --font-primary: 'IBM Plex Sans Arabic', sans-serif;
}

/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-primary);
  color: var(--neutral-800);
  background: #fff;
  direction: rtl;
}

a { text-decoration: none; }

img { max-width: 100%; }

/* ============================================================
   Digital Stamp — Guideline 19
   Government registration bar, topmost element on every page
   ============================================================ */
.digital-stamp {
  background: #F3F4F6;   /* gray — matches DGA design system */
  border-bottom: 1px solid #D2D6DB;
  font-size: 0.8rem;
  color: #161616;
  padding: 6px 0;
}

.stamp-icon {
  color: #1B6B3A;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Saudi flag */
.stamp-flag { flex-shrink: 0; border-radius: 2px; }

/* Stamp label text */
.stamp-label { font-size: 0.8rem; color: #161616; }

/* Verify toggle — plain green text, no border, no background (matches hrsd.gov.sa) */
.stamp-verify-btn {
  background: none;
  border: none;
  color: #1B6B3A;
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-primary);
}
.stamp-verify-btn:hover { text-decoration: underline; }

/* Chevron flips when panel is open */
.stamp-verify-btn[aria-expanded="true"] .stamp-chevron {
  transform: rotate(180deg);
}
.stamp-chevron { transition: transform .2s; font-size: 0.7rem; }

/* Stamp detail icon color */
.stamp-detail-icon { color: #1B6B3A; font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

/* Collapsible panel border separator */
.stamp-panel-border {
  border-top: 1px solid #D2D6DB;
  background: #F3F4F6;
}

/* Panel inner layout — 3 columns */
.stamp-panel-inner {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  flex-wrap: wrap;
}

/* Single detail item */
.stamp-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
}
.stamp-detail i {
  font-size: 1.2rem;
  color: #1B6B3A;
  margin-top: 2px;
  flex-shrink: 0;
}
.stamp-detail strong {
  display: block;
  font-size: 0.85rem;
  color: #1A1A1A;
  margin-bottom: 2px;
}
.stamp-detail p {
  font-size: 0.8rem;
  color: #4A4A4A;
  margin: 0;
  line-height: 1.5;
}
.stamp-detail code {
  background: #E5E7EB;  /* gray chip — matches DGA design system */
  color: #161616;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: var(--font-primary);
}

/* ============================================================
   Second Nav Header (Guideline 3)
   Light gray bar — weather, date, time, location + a11y icons
   ============================================================ */
.second-nav {
  background: #F9F9F9;
  border-bottom: 1px solid #E5E5E5;
  padding: 6px 0;
  font-size: 0.8rem;
  color: #4A4A4A;
}

/* Right group: weather + date + time + location */
.second-nav-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.second-nav-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4A4A4A;
  font-size: 0.8rem;
}
.second-nav-meta i { font-size: 0.85rem; }

/* Left group: accessibility icon buttons */
.a11y-btn {
  background: none;
  border: 1px solid #E5E5E5;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background .15s, color .15s, border-color .15s;
}
.a11y-btn:hover {
  background: #E8F5E9;
  color: #1B6B3A;
  border-color: #1B6B3A;
}

/* High contrast mode — toggled by JS */
body.high-contrast { filter: contrast(1.5) grayscale(.2); }

/* Hide utility meta on mobile — a11y buttons always stay visible */
@media (max-width: 767px) {
  .second-nav-meta  { display: none !important; }
  .second-nav-divider { display: none !important; }
}

/* ============================================================
   Navbar
   ============================================================ */
.main-navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
}
/* Logo sizing */
.navbar-logo {
  height: 52px;
  max-width: 180px;
  object-fit: contain;
}

/* Hamburger icon — no inline style needed */
.navbar-toggler-icon-custom {
  font-size: 1.6rem;
  color: #1B6B3A;
}

/* Nav links */
.main-navbar .nav-link {
  color: var(--neutral-800) !important;
  font-weight: 500;
  font-size: 0.9375rem;   /* Text md — 15px */
  padding: 1.1rem 0.75rem !important;
  transition: color .2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--green-500) !important;
}

/* Dropdown panel */
.main-navbar .dropdown-menu {
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border-radius: 12px;
  margin-top: 0;
  min-width: 220px;
}

/* Dropdown group header label */
.main-navbar .dropdown-header {
  font-size: 0.75rem;      /* Text xs — 12px */
  font-weight: 600;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0.6rem 1rem 0.3rem;
}

/* Dropdown items */
.main-navbar .dropdown-item {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  color: var(--neutral-800);
  border-radius: 6px;
}
.main-navbar .dropdown-item:hover {
  background: var(--green-25);
  color: var(--green-500);
}

/* CTA button — منصة العطاء */
.btn-cta {
  background: var(--green-500);
  color: #fff !important;
  border-radius: 8px;
  padding: 0.45rem 1.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--green-600); color: #fff !important; }

/* Search icon button */
.navbar-search-btn {
  border: none;
  background: none;
  color: var(--neutral-600);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.navbar-search-btn:hover {
  color: var(--green-500);
  background: var(--green-25);
}

.lang-btn {
  border: 1px solid var(--neutral-200);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: var(--neutral-800);
  background: #fff;
  cursor: pointer;
  transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--green-500); color: var(--green-500); }

/* ============================================================
   Hero
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,47,30,.85) 0%, rgba(14,68,44,.75) 55%, rgba(27,131,84,.45) 100%),
    url('../assets/images/fbg.png') center/cover no-repeat;
  background-color: var(--green-800);
}
/* Decorative circle overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 20% 50%, rgba(27,131,84,.18) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}
.hero-content .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content .hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.btn-hero-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  border-radius: 8px;
  padding: 0.6rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-hero-outline:hover {
  background: #fff;
  color: var(--green-800);
}
.hero-indicators {
  position: absolute;
  bottom: 28px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  padding: 0;
  transition: background .2s, transform .2s;
}
.hero-indicators button.active {
  background: #fff;
  transform: scale(1.2);
}

/* ============================================================
   Section Commons
   ============================================================ */
.section-py { padding: 72px 0; }
.section-py-sm { padding: 56px 0; }

.section-header { margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 8px;
}
.section-header p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
  margin-right: auto;
}
.btn-outline-green {
  border: 1.5px solid var(--green-500);
  color: var(--green-500);
  background: transparent;
  border-radius: 8px;
  padding: 0.45rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background .2s, color .2s;
  font-family: var(--font-primary);
}
.btn-outline-green:hover {
  background: var(--green-500);
  color: #fff;
}
.btn-green {
  background: var(--green-500);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background .2s;
  font-family: var(--font-primary);
}
.btn-green:hover { background: var(--green-600); color: #fff; }

/* ============================================================
   Statistics
   ============================================================ */
.stats-section { background: #fff; border-bottom: 1px solid var(--neutral-200); }
.stat-card {
  text-align: center;
  padding: 32px 16px;
}
.stat-icon {
  width: 52px;
  height: 52px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-500);
  font-size: 1.4rem;
}
.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
}
.stat-divider {
  border-right: 1px solid var(--neutral-200);
}

/* ============================================================
   Core Tracks (Accordion cards)
   ============================================================ */
.tracks-section { background: var(--neutral-50); }
.track-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.track-card:hover {
  box-shadow: 0 4px 20px rgba(27,131,84,.12);
  border-color: var(--green-200);
}
.track-icon {
  width: 44px;
  height: 44px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.track-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 8px;
}
.track-card p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 0;
}
.track-toggle {
  background: none;
  border: none;
  color: var(--neutral-600);
  cursor: pointer;
  padding: 4px;
  margin-top: 12px;
  transition: color .2s, transform .2s;
}
.track-toggle:hover { color: var(--green-500); }
.track-toggle.open { transform: rotate(180deg); }

/* ============================================================
   Track Card — Static (Pattern B)
   ============================================================ */
.track-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 8px;
  line-height: 1.4;
}
.track-card__desc {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin: 0 0 16px;
}
.track-card__list-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-500);
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 0 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--neutral-200);
}
.track-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.track-card__list li {
  position: relative;
  padding-right: 18px;
  margin-bottom: 8px;
  font-size: 0.8125rem;
  color: var(--neutral-700, #525252);
  line-height: 1.6;
}
.track-card__list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
}
.track-card__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .track-card {
    padding: 20px;
  }
  .track-card__title { font-size: 1rem; }
}

/* ============================================================
   Initiatives Carousel
   ============================================================ */
.initiatives-section { background: #fff; }
.initiative-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.initiative-card:hover {
  box-shadow: 0 4px 20px rgba(27,131,84,.12);
  border-color: var(--green-200);
}
.initiative-icon {
  width: 44px;
  height: 44px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.1rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.initiative-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 8px;
}
.initiative-card p {
  font-size: 0.82rem;
  color: var(--neutral-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.initiative-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Bootstrap carousel override for initiatives */
#initiativesCarousel .carousel-inner { padding-bottom: 48px; }
#initiativesCarousel .carousel-indicators {
  bottom: 0;
}
#initiativesCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-200);
  border: none;
  opacity: 1;
}
#initiativesCarousel .carousel-indicators .active {
  background: var(--green-500);
}

/* ============================================================
   Social Impact
   ============================================================ */
.impact-section { background: var(--green-25); }
.impact-card {
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.impact-icon {
  width: 52px;
  height: 52px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.impact-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 6px;
}
.impact-label {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* ============================================================
   News Section
   ============================================================ */
.news-section { background: #fff; }
.news-card {
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.news-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.news-card .news-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card .news-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card .news-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card .news-tag {
  display: inline-block;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.news-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 8px;
  line-height: 1.5;
}
.news-card p {
  font-size: 0.82rem;
  color: var(--neutral-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.news-card .btn-read-more {
  background: var(--green-500);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background .2s;
}
.news-card .btn-read-more:hover { background: var(--green-600); }

/* ============================================================
   Partners
   ============================================================ */
/* ============================================================
   Partners / Memberships — Static Grid
   Original colors · White card · Large size
   ============================================================ */
.partners-section {
  background: var(--neutral-50);
  padding: 64px 0;
}
.partners-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 8px 0 0;
}
/* Single-line marquee: forced LTR for predictable RTL→LTR motion */
.partners-marquee {
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.partners-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partners-marquee 40s linear infinite;
  will-change: transform;
}
.partners-marquee:hover .partners-marquee__track,
.partners-marquee:focus-within .partners-marquee__track {
  animation-play-state: paused;
}
@keyframes partners-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 20px 24px;
  width: 200px;
  height: 130px;
  flex-shrink: 0;
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.partner-logo:hover {
  border-color: var(--green-500);
  box-shadow: 0 8px 24px rgba(0, 108, 53, 0.10);
  transform: translateY(-2px);
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .partners-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}

.partners-section__timestamp {
  margin-top: 32px;
  text-align: end;
  color: var(--neutral-600);
  font-size: 0.78rem;
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo { transition: none; }
  .partner-logo:hover { transform: none; }
}

.partner-logo-placeholder {
  width: 80px;
  height: 60px;
  background: var(--neutral-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
}

/* ============================================================
   Footer
   ============================================================ */
.main-footer {
  background: var(--green-800);
  color: rgba(255,255,255,.85);
  padding: 60px 0 0;
}
.footer-col h6 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--green-500); color: #fff; }

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 14px;
  color: #fff;
  font-size: 0.8rem;
  margin-bottom: 8px;
  transition: background .2s;
  width: 100%;
}
.app-badge:hover { background: rgba(255,255,255,.18); color: #fff; }
.app-badge i { font-size: 1.3rem; }

.footer-bottom {
  background: var(--green-900);
  margin-top: 48px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom .vision-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.75rem;
}
.vision-badge {
  background: #fff;
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.7rem;
}
.footer-bottom p {
  color: rgba(255,255,255,.55);
  font-size: 0.78rem;
  margin: 0;
}
.footer-timestamp {
  color: rgba(255,255,255,.45);
  font-size: 0.75rem;
  display: block;
  margin-top: 4px;
}

/* ── Feedback Section (Guideline 7) ───────────────────────── */
.feedback-section {
  background: #F9F9F9;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 28px 0;
}
.feedback-bar { font-size: 0.9375rem; color: #1A1A1A; }
.feedback-question { font-weight: 600; font-size: 1rem; }
.feedback-vote-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 20px;
  border: 1px solid #1B6B3A;
  border-radius: 8px;
  background: #fff;
  color: #1B6B3A;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.feedback-vote-btn:hover,
.feedback-vote-btn.active { background: #1B6B3A; color: #fff; }
.feedback-vote-btn--no { border-color: #4A4A4A; color: #4A4A4A; }
.feedback-vote-btn--no:hover,
.feedback-vote-btn--no.active { background: #4A4A4A; color: #fff; border-color: #4A4A4A; }
.feedback-percent { color: #4A4A4A; font-size: 0.85rem; }
.feedback-percent-num { font-weight: 700; color: #1B6B3A; }
.feedback-form-wrap { margin-top: 24px; }
.feedback-form-inner {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.feedback-form-title { font-size: 1.125rem; font-weight: 600; color: #1A1A1A; margin: 0; }
.feedback-close-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #4A4A4A;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s;
}
.feedback-close-btn:hover { background: #F0F0F0; }
.feedback-sub { font-weight: 600; font-size: 0.9rem; color: #1A1A1A; margin-bottom: 8px; }
.feedback-check-label,
.feedback-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #4A4A4A;
  cursor: pointer;
}
.feedback-textarea {
  border-radius: 8px;
  border-color: #E5E5E5;
  font-size: 0.9rem;
  resize: vertical;
}
.feedback-textarea:focus { border-color: #2D8B4E; box-shadow: 0 0 0 3px rgba(45,139,78,.15); }
.feedback-links { font-size: 0.825rem; color: #4A4A4A; }
.feedback-links a { color: #1B6B3A; text-decoration: underline; }
.btn-feedback-submit {
  background: #1B6B3A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-feedback-submit:hover { background: #2D8B4E; }

/* ── Cookies Banner ────────────────────────────────────────── */
.cookies-banner {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  width: min(480px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  padding: 20px;
  z-index: 9999;
}
.cookies-icon { font-size: 1.5rem; color: #1B6B3A; margin-top: 2px; }
.cookies-title { font-size: 0.9375rem; font-weight: 700; color: #1A1A1A; margin: 0 0 6px; }
.cookies-body { font-size: 0.8125rem; color: #4A4A4A; line-height: 1.6; margin: 0; }
.cookies-policy-link { font-size: 0.8rem; color: #1B6B3A; text-decoration: underline; }
.cookies-x {
  background: none;
  border: none;
  font-size: 0.9rem;
  color: #6B6B6B;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.cookies-x:hover { background: #F0F0F0; color: #1A1A1A; }
.btn-cookies-accept {
  background: #1B6B3A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-cookies-accept:hover { background: #2D8B4E; }
.btn-cookies-text {
  background: none;
  border: none;
  color: #1B6B3A;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.btn-cookies-text:hover { color: #2D8B4E; }
.cookies-toggles { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.cookies-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: #1A1A1A;
  padding: 8px 12px;
  background: #F9F9F9;
  border-radius: 8px;
}
.cookies-always-active {
  font-size: 0.75rem;
  color: #1B6B3A;
  font-weight: 600;
}
.form-check-input:checked { background-color: #1B6B3A; border-color: #1B6B3A; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .main-navbar .nav-link { padding: 0.6rem 0.5rem !important; }
  .hero-content { padding: 64px 0 60px; }
  .hero-content h1 { font-size: 2.4rem; }
}

@media (max-width: 767px) {
  .section-py { padding: 48px 0; }
  .utility-bar .utility-meta { display: none; }
  .stat-divider { border-right: none; border-bottom: 1px solid var(--neutral-200); }
  .hero-content { padding: 48px 0 56px; }
}

/* ── Last Modified Date bar ─────────────────────────────── */
.last-modified-bar {
  padding: 8px 0;
  background: #fff;
  border-top: 1px solid #E5E5E5;
}

.last-modified-text {
  font-size: 0.8rem;
  color: #6B7280;
  direction: rtl;
}

/* ============================================================
   Services Section
   Card carousel with chips + dual CTAs
   Layout: header (title + view-all) -> 4-card carousel -> dots
   ============================================================ */
.services-section {
  background: #fff;
}

/* Header row — title/desc + view-all button */
.services-header {
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  /* Mobile: stack vertically per Instruction #12 */
  .services-header .services-header-cta {
    margin-top: 1rem;
    align-self: flex-start;
  }
}

/* Card */
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 4px 20px rgba(27, 131, 84, .12);
  border-color: var(--green-200);
}

/* Overlay link — makes the whole card clickable without nesting <a> in <a> */
.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  text-indent: -9999px; /* hide label visually */
  overflow: hidden;
}
.service-card-overlay:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
}

/* Ensure buttons remain clickable above overlay */
.service-card .service-actions .btn-green,
.service-card .service-actions .btn-outline-green {
  position: relative;
  z-index: 2;
}

/* Icon — reuse track-icon pattern */
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.1rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.service-card h5 {
  font-size: 1rem;        /* Text lg semibold */
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 6px;
}
.service-card .service-desc {
  font-size: 0.82rem;     /* Text sm regular */
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

/* Chips row */
.service-chips {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  line-height: 1.5;
  border: 1px solid transparent;
}
.service-chip--filled {
  background: var(--green-25);
  color: var(--green-500);
  border-color: var(--green-25);
}
.service-chip--outlined {
  background: #fff;
  color: var(--green-500);
  border-color: var(--green-500);
}
.service-chip--default {
  background: #fff;
  color: var(--neutral-600);
  border-color: var(--neutral-200);
}

/* Actions row */
.service-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-actions .btn-green,
.service-actions .btn-outline-green {
  font-size: .8rem;
  padding: .35rem .9rem;
}

/* Carousel overrides — match initiatives carousel style */
#servicesCarousel .carousel-inner { padding-bottom: 48px; }
#servicesCarousel .carousel-indicators { bottom: 0; margin-bottom: 0; }
#servicesCarousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-200);
  border: none;
  opacity: 1;
  margin: 0 4px;
}
#servicesCarousel .carousel-indicators .active {
  background: var(--green-500);
}

/* "Peek" effect — 5th card partially visible on XL screens only */
@media (min-width: 1200px) {
  #servicesCarousel .carousel-inner {
    overflow: visible;
    /* Prevent peek from causing horizontal scroll on body */
    clip-path: inset(-20px -20px -20px 0);
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  .service-card,
  #servicesCarousel .carousel-item {
    transition: none;
  }
}


/* ============================================================
   National Role Page (Note #1)
   New components for the strategic positioning page
   ============================================================ */

/* Draft banner — REMOVE after content approval */
.draft-banner {
  background: #FFF3CD;
  border-bottom: 2px solid #DBA102;
  color: #92400E;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1100;
}

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--neutral-50);
  border-bottom: 1px solid var(--neutral-200);
  padding: 12px 0;
}
.breadcrumb-bar .breadcrumb {
  font-size: 0.85rem;
  margin: 0;
}
.breadcrumb-bar .breadcrumb-item a {
  color: var(--green-500);
  text-decoration: none;
}
.breadcrumb-bar .breadcrumb-item a:hover {
  text-decoration: underline;
}
.breadcrumb-bar .breadcrumb-item.active {
  color: var(--neutral-600);
}
.breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--neutral-400);
  margin: 0 8px;
}

/* Hero — solid deep green with gold accent */
.role-hero {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.role-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8px;
  height: 100%;
  background: var(--gold-400);
}
.role-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(225, 176, 42, 0.15);
  color: var(--gold-300);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.role-hero-badge i { font-size: 0.85rem; }
.role-hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}
.role-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 760px;
}
.role-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold-400);
  color: var(--green-900);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .2s;
}
.btn-hero-primary:hover {
  background: var(--gold-500);
  color: var(--green-900);
}

/* Section utility helpers */
.section-py { padding: 72px 0; }
.section-eyebrow {
  display: inline-block;
  color: var(--green-500);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}
.section-lead {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* Pillars section */
.role-pillars-section { background: #fff; }
.role-pillar-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.role-pillar-card:hover {
  box-shadow: 0 12px 32px rgba(27, 131, 84, 0.12);
  border-color: var(--green-300);
  transform: translateY(-4px);
}
.role-pillar-num {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 1px;
}
.role-pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--green-25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.role-pillar-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}
.role-pillar-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.role-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed var(--neutral-200);
  padding-top: 16px;
}
.role-pillar-list li {
  position: relative;
  padding-right: 22px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--neutral-800);
  line-height: 1.55;
}
.role-pillar-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--green-50);
  border: 2px solid var(--green-500);
  border-radius: 50%;
}
.role-pillar-list li:last-child { margin-bottom: 0; }

/* Reuse stats-section with new context */
.role-stats-section { background: #fff; }

/* ╔══════════════════════════════════════════════════════╗
   ║  DISTINCTIVE ROLE — 4-pillar grid                   ║
   ║  DGA Platforms Code compliant                       ║
   ╚══════════════════════════════════════════════════════╝ */
.role-distinctive-section {
  background: #fff;
}

.role-distinctive-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
}

.role-distinctive-card:hover {
  border-color: var(--green-500);
  box-shadow: 0 6px 20px rgba(0, 108, 53, 0.08);
  transform: translateY(-3px);
}

.role-distinctive-card:focus-within {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
}

.role-distinctive-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.role-distinctive-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.5;
  margin: 0 0 .5rem;
}

.role-distinctive-desc {
  font-size: .9375rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 575.98px) {
  .role-distinctive-card { padding: 24px 20px; }
  .role-distinctive-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .role-distinctive-card { transition: none; }
  .role-distinctive-card:hover { transform: none; }
}

/* Audiences section */
.role-audiences-section {
  background: var(--neutral-50);
}
.audience-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 28px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.audience-card:hover {
  box-shadow: 0 8px 24px rgba(27, 131, 84, 0.1);
  border-color: var(--green-300);
  transform: translateY(-3px);
}
.audience-card-featured {
  border-color: var(--green-500);
  border-width: 2px;
  background: linear-gradient(180deg, #fff 0%, var(--green-25) 100%);
}
.audience-icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.audience-card-featured .audience-icon {
  background: var(--green-500);
  color: #fff;
}
.audience-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 10px;
}
.audience-desc {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}
.audience-link {
  color: var(--green-500);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color .2s;
}
.audience-link:hover {
  color: var(--green-700);
}
.audience-link i {
  transition: transform .2s;
}
.audience-link:hover i {
  transform: translateX(-3px);
}

/* Journey timeline */
.role-journey-section {
  background: #fff;
}
.journey-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 3px;
  background: var(--green-100);
  z-index: 0;
}
.journey-step {
  flex: 1 1 220px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.journey-step-marker {
  width: 56px;
  height: 56px;
  background: var(--green-500);
  border: 4px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(27, 131, 84, 0.2);
}
.journey-step-num {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}
.journey-step-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 8px;
}
.journey-step-meta {
  font-size: 0.75rem;
  color: var(--green-700);
  margin-bottom: 8px;
  font-weight: 500;
}
.journey-step-body p {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin: 0;
}

/* Why-it-matters block */
.role-why-section {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
}
.role-why-block {
  background: #fff;
  border: 1px solid var(--green-100);
  border-right: 4px solid var(--gold-400);
  border-radius: 12px;
  padding: 36px 32px;
}
.role-why-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 16px;
}
.role-why-text {
  font-size: 1rem;
  color: var(--neutral-800);
  line-height: 1.85;
  margin: 0;
}

/* ============================================================
   National Role — Homepage Summary Block
   Compact 5-card display + CTA, links to full page
   ============================================================ */
.national-role-summary {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 64px 0;
}
.national-role-summary .summary-header {
  margin-bottom: 32px;
}
.national-role-summary .summary-eyebrow {
  display: block;
  color: var(--green-500);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.national-role-summary .summary-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 10px;
}
.national-role-summary .summary-lead {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.role-pillar-mini {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  height: 100%;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
}
.role-pillar-mini:hover {
  border-color: var(--green-500);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(27, 131, 84, 0.1);
}
.role-pillar-mini-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-100);
  color: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 12px;
}
.role-pillar-mini-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0;
}

/* ============================================================
   Responsive — National Role page
   ============================================================ */
@media (max-width: 991.98px) {
  .role-hero { padding: 56px 0 64px; }
  .role-hero-title { font-size: 1.9rem; }
  .role-hero-desc { font-size: 0.95rem; }
  .section-title { font-size: 1.5rem; }
  .section-py { padding: 56px 0; }
  .journey-timeline::before { display: none; }
  .journey-timeline { flex-direction: column; gap: 24px; }
  .journey-step { text-align: right; display: flex; gap: 16px; align-items: flex-start; }
  .journey-step-marker { margin: 0; flex-shrink: 0; }
  .journey-step-body { flex-grow: 1; }
}

@media (max-width: 575.98px) {
  .role-hero-title { font-size: 1.5rem; }
  .role-hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { width: 100%; justify-content: center; }
  .role-pillar-card { padding: 24px 20px; }
  .role-pillar-num { top: 18px; left: 20px; }
}

/* ============================================================
   About Page (من نحن) — Note #2 implementation
   ============================================================ */

/* Page header */
.about-header {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding-bottom: 32px;
}
.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 16px;
}
.about-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--neutral-800);
  max-width: 920px;
  margin: 0;
}

/* Tabs */
.about-tabs {
  border-bottom: 2px solid var(--neutral-200);
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-tabs .nav-link {
  color: var(--neutral-600);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  background: none;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.about-tabs .nav-link:hover {
  color: var(--green-500);
  border-bottom-color: var(--green-100);
}
.about-tabs .nav-link.active {
  color: var(--green-700);
  border-bottom-color: var(--green-500);
  background: none;
}
.about-tab-content {
  padding: 40px 0 56px;
}

/* Headings inside tabs */
.about-h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 16px;
}
.about-h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-700);
  margin-top: 28px;
  margin-bottom: 12px;
}
.about-tab-content p {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--neutral-800);
  margin-bottom: 16px;
}

/* Bulleted lists */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.about-list li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--neutral-800);
}
.about-list li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
}

/* Values grid (Tab 3) */
.about-values-grid {
  margin-top: 24px;
}
.about-value-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 24px 22px;
  height: 100%;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.about-value-card:hover {
  box-shadow: 0 6px 20px rgba(27, 131, 84, 0.1);
  border-color: var(--green-300);
  transform: translateY(-2px);
}
.about-value-icon {
  width: 48px;
  height: 48px;
  background: var(--green-25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.about-value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin: 0;
}

/* ADDED VALUES — Note #2 — distinct visual treatment */
.about-values-added {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 2px dashed var(--gold-300);
}
.about-values-added-header {
  margin-bottom: 24px;
}
.badge-draft {
  display: inline-block;
  background: #FFF3CD;
  color: #92400E;
  border: 1px solid var(--gold-300);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}
.about-values-added-lead {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.8;
  max-width: 820px;
  margin-top: 8px;
}
.about-value-card--added {
  background: linear-gradient(180deg, #fff 0%, #FFFBF0 100%);
  border-color: var(--gold-300);
  border-right: 4px solid var(--gold-400);
}
.about-value-card--added:hover {
  border-color: var(--gold-400);
  box-shadow: 0 6px 20px rgba(225, 176, 42, 0.18);
}
.about-value-icon--added {
  background: var(--gold-100);
  color: var(--gold-500);
}

/* Responsive — About page */
@media (max-width: 767.98px) {
  .about-title { font-size: 1.6rem; }
  .about-intro { font-size: 0.95rem; }
  .about-tabs .nav-link { padding: 10px 12px; font-size: 0.85rem; }
  .about-h2 { font-size: 1.25rem; }
  .about-h3 { font-size: 1rem; }
}

/* ============================================================
   Stat Progress Bars (Note #3)
   Decorative bars under numbers — fill triggered by JS on scroll
   ============================================================ */
.stat-bar,
.impact-bar {
  width: 70%;
  height: 4px;
  background: var(--green-25);
  border-radius: 4px;
  margin: 12px auto 0;
  overflow: hidden;
  position: relative;
}
.stat-bar > span,
.impact-bar > span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(to left, var(--green-400), var(--green-600));
  border-radius: 4px;
  transition: width 1.6s cubic-bezier(.2,.7,.3,1);
}
.stat-bar > span.is-filled,
.impact-bar > span.is-filled {
  width: 100%;
}

/* Slight upgrade to existing impact card padding for the bar */
.impact-card { padding-bottom: 24px; }

/* ============================================================
   About > Impact Tab (Note #3, Tab #5)
   Consolidated metrics block inside من نحن
   ============================================================ */
.about-impact-grid {
  margin-top: 12px;
}
.about-impact-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  height: 100%;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.about-impact-card:hover {
  box-shadow: 0 6px 20px rgba(27, 131, 84, 0.1);
  border-color: var(--green-300);
  transform: translateY(-2px);
}
.about-impact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.2rem;
  margin: 0 auto 12px;
}
.about-impact-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 6px;
}
.about-impact-number > span {
  display: inline-block;
}
.about-impact-label {
  font-size: 0.82rem;
  color: var(--neutral-600);
  line-height: 1.5;
  min-height: 38px;
}
.about-impact-card--accent {
  background: linear-gradient(180deg, #fff 0%, var(--green-25) 100%);
  border-color: var(--green-100);
}
.about-impact-card--accent .about-impact-icon {
  background: var(--green-500);
  color: #fff;
}

/* Responsive — Impact tab */
@media (max-width: 767.98px) {
  .about-impact-number { font-size: 1.5rem; }
  .about-impact-label { font-size: 0.78rem; min-height: 0; }
  .about-impact-card { padding: 18px 14px; }
}

/* ============================================================
   Help Journey Page (Notes #4 + #5)
   ============================================================ */

/* Hero */
.help-hero {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 100%);
  color: #fff;
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.help-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--gold-400);
}
.help-hero-eyebrow {
  display: inline-block;
  background: rgba(225, 176, 42, 0.18);
  color: var(--gold-300);
  padding: 5px 14px;
  border-radius: 18px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.help-hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.help-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 720px;
  line-height: 1.7;
}
.help-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-help-primary {
  display: inline-flex;
  align-items: center;
  background: var(--gold-400);
  color: var(--green-900);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn-help-primary:hover { background: var(--gold-500); color: var(--green-900); }
.btn-help-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-help-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }

/* Persona section */
.persona-section { background: #fff; }

.persona-grid { margin-top: 8px; }

.persona-card {
  width: 100%;
  background: #fff;
  border: 2px solid var(--neutral-200);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.persona-card:hover {
  border-color: var(--green-300);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 131, 84, 0.1);
}
.persona-card.active {
  border-color: var(--green-500);
  background: linear-gradient(180deg, #fff 0%, var(--green-25) 100%);
  box-shadow: 0 6px 20px rgba(27, 131, 84, 0.15);
}
.persona-icon {
  width: 56px;
  height: 56px;
  background: var(--green-25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: background .2s, color .2s;
}
.persona-card.active .persona-icon {
  background: var(--green-500);
  color: #fff;
}
.persona-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 8px;
}
.persona-desc {
  font-size: 0.85rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.5;
}

/* Persona panels */
.persona-panel {
  display: none;
  background: var(--green-25);
  border: 1px solid var(--green-100);
  border-radius: 16px;
  padding: 32px 28px;
  margin-top: 24px;
  animation: panelFadeIn .35s ease;
}
.persona-panel.active { display: block; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 12px;
}
.panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.panel-list li {
  position: relative;
  padding-right: 24px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--neutral-800);
  line-height: 1.6;
}
.panel-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--green-500);
  font-weight: 700;
}
.panel-note {
  background: #fff;
  border: 1px dashed var(--green-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--neutral-600);
  margin: 0;
}
.panel-note i {
  color: var(--green-500);
  margin-left: 6px;
}

.panel-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.panel-steps li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green-500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.panel-steps li strong {
  display: block;
  color: var(--green-700);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.panel-steps li p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--neutral-600);
}

.btn-panel-cta {
  display: inline-flex;
  align-items: center;
  background: var(--green-500);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.btn-panel-cta:hover { background: var(--green-700); color: #fff; }

/* After-contact timeline */
.after-contact-section { background: var(--neutral-50); }
.contact-timeline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.contact-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--green-100);
  z-index: 0;
}
.contact-step {
  flex: 1 1 180px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact-step-marker {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 3px solid var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(27,131,84,0.12);
}
.contact-step-marker span {
  color: var(--green-500);
  font-weight: 700;
  font-size: 1.3rem;
}
.contact-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 6px;
}
.contact-step p {
  font-size: 0.85rem;
  color: var(--neutral-600);
  margin: 0;
}

/* FAQ */
.help-faq-section { background: #fff; }
.help-faq-section .accordion-button {
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-25);
  border: none;
  font-size: 0.95rem;
}
.help-faq-section .accordion-button:not(.collapsed) {
  background: var(--green-500);
  color: #fff;
  box-shadow: none;
}
.help-faq-section .accordion-item {
  border: 1px solid var(--neutral-200);
  border-radius: 8px !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.help-faq-section .accordion-body {
  font-size: 0.9rem;
  color: var(--neutral-800);
  line-height: 1.7;
}

/* ╔══════════════════════════════════════════════════════╗
   ║  Help FAQ — Full-catalog CTA card                   ║
   ║  Directs to single source of truth: /ar/3/faq.html  ║
   ╚══════════════════════════════════════════════════════╝ */
.help-faq-cta {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.help-faq-cta:hover {
  border-color: var(--green-500);
  box-shadow: 0 6px 20px rgba(0, 108, 53, 0.08);
}
.help-faq-cta__content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.help-faq-cta__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.help-faq-cta__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 .25rem;
  line-height: 1.4;
}
.help-faq-cta__text {
  font-size: .9375rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.6;
}
.help-faq-cta__text strong {
  color: var(--green-500);
  font-weight: 700;
}
.help-faq-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: .65rem 1.25rem;
  background: var(--green-500);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: background .2s ease, transform .15s ease;
  flex-shrink: 0;
}
.help-faq-cta__btn:hover,
.help-faq-cta__btn:focus-visible {
  background: #00582C;
  color: #fff;
  text-decoration: none;
}
.help-faq-cta__btn:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
}
.help-faq-cta__btn:active { transform: scale(.98); }

@media (max-width: 767.98px) {
  .help-faq-cta {
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    padding: 1.5rem 1.25rem;
  }
  .help-faq-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .help-faq-cta,
  .help-faq-cta__btn { transition: none; }
  .help-faq-cta__btn:active { transform: none; }
}

/* Page Feedback Widget */
.page-feedback-section {
  background: var(--neutral-50);
  padding: 32px 0 48px;
}
.page-feedback-block {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}
.page-feedback-q {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 14px;
}
.page-feedback-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.btn-feedback {
  background: #fff;
  border: 1.5px solid var(--green-200);
  color: var(--green-600);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-feedback:hover { background: var(--green-25); border-color: var(--green-500); }
.btn-feedback.is-selected {
  background: var(--green-500);
  border-color: var(--green-500);
  color: #fff;
}
.page-feedback-thanks {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--green-500);
  font-weight: 600;
}

/* Help-journey responsive */
@media (max-width: 991.98px) {
  .help-hero { padding: 48px 0 56px; }
  .help-hero-title { font-size: 1.8rem; }
  .contact-timeline::before { display: none; }
  .contact-timeline { flex-direction: column; gap: 20px; }
  .contact-step { display: flex; gap: 14px; align-items: flex-start; text-align: right; }
  .contact-step-marker { margin: 0; flex-shrink: 0; }
}
@media (max-width: 575.98px) {
  .help-hero-title { font-size: 1.5rem; }
  .help-hero-actions { flex-direction: column; }
  .btn-help-primary, .btn-help-secondary { justify-content: center; }
  .persona-panel { padding: 22px 18px; }
}

/* ============================================================
   About Page — 3-axis positioning (Note #6)
   New thematic structure for the opening paragraph (hrc.gov.sa pattern)
   ============================================================ */
.about-intro--lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 920px;
}
.about-pillars-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.about-pillar {
  background: #fff;
  border: 1px solid var(--green-100);
  border-right: 4px solid var(--green-500);
  border-radius: 10px;
  padding: 18px 20px;
}
.about-pillar-tag {
  display: inline-block;
  background: var(--green-25);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.about-pillar p {
  font-size: 0.92rem;
  color: var(--neutral-800);
  line-height: 1.7;
  margin: 0;
}

/* Responsive — collapse to single column on tablet/mobile */
@media (max-width: 991.98px) {
  .about-pillars-mini { grid-template-columns: 1fr; gap: 12px; }
}

/* ============================================================
   About > Founding Timeline + Leadership + Structure (Note #7)
   Visual restructure of "نبذة عن اللجنة" — text remains verbatim
   ============================================================ */

/* Founding Timeline (horizontal, 2 markers) */
.founding-timeline {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  margin: 24px 0 32px;
  padding-top: 8px;
}
.founding-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 12%;
  left: 12%;
  height: 3px;
  background: var(--green-100);
  z-index: 0;
}
.founding-step {
  flex: 1 1 220px;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 8px;
}
.founding-marker {
  width: 28px;
  height: 28px;
  background: var(--green-500);
  border: 4px solid #fff;
  border-radius: 50%;
  margin: 0 auto 12px;
  box-shadow: 0 2px 8px rgba(27,131,84,0.18);
}
.founding-year {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 4px;
}
.founding-event {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 6px;
}
.founding-detail {
  font-size: 0.8rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.5;
}

/* Leadership cards (no photos — gray placeholder + text) */
.leadership-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  height: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.leadership-card:hover {
  border-color: var(--green-300);
  box-shadow: 0 4px 16px rgba(27,131,84,0.08);
}
.leadership-photo-placeholder {
  width: 64px;
  height: 64px;
  background: var(--neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  font-size: 1.6rem;
  flex-shrink: 0;
}
.leadership-info {
  flex-grow: 1;
}
.leadership-role {
  display: block;
  font-size: 0.78rem;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.leadership-title {
  font-size: 0.95rem;
  color: var(--neutral-800);
  font-weight: 700;
  line-height: 1.5;
}

/* Structure facts (3 cards) */
.structure-fact {
  background: linear-gradient(180deg, #fff 0%, var(--green-25) 100%);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  height: 100%;
}
.structure-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 8px;
}
.structure-label {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* Responsive — Founding timeline becomes vertical on mobile */
@media (max-width: 767.98px) {
  .founding-timeline::before { display: none; }
  .founding-timeline { flex-direction: column; gap: 18px; }
  .founding-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-align: right;
    background: var(--green-25);
    border-radius: 10px;
    padding: 14px;
  }
  .founding-marker { margin: 4px 0 0; flex-shrink: 0; }
  .founding-year { font-size: 1.3rem; }
}

/* ============================================================
   Strategy & Objectives Page — ar/0/strategy.html
   ============================================================ */

/* Section base */
.strategy-section { padding: 60px 0; }
.strategy-section--alt { background: var(--green-25); }

/* Section headers — reusable across the page */
.strategy-section-header {
  max-width: 760px;
  margin-bottom: 40px;
}
.strategy-section-header--row {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.strategy-section-header--row > div { max-width: 760px; }
.strategy-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-600);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.strategy-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}
.strategy-lead {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: 0;
}
.strategy-header-cta {
  flex-shrink: 0;
}

/* ── Vision & Mission cards ───────────────────────────────── */
.strategy-vm-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 32px;
  height: 100%;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.strategy-vm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 131, 84, 0.08);
}
.strategy-vm-card--vision {
  border-inline-start: 4px solid var(--green-500);
}
.strategy-vm-card--mission {
  border-inline-start: 4px solid var(--gold-400);
}
.strategy-vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.strategy-vm-card--mission .strategy-vm-icon {
  background: rgba(225, 176, 42, 0.12);
  color: var(--gold-500);
}
.strategy-vm-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 12px;
}
.strategy-vm-text {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.85;
  margin: 0;
}

/* ── Strategic Objectives grid (13 cards) ─────────────────── */
.strategy-objectives-grid {
  margin-top: 0;
}
.strategy-objective-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .25s ease;
}
.strategy-objective-card:hover {
  border-color: var(--green-300);
  background: var(--green-25);
  transform: translateY(-2px);
}
.strategy-objective-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-500);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.strategy-objective-text {
  font-size: 0.93rem;
  color: var(--neutral-800);
  line-height: 1.7;
  margin: 0;
}

/* ── Strategic Pillars Mini (16 axes) ─────────────────────── */
.strategy-pillars-grid {
  margin-top: 0;
}
.strategy-pillar-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  padding: 22px 14px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}
.strategy-pillar-mini:hover {
  border-color: var(--green-500);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 131, 84, 0.1);
  color: inherit;
}
.strategy-pillar-mini-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all .25s ease;
}
.strategy-pillar-mini:hover .strategy-pillar-mini-icon {
  background: var(--green-500);
  color: #fff;
}
.strategy-pillar-mini-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-800);
  line-height: 1.5;
  margin: 0;
}

/* ── Strategic Timeline (5 phases) ────────────────────────── */
.strategy-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.strategy-timeline::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  inset-inline-start: 22px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-300), var(--green-100));
}
.strategy-timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 28px;
  position: relative;
}
.strategy-timeline-item:last-child { padding-bottom: 0; }
.strategy-timeline-dot {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px #fff;
}
.strategy-timeline-item--draft .strategy-timeline-dot {
  background: var(--gold-400);
}
.strategy-timeline-content {
  flex: 1;
  padding-top: 4px;
}
.strategy-timeline-period {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
  background: var(--green-25);
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.strategy-timeline-item--draft .strategy-timeline-period {
  color: var(--gold-500);
  background: rgba(225, 176, 42, 0.12);
}
.strategy-timeline-phase {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 4px 0 8px;
}
.strategy-timeline-content p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin: 0;
}
.strategy-timeline-item--draft .badge-draft {
  display: inline-block;
  margin-bottom: 6px;
}

/* ── Vision 2030 alignment cards ──────────────────────────── */
.strategy-v2030-grid { margin-top: 0; }
.strategy-v2030-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  text-align: center;
  transition: all .25s ease;
}
.strategy-v2030-card:hover {
  border-color: var(--green-400);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 131, 84, 0.08);
}
.strategy-v2030-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.strategy-v2030-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 10px;
}
.strategy-v2030-desc {
  font-size: 0.93rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin: 0;
}

/* ── Strategic KPIs ───────────────────────────────────────── */
.strategy-kpis-grid { margin-top: 0; }
.strategy-kpi-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  text-align: center;
  transition: all .25s ease;
}
.strategy-kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(27, 131, 84, 0.08);
}
.strategy-kpi-card--placeholder {
  border-style: dashed;
  background: var(--neutral-50);
}
.strategy-kpi-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.strategy-kpi-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-600);
  line-height: 1;
  margin-bottom: 10px;
}
.strategy-kpi-pending {
  color: var(--neutral-400);
  font-weight: 400;
}
.strategy-kpi-label {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.strategy-kpi-note {
  font-size: 0.75rem;
  color: var(--neutral-400);
  font-style: italic;
  margin-top: 8px;
}

/* ── Strategic Documents (downloads) ──────────────────────── */
.strategy-doc-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}
.strategy-doc-card:hover {
  border-color: var(--green-500);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 131, 84, 0.1);
  color: inherit;
}
.strategy-doc-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.strategy-doc-card:hover .strategy-doc-icon {
  background: var(--green-500);
  color: #fff;
}
.strategy-doc-body { flex: 1; }
.strategy-doc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 6px;
}
.strategy-doc-desc {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.65;
  margin-bottom: 10px;
}
.strategy-doc-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-600);
}

/* ── Mobile adjustments ───────────────────────────────────── */
@media (max-width: 767.98px) {
  .strategy-section { padding: 40px 0; }
  .strategy-title { font-size: 1.5rem; }
  .strategy-section-header--row { flex-direction: column; align-items: flex-start; }
  .strategy-section-header--row > div { max-width: 100%; }
  .strategy-vm-card { padding: 22px; }
  .strategy-timeline::before { inset-inline-start: 16px; }
  .strategy-timeline-dot { width: 36px; height: 36px; font-size: 0.85rem; }
  .strategy-timeline-item { gap: 14px; }
  .strategy-kpi-number { font-size: 2rem; }
  .strategy-doc-card { padding: 18px; }
}

/* ============================================================
   Structure Page — ar/0/structure.html
   ============================================================ */

.structure-tab-content {
  padding-top: 30px;
  padding-bottom: 50px;
}

/* ── Section titles ───────────────────────────────────────── */
.structure-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
  position: relative;
}
.structure-section-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-end: 0;
  width: 60px;
  height: 2px;
  background: var(--green-500);
}
.structure-section-title--mt { margin-top: 50px; }

/* ── Leadership rows (Chairman + Vice Chairman + SG) ─────── */
.structure-leadership-row {
  margin-bottom: 0;
}

.structure-leader-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.structure-leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-end: 0;
  width: 4px;
  background: var(--green-500);
}
.structure-leader-card:hover {
  border-color: var(--green-300);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(27, 131, 84, 0.1);
}
.structure-leader-card--chairman::before { background: var(--green-500); }
.structure-leader-card--vice::before { background: var(--gold-400); }
.structure-leader-card--sg {
  flex-direction: row;
  background: linear-gradient(135deg, var(--green-25), #fff);
}
.structure-leader-card--sg::before { background: var(--green-700); }

/* Leader photo */
.structure-leader-photo {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-25);
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.structure-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.structure-leader-photo--placeholder {
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  color: #fff;
  font-size: 3rem;
}

/* Leader info */
.structure-leader-info {
  flex: 1;
}
.structure-leader-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.structure-leader-badge--vice {
  color: var(--gold-500);
  background: rgba(225, 176, 42, 0.12);
}
.structure-leader-badge--sg {
  color: #fff;
  background: var(--green-700);
}
.structure-leader-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 6px;
  line-height: 1.5;
}
.structure-leader-title {
  font-size: 0.9rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.6;
}

/* ── Members header ──────────────────────────────────────── */
.structure-members-header {
  margin-top: 50px;
  margin-bottom: 8px;
}
.structure-members-intro {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.85;
  max-width: 820px;
  margin: 0 0 32px;
}

/* ── Members grid (12 cards) ─────────────────────────────── */
.structure-members-grid {
  margin-top: 0;
}

.structure-member-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
  text-align: center;
  transition: all .25s ease;
}
.structure-member-card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(27, 131, 84, 0.08);
}

.structure-member-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-25);
  border: 3px solid var(--green-50);
  transition: border-color .25s ease;
}
.structure-member-card:hover .structure-member-photo {
  border-color: var(--green-300);
}
.structure-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.structure-member-info { padding: 0 4px; }
.structure-member-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 8px;
  line-height: 1.5;
}
.structure-member-role {
  font-size: 0.82rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.65;
}

/* ── Org chart tabs ──────────────────────────────────────── */
.structure-chart-caption {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.85;
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}
.structure-chart-wrap {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  overflow-x: auto;
}
.structure-chart-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ── Mobile adjustments ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .structure-tab-content { padding-top: 20px; padding-bottom: 30px; }
  .structure-section-title { font-size: 1.25rem; }
  .structure-leader-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .structure-leader-photo {
    width: 100px;
    height: 100px;
  }
  .structure-member-photo {
    width: 90px;
    height: 90px;
  }
  .structure-chart-wrap { padding: 16px; }
}

/* ============================================================
   FAQ Page — ar/3/faq.html
   BEM with govsa- prefix (Saudi Gov Platforms Code compliance)
   ============================================================ */

.govsa-faq {
  background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.govsa-faq__hero {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--neutral-200);
}
.govsa-faq__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 16px;
  text-align: center;
}
.govsa-faq__intro {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

/* ── Search ──────────────────────────────────────────────── */
.govsa-faq__search {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.govsa-faq__search-icon {
  position: absolute;
  inset-inline-end: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  font-size: 1.1rem;
  pointer-events: none;
}
.govsa-faq__search-input {
  width: 100%;
  padding: 14px 50px 14px 50px;
  border: 2px solid var(--neutral-200);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--neutral-800);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.govsa-faq__search-input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(27, 131, 84, 0.1);
}
.govsa-faq__search-input::placeholder {
  color: var(--neutral-400);
}
.govsa-faq__search-clear {
  position: absolute;
  inset-inline-start: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--neutral-100);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--neutral-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.govsa-faq__search-clear:hover {
  background: var(--green-25);
  color: var(--green-600);
}

/* ── Empty state ─────────────────────────────────────────── */
.govsa-faq__empty {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 14px 18px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  color: var(--neutral-600);
  font-size: 0.93rem;
  text-align: center;
}

/* ── Category filter ─────────────────────────────────────── */
.govsa-faq__filter {
  padding: 30px 0 20px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--neutral-100);
}
.govsa-faq__filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.govsa-faq__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #fff;
  border: 1.5px solid var(--neutral-200);
  border-radius: 999px;
  color: var(--neutral-600);
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.govsa-faq__filter-btn:hover {
  border-color: var(--green-300);
  color: var(--green-700);
  background: var(--green-25);
}
.govsa-faq__filter-btn--active {
  background: var(--green-500);
  border-color: var(--green-500);
  color: #fff;
}
.govsa-faq__filter-btn--active:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.govsa-faq__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 22px;
  padding: 0 7px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
}
.govsa-faq__filter-btn:not(.govsa-faq__filter-btn--active) .govsa-faq__filter-count {
  background: var(--neutral-100);
  color: var(--neutral-600);
}

/* ── Accordion list ──────────────────────────────────────── */
.govsa-faq__list-wrap {
  padding: 40px 0 60px;
}
.govsa-faq__list {
  max-width: 920px;
  margin: 0 auto;
  --bs-accordion-bg: #fff;
  --bs-accordion-border-color: var(--neutral-200);
  --bs-accordion-border-radius: 12px;
  --bs-accordion-active-bg: var(--green-25);
  --bs-accordion-active-color: var(--green-700);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 4px rgba(27, 131, 84, 0.1);
  --bs-accordion-btn-focus-border-color: var(--green-500);
}
.govsa-faq__item {
  margin-bottom: 14px;
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid var(--neutral-200) !important;
  transition: box-shadow .25s ease, transform .25s ease;
}
.govsa-faq__item:hover {
  box-shadow: 0 6px 18px rgba(27, 131, 84, 0.06);
}
.govsa-faq__item:last-child { margin-bottom: 0; }

/* Question button */
.govsa-faq__question {
  padding: 18px 22px !important;
  font-family: var(--font-primary) !important;
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-800);
  background: #fff !important;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: start;
  line-height: 1.6;
  box-shadow: none !important;
}
.govsa-faq__question:not(.collapsed) {
  color: var(--green-700);
  background: var(--green-25) !important;
}
.govsa-faq__q-text { flex: 1; }

/* Category headers in accordion */
.govsa-faq__category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 32px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
  position: relative;
}
.govsa-faq__category-header:first-child { margin-top: 0; }
.govsa-faq__category-header::before {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-end: 0;
  width: 60px;
  height: 2px;
  background: var(--green-500);
}
.govsa-faq__category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.govsa-faq__category-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: var(--green-500);
}
.govsa-faq__category-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-600);
  background: var(--green-25);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Hide category header when filtered out */
.govsa-faq__category-header[hidden] { display: none !important; }

/* Override Bootstrap accordion chevron for RTL */
.govsa-faq__question::after {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

/* Answer body */
.govsa-faq__answer {
  padding: 0 22px 22px !important;
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.85;
  background: #fff;
}
.govsa-faq__answer p { margin-bottom: 0.8rem; }
.govsa-faq__answer p:last-child { margin-bottom: 0; }

.govsa-faq__list-items {
  margin: 0;
  padding-inline-start: 22px;
}
.govsa-faq__list-items li {
  margin-bottom: 8px;
  color: var(--neutral-600);
}

/* Contact list (Q2 special formatting) */
.govsa-faq__contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.govsa-faq__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  background: var(--green-25);
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--neutral-800);
}
.govsa-faq__contact-list li:last-child { margin-bottom: 0; }
.govsa-faq__contact-list i {
  color: var(--green-600);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.govsa-faq__contact-link {
  color: var(--green-600);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}
.govsa-faq__contact-link:hover {
  color: var(--green-700);
  text-decoration: underline;
}

/* Filtering — hidden state for search/filter */
.govsa-faq__item[hidden] { display: none !important; }

/* Search match highlight */
.govsa-faq__highlight {
  background: rgba(225, 176, 42, 0.3);
  color: var(--neutral-800);
  padding: 0 3px;
  border-radius: 3px;
}

/* ── CTA section ─────────────────────────────────────────── */
.govsa-faq__cta {
  padding: 40px 0 60px;
  background: var(--green-25);
}
.govsa-faq__cta-card {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  box-shadow: 0 6px 20px rgba(27, 131, 84, 0.06);
}
.govsa-faq__cta-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.govsa-faq__cta-body { flex: 1; min-width: 220px; }
.govsa-faq__cta-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 6px;
}
.govsa-faq__cta-text {
  font-size: 0.95rem;
  color: var(--neutral-600);
  margin: 0;
  line-height: 1.7;
}
.govsa-faq__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Mobile adjustments ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .govsa-faq__hero { padding: 40px 0 36px; }
  .govsa-faq__title { font-size: 1.65rem; }
  .govsa-faq__intro { font-size: 0.95rem; }
  .govsa-faq__search-input { padding: 12px 44px; font-size: 0.95rem; }
  .govsa-faq__filter-btn { padding: 7px 14px; font-size: 0.85rem; }
  .govsa-faq__filter-count { min-width: 22px; height: 20px; font-size: 0.72rem; }
  .govsa-faq__question { padding: 14px 16px !important; font-size: 0.93rem; gap: 10px; }
  .govsa-faq__answer { padding: 0 16px 16px !important; font-size: 0.9rem; }
  .govsa-faq__category-header { margin: 24px 0 12px; }
  .govsa-faq__category-title { font-size: 1.05rem; }
  .govsa-faq__category-count { font-size: 0.75rem; padding: 3px 10px; }
  .govsa-faq__contact-list li { padding: 8px 12px; font-size: 0.88rem; }
  .govsa-faq__cta-card { padding: 22px; flex-direction: column; align-items: flex-start; text-align: start; }
  .govsa-faq__cta-actions { width: 100%; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .govsa-faq__item,
  .govsa-faq__filter-btn,
  .govsa-faq__search-input,
  .govsa-faq__search-clear,
  .govsa-faq__contact-link {
    transition: none;
  }
}

/* ============================================================
   Branches Page — ar/3/branches.html
   BEM with govsa- prefix (Saudi Gov Platforms Code compliance)
   ============================================================ */

.govsa-branches {
  background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.govsa-branches__hero {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--neutral-200);
}
.govsa-branches__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 10px;
  text-align: center;
}
.govsa-branches__subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green-600);
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: 0.3px;
}
.govsa-branches__intro {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

/* ── Search bar ──────────────────────────────────────────── */
.govsa-branches__search {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.govsa-branches__search-icon {
  position: absolute;
  inset-inline-end: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  font-size: 1.1rem;
  pointer-events: none;
}
.govsa-branches__search-input {
  width: 100%;
  padding: 14px 50px 14px 50px;
  border: 2px solid var(--neutral-200);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--neutral-800);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.govsa-branches__search-input:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(27, 131, 84, 0.1);
}
.govsa-branches__search-input::placeholder {
  color: var(--neutral-400);
}
.govsa-branches__search-clear {
  position: absolute;
  inset-inline-start: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--neutral-100);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--neutral-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.govsa-branches__search-clear:hover {
  background: var(--green-25);
  color: var(--green-600);
}

/* Empty state */
.govsa-branches__empty {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 14px 18px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  color: var(--neutral-600);
  font-size: 0.93rem;
  text-align: center;
}

/* ── Section titles ──────────────────────────────────────── */
.govsa-branches__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.govsa-branches__section-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: var(--green-500);
}
.govsa-branches__section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  inset-inline-end: 0;
  width: 60px;
  height: 2px;
  background: var(--green-500);
}

/* ── Roles of the Branches section ───────────────────────── */
.govsa-branches__roles-wrap {
  padding: 50px 0 20px;
  background: var(--green-25);
}
.govsa-branches__roles-grid {
  margin-top: 28px;
}
.govsa-branches__role-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 28px 26px 24px;
  height: 100%;
  transition: all .25s ease;
  overflow: hidden;
}
.govsa-branches__role-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 4px;
  height: 60px;
  background: var(--green-500);
  border-radius: 0 14px 0 14px;
}
.govsa-branches__role-card:hover {
  border-color: var(--green-400);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(27, 131, 84, 0.08);
}
.govsa-branches__role-card:hover::before {
  background: var(--green-600);
  height: 100%;
  transition: height .3s ease;
}
.govsa-branches__role-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-500);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
}
.govsa-branches__role-text {
  font-size: 1rem;
  color: var(--neutral-800);
  line-height: 1.85;
  margin: 0;
  font-weight: 500;
}

/* ── Headquarters card ───────────────────────────────────── */
.govsa-branches__hq-wrap {
  padding: 50px 0 30px;
}
.govsa-branches__hq-card {
  position: relative;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  border-radius: 18px;
  padding: 36px 32px;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(27, 131, 84, 0.15);
}
.govsa-branches__hq-card::before {
  content: "";
  position: absolute;
  top: -40px;
  inset-inline-start: -40px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.govsa-branches__hq-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  inset-inline-end: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.govsa-branches__hq-badge {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}
.govsa-branches__hq-icon {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.6rem;
  z-index: 1;
}
.govsa-branches__hq-body {
  flex: 1;
  min-width: 250px;
  z-index: 1;
}
.govsa-branches__hq-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.govsa-branches__hq-address {
  font-size: 1rem;
  margin: 0 0 18px;
  opacity: 0.95;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.govsa-branches__hq-btn {
  background: #fff !important;
  color: var(--green-700) !important;
  border-color: #fff !important;
}
.govsa-branches__hq-btn:hover {
  background: var(--green-25) !important;
  color: var(--green-700) !important;
  transform: translateY(-2px);
}

/* ── Branches grid ───────────────────────────────────────── */
.govsa-branches__grid-wrap {
  padding: 30px 0 60px;
}
.govsa-branches__grid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.govsa-branches__count {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neutral-600);
  background: var(--green-25);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Branch item — hidden state for search */
.govsa-branches__item[hidden] {
  display: none !important;
}

/* Branch card */
.govsa-branches__card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 28px 22px;
  height: 100%;
  text-align: center;
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.govsa-branches__card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 131, 84, 0.1);
}
.govsa-branches__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all .25s ease;
}
.govsa-branches__card:hover .govsa-branches__icon {
  background: var(--green-500);
  color: #fff;
  transform: scale(1.05);
}
.govsa-branches__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 10px;
  line-height: 1.5;
}
.govsa-branches__address {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin: 0 0 18px;
  flex: 1;
  min-height: 48px;
}
.govsa-branches__map-btn {
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  width: 100%;
  white-space: nowrap;
}

/* ── Mobile adjustments ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .govsa-branches__hero { padding: 40px 0 36px; }
  .govsa-branches__title { font-size: 1.5rem; }
  .govsa-branches__subtitle { font-size: 0.95rem; margin-bottom: 16px; }
  .govsa-branches__intro { font-size: 0.95rem; }
  .govsa-branches__search-input { padding: 12px 44px; font-size: 0.95rem; }
  .govsa-branches__section-title { font-size: 1.2rem; }
  .govsa-branches__role-card { padding: 22px 20px 18px; }
  .govsa-branches__role-number { font-size: 1.7rem; margin-bottom: 10px; }
  .govsa-branches__role-text { font-size: 0.93rem; }
  .govsa-branches__roles-wrap { padding: 36px 0 14px; }
  .govsa-branches__hq-card { padding: 24px 20px; flex-direction: column; text-align: center; }
  .govsa-branches__hq-icon { width: 72px; height: 72px; font-size: 2rem; border-radius: 18px; }
  .govsa-branches__hq-name { font-size: 1.15rem; }
  .govsa-branches__hq-address { justify-content: center; font-size: 0.9rem; }
  .govsa-branches__hq-badge { top: 14px; inset-inline-end: 14px; font-size: 0.72rem; padding: 4px 10px; }
  .govsa-branches__card { padding: 22px 18px; }
  .govsa-branches__icon { width: 56px; height: 56px; font-size: 1.5rem; }
  .govsa-branches__name { font-size: 0.98rem; }
  .govsa-branches__address { font-size: 0.85rem; min-height: auto; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .govsa-branches__card,
  .govsa-branches__icon,
  .govsa-branches__search-input,
  .govsa-branches__search-clear,
  .govsa-branches__hq-btn,
  .govsa-branches__role-card,
  .govsa-branches__role-card::before {
    transition: none;
  }
  .govsa-branches__card:hover { transform: none; }
  .govsa-branches__hq-btn:hover { transform: none; }
  .govsa-branches__role-card:hover { transform: none; }
}

/* ============================================================
   Contact Us Page — ar/3/contact.html
   BEM with govsa- prefix (Saudi Gov Platforms Code compliance)
   ============================================================ */

.govsa-contact {
  background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.govsa-contact__hero {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--neutral-200);
  text-align: center;
}
.govsa-contact__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 16px;
}
.govsa-contact__intro {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Channel cards (4 cards) ────────────────────────────── */
.govsa-contact__channels {
  padding: 50px 0 30px;
}
.govsa-contact__channels-grid {
  margin-top: 0;
}
.govsa-contact__channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 26px 18px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all .25s ease;
}
.govsa-contact__channel-card:hover {
  border-color: var(--green-500);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 131, 84, 0.1);
  color: inherit;
}
.govsa-contact__channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: all .25s ease;
}
.govsa-contact__channel-card:hover .govsa-contact__channel-icon {
  background: var(--green-500);
  color: #fff;
  transform: scale(1.05);
}
.govsa-contact__channel-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--neutral-600);
}
.govsa-contact__channel-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-700);
  word-break: break-all;
}

/* ── Form section ────────────────────────────────────────── */
.govsa-contact__form-wrap {
  padding: 30px 0 60px;
}
.govsa-contact__form-header {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}
.govsa-contact__form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 10px;
}
.govsa-contact__form-subtitle {
  font-size: 0.98rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin: 0;
}
.govsa-contact__form {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 14px rgba(27, 131, 84, 0.04);
}

/* Form labels and inputs */
.govsa-contact__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 8px;
}
.govsa-contact__required {
  color: #DC2626;
  font-weight: 700;
  margin-inline-start: 2px;
}
.govsa-contact__input,
.govsa-contact__select,
.govsa-contact__textarea {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: 10px;
  background: #fff;
  color: var(--neutral-800);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.govsa-contact__input:focus,
.govsa-contact__select:focus,
.govsa-contact__textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(27, 131, 84, 0.1);
}
.govsa-contact__input::placeholder,
.govsa-contact__textarea::placeholder {
  color: var(--neutral-400);
  font-size: 0.92rem;
}
.govsa-contact__select {
  cursor: pointer;
}
.govsa-contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

/* Bootstrap validation override (RTL) */
.govsa-contact__form .form-control:invalid,
.govsa-contact__form .form-select:invalid {
  border-color: var(--neutral-200);
}
.govsa-contact__form.was-validated .form-control:invalid,
.govsa-contact__form.was-validated .form-select:invalid {
  border-color: #DC2626;
  background-image: none;
  padding-inline-end: 14px;
}
.govsa-contact__form.was-validated .form-control:valid,
.govsa-contact__form.was-validated .form-select:valid {
  border-color: var(--green-400);
  background-image: none;
  padding-inline-end: 14px;
}
.govsa-contact__form .invalid-feedback {
  font-size: 0.82rem;
  color: #DC2626;
  margin-top: 5px;
}

/* Character counter */
.govsa-contact__counter {
  font-size: 0.78rem;
  color: var(--neutral-400);
  text-align: end;
  margin-top: 4px;
}

/* Guidance note */
.govsa-contact__guidance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--green-25);
  border: 1px solid var(--green-100);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 20px 0;
}
.govsa-contact__guidance i {
  color: var(--green-600);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.govsa-contact__guidance p {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin: 0;
}

/* PDPL consent checkbox */
.govsa-contact__consent {
  margin: 0 0 24px;
  padding: 14px 16px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.govsa-contact__consent .form-check-input {
  margin-top: 3px;
  margin-inline-start: 0;
  margin-inline-end: 4px;
  flex-shrink: 0;
  cursor: pointer;
}
.govsa-contact__consent .form-check-input:checked {
  background-color: var(--green-500);
  border-color: var(--green-500);
}
.govsa-contact__consent .form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(27, 131, 84, 0.15);
  border-color: var(--green-500);
}
.govsa-contact__consent-label {
  font-size: 0.93rem;
  color: var(--neutral-800);
  line-height: 1.7;
  cursor: pointer;
  flex: 1;
  min-width: 200px;
}
.govsa-contact__form.was-validated .govsa-contact__consent .form-check-input:invalid {
  border-color: #DC2626;
}
.govsa-contact__consent .invalid-feedback {
  width: 100%;
  font-size: 0.82rem;
  margin-top: 6px;
}

/* Submit button */
.govsa-contact__form-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}
.govsa-contact__submit {
  min-width: 180px;
  padding: 12px 28px !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Success message ─────────────────────────────────────── */
.govsa-contact__success {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 2px solid var(--green-400);
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 8px 28px rgba(27, 131, 84, 0.12);
  animation: govsa-success-in .5s ease-out;
}
@keyframes govsa-success-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.govsa-contact__success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  color: #fff;
  font-size: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(27, 131, 84, 0.2);
}
.govsa-contact__success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0 0 12px;
}
.govsa-contact__success-text {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin: 0 0 24px;
}
.govsa-contact__success-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Mobile adjustments ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .govsa-contact__hero { padding: 40px 0 36px; }
  .govsa-contact__title { font-size: 1.65rem; }
  .govsa-contact__intro { font-size: 0.95rem; }
  .govsa-contact__channels { padding: 36px 0 18px; }
  .govsa-contact__channel-card { padding: 20px 14px; }
  .govsa-contact__channel-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .govsa-contact__channel-value { font-size: 0.9rem; }
  .govsa-contact__form { padding: 24px 20px; }
  .govsa-contact__form-title { font-size: 1.3rem; }
  .govsa-contact__form-subtitle { font-size: 0.9rem; }
  .govsa-contact__submit { width: 100%; }
  .govsa-contact__success { padding: 36px 20px; }
  .govsa-contact__success-icon { width: 64px; height: 64px; font-size: 2rem; }
  .govsa-contact__success-title { font-size: 1.25rem; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .govsa-contact__channel-card,
  .govsa-contact__channel-icon,
  .govsa-contact__input,
  .govsa-contact__select,
  .govsa-contact__textarea,
  .govsa-contact__submit {
    transition: none;
  }
  .govsa-contact__channel-card:hover { transform: none; }
  .govsa-contact__success { animation: none; }
}

/* ============================================================
   Contact Hub Page — ar/3/contact.html (5 service cards)
   Source: TStaging/contacts.php
   ============================================================ */

.govsa-hub {
  background: #fff;
}

/* ── Hero ────────────────────────────────────────────────── */
.govsa-hub__hero {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--neutral-200);
  text-align: center;
}
.govsa-hub__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 16px;
}
.govsa-hub__intro {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Cards section ───────────────────────────────────────── */
.govsa-hub__cards-wrap {
  padding: 50px 0 70px;
}

/* Hub service card */
.govsa-hub__card {
  background: #fff;
  border: 1px solid #D2D6DB;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .25s ease;
}
.govsa-hub__card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 108, 53, 0.1);
}

/* Featured icon (matches contacts.php Figma spec) */
.govsa-hub__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s ease;
}
.govsa-hub__card:hover .govsa-hub__card-icon {
  background: var(--green-500);
  color: #fff;
  transform: scale(1.05);
}

.govsa-hub__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0;
  line-height: 1.5;
}
.govsa-hub__card-desc {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.85;
  margin: 0;
  flex: 1;
}

/* Meta info (service availability + response time) */
.govsa-hub__card-meta {
  background: var(--neutral-50);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.govsa-hub__card-meta--placeholder {
  visibility: hidden;
}
.govsa-hub__card-meta-row {
  display: flex;
  gap: 6px;
  font-size: 0.85rem;
  line-height: 1.6;
}
.govsa-hub__card-meta-label {
  color: var(--neutral-600);
  font-weight: 500;
}
.govsa-hub__card-meta-value {
  color: var(--neutral-800);
  font-weight: 600;
}

/* Card CTA button */
.govsa-hub__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.93rem !important;
  padding: 10px 18px !important;
  width: 100%;
}

/* Social icons row (last card only) */
.govsa-hub__card-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.govsa-hub__card-social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-25);
  color: var(--green-600);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.govsa-hub__card-social-link:hover {
  background: var(--green-500);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .govsa-hub__hero { padding: 40px 0 36px; }
  .govsa-hub__title { font-size: 1.65rem; }
  .govsa-hub__intro { font-size: 0.95rem; }
  .govsa-hub__cards-wrap { padding: 36px 0 48px; }
  .govsa-hub__card { padding: 20px; }
  .govsa-hub__card-icon { width: 42px; height: 42px; font-size: 1.2rem; }
  .govsa-hub__card-title { font-size: 1.05rem; }
  .govsa-hub__card-desc { font-size: 0.9rem; }
  .govsa-hub__card-meta-row { font-size: 0.8rem; }
  .govsa-hub__card-social-link { width: 36px; height: 36px; font-size: 1rem; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .govsa-hub__card,
  .govsa-hub__card-icon,
  .govsa-hub__card-social-link {
    transition: none;
  }
  .govsa-hub__card:hover { transform: none; }
  .govsa-hub__card-social-link:hover { transform: none; }
}

/* ============================================================
   Contact-Us Sidebar — ar/3/contact-us.html
   Source: TStaging/contact-us.php sidebar
   ============================================================ */

.govsa-contact__sidebar {
  background: #fff;
  border: 1px solid #D2D6DB;
  border-radius: 16px;
  padding: 28px 24px;
  position: sticky;
  top: 20px;
}
.govsa-contact__sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
}

/* Sidebar item (phone, email, location, whatsapp) */
.govsa-contact__sidebar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--neutral-100);
  transition: all .2s ease;
}
.govsa-contact__sidebar-item:last-of-type {
  border-bottom: none;
}
.govsa-contact__sidebar-item:hover {
  color: inherit;
}
.govsa-contact__sidebar-item:hover .govsa-contact__sidebar-icon {
  background: var(--green-500);
  color: #fff;
  transform: scale(1.05);
}
.govsa-contact__sidebar-item:hover .govsa-contact__sidebar-value {
  color: var(--green-600);
}

.govsa-contact__sidebar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.govsa-contact__sidebar-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.govsa-contact__sidebar-label {
  font-size: 0.85rem;
  color: var(--neutral-600);
  font-weight: 500;
}
.govsa-contact__sidebar-value {
  font-size: 0.98rem;
  color: var(--neutral-800);
  font-weight: 700;
  transition: color .2s ease;
  word-break: break-word;
}

/* Divider */
.govsa-contact__sidebar-divider {
  height: 1px;
  background: var(--neutral-200);
  margin: 18px 0;
}

/* Social media section */
.govsa-contact__sidebar-social-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 14px;
}
.govsa-contact__sidebar-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.govsa-contact__sidebar-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-25);
  color: var(--green-600);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.govsa-contact__sidebar-social-icons a:hover {
  background: var(--green-500);
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile: sidebar stacks below form */
@media (max-width: 991.98px) {
  .govsa-contact__sidebar {
    position: static;
    margin-top: 24px;
  }
}
@media (max-width: 767.98px) {
  .govsa-contact__sidebar { padding: 22px 18px; }
  .govsa-contact__sidebar-icon { width: 38px; height: 38px; font-size: 1.05rem; }
  .govsa-contact__sidebar-value { font-size: 0.92rem; }
  .govsa-contact__sidebar-social-icons a { width: 36px; height: 36px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .govsa-contact__sidebar-item,
  .govsa-contact__sidebar-icon,
  .govsa-contact__sidebar-social-icons a {
    transition: none;
  }
  .govsa-contact__sidebar-item:hover .govsa-contact__sidebar-icon { transform: none; }
  .govsa-contact__sidebar-social-icons a:hover { transform: none; }
}

/* ============================================================
   News Pages — ar/2/news-listing.html + news-details.html
   BEM with govsa-news prefix (Saudi Gov Platforms Code compliance)
   ============================================================ */

/* ── News Listing — Hero ─────────────────────────────────── */
.govsa-news {
  background: #fff;
}
.govsa-news__hero {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--neutral-200);
  text-align: center;
}
.govsa-news__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 16px;
}
.govsa-news__intro {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.9;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Filters bar (sticky) ────────────────────────────────── */
.govsa-news__filters {
  background: #fff;
  padding: 32px 0 20px;
  border-bottom: 1px solid var(--neutral-100);
  position: sticky;
  top: 0;
  z-index: 10;
}
.govsa-news__filters-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.govsa-news__search-wrap {
  flex: 1;
  min-width: 260px;
}
.govsa-news__year-wrap,
.govsa-news__sort-wrap {
  min-width: 180px;
}
.govsa-news__filter-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 6px;
}
.govsa-news__search {
  position: relative;
}
.govsa-news__search-icon {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-400);
  pointer-events: none;
}
.govsa-news__search-input,
.govsa-news__select {
  width: 100%;
  height: 42px;
  padding: 0 38px 0 14px;
  font-family: var(--font-primary);
  font-size: 0.93rem;
  color: var(--neutral-800);
  border: 1.5px solid var(--neutral-200);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.govsa-news__select {
  padding: 0 14px;
  cursor: pointer;
}
.govsa-news__search-input:focus,
.govsa-news__select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(0, 108, 53, 0.1);
}

.govsa-news__empty {
  max-width: 640px;
  margin: 16px auto 0;
  padding: 14px 18px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  color: var(--neutral-600);
  font-size: 0.93rem;
  text-align: center;
}
.govsa-news__results-count {
  text-align: end;
  font-size: 0.88rem;
  color: var(--neutral-600);
  margin-top: 16px;
}

/* ── News grid + cards ───────────────────────────────────── */
.govsa-news__grid-wrap {
  padding: 30px 0 70px;
}
.govsa-news__loading {
  width: 100%;
  text-align: center;
  padding: 50px 0;
  color: var(--neutral-600);
}
.govsa-news__loading i {
  display: inline-block;
  margin-inline-end: 8px;
  animation: govsa-spin 1s linear infinite;
}
@keyframes govsa-spin {
  to { transform: rotate(360deg); }
}

.govsa-news__card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.govsa-news__card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 108, 53, 0.1);
}

.govsa-news__card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--green-25);
}
.govsa-news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.govsa-news__card:hover .govsa-news__card-img img {
  transform: scale(1.04);
}

.govsa-news__card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.govsa-news__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.govsa-news__card-desc {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.govsa-news__card-btn {
  align-self: flex-start;
  font-size: 0.88rem !important;
  padding: 8px 16px !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-top: 4px;
}

/* ── News Details page ───────────────────────────────────── */
.govsa-news-detail {
  background: #fff;
}
.govsa-news-detail__loading {
  padding: 80px 0;
  text-align: center;
  color: var(--neutral-600);
}
.govsa-news-detail__loading i {
  display: inline-block;
  margin-inline-end: 8px;
  animation: govsa-spin 1s linear infinite;
  font-size: 1.2rem;
}

.govsa-news-detail__error {
  padding: 80px 0;
}
.govsa-news-detail__error-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--neutral-50);
  border: 2px dashed var(--neutral-200);
  border-radius: 16px;
  padding: 48px 32px;
}
.govsa-news-detail__error-icon {
  font-size: 3rem;
  color: var(--gold-400);
  margin-bottom: 16px;
  display: inline-block;
}
.govsa-news-detail__error-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 10px;
}
.govsa-news-detail__error-text {
  font-size: 0.98rem;
  color: var(--neutral-600);
  line-height: 1.8;
  margin: 0 0 24px;
}

/* Hero header */
.govsa-news-detail__header {
  background: linear-gradient(135deg, var(--green-25) 0%, #fff 100%);
  padding: 50px 0 40px;
  border-bottom: 1px solid var(--neutral-200);
}
.govsa-news-detail__header-inner {
  max-width: 920px;
  margin: 0 auto;
}
.govsa-news-detail__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-500);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.govsa-news-detail__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.55;
  margin: 0;
}

/* Featured image */
.govsa-news-detail__image-wrap {
  padding: 30px 0 10px;
}
.govsa-news-detail__image {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.govsa-news-detail__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Body content */
.govsa-news-detail__body {
  padding: 30px 0 50px;
}
.govsa-news-detail__content {
  font-size: 1.05rem;
  color: var(--neutral-800);
  line-height: 2;
}
.govsa-news-detail__content p {
  margin-bottom: 18px;
}
.govsa-news-detail__content p:last-child {
  margin-bottom: 0;
}

/* Actions (back + share) */
.govsa-news-detail__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--neutral-200);
}
.govsa-news-detail__back-btn {
  display: inline-flex;
  align-items: center;
}
.govsa-news-detail__share {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.govsa-news-detail__share-label {
  font-size: 0.88rem;
  color: var(--neutral-600);
  font-weight: 600;
}
.govsa-news-detail__share-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-25);
  color: var(--green-600);
  border: none;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}
.govsa-news-detail__share-btn:hover {
  background: var(--green-500);
  color: #fff;
  transform: translateY(-2px);
}
.govsa-news-detail__share-btn.copied {
  background: var(--green-600);
  color: #fff;
}

/* Related news */
.govsa-news-detail__related {
  background: var(--green-25);
  padding: 50px 0;
}
.govsa-news-detail__related-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
  display: flex;
  align-items: center;
  gap: 12px;
}
.govsa-news-detail__related-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background: var(--green-500);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .govsa-news__hero { padding: 40px 0 36px; }
  .govsa-news__title { font-size: 1.65rem; }
  .govsa-news__intro { font-size: 0.95rem; }
  .govsa-news__filters { padding: 22px 0 14px; }
  .govsa-news__filters-row { gap: 12px; }
  .govsa-news__search-wrap,
  .govsa-news__year-wrap,
  .govsa-news__sort-wrap { min-width: 100%; }
  .govsa-news__grid-wrap { padding: 24px 0 50px; }
  .govsa-news__card-body { padding: 16px 18px 18px; }
  .govsa-news__card-title { font-size: 1rem; }
  .govsa-news__card-desc { font-size: 0.85rem; }

  .govsa-news-detail__title { font-size: 1.45rem; }
  .govsa-news-detail__content { font-size: 0.98rem; line-height: 1.95; }
  .govsa-news-detail__actions { flex-direction: column; align-items: stretch; }
  .govsa-news-detail__back-btn { width: 100%; justify-content: center; }
  .govsa-news-detail__share { justify-content: center; }
}

/* ── Reduced motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .govsa-news__card,
  .govsa-news__card-img img,
  .govsa-news__search-input,
  .govsa-news__select,
  .govsa-news-detail__share-btn {
    transition: none;
  }
  .govsa-news__card:hover { transform: none; }
  .govsa-news__card:hover .govsa-news__card-img img { transform: none; }
  .govsa-news-detail__share-btn:hover { transform: none; }
  .govsa-news__loading i,
  .govsa-news-detail__loading i { animation: none; }
}

/* ============================================================
   Homepage — Services + News dynamic sections
   BEM with govsa-home__ prefix (DGA Platforms Code compliance)
   ============================================================ */

/* Loading state */
.govsa-home__loading {
  color: var(--neutral-600);
  font-size: 0.95rem;
}
.govsa-home__loading i {
  display: inline-block;
  margin-inline-end: 8px;
  animation: govsa-spin 1s linear infinite;
  font-size: 1.1rem;
}

/* ── Service Card (homepage) ─────────────────────────────── */
.govsa-home__service-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 24px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.govsa-home__service-card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 108, 53, 0.1);
}
.govsa-home__service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-25);
  color: var(--green-500);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all .25s ease;
}
.govsa-home__service-card:hover .govsa-home__service-icon {
  background: var(--green-500);
  color: #fff;
}
.govsa-home__service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.55;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.govsa-home__service-desc {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.govsa-home__service-agency {
  font-size: 0.82rem;
  color: var(--neutral-600);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--neutral-100);
}
.govsa-home__service-agency i {
  color: var(--green-500);
  flex-shrink: 0;
}
.govsa-home__service-agency span {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.govsa-home__service-actions {
  display: flex;
  gap: 8px;
}
.govsa-home__service-actions .btn-green {
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  flex: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── News Card (homepage) ────────────────────────────────── */
.govsa-home__news-card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.govsa-home__news-card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 108, 53, 0.1);
}
.govsa-home__news-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--green-25);
}
.govsa-home__news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.govsa-home__news-card:hover .govsa-home__news-img img {
  transform: scale(1.04);
}
.govsa-home__news-body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.govsa-home__news-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--neutral-800);
  line-height: 1.6;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.govsa-home__news-desc {
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.govsa-home__news-body .btn-read-more,
.govsa-home__news-read-more {
  align-self: flex-start;
  font-size: 0.88rem;
  color: var(--green-600, #006C35);
  background: transparent;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  transition: color .2s;
}
.govsa-home__news-body .btn-read-more:hover,
.govsa-home__news-read-more:hover {
  color: var(--green-700, #14573A);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.govsa-home__news-read-more:focus-visible {
  outline: 2px solid var(--green-600, #006C35);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Mobile adjustments ──────────────────────────────────── */
@media (max-width: 767.98px) {
  .govsa-home__service-card { padding: 20px 18px; }
  .govsa-home__service-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .govsa-home__service-title { font-size: 0.98rem; }
  .govsa-home__news-body { padding: 16px 18px 18px; }
  .govsa-home__news-title { font-size: 0.98rem; }
}

@media (prefers-reduced-motion: reduce) {
  .govsa-home__service-card,
  .govsa-home__service-icon,
  .govsa-home__news-card,
  .govsa-home__news-img img {
    transition: none;
  }
  .govsa-home__service-card:hover,
  .govsa-home__news-card:hover { transform: none; }
  .govsa-home__news-card:hover .govsa-home__news-img img { transform: none; }
  .govsa-home__loading i { animation: none; }
}

/* ============================================================
   POLICY PAGES (privacy / acceptable-use)
   ============================================================ */
.govsa-policy {
  background: #fff;
}
.govsa-policy__header {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1.25rem;
}
.govsa-policy__title {
  color: #006C35;
  font-weight: 700;
  font-size: clamp(1.65rem, 1.2rem + 1vw, 2.25rem);
  margin: 0 0 .75rem;
}
.govsa-policy__lead {
  color: #444;
  line-height: 1.9;
  font-size: 1rem;
  margin: 0;
}
.govsa-policy__article p {
  color: #333;
  line-height: 1.95;
  margin: 0 0 1rem;
}
.govsa-policy__h2 {
  color: #006C35;
  font-weight: 700;
  font-size: 1.35rem;
  margin: 2rem 0 .75rem;
  padding-right: .75rem;
  border-right: 4px solid #006C35;
}
.govsa-policy__h3 {
  color: #14573A;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
}
.govsa-policy__list {
  padding-right: 1.25rem;
  margin: 0 0 1rem;
}
.govsa-policy__list li {
  color: #333;
  line-height: 1.85;
  margin-bottom: .4rem;
}
.govsa-policy__article a {
  color: #006C35;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.govsa-policy__article a:hover {
  color: #14573A;
}

/* ============================================================
   FOOTER — AI Year 2026 logo strip alignment
   ============================================================ */
.footer-bottom .ai-year-logo {
  height: 40px;
  object-fit: contain;
}

/* ============================================================
   OPEN DATA PAGE (govsa-opendata)
   ============================================================ */
.govsa-opendata__title {
  background: linear-gradient(180deg, #F3FCF6 0%, #ffffff 100%);
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
.govsa-opendata__h1 {
  color: #006C35;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.3rem + 1vw, 2.4rem);
  margin: 0 0 .75rem;
}
.govsa-opendata__lead {
  color: #444;
  line-height: 1.9;
  font-size: 1.05rem;
  max-width: 920px;
  margin: 0;
}

.govsa-opendata {
  padding-bottom: 3rem;
}
.govsa-opendata__tabs {
  border-bottom: 2px solid #e6e6e6;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0;
}
.govsa-opendata__tabs .nav-item { margin-bottom: -2px; }
.govsa-opendata__tabs .nav-link {
  color: #555;
  font-weight: 600;
  padding: .85rem 1.25rem;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  border-radius: 0;
  transition: color .2s, border-color .2s;
}
.govsa-opendata__tabs .nav-link:hover {
  color: #006C35;
  border-bottom-color: rgba(0, 108, 53, .25);
}
.govsa-opendata__tabs .nav-link.active {
  color: #006C35;
  border-bottom-color: #006C35;
  background: transparent;
}

.govsa-opendata__content { padding-top: 2rem; }
.govsa-opendata__panel { color: #333; }
.govsa-opendata__h2 {
  color: #006C35;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.govsa-opendata__h3 {
  color: #14573A;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 1.75rem 0 .5rem;
}
.govsa-opendata__h4 {
  color: #14573A;
  font-weight: 600;
  font-size: 1.05rem;
  margin: 1.25rem 0 .4rem;
}
.govsa-opendata__panel-lead {
  color: #555;
  font-size: 1rem;
  line-height: 1.85;
  margin: 0 0 1.5rem;
  max-width: 920px;
}
.govsa-opendata__panel p {
  line-height: 1.9;
  margin: 0 0 1rem;
}
.govsa-opendata__list {
  padding-right: 1.25rem;
  margin: 0 0 1rem;
}
.govsa-opendata__list li {
  line-height: 1.85;
  margin-bottom: .5rem;
}

/* Dataset cards */
.govsa-opendata__card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.govsa-opendata__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 108, 53, .08);
  border-color: #006C35;
}
.govsa-opendata__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #F3FCF6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.govsa-opendata__card-icon img { width: 28px; height: 28px; }
.govsa-opendata__card-title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
.govsa-opendata__card-link {
  align-self: flex-start;
  color: #006C35;
  font-weight: 600;
  text-decoration: none;
  padding: .4rem .9rem;
  border: 1px solid #006C35;
  border-radius: 8px;
  transition: background-color .2s, color .2s;
}
.govsa-opendata__card-link:hover {
  background: #006C35;
  color: #fff;
}

/* License action area */
.govsa-opendata__license-action {
  background: #F3FCF6;
  border: 1px solid #cfe9d8;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.govsa-opendata__license-check .form-check-input {
  margin-left: .5rem;
  margin-right: 0;
  width: 1.15rem;
  height: 1.15rem;
}
.govsa-opendata__license-check .form-check-input:checked {
  background-color: #006C35;
  border-color: #006C35;
}
.govsa-opendata__license-check .form-check-label {
  color: #1F2A37;
  font-weight: 500;
}
.govsa-opendata__download-btn {
  background: #006C35;
  border-color: #006C35;
  font-weight: 600;
  padding: .55rem 1.5rem;
}
.govsa-opendata__download-btn:hover:not(.disabled),
.govsa-opendata__download-btn:focus:not(.disabled) {
  background: #14573A;
  border-color: #14573A;
}
.govsa-opendata__download-btn.disabled {
  background: #c7c7c7;
  border-color: #c7c7c7;
  pointer-events: none;
  opacity: .65;
}

/* Request form */
.govsa-opendata__form .form-label {
  font-weight: 600;
  color: #1F2A37;
  margin-bottom: .35rem;
}
.govsa-opendata__form .form-control {
  border-radius: 8px;
  padding: .65rem .9rem;
  border-color: #d8dde2;
}
.govsa-opendata__form .form-control:focus {
  border-color: #006C35;
  box-shadow: 0 0 0 .15rem rgba(0, 108, 53, .18);
}
.govsa-opendata__form .btn-primary {
  background: #006C35;
  border-color: #006C35;
  font-weight: 600;
  padding: .6rem 1.75rem;
}
.govsa-opendata__form .btn-primary:hover,
.govsa-opendata__form .btn-primary:focus {
  background: #14573A;
  border-color: #14573A;
}
.govsa-opendata__form-message {
  font-weight: 600;
  border-radius: 8px;
  padding: 0;
}
.govsa-opendata__form-message.is-success {
  background: #e8f5ee;
  color: #14573A;
  border: 1px solid #b9dec6;
  padding: .75rem 1rem;
}
.govsa-opendata__form-message.is-error {
  background: #fdecec;
  color: #8a1f1f;
  border: 1px solid #f0c4c4;
  padding: .75rem 1rem;
}

/* Sidebar contact card */
.govsa-opendata__contact-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.5rem;
}
.govsa-opendata__contact-title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
}
.govsa-opendata__contact-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.govsa-opendata__contact-row strong {
  display: block;
  color: #1F2A37;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .15rem;
}
.govsa-opendata__contact-row a {
  color: #006C35;
  text-decoration: none;
  font-weight: 500;
}
.govsa-opendata__contact-row a:hover {
  text-decoration: underline;
}
.govsa-opendata__contact-icon {
  color: #006C35;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.govsa-opendata__contact-social {
  border-top: 1px solid #eef0f2;
  padding-top: 1rem;
  margin-top: .5rem;
}
.govsa-opendata__contact-social-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1F2A37;
  margin: 0 0 .75rem;
}
.govsa-opendata__contact-social-icons {
  display: flex;
  gap: .5rem;
}
.govsa-opendata__contact-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3FCF6;
  color: #006C35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background-color .2s, color .2s;
}
.govsa-opendata__contact-social-icons a:hover {
  background: #006C35;
  color: #fff;
}

/* Use-case cards */
.govsa-opendata__usecase {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.govsa-opendata__usecase:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 108, 53, .07);
  border-color: #cfe9d8;
}
.govsa-opendata__usecase-icon img {
  width: 36px;
  height: 36px;
}
.govsa-opendata__usecase-title {
  color: #1F2A37;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .govsa-opendata__card,
  .govsa-opendata__usecase {
    transition: none;
  }
  .govsa-opendata__card:hover,
  .govsa-opendata__usecase:hover { transform: none; }
}

/* ============================================================
   SERVICES LISTING (govsa-services)
   ============================================================ */
.govsa-services__hero {
  background: linear-gradient(180deg, #F3FCF6 0%, #ffffff 100%);
  padding: 2.5rem 0 1.5rem;
}
.govsa-services__h1 {
  color: #006C35;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.3rem + 1vw, 2.4rem);
  margin: 0 0 .75rem;
}
.govsa-services__lead {
  color: #444;
  line-height: 1.9;
  font-size: 1rem;
  max-width: 720px;
  margin: 0;
}
.govsa-services__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.govsa-services__stat {
  background: #fff;
  border: 1px solid #cfe9d8;
  border-radius: 12px;
  padding: 1.1rem .75rem;
  text-align: center;
}
.govsa-services__stat-num {
  display: block;
  color: #006C35;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.1;
}
.govsa-services__stat-label {
  display: block;
  color: #555;
  font-size: .9rem;
  margin-top: .25rem;
}

.govsa-services__filters .input-group-text {
  background: #fff;
  border-left: none;
  color: #006C35;
}
.govsa-services__filters .form-control,
.govsa-services__filters .form-select {
  border-color: #d8dde2;
  padding: .6rem .85rem;
}
.govsa-services__filters .form-control:focus,
.govsa-services__filters .form-select:focus {
  border-color: #006C35;
  box-shadow: 0 0 0 .15rem rgba(0, 108, 53, .18);
}

/* Service card */
.service-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 108, 53, .08);
  border-color: #006C35;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
}
.service-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card__title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 .5rem;
}
.service-card__desc {
  color: #555;
  font-size: .92rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0 0 1rem;
}
.service-card__actions {
  margin-top: auto;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.service-card__actions .btn { font-weight: 600; padding: .45rem 1rem; flex-shrink: 0; }

/* Tags (used in cards + details hero) */
.service-tag {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 500;
  padding: .25rem .65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1.4;
}
.service-tag--green { background: rgba(0, 108, 53, .12); color: #006C35; border-color: rgba(0, 108, 53, .25); }
.service-tag--blue  { background: rgba(13, 110, 253, .08); color: #0a58ca; border-color: rgba(13, 110, 253, .2); }
.service-tag--gray  { background: rgba(108, 117, 125, .08); color: #495057; border-color: rgba(108, 117, 125, .25); }

/* ============================================================
   SERVICE DETAILS (govsa-service-details)
   ============================================================ */
.govsa-service-details__hero {
  background: linear-gradient(135deg, #006C35 0%, #14573A 100%);
  color: #fff;
  padding: 3rem 0 3rem;
}
.govsa-service-details__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 1rem + 1vw, 1.9rem);
  margin: 0;
  flex-grow: 1;
}
.govsa-service-details__start-btn {
  background: #fff;
  color: #006C35;
  font-weight: 600;
  padding: .55rem 1.4rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.govsa-service-details__start-btn:hover {
  background: #F3FCF6;
  color: #006C35;
}
.govsa-service-details__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: 0 0 1.25rem;
}
.govsa-service-details__hero .service-tag {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.govsa-service-details__desc {
  color: rgba(255, 255, 255, .92);
  line-height: 1.9;
  font-size: 1rem;
  margin: 0 0 1rem;
  max-width: 760px;
}
.govsa-service-details__sla-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.govsa-service-details__sla-link:hover {
  color: rgba(255, 255, 255, .8);
}

/* Tabs */
.govsa-service-details__tabs {
  border-bottom: 2px solid #e6e6e6;
}
.govsa-service-details__tabs .nav-item { margin-bottom: -2px; }
.govsa-service-details__tabs .nav-link {
  color: #555;
  font-weight: 600;
  padding: .75rem 1.1rem;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  border-radius: 0;
  transition: color .2s, border-color .2s;
}
.govsa-service-details__tabs .nav-link:hover {
  color: #006C35;
  border-bottom-color: rgba(0, 108, 53, .25);
}
.govsa-service-details__tabs .nav-link.active {
  color: #006C35;
  border-bottom-color: #006C35;
  background: transparent;
}
.govsa-service-details__tab-content { padding-top: 1.5rem; }
.govsa-service-details__list {
  padding-right: 1.5rem;
  margin: 0;
}
.govsa-service-details__list li {
  color: #333;
  line-height: 1.95;
  margin-bottom: .85rem;
  padding-right: .35rem;
}
.govsa-service-details__list li::marker {
  color: #006C35;
  font-weight: 700;
}

/* Sidebar */
.govsa-service-details__sidebar {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.5rem;
}
.govsa-service-details__sidebar-row {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.1rem;
}
.govsa-service-details__sidebar-row:last-child { margin-bottom: 0; }
.govsa-service-details__sidebar-icon {
  color: #006C35;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.govsa-service-details__sidebar-label {
  color: #1F2A37;
  font-weight: 700;
  font-size: .98rem;
  margin: 0 0 .25rem;
}
.govsa-service-details__sidebar-value {
  color: #555;
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
}
.govsa-service-details__sidebar-link {
  color: #006C35;
  font-weight: 500;
  text-decoration: none;
}
.govsa-service-details__sidebar-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.govsa-service-details__sidebar-divider {
  border-color: #eef0f2;
  margin: 1rem 0;
}

/* Feedback card */
.govsa-service-details__feedback {
  background: #F3FCF6;
  border: 1px solid #cfe9d8;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.govsa-service-details__feedback-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #006C35;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.govsa-service-details__feedback-body {
  flex-grow: 1;
  min-width: 250px;
}
.govsa-service-details__feedback-body h3 {
  color: #1F2A37;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .35rem;
}
.govsa-service-details__feedback-body p {
  color: #555;
  margin: 0;
  font-size: .95rem;
}
.govsa-service-details__feedback .btn {
  flex-shrink: 0;
  background: #006C35;
  border-color: #006C35;
  font-weight: 600;
  padding: .55rem 1.5rem;
}
.govsa-service-details__feedback .btn:hover {
  background: #14573A;
  border-color: #14573A;
}

/* Not found state */
.govsa-service-details__notfound-icon {
  color: #c89c00;
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}
.govsa-service-details__notfound-title {
  color: #1F2A37;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.govsa-service-details__notfound-text {
  color: #555;
  margin: 0 0 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .service-card { transition: none; }
  .service-card:hover { transform: none; }
}

/* ============================================================
   ACTIVITIES & EVENTS (govsa-activities)
   ============================================================ */
.govsa-activities__hero {
  background: linear-gradient(180deg, #F3FCF6 0%, #ffffff 100%);
  padding: 2.5rem 0 1.5rem;
}
.govsa-activities__h1 {
  color: #006C35;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.3rem + 1vw, 2.4rem);
  margin: 0 0 .75rem;
}
.govsa-activities__lead {
  color: #444;
  line-height: 1.9;
  font-size: 1rem;
  max-width: 720px;
  margin: 0;
}
.govsa-activities__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.govsa-activities__stat {
  background: #fff;
  border: 1px solid #cfe9d8;
  border-radius: 12px;
  padding: 1.1rem .75rem;
  text-align: center;
}
.govsa-activities__stat-num {
  display: block;
  color: #006C35;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.1;
}
.govsa-activities__stat-label {
  display: block;
  color: #555;
  font-size: .9rem;
  margin-top: .25rem;
}

.govsa-activities__filters .input-group-text {
  background: #fff;
  border-left: none;
  color: #006C35;
}
.govsa-activities__filters .form-control,
.govsa-activities__filters .form-select {
  border-color: #d8dde2;
  padding: .6rem .85rem;
}
.govsa-activities__filters .form-control:focus,
.govsa-activities__filters .form-select:focus {
  border-color: #006C35;
  box-shadow: 0 0 0 .15rem rgba(0, 108, 53, .18);
}

.activity-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.activity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 108, 53, .08);
  border-color: #cfe9d8;
}
.activity-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #f3fcf6;
  display: block;
}
.activity-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex-grow: 1;
}
.activity-card__title {
  color: #1F2A37;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.activity-card__desc {
  color: #555;
  font-size: .92rem;
  line-height: 1.75;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.activity-card__date {
  color: #006C35;
  font-weight: 500;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
}
.activity-card__date i { font-size: 1rem; }
.activity-card__badge {
  display: inline-flex;
  align-items: center;
  background: #006C35;
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: .3rem .75rem;
  border-radius: 999px;
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {
  .activity-card { transition: none; }
  .activity-card:hover { transform: none; }
}


/* ╔══════════════════════════════════════════════════════╗
   ║  PARTNERS PAGE — govsa-partners                      ║
   ║  Page: ar/0/partners.html                            ║
   ╚══════════════════════════════════════════════════════╝ */
.govsa-partners__hero { background: #fff; }
.govsa-partners__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-500);
  display: inline-block;
}
.govsa-partners__category { margin-bottom: 24px; }
.govsa-partners__category:last-child { margin-bottom: 0; }
.govsa-partners__category .about-h3 {
  color: var(--green-700, #014e2c);
  margin-bottom: 8px;
}
.govsa-partners__category p {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.8;
  margin: 0;
}

/* Strategic partner cards */
.govsa-partners__grid { margin-top: 24px; }
.govsa-partners__card {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.govsa-partners__card:hover {
  border-color: var(--green-500);
  box-shadow: 0 8px 24px rgba(0, 108, 53, 0.10);
  transform: translateY(-2px);
}
.govsa-partners__card-logo {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px;
}
.govsa-partners__card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.govsa-partners__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 16px;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.govsa-partners__card-btn {
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
}

/* CTA card */
.govsa-partners__cta-card {
  background: var(--green-50, #E6F2EA);
  border: 1px solid rgba(0, 108, 53, 0.15);
  border-radius: 16px;
  padding: 40px 32px;
}
.govsa-partners__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-700, #014e2c);
  margin: 0 0 12px;
}
.govsa-partners__cta-text {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.8;
  margin: 0 0 20px;
}
.govsa-partners__cta-img {
  max-width: 100%;
  height: auto;
  max-height: 220px;
}

@media (max-width: 575.98px) {
  .govsa-partners__cta-card { padding: 28px 20px; }
  .govsa-partners__cta-title { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .govsa-partners__card { transition: none; }
  .govsa-partners__card:hover { transform: none; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  PARTNERSHIP REQUEST PAGE — govsa-partner-req        ║
   ║  Page: ar/0/partnership-request.html                ║
   ╚══════════════════════════════════════════════════════╝ */
.govsa-partner-req__hero { background: #fff; }

.govsa-partner-req__form-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 40px 36px;
}
.govsa-partner-req__form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin: 0 0 8px;
}
.govsa-partner-req__form-subtitle {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin: 0 0 28px;
}

.govsa-partner-req__fieldset {
  border: 0;
  margin: 0 0 32px;
  padding: 0;
}
.govsa-partner-req__legend {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-700, #014e2c);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--neutral-200);
  width: 100%;
}

.govsa-partner-req__form .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 6px;
}
.govsa-partner-req__form .form-control,
.govsa-partner-req__form .form-select {
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9375rem;
  transition: border-color .2s, box-shadow .2s;
}
.govsa-partner-req__form .form-control:focus,
.govsa-partner-req__form .form-select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(0, 108, 53, 0.12);
  outline: none;
}
.govsa-partner-req__form .form-text {
  font-size: 0.78rem;
  margin-top: 4px;
}

.govsa-partner-req__submit-row {
  margin-top: 24px;
  text-align: end;
}
.govsa-partner-req__submit {
  min-width: 160px;
}

.govsa-partner-req__success {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--green-50, #E6F2EA);
  border: 1px solid var(--green-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-700, #014e2c);
}
.govsa-partner-req__success i {
  font-size: 1.5rem;
  color: var(--green-500);
}
.govsa-partner-req__success p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .govsa-partner-req__form-wrapper { padding: 24px 20px; }
  .govsa-partner-req__submit-row { text-align: stretch; }
  .govsa-partner-req__submit { width: 100%; }
}

/* ╔══════════════════════════════════════════════════════╗
   ║  STRUCTURE PAGES — Related navigation                ║
   ║  Used in: members.html, org-structure.html,          ║
   ║           branch-structure.html                       ║
   ╚══════════════════════════════════════════════════════╝ */
.structure-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--neutral-200);
}
.structure-related-links .btn-outline-green {
  font-size: 0.9375rem;
}


/* ╔══════════════════════════════════════════════════════╗
   ║  SEARCH — Modal + Results Page Overrides             ║
   ╚══════════════════════════════════════════════════════╝ */

/* Modal */
#searchModal .modal-content { border-radius: 16px; border: none; }
#searchModal .input-group { border: 2px solid var(--green-500); border-radius: 12px; overflow: hidden; }
#searchModal .input-group:focus-within { box-shadow: 0 0 0 3px rgba(0,108,53,.15); }
#searchModal .form-control { font-family: var(--font-primary); font-size: 1.1rem; }
.search-highlight { background: none; color: var(--green-500); font-weight: 700; }
.search-hint { color: var(--neutral-400); font-size: .8rem; text-align: center; }
#searchSuggestions .list-group-item { cursor: pointer; font-family: var(--font-primary); }
#searchSuggestions .list-group-item:focus { background: var(--green-25); outline: none; }
.suggestion-group-label { font-size: .72rem; color: var(--neutral-400); font-weight: 600; padding: .5rem 1rem .25rem; cursor: default; }

/* Results page */
.results-header { background: var(--green-900); padding: 2.5rem 0; }
.results-header .form-control { font-family: var(--font-primary); }
.results-header .input-group { border: 2px solid rgba(255,255,255,.3); border-radius: 12px; overflow: hidden; }
.results-header .input-group:focus-within { border-color: rgba(255,255,255,.7); }
.nav-pills .nav-link { font-family: var(--font-primary); border-radius: 20px; }
.nav-pills .nav-link.active { background: var(--green-500); }
.result-card .card { border-radius: 12px; transition: box-shadow .2s; }
.result-card .card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.result-card .badge { font-size: .7rem; border-radius: 20px; }
.results-empty { padding: 3rem; text-align: center; color: var(--neutral-400); }

/* ============================================================
   Language switcher (AR ⇄ EN) — added for bilingual site.
   Additive only; new selector, overrides nothing.
   ============================================================ */
.navbar-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 999px;
  padding: .35rem .75rem !important;
  line-height: 1;
  white-space: nowrap;
}
.navbar-lang-switch:hover,
.navbar-lang-switch:focus-visible {
  background: var(--green-25, #f0f7f3);
  border-color: var(--green-600, #1B8354);
  color: var(--green-700, #14573A);
}
