/* ==========================================================================
   Observ Media — Public Site Base Styles (uses tokens.css + Bootstrap 5 RTL)
   ========================================================================== */

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
  background: var(--green-dark);
}
.site-header.scrolled {
  background: rgba(15, 42, 36, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
  height: 68px;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.site-header.scrolled::after { opacity: 1; }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-primary {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-secondary {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.logo-secondary.small { font-size: 0.6rem; }

.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  justify-content: center;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 50%;
  left: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after {
  right: 0.75rem;
  left: 0.75rem;
}

/* Sub-menu for nav walker */
.nav-item {
  position: relative;
}

.nav-sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1001;
}

.nav-item:hover > .nav-sub-menu,
.nav-item:focus-within > .nav-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-sub-menu .nav-item {
  display: block;
  width: 100%;
}

.nav-sub-menu .nav-link {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
}

.nav-sub-menu .nav-link:hover,
.nav-sub-menu .nav-link.active {
  background: rgba(255,255,255,0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.btn-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.btn-icon svg { width: 18px; }
.btn-icon:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-lang {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.btn-lang:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-dashboard {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--gold);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dashboard svg { width: 15px; }
.btn-dashboard:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 100vw);
  height: 100dvh;
  background: var(--green-dark);
  z-index: 999;
  transition: right var(--transition-slow);
  box-shadow: -20px 0 60px rgba(0,0,0,0.4);
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner {
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav-list { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-right: 1.5rem;
}

/* Mobile sub-menu */
.mobile-sub-menu {
  padding-right: 1rem;
  border-right: 2px solid rgba(255,255,255,0.08);
  margin: 0.25rem 0.5rem 0.25rem 0;
}

.mobile-sub-menu .mobile-nav-link {
  font-size: 1rem;
  padding: 0.625rem 1rem;
  border-bottom: none;
}

.mobile-nav-footer { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.btn-dashboard.mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  color: var(--green-dark);
  background: var(--gold);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
}

/* Mobile nav backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}
.nav-backdrop.open { opacity: 1; pointer-events: all; }


/* ════════════════════════════════════════════════════════════════
   HERO — Redesigned around the official globe image
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 75vh;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding-top: var(--header-h);
}

/* Clean white — no texture overlay needed */
.hero-atmosphere {
  display: none;
}

/* Soft bottom edge fade white → off-white search section */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--off-white));
  z-index: 5;
  pointer-events: none;
}

/* ── Grid ────────────────────────────────────────────────────── */
.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  /* col 1 = 35% content (RIGHT in RTL) | col 2 = 65% globe (LEFT in RTL) */
  display: grid;
  grid-template-columns: 36% 64%;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: calc(75vh - var(--header-h));
}

/* ── Content — RIGHT side ────────────────────────────────────── */
.hero-content {
  padding: 0rem 3rem 5rem 0;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.hero-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: hc-in 0.9s cubic-bezier(0.4,0,0.2,1) both 0.15s;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  animation: hc-in 0.9s cubic-bezier(0.4,0,0.2,1) both 0.35s;
}
.ht-line { display: block; }
.ht-accent { color: var(--gold); }

.hero-sub {
  font-size: 0.975rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.75rem;
  max-width: 320px;
  font-weight: 400;
  animation: hc-in 0.9s cubic-bezier(0.4,0,0.2,1) both 0.55s;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  animation: hc-in 0.9s cubic-bezier(0.4,0,0.2,1) both 0.75s;
}

@keyframes hc-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Buttons (global, used across site) ─────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--gold);
  padding: 13px 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.28);
  white-space: nowrap;
}
.btn-primary svg { width: 16px; transition: transform var(--transition); }
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.42);
}
.btn-primary:hover svg { transform: translateX(-4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-primary);
  background: transparent;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(26, 60, 52, 0.35);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline svg { width: 16px; }
.btn-outline:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Globe Side — LEFT in RTL ────────────────────────────────── */
.hero-globe-side {
  position: relative;
  height: 100%;
  min-height: calc(75vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: visible;
}

/* Concentric rings — visually extend the globe's own rings outward */
.hg-rings {
  position: absolute;
  top: calc(100% - 300px);
  /* Center over the globe (bottom-aligned, ~600px tall, center at ~300px from bottom) */
  left: 38%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.hg-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.07);
}
.r1 { width: 580px;  height: 580px;  border-color: rgba(0,0,0,0.08);  }
.r2 { width: 720px;  height: 720px;  border-color: rgba(0,0,0,0.065); }
.r3 { width: 870px;  height: 870px;  border-color: rgba(0,0,0,0.05);  }
.r4 { width: 1020px; height: 1020px; border-color: rgba(0,0,0,0.035); }
.r5 { width: 1180px; height: 1180px; border-color: rgba(0,0,0,0.022); }

/* Glow removed — white background, image stands alone */
.hg-glow { display: none; }

/* The official globe image — no mask, no filter, displays naturally on white */
.hg-img {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: 960px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  /* Bleed left — keyframes carry the X offset, no separate transform needed */
  animation: hg-float-breathe 9s ease-in-out infinite;
}
@keyframes hg-float-breathe {
  0%   { transform: translateX(-12%) translateY(0px)   scale(1);     }
  28%  { transform: translateX(-12%) translateY(-14px) scale(1.008); }
  55%  { transform: translateX(-12%) translateY(-20px) scale(1.013); }
  78%  { transform: translateX(-12%) translateY(-10px) scale(1.005); }
  100% { transform: translateX(-12%) translateY(0px)   scale(1);     }
}

/* Floating dots — match the scattered dots in the globe image */
.hg-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.hg-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(46, 107, 79, 0.35);
  animation: hg-dot-drift linear infinite;
}
@keyframes hg-dot-drift {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.8); }
  12%  { opacity: 1; }
  88%  { opacity: 0.35; }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1); }
}

/* Particle — used by vision section */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(201,168,76,0.5);
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0%   { transform: translateY(0) translateX(0);    opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}


/* ════════════════════════════════════════════════════════════════
   SEARCH SECTION
   ════════════════════════════════════════════════════════════════ */
.search-section {
  position: relative;
  z-index: 20;
  margin-top: -160px;
  background: var(--off-white);
  padding: 1rem 0 5rem;
}
.search-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10), 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.search-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.search-header svg { width: 20px; color: var(--gold); }
.search-fields {
  display: grid;
  grid-template-columns: repeat(6, 1fr) auto;
  gap: 1rem;
  align-items: end;
}
.search-fields .main-field {
  grid-column: 1 / -1;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.search-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-field input,
.search-field select {
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.search-field input:focus,
.search-field select:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,107,79,0.1);
}
.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 24px;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-search svg { width: 16px; }
.btn-search:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,60,52,0.3);
}


/* ════════════════════════════════════════════════════════════════
   STATS SECTION
   ════════════════════════════════════════════════════════════════ */
.stats-section {
  background: var(--off-white);
  padding: 0 0 5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-mid));
  opacity: 0;
  transition: var(--transition);
}
.stat-card:hover::before,
.stat-card.featured::before { opacity: 1; }
.stat-card.featured { border-color: rgba(201,168,76,0.25); }
.stat-card.featured::before { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); opacity: 1; }
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  transition: var(--transition);
}
.stat-card.featured .stat-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.stat-icon svg { width: 24px; }
.stat-card:hover .stat-icon { transform: scale(1.05); }
.stat-body { flex: 1; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.stat-card.featured .stat-number { color: var(--gold-dark); }
.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.stat-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent);
}


/* ════════════════════════════════════════════════════════════════
   VISION / MISSION SLIDER
   ════════════════════════════════════════════════════════════════ */
/* ── Section shell ───────────────────────────────────────────── */
.vision-section {
  position: relative;
  background: var(--green-dark);
  padding: 7rem 0 8rem;
  overflow: hidden;
}

/* Background layers */
.vsec-bg { position: absolute; inset: 0; pointer-events: none; }

.vsec-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.013) 1px, transparent 1px);
  background-size: 64px 64px;
  filter: blur(0.4px);
}

.vsec-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.vsec-orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,107,79,0.22) 0%, transparent 68%);
  top: -280px; right: -220px;
  filter: blur(60px);
  animation: vsec-orb-drift 18s ease-in-out infinite alternate;
}
.vsec-orb2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 68%);
  bottom: -160px; left: -140px;
  filter: blur(70px);
  animation: vsec-orb-drift 24s ease-in-out infinite alternate-reverse;
}
@keyframes vsec-orb-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(40px, 30px); }
}

/* Section eyebrow */
.vsec-eyebrow {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── The Card ────────────────────────────────────────────────── */
.vsec-card {
  position: relative;
  display: grid;
  grid-template-columns: 60% 40%;
  max-width: 1300px;
  margin: 0 auto;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.04) 0%,
    rgba(46,107,79,0.10) 50%,
    rgba(255,255,255,0.025) 100%
  );
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 60px 180px rgba(0,0,0,0.55),
    0 20px 60px  rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.07);
}
/* Gold top accent line */
.vsec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(201,168,76,0.55) 35%,
    rgba(201,168,76,0.55) 65%, transparent 100%
  );
  z-index: 4;
}

/* ── Content column ──────────────────────────────────────────── */
.vsec-content-col {
  padding: 4rem 4.5rem 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(201,168,76,0.12);
}

/* Slide container */
.vsec-slider {
  flex: 1;
  position: relative;
  min-height: 360px;
}

.vsec-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
  visibility: hidden;
}
.vsec-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  visibility: visible;
}
.vsec-slide.exit {
  position: absolute;
  opacity: 0;
  transform: translateY(-18px);
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Label */
.vsec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.vsec-label-line {
  display: block;
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}

/* Title */
.vsec-title {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

/* Body text */
.vsec-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 2.0;
  margin-bottom: 2.5rem;
}

/* Pillars */
.vsec-pillars {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vsec-pillar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vsec-pillar:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.vsec-pnum {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.7;
  min-width: 22px;
  text-align: center;
}
.vsec-pillar span:last-child {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  font-weight: 500;
}

/* ── Navigation ──────────────────────────────────────────────── */
.vsec-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.vsec-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  flex-shrink: 0;
}
.vsec-nav-btn svg { width: 15px; }
.vsec-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.10);
}
.vsec-indicators { display: flex; gap: 6px; align-items: center; }
.vsec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  transition: var(--transition);
}
.vsec-dot.active {
  width: 22px;
  border-radius: 3.5px;
  background: var(--gold);
}
.vsec-progress-wrap {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.vsec-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0%;
  border-radius: 2px;
  transition: width 0.05s linear;
}
.vsec-counter {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
#vsec-num { color: rgba(255,255,255,0.7); font-weight: 600; }

/* ── Visual column ───────────────────────────────────────────── */
.vsec-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
  background: rgba(0,0,0,0.12);
  overflow: hidden;
}
/* Inner ambient glow behind SVG */
.vsec-visual-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%,
    rgba(201,168,76,0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.vsec-vis {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.vsec-vis.active {
  opacity: 1;
  position: relative;
  pointer-events: none;
}
.vsec-svg { width: 260px; height: 260px; }

/* Watermark slide number */
.vsec-wm {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.5s;
}

/* ── SVG Animations ──────────────────────────────────────────── */
.vsec-ring-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: vsec-spin 24s linear infinite;
}
@keyframes vsec-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vsec-radar-sweep {
  transform-box: fill-box;
  transform-origin: 140px 140px;
  animation: vsec-radar 7s linear infinite;
}
@keyframes vsec-radar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.vsec-hex-pulse {
  animation: vsec-pulse 3s ease-in-out infinite;
}
.vsec-hex-pulse:nth-child(2)  { animation-delay: 0.5s; }
.vsec-hex-pulse:nth-child(3)  { animation-delay: 1.0s; }
.vsec-hex-pulse:nth-child(4)  { animation-delay: 1.5s; }
.vsec-hex-pulse:nth-child(5)  { animation-delay: 2.0s; }
.vsec-hex-pulse:nth-child(6)  { animation-delay: 2.5s; }
@keyframes vsec-pulse {
  0%, 100% { opacity: 0.88; r: 4; }
  50%       { opacity: 0.40; r: 3; }
}

/* Card fade-in on scroll */
.vsec-card[data-animate="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.vsec-card[data-animate="fade-up"].animate-in {
  transform: translateY(0);
  opacity: 1;
}


/* ════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════════════════════════════════ */
.features-section {
  padding: 6rem 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,52,0.03), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(26,60,52,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
  margin-bottom: 1.5rem;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26,60,52,0.08), rgba(46,107,79,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  transition: var(--transition);
}
.feature-icon svg { width: 26px; }
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  color: var(--white);
  transform: scale(1.05);
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  transition: var(--transition);
}
.feature-link svg { width: 14px; transition: transform var(--transition); }
.feature-link:hover { color: var(--gold); }
.feature-link:hover svg { transform: translateX(-4px); }


/* ════════════════════════════════════════════════════════════════
   NEWS SECTION
   ════════════════════════════════════════════════════════════════ */
.news-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.news-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card.featured-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-image {
  position: relative;
  overflow: hidden;
}
.card-image.small { height: 140px; }
.featured-card .card-image { height: auto; }
.card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-mid) 100%);
  transition: transform 0.4s ease;
}
.card-img-placeholder svg { width: 100%; height: 100%; opacity: 0.8; }
.news-card:hover .card-img-placeholder { transform: scale(1.04); }
.card-category {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}
.card-category.tech { background: rgba(46,107,79,0.9); color: #fff; }
.card-category.politics { background: rgba(26,60,52,0.9); color: #fff; }
.card-category.dev { background: rgba(201,168,76,0.9); color: var(--green-dark); }
.card-category.economy { background: rgba(168,126,42,0.9); color: #fff; }
.card-actions {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity var(--transition);
}
.news-card:hover .card-actions { opacity: 1; }
.card-actions button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  transition: var(--transition);
}
.card-actions button svg { width: 14px; }
.card-actions button:hover { background: var(--gold); }
.card-body { padding: 1.25rem; }
.card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-card .card-title { font-size: 1.15rem; -webkit-line-clamp: 3; }
.card-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.card-agency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.agency-dot {
  width: 6px; height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
}
.agency-dot.green { background: #22c55e; }
.agency-dot.gold { background: var(--gold); }
.card-time { font-size: 0.78rem; color: var(--text-muted); }

.news-card.single-article {
  display: block;
}
/* Sidebar */
.news-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-header h3 { font-size: 0.95rem; font-weight: 700; color: var(--green-primary); }
.sidebar-link { font-size: 0.8rem; color: var(--green-mid); font-weight: 500; transition: var(--transition); }
.sidebar-link:hover { color: var(--gold); }
.agency-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.agency-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.agency-item:hover, .agency-item.active {
  background: rgba(26,60,52,0.05);
  border-color: rgba(26,60,52,0.1);
}
.agency-flag { font-size: 1.2rem; }
.agency-item div { display: flex; flex-direction: column; gap: 1px; }
.agency-item strong { font-size: 0.8rem; font-weight: 700; color: var(--green-primary); }
.agency-item span { font-size: 0.72rem; color: var(--text-muted); }
.btn-agencies-all {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1.5px solid var(--green-primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
  transition: var(--transition);
}
.btn-agencies-all:hover { background: var(--green-primary); color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   SINGLE NEWS SECTION
   ════════════════════════════════════════════════════════════════ */
/* Layout: keep theme structure but add dedicated single-post modifiers */
.single-post-layout {
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

.single-post-main {
  min-width: 0; /* prevent grid blow-out from long content/images */
}

.single-post-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  height: fit-content;
  opacity: 1;
  transform: none;
}

/* Main article card */
.single-article .card-image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.single-article .card-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-article .card-img-placeholder img,
.single-article .card-img-placeholder .wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-article .card-body {
  padding: 2rem;
}

.single-post ol,
.single-post ul {
  padding-right: unset;
}

.single-post .featured-card .card-title {
  font-size: 2.15rem;
}

.single-post .post-content p {
  text-align: justify;
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-primary);
}

/* Related posts: dedicated grid so cards never stack as one column */
.related-posts {
  margin-top: 3rem;
}

.related-posts .section-header {
  margin: 0 0 1.25rem;
}

.related-posts-grid {
  grid-template-columns: repeat(3, 1fr);
}

.related-posts-grid .card-image.small {
  height: 160px;
}

.related-posts-grid .card-img-placeholder {
  min-height: 160px;
  height: 100%;
}

.related-posts-grid .card-img-placeholder img,
.related-posts-grid .card-img-placeholder .wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ════════════════════════════════════════════════════════════════
   PAGE BUILDER TEMPLATE
   ════════════════════════════════════════════════════════════════ */
.page-builder-section {
  padding: 4rem 0 6rem;
  background: var(--off-white);
  min-height: 60vh;
  margin-top: 5rem;
}

.page-builder-header {
  margin-bottom: 2.5rem;
}

.page-builder-section .section-header {
  margin-bottom: 2rem;
}

.page-builder-section .section-title {
  font-size: 2.25rem;
  color: var(--green-primary);
}

.page-builder-thumb {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.page-builder-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-builder-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* Allow Elementor/other builders to breathe: remove inner card padding
   when the page content is rendered by a builder. */
.page-builder-content .elementor,
.page-builder-content .elementor-section-wrap,
.page-builder-content > div:first-child {
  margin: -2.5rem;
}

.page-builder-content .elementor-section {
  max-width: none;
}

/* Builder widget alignment helpers */
.page-builder-content img,
.page-builder-content iframe,
.page-builder-content video,
.page-builder-content figure {
  max-width: 100%;
  height: auto;
}

.page-builder-content p {
  line-height: 1.8;
  color: var(--text-primary);
}

/* Empty variant: remove card styling and padding so builders can go full-bleed */
.page-builder-section.page-builder-empty {
  padding: 0;
  background: transparent;
}

.page-builder-section.page-builder-empty .container {
  max-width: 100%;
  padding: 0;
}

.page-builder-content-empty {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.page-builder-content-empty .elementor,
.page-builder-content-empty .elementor-section-wrap,
.page-builder-content-empty > div:first-child {
  margin: 0;
}

/* Team page — distinct, editorial card style (not news-card clone) */
.team-page-section .page-builder-header {
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}

/* Circular portrait with gold ring */
.team-card-image {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 2rem auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--border-gold), var(--shadow-sm);
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-mid) 100%);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.team-card-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.7;
}

/* Decorative top stripe */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-mid) 100%);
  z-index: 0;
}

.team-card-image,
.team-card-body {
  position: relative;
  z-index: 1;
}

.team-card-body {
  padding: 1.5rem 1.75rem 2rem;
  text-align: center;
}

.team-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 0.85rem;
}

/* Small gold divider under name */
.team-card-name::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.team-card-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.team-card-desc p:last-child {
  margin-bottom: 0;
}

.team-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 3rem 1rem;
}

@media (max-width: 1200px) {
  .page-builder-thumb { height: 360px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 992px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-builder-section { padding: 2.5rem 0 4rem; }
  .page-builder-section .section-title { font-size: 1.75rem; }
  .page-builder-thumb { height: 280px; }
  .page-builder-content { padding: 1.25rem; }
  .page-builder-content .elementor,
  .page-builder-content .elementor-section-wrap,
  .page-builder-content > div:first-child {
    margin: -1.25rem;
  }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-image { height: 320px; }
}


/* ════════════════════════════════════════════════════════════════
   SINGLE PUBLICATION SECTION
   ════════════════════════════════════════════════════════════════ */
.single-publication .card-img-placeholder { height: 450px; }
.single-publication .card-img-placeholder img { width: 100%; height: 100%; object-fit: fill; }

/* ════════════════════════════════════════════════════════════════
   AGENCIES SECTION
   ════════════════════════════════════════════════════════════════ */
.agencies-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.agencies-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26,60,52,0.04), transparent);
  pointer-events: none;
}
.agencies-filters {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Archive-specific filter bar: 2 rows.
   Row 1 — search (grows) + sort controls (fixed right).
   Row 2 — type/category filter buttons (full width). */
.archive-filters {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
  /* Visual container */
  background:  #fff;
  border: 1.5px solid var(--border, #e5e9e6);
  border-radius: var(--radius-lg, 12px);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(26,60,52,0.05);
}
.archive-filters .archive-search {
  grid-column: 1;
  grid-row: 1;
  max-width: 400px;
  flex: none;
  width: 100%;
}
.archive-filters .archive-sort-wrap {
  grid-column: 2;
  grid-row: 1;
}
.archive-filters .agencies-filter-btns {
  grid-column: 1 / -1;
  grid-row: 2;
  padding-top: 1rem;
  border-top: 1px solid var(--border, #e5e9e6);
}

/* Sort form: horizontal row of labelled selects */
.archive-sort-form {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.archive-sort-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 130px;
}
.archive-sort-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.archive-sort-field label svg { color: var(--green-mid); flex-shrink: 0; }
.archive-sort-field select {
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-primary);
  background: var(--off-white);
  cursor: pointer;
  transition: var(--transition);
  outline: none;
  appearance: auto;
}
.archive-sort-field select:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,107,79,0.1);
}

/* Responsive: stack to one column on small screens */
@media (max-width: 680px) {
  .archive-filters {
    grid-template-columns: 1fr;
  }
  .archive-filters .archive-search,
  .archive-filters .archive-sort-wrap {
    grid-column: 1;
  }
  .archive-filters .archive-sort-wrap { grid-row: 2; }
  .archive-filters .agencies-filter-btns { grid-row: 3; }
  .archive-sort-form { flex-wrap: wrap; }
  .archive-sort-field { min-width: 0; flex: 1; }
}
.agencies-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  height: 44px;
  transition: var(--transition);
}
.agencies-search svg { width: 16px; color: var(--text-muted); flex-shrink: 0; }
.agencies-search input {
  border: none;
  background: none;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
}
.agencies-search:focus-within {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,107,79,0.1);
}
.agencies-filter-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}
.agencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.agency-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.agency-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.agency-card-logo {
  width: 60px; height: 60px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-primary), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.agency-card:hover .agency-card-logo {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.agency-abbr {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
}
.agency-card-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.25rem;
}
.agency-country {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.agency-profile-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  padding: 6px 16px;
  border: 1px solid rgba(46,107,79,0.3);
  border-radius: 50px;
  transition: var(--transition);
  margin-top: auto;
}
.agency-profile-btn:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}
.agencies-more { display: flex; justify-content: center; }


/* ════════════════════════════════════════════════════════════════
   DATA SECTION
   ════════════════════════════════════════════════════════════════ */
.data-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.data-dashboard {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
}
.data-chart-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.chart-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
}
.chart-tabs { display: flex; gap: 0.5rem; }
.chart-tab {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.chart-tab.active,
.chart-tab:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 220px;
  padding-bottom: 30px;
  position: relative;
}
.bar-chart::before {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.bar {
  width: 100%;
  background: var(--off-white);
  border-radius: 4px 4px 0 0;
  height: calc(var(--pct) * 1.7px);
  position: relative;
  overflow: hidden;
  max-height: 190px;
  transition: var(--transition);
}
.bar-fill {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to top, var(--green-primary), var(--green-mid));
  border-radius: 4px 4px 0 0;
  transition: height 1.2s cubic-bezier(0.4,0,0.2,1);
}
.bar-group:hover .bar-fill {
  background: linear-gradient(to top, var(--gold-dark), var(--gold));
}
.bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.data-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.indicator-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.indicator-card:hover {
  border-color: var(--green-mid);
  transform: translateX(-4px);
  box-shadow: var(--shadow-sm);
}
.ind-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26,60,52,0.08), rgba(46,107,79,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
}
.ind-icon svg { width: 20px; }
.ind-body { flex: 1; }
.ind-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-primary);
  line-height: 1;
  margin-bottom: 2px;
}
.ind-label { font-size: 0.8rem; color: var(--text-muted); }
.ind-trend {
  font-size: 1rem;
  font-weight: 700;
}
.ind-trend.up { color: #22c55e; }
.ind-trend.down { color: #ef4444; }


/* ════════════════════════════════════════════════════════════════
   PUBLICATIONS SECTION
   ════════════════════════════════════════════════════════════════ */
.publications-section {
  padding: 6rem 0;
  background: var(--white);
  overflow: hidden;
}
.pub-carousel-wrap { position: relative; }
.pub-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pub-carousel::-webkit-scrollbar { display: none; }
.pub-card {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  perspective: 1000px;
}
.pub-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.pub-cover {
  height: 200px;
  position: relative;
  overflow: hidden;
}
/* Thumbnail image fills the cover area as background */
.pub-cover-thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.pub-cover-thumb .pub-thumb-img,
.pub-cover-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pub-cover-1 { background: linear-gradient(145deg, #0f2a24, #1a3c34, #2e6b4f); }
.pub-cover-2 { background: linear-gradient(145deg, #1a2a1a, #1a3c34, #1e4d3f); }
.pub-cover-3 { background: linear-gradient(145deg, #2a2010, #3d2a10, #a87e2a); }
.pub-cover-4 { background: linear-gradient(145deg, #1a1a2a, #1a3c34, #2e6b4f); }
.pub-cover-inner {
  position: relative;
  z-index: 3;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pub-cover-logo {
  font-size: 0.75rem;
  font-weight: 900;
  color: rgba(201,168,76,0.8);
  letter-spacing: 0.15em;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.pub-cover-title-ar {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.4;
}
.pub-cover-edition {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.pub-cover-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201,168,76,0.03) 0px,
      rgba(201,168,76,0.03) 1px,
      transparent 1px,
      transparent 20px
    );
  z-index: 1;
}
.pub-info { padding: 1.5rem; }
.pub-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.pub-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.pub-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pub-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pub-date svg { width: 14px; color: var(--green-mid); }
.pub-actions { display: flex; gap: 0.75rem; }
.btn-pub-view {
  flex: 1;
  text-align: center;
  padding: 9px;
  background: var(--green-primary);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-pub-view:hover { background: var(--green-mid); }
.btn-pub-pdf {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 14px;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-pub-pdf svg { width: 14px; }
.btn-pub-pdf:hover { border-color: var(--gold); color: var(--gold); }
/* Single publication hero cover — taller than card variant */
.publication-hero.pub-cover {
  height: 400px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.publication-hero .pub-cover-title-ar { font-size: 1.6rem; }
.publication-hero .pub-cover-edition  { font-size: 0.85rem; }
.publication-hero .pub-cover-logo     { font-size: 0.85rem; }

/* Download CTA strip inside pub body */
.publication-cta {
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Related publications mini-grid */
.pub-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .pub-related-grid { grid-template-columns: repeat(2, 1fr); }
  .publication-hero.pub-cover { height: 280px; }
}
@media (max-width: 480px) {
  .pub-related-grid { grid-template-columns: 1fr; }
}

/* ── Publication archive grid ── */
.pub-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
/* Hero card spans full width */
.pub-archive-grid .pub-hero-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pub-archive-grid .pub-hero-card .pub-hero-cover {
  height: 100%;
  min-height: 280px;
  border-radius: 0;
}
.pub-archive-grid .pub-hero-card .card-body {
  padding: 2rem;
}
.pub-archive-grid .pub-hero-card .card-title { font-size: 1.4rem; }

/* Sidebar pub thumbnail */
.pub-sidebar-thumb {
  position: relative;
  width: 48px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}
.pub-sidebar-thumb .pub-sidebar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.pub-sidebar-thumb .pub-sidebar-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 3px;
  font-size: 0.45rem;
  font-weight: 900;
  color: rgba(201,168,76,0.9);
  letter-spacing: 0.1em;
}

/* Active type link in sidebar */
.agency-active {
  color: var(--gold) !important;
  font-weight: 700;
}

/* Empty state */
.archive-empty {
  padding: 4rem 2rem;
  text-align: center;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.archive-empty h3 {
  font-size: 1.2rem;
  color: var(--green-primary);
}
.archive-empty p { color: var(--text-muted); max-width: 320px; }

/* Responsive archive grid */
@media (max-width: 900px) {
  .pub-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .pub-archive-grid .pub-hero-card { grid-template-columns: 1fr; }
  .pub-archive-grid .pub-hero-card .pub-hero-cover { height: 240px; }
}
@media (max-width: 540px) {
  .pub-archive-grid { grid-template-columns: 1fr; }
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.carousel-btn svg { width: 16px; }
.carousel-btn:hover {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: var(--white);
}
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.carousel-dot.active {
  background: var(--green-primary);
  width: 20px;
  border-radius: 4px;
}


/* ════════════════════════════════════════════════════════════════
   PARTNERS SECTION
   ════════════════════════════════════════════════════════════════ */
.partners-section {
  padding: 5rem 0;
  background: var(--off-white);
  overflow: hidden;
}
.partners-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.partners-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: partners-scroll 25s linear infinite;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.partners-track:hover { animation-play-state: paused; }
.partner-logo {
  flex-shrink: 0;
  width: 160px;
  height: 70px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  filter: grayscale(1) opacity(0.5);
}
.partner-logo span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-primary);
  letter-spacing: 0.08em;
}
.partner-logo:hover {
  filter: grayscale(0) opacity(1);
  border-color: var(--green-mid);
  transform: scale(1.03);
}


/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--green-dark); color: var(--white); }
.footer-top {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.footer-logo .logo-mark svg { width: 36px; height: 36px; }
.footer-about {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-link svg { width: 16px; }
.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-links-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links-col a:hover { color: var(--gold); padding-right: 4px; }
.footer-links-col a::before {
  content: '›';
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}
.footer-links-col a:hover::before { opacity: 1; }
.footer-newsletter h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-newsletter > p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.newsletter-form input {
  flex: 1;
  height: 42px;
  padding: 0 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.1);
}
.newsletter-form button {
  padding: 0 18px;
  height: 42px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: inherit;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
}
.contact-item svg { width: 14px; color: var(--gold); flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--white);
  border: 1.5px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}
.back-to-top svg { width: 18px; }
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .search-fields {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    row-gap: 1rem;
  }
  .search-fields .main-field { grid-column: 1 / -1; }
  .search-fields .btn-search { grid-column: 4 / 5; align-self: end; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .agencies-grid { grid-template-columns: repeat(3, 1fr); }
  .single-post-layout { grid-template-columns: 1fr 300px; gap: 1.5rem; }
  .single-article .card-image { height: 360px; }
  .single-article .card-img-placeholder { min-height: 360px; }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  /* Hero stacks: globe on top, content below */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  /* In RTL single-column, content (col 1 in source) renders first = top */
  /* We want globe on top — swap visual order */
  .hero-content {
    order: 2;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 4rem;
  }
  .hero-label { justify-content: center; }
  .hero-label::before { display: none; }
  .hero-sub { max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-globe-side {
    order: 1;
    min-height: 55vw;
    max-height: 520px;
    justify-content: center;
    align-items: center;
  }
  .search-section {
    margin-top: 0;
    padding-top: 2rem;
  }
  .hg-img {
    width: 92%;
    max-width: 500px;
    transform: translateX(0);
    animation-name: hg-float-breathe-mobile;
  }
  @keyframes hg-float-breathe-mobile {
    0%, 100% { transform: translateX(0) translateY(0px)   scale(1);     }
    50%       { transform: translateX(0) translateY(-12px) scale(1.012); }
  }
  .hg-rings { left: 50%; top: 50%; }
  .hg-glow  { left: 50%; width: 460px; height: 460px; }
  [data-animate="fade-right"] { transform: translateY(30px); }
  [data-animate="fade-left"]  { transform: translateY(30px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .vsec-card { grid-template-columns: 1fr; }
  .vsec-visual-col { order: -1; min-height: 220px; padding: 2.5rem; }
  .vsec-svg { width: 180px; height: 180px; }
  .vsec-wm { font-size: 3.5rem; bottom: 1.5rem; right: 1.5rem; }
  .vsec-content-col { border-left: none; border-top: 1px solid rgba(201,168,76,0.12); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .news-sidebar { position: static; }
  .single-post-layout { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; order: 2; }
  .single-post-main { order: 1; }
  .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .data-dashboard { grid-template-columns: 1fr; }
  .data-indicators { display: grid; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --container: 100%; }
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2rem; }
  .hg-img { width: 85%; max-width: 420px; }
  .hg-rings { display: none; }
  .search-fields {
    grid-template-columns: 1fr 1fr;
  }
  .search-fields .main-field { grid-column: 1 / -1; }
  .search-fields .date-field { grid-column: span 1; }
  .search-fields .btn-search { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .vsec-visual-col { display: none; }
  .vsec-content-col { padding: 2.5rem 2rem 2rem; border-top: none; }
  .vsec-slider { min-height: 320px; }
  .vsec-nav { gap: 0.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured-card { grid-template-columns: 1fr; }
  .single-article .card-image { height: 280px; }
  .single-article .card-img-placeholder { min-height: 280px; }
  .single-article .card-body { padding: 1.25rem; }
  .single-post .featured-card .card-title { font-size: 1.5rem; }
  .related-posts-grid { grid-template-columns: 1fr; }
  .single-article .section-tag {max-width: 100px;}
  .agencies-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .pub-card { flex: 0 0 280px; }
  .data-indicators { grid-template-columns: 1fr 1fr; }
  .badge-top, .badge-bottom { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-sub { font-size: 0.9rem; }
  .hg-img { max-width: 340px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
  .agencies-grid { grid-template-columns: repeat(2, 1fr); }
  .search-fields { grid-template-columns: 1fr; }
  .search-fields .btn-search { grid-column: 1; }
  .data-indicators { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ==========================================================================
   INTRO VIDEO & DOCUMENT BRIEF SECTIONS
   ========================================================================== */

/* ── Intro Video ─────────────────────────────────────────────── */
.intro-video-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8faf9 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.intro-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}
.video-player-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-gold);
  background: #000;
}
.video-element {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(180deg, rgba(15, 42, 36, 0.25) 0%, rgba(15, 42, 36, 0.65) 100%);
  cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.video-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.play-btn svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}
.video-overlay:hover .play-btn {
  transform: scale(1.08);
  background: rgba(201, 168, 76, 0.32);
  border-color: var(--gold-light);
}
.video-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, rgba(15, 42, 36, 0.9), transparent);
  font-size: 1.1rem;
  font-weight: 700;
  pointer-events: none;
}
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.25rem;
  background: linear-gradient(to top, rgba(15, 42, 36, 0.92), rgba(15, 42, 36, 0.2));
  z-index: 4;
  opacity: 0;
  transition: opacity 0.25s ease;
  direction: rtl;
}
.video-player-wrap:hover .video-controls,
.video-player-wrap.is-paused .video-controls {
  opacity: 1;
}
.control-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}
.control-btn:hover {
  background: rgba(201, 168, 76, 0.25);
}
.control-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.progress-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.1s linear;
}
.video-time {
  font-size: 0.75rem;
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  min-width: 90px;
  text-align: center;
  direction: ltr;
}
.volume-slider {
  width: 70px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ── Document Brief ──────────────────────────────────────────── */
.document-brief-section {
  padding: 5rem 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.document-brief-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}
.document-brief-section .section-title {
  color: var(--white);
}
.document-brief-section .section-desc {
  color: rgba(255, 255, 255, 0.72);
}
.document-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.document-brief-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.document-brief-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-gold);
}
.document-brief-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.document-brief-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.document-brief-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--green-primary);
}
.document-brief-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 992px) {
  .document-brief-grid { grid-template-columns: 1fr; }
  .intro-video-section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .play-btn { width: 72px; height: 72px; }
  .play-btn svg { width: 28px; height: 28px; }
  .document-brief-card { padding: 1.5rem; }
  .video-controls { gap: 0.5rem; padding: 0 0.75rem; }
  .video-time { min-width: 70px; font-size: 0.7rem; }
  .volume-slider { width: 50px; }
}
