/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */

/* ---------- Home: Hero ---------- */
.home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-navy-900);
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-bg img,
.home-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0.7) 50%, rgba(30, 99, 216, 0.55) 100%);
}
.home-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
}
.home-hero .container {
  position: relative;
  z-index: 5;
  padding-block: 80px;
  width: 100%;
}
.home-hero-content {
  max-width: 880px;
}
.home-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 22px;
}
.home-hero .eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 74, 0); }
}
.home-hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}
.home-hero h1 .highlight {
  background: linear-gradient(135deg, var(--color-gold) 0%, #F4D88D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.home-hero p.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1875rem;
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.85;
}
.home-hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 720px;
}
.hero-trust .item {
  display: flex;
  flex-direction: column;
}
.hero-trust .item .num {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust .item .num .suffix { color: var(--color-gold); }
.hero-trust .item .label {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 16px;
  background: var(--color-gold);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { top: -16px; }
  100% { top: 50px; }
}

/* ---------- Stats Band ---------- */
.stats-band {
  background: white;
  position: relative;
  margin-top: -60px;
  z-index: 10;
  border-radius: 24px;
  box-shadow: var(--sh-xl);
  padding: 36px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) { .stats-band { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 540px) { .stats-band { grid-template-columns: 1fr; } }
.stats-band .stat {
  text-align: center;
  padding: 16px;
  border-inline-start: 1px solid var(--color-border);
}
.stats-band .stat:first-child { border-inline-start: none; }
@media (max-width: 980px) {
  .stats-band .stat { border-inline-start: none; border-bottom: 1px solid var(--color-border); }
}
.stats-band .stat .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stats-band .stat .num .suffix { color: var(--color-gold); font-size: 0.65em; }
.stats-band .stat .label {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: 6px;
  font-weight: 500;
}

/* ---------- Sectors Grid (Home) ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 600px;
}
.sectors-grid > :nth-child(1) {
  grid-row: span 2;
  min-height: 600px;
}
@media (max-width: 980px) {
  .sectors-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .sectors-grid > :nth-child(1) { grid-row: span 1; min-height: 380px; }
}
@media (max-width: 540px) {
  .sectors-grid { grid-template-columns: 1fr; }
}

/* ---------- About: Story / Two Column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
@media (max-width: 980px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > :first-child { order: 0; }
}
.two-col-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.two-col-img .badge-float {
  position: absolute;
  bottom: 24px;
  inset-inline-start: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: var(--r-md);
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--sh-md);
}
.two-col-img .badge-float .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-gold);
  display: grid;
  place-items: center;
  color: var(--color-navy);
  flex-shrink: 0;
}
.two-col-img .badge-float strong {
  display: block;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
.two-col-img .badge-float small {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-electric-light);
  color: var(--color-electric);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 700;
}
.feature-list .check svg { width: 14px; height: 14px; }
.feature-list strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 4px;
}
.feature-list p { font-size: 0.9375rem; margin: 0; }

/* ---------- Timeline (About) ---------- */
.timeline {
  position: relative;
  padding-block: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 50%;
  width: 2px;
  background: var(--color-border);
  transform: translateX(50%);
}
[dir="rtl"] .timeline::before { transform: translateX(-50%); }
.timeline-item {
  position: relative;
  width: 50%;
  padding: 16px 40px;
}
.timeline-item:nth-child(odd) {
  margin-inline-start: 50%;
  text-align: start;
}
.timeline-item:nth-child(even) {
  text-align: end;
}
.timeline-item .dot {
  position: absolute;
  top: 28px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 4px solid var(--color-bg-alt);
  box-shadow: 0 0 0 2px var(--color-electric);
}
.timeline-item:nth-child(odd) .dot { inset-inline-start: -9px; }
.timeline-item:nth-child(even) .dot { inset-inline-end: -9px; }
.timeline-item .year {
  display: inline-block;
  background: var(--color-electric);
  color: white;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.timeline-item h4 {
  margin-bottom: 8px;
  font-size: 1.1875rem;
}
.timeline-item p { font-size: 0.9375rem; }

@media (max-width: 768px) {
  .timeline::before { inset-inline-start: 20px; transform: none; }
  .timeline-item, .timeline-item:nth-child(even), .timeline-item:nth-child(odd) {
    width: 100%;
    margin-inline-start: 0;
    text-align: start;
    padding-inline-start: 50px;
    padding-inline-end: 0;
  }
  .timeline-item:nth-child(odd) .dot,
  .timeline-item:nth-child(even) .dot { inset-inline-start: 11px; inset-inline-end: auto; }
}

/* Vision/Mission cards */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .vmv-grid { grid-template-columns: 1fr; } }
.vmv-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 36px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.vmv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-gold));
}
.vmv-card .ico {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-electric-light), white);
  display: grid;
  place-items: center;
  color: var(--color-electric);
  margin-bottom: 22px;
}
.vmv-card .ico svg { width: 32px; height: 32px; }
.vmv-card h3 { margin-bottom: 12px; }

/* ---------- Chairman Message ---------- */
.chairman {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-700) 100%);
  border-radius: var(--r-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.chairman::before {
  content: '"';
  position: absolute;
  top: -40px;
  inset-inline-end: 30px;
  font-size: 18rem;
  font-family: serif;
  color: rgba(201, 162, 74, 0.12);
  line-height: 1;
}
.chairman-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 4px solid var(--color-gold);
}
.chairman-photo img { width: 100%; height: 100%; object-fit: cover; }
.chairman-content { position: relative; z-index: 2; }
.chairman-content h2 { color: white; margin-bottom: 18px; }
.chairman-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  line-height: 1.95;
  margin-bottom: 16px;
}
.chairman-sign {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.chairman-sign strong {
  display: block;
  color: white;
  font-size: 1.125rem;
  margin-bottom: 4px;
}
.chairman-sign span { color: var(--color-gold); font-size: 0.9375rem; }

@media (max-width: 980px) {
  .chairman {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 32px;
  }
  .chairman-photo { max-width: 280px; margin: 0 auto; }
}

/* ---------- Sector Page Hero ---------- */
.sector-hero {
  position: relative;
  background-color: var(--color-navy-900);
  color: white;
  padding: calc(var(--header-h) + 100px) 0 100px;
  overflow: hidden;
}
.sector-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.sector-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 68, 0.95), rgba(10, 31, 68, 0.7) 60%, rgba(30, 99, 216, 0.55));
}
.sector-hero .container { position: relative; z-index: 2; }
.sector-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .sector-hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.sector-hero h1 { color: white; margin-bottom: 18px; }
.sector-hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.sector-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.sector-hero-stats .stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 22px;
}
.sector-hero-stats .num {
  color: var(--color-gold);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.sector-hero-stats .label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
}
.sector-hero-side {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--r-xl);
  padding: 32px;
}
.sector-hero-side h3 { color: white; margin-bottom: 20px; }
.sector-hero-side ul li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sector-hero-side ul li:last-child { border-bottom: none; }
.sector-hero-side .check {
  color: var(--color-gold);
  flex-shrink: 0;
}
.sector-hero-side ul li span { color: rgba(255,255,255,0.9); font-size: 0.9375rem; }

/* ---------- Service / Capability cards ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cap-grid { grid-template-columns: 1fr; } }
.cap-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.cap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-electric), var(--color-gold));
  transition: width var(--t-med) var(--ease);
}
.cap-card:hover {
  border-color: transparent;
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.cap-card:hover::after { width: 100%; }
.cap-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-electric-light);
  color: var(--color-electric);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.cap-card .ico svg { width: 26px; height: 26px; }
.cap-card h4 { margin-bottom: 10px; font-size: 1.0625rem; }
.cap-card p { font-size: 0.9375rem; line-height: 1.7; }

/* ---------- Project filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 18px;
  margin-bottom: 36px;
}
.filter-bar .search-bar { flex: 1; min-width: 240px; }
.filter-bar select {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-pill);
  background: white;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy);
  cursor: pointer;
  min-width: 160px;
}
.filter-bar select:focus { outline: none; border-color: var(--color-electric); }

/* ---------- Project Detail Hero ---------- */
.project-detail-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: white;
  padding-bottom: 60px;
  margin-top: var(--header-h);
}
.project-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(10, 31, 68, 0.92) 100%);
}
.project-detail-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.project-detail-hero .badges {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.project-detail-hero .badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}
.project-detail-hero h1 { color: white; max-width: 900px; }
.project-detail-hero p { color: rgba(255,255,255,0.85); max-width: 720px; margin-top: 12px; }

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--color-bg-alt);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 56px;
}
@media (max-width: 980px) { .project-meta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .project-meta-grid { grid-template-columns: 1fr; } }
.project-meta-grid .item {
  background: white;
  padding: 22px 26px;
}
.project-meta-grid .item small {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.project-meta-grid .item strong {
  color: var(--color-navy);
  font-size: 1.0625rem;
  font-weight: 700;
}

/* ---------- Sustainability ---------- */
.sustain-section {
  background: linear-gradient(135deg, #064E3B 0%, #047857 50%, #059669 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.sustain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201, 162, 74, 0.2), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
}
.sdg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .sdg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .sdg-grid { grid-template-columns: 1fr; } }
.sdg-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: all var(--t-med) var(--ease);
}
.sdg-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.sdg-card .num {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.sdg-card .num .suffix { color: #C9A24A; font-size: 0.7em; }
.sdg-card h5 { color: white; margin-bottom: 6px; font-size: 1rem; }
.sdg-card p { color: rgba(255,255,255,0.8); font-size: 0.875rem; }

/* ---------- Job Card ---------- */
.job-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--t-med) var(--ease);
  flex-wrap: wrap;
}
.job-card:hover {
  border-color: var(--color-electric);
  box-shadow: var(--sh-md);
  transform: translateX(-4px);
}
[dir="rtl"] .job-card:hover { transform: translateX(4px); }
.job-card .ico {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--color-electric-light);
  color: var(--color-electric);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.job-card-body { flex: 1; min-width: 220px; }
.job-card h4 { margin-bottom: 6px; font-size: 1.125rem; }
.job-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.job-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-card .meta svg { width: 14px; height: 14px; opacity: 0.7; }

/* ---------- Map Box ---------- */
.map-box {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 16 / 9;
}
.map-box iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact Cards ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--t-med) var(--ease);
}
.contact-card:hover {
  border-color: var(--color-electric);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.contact-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-electric-light);
  color: var(--color-electric);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-card small {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  display: block;
  margin-bottom: 4px;
}
.contact-card strong {
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.9375rem;
  display: block;
  line-height: 1.5;
}

/* ---------- Article Body (News Detail) ---------- */
.article-body {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.0625rem;
  line-height: 1.95;
  color: var(--color-text);
}
.article-body p { margin-bottom: 22px; color: var(--color-text); }
.article-body h2 { font-size: 1.875rem; margin: 38px 0 18px; }
.article-body h3 { font-size: 1.375rem; margin: 30px 0 14px; }
.article-body img { border-radius: var(--r-lg); margin: 24px 0; }
.article-body ul, .article-body ol { padding-inline-start: 24px; margin-bottom: 22px; }
.article-body ul li { list-style: disc; margin-bottom: 8px; }
.article-body ol li { list-style: decimal; margin-bottom: 8px; }
.article-body blockquote {
  border-inline-start: 4px solid var(--color-gold);
  background: var(--color-bg-alt);
  padding: 22px 28px;
  border-radius: var(--r-md);
  margin: 28px 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-navy);
}

.share-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-block: 36px;
}
.share-block strong { color: var(--color-navy); font-size: 0.9375rem; }
.share-block .links { display: flex; gap: 8px; }
.share-block .links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: grid;
  place-items: center;
  color: var(--color-navy);
  transition: all var(--t-fast) var(--ease);
}
.share-block .links a:hover { background: var(--color-electric); color: white; }
.share-block .links svg { width: 16px; height: 16px; }

/* ---------- Image Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a {
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery a:hover img { transform: scale(1.08); }

/* ---------- World Map (Presence) ---------- */
.presence-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 980px) { .presence-block { grid-template-columns: 1fr; } }
.world-map {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-alt);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.world-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.world-map .country {
  fill: #D7DDE8;
  stroke: white;
  stroke-width: 0.5;
  transition: fill var(--t-fast) var(--ease);
}
.world-map .country.active {
  fill: var(--color-electric);
}
.world-map .country.active:hover { fill: var(--color-gold); }
.world-map .pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(201, 162, 74, 0.5);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: pulse-pin 2s ease-out infinite;
}
@keyframes pulse-pin {
  0%, 100% { box-shadow: 0 4px 12px rgba(201, 162, 74, 0.5), 0 0 0 0 rgba(201, 162, 74, 0.6); }
  50% { box-shadow: 0 4px 12px rgba(201, 162, 74, 0.5), 0 0 0 12px rgba(201, 162, 74, 0); }
}

.country-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.country-list .item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all var(--t-fast) var(--ease);
}
.country-list .item:hover {
  border-color: var(--color-electric);
  transform: translateY(-2px);
}
.country-list .flag {
  font-size: 1.5rem;
  line-height: 1;
}
.country-list .name { font-weight: 600; color: var(--color-navy); font-size: 0.9375rem; }
.country-list .projects { color: var(--color-text-muted); font-size: 0.8125rem; }
