/* ============================================
   NCA SOMALIA — MAIN STYLESHEET
   Primary: #83d2f3 | Black: #000
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #83d2f3;
  --primary-dark: #5bb8e0;
  --primary-light: #c5eafb;
  --black: #000000;
  --dark: #111111;
  --dark2: #1e2a35;
  --gray: #6b7280;
  --gray-light: #f0f4f8;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --nav-h: 60px;
  --header-h: 80px;
  --topbar-h: 40px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--font-size-base);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: var(--font-size-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(130, 210, 243, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* --- TOPBAR --- */
.topbar {
  background: #0d1117;
  color: rgba(255,255,255,0.75);
  height: var(--topbar-h);
  font-size: 0.8rem;
  position: relative;
  z-index: 100;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.topbar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-right a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--primary); }
.topbar-right .fa-phone,
.topbar-right .fa-envelope { color: var(--primary); font-size: 0.72rem; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px;
}
.lang-btn {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  transition: all 0.2s;
  text-decoration: none !important;
}
.lang-btn.active {
  background: var(--primary);
  color: #0d1117 !important;
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}

/* --- HEADER --- */
.site-header {
  background: var(--white);
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
/* Logo — image only */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: inherit !important;
}
.logo-full-img {
  height: 90px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
}

/* ISO Badges */
.iso-badges {
  display: flex;
  gap: 14px;
  align-items: center;
}
.iso-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  cursor: default;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1),
              box-shadow 0.22s ease,
              border-color 0.22s ease,
              background 0.22s ease;
  position: relative;
  overflow: hidden;
}
.iso-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(130,210,243,0.08) 0%, rgba(91,189,232,0.04) 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
  border-radius: inherit;
}
.iso-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(130,210,243,0.32), 0 2px 8px rgba(0,0,0,0.08);
  border-color: var(--primary);
  background: #fff;
}
.iso-badge:hover::before {
  opacity: 1;
}
.iso-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  background: #fff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.iso-badge:hover .iso-icon-wrap {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(130,210,243,0.2);
}
.iso-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.iso-info {
  display: flex;
  flex-direction: column;
}
.iso-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  white-space: nowrap;
  transition: color 0.22s ease;
}
.iso-badge:hover .iso-title {
  color: #0369a1;
}
.iso-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 2px;
  white-space: nowrap;
  transition: color 0.22s ease;
}
.iso-badge:hover .iso-label {
  color: var(--primary);
}

/* --- NAVIGATION --- */
.main-nav {
  background: #0a2a3d;
  position: sticky;
  top: var(--header-h);
  z-index: 190;
  box-shadow: 0 4px 20px rgba(10,42,61,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  position: relative;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  white-space: nowrap;
}
.nav-actions {
  margin-left: auto;
  flex-shrink: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link {
  background: rgba(130, 210, 243, 0.15);
  color: var(--primary);
}
.nav-link i { font-size: 0.65rem; transition: transform var(--transition); }
.nav-item.has-dropdown:hover > .nav-link i { transform: rotate(180deg); }

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 300;
  padding: 8px 0;
}
.nav-item.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-size: 0.875rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--gray-light);
  color: var(--primary-dark);
  border-left-color: var(--primary);
  padding-left: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.nav-search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-search-btn:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-cta {
  padding: 8px 20px;
  font-size: 0.85rem;
  text-transform: none !important;
  letter-spacing: normal;
  font-weight: 600;
  border-radius: 25px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Search bar */
.nav-search-bar {
  display: none;
  background: var(--dark2);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-search-bar.open { display: block; }
.search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.search-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: none;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.5); }
.search-form button {
  background: var(--primary);
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--dark);
  font-size: 0.95rem;
  transition: background var(--transition);
}
.search-form button:hover { background: var(--primary-dark); }

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 620px;
  background: linear-gradient(135deg, #0a2a3d 0%, #0e3f5c 40%, #0f5278 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Dot-grid pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(131,210,243,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}
/* Brand colour glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(131,210,243,0.18) 0%, transparent 70%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 90px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(131,210,243,0.15);
  border: 1px solid rgba(131,210,243,0.45);
  color: #83d2f3;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.13;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: #83d2f3; }
.hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-globe {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(131,210,243,0.22) 0%, rgba(14,63,92,0.6) 60%, transparent 100%);
  border: 2px solid rgba(131,210,243,0.35);
  box-shadow: 0 0 60px rgba(131,210,243,0.15), inset 0 0 60px rgba(131,210,243,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s ease-in-out infinite;
  position: relative;
}
.hero-globe::before {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(131,210,243,0.15);
  animation: pulse 4s ease-in-out infinite 1s;
}
.hero-globe::after {
  content: '';
  position: absolute;
  inset: -48px;
  border-radius: 50%;
  border: 1px solid rgba(131,210,243,0.07);
  animation: pulse 4s ease-in-out infinite 2s;
}
.hero-globe-icon {
  font-size: 8rem;
  color: #83d2f3;
  opacity: 0.75;
  filter: drop-shadow(0 0 24px rgba(131,210,243,0.5));
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 56px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* --- SERVICES CARDS --- */
.services-section { padding: 96px 0; background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.service-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--dark2);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* --- ABOUT SECTION --- */
.about-section { padding: 96px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.about-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text { color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--gray-light);
  border-radius: var(--radius);
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.pillar h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: 0.8rem; color: var(--gray); }
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  text-align: center;
  padding: 40px;
  color: var(--white);
}
.about-visual-icon { font-size: 6rem; color: var(--primary); margin-bottom: 20px; opacity: 0.8; }
.about-visual h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.about-visual p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* --- COUNTERS SECTION --- */
.counters-section {
  padding: 80px 0;
  background: var(--dark);
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.counter-card { text-align: center; padding: 32px 20px; }
.counter-icon {
  width: 56px;
  height: 56px;
  background: rgba(130, 210, 243, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--primary);
}
.counter-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-num span { color: var(--primary); }
.counter-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* --- NEWS SECTION --- */
.news-section { padding: 96px 0; background: var(--gray-light); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark2), #0d3a52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.news-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--dark);
}
.news-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.news-link:hover { color: var(--dark); }

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary); }

/* --- FOOTER --- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-about p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 0.85rem;
}
.footer-social a:hover { background: var(--primary); color: var(--dark); }
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.footer-contact li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-iso { display: flex; gap: 8px; margin-top: 20px; }
.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-links a:hover { color: var(--primary); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  padding: 60px 0;
  color: var(--white);
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; }

/* --- CONTENT AREA --- */
.content-section { padding: 80px 0; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; }
.article-body { max-width: none; }
.article-body h2 { font-size: 1.6rem; font-weight: 700; margin: 32px 0 16px; }
.article-body h3 { font-size: 1.25rem; font-weight: 700; margin: 24px 0 12px; }
.article-body p { margin-bottom: 18px; color: var(--gray); line-height: 1.8; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; color: var(--gray); }
.article-body strong { color: var(--dark); }

/* Sidebar */
.sidebar-widget {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* --- NEWS LISTING --- */
.news-list-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.news-list-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-light);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1.5rem;
}
.news-list-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* --- RESOURCES TABLE --- */
.resources-table { width: 100%; border-collapse: collapse; }
.resources-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.resources-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.resources-table tr:hover td { background: var(--gray-light); }
.resources-table .download-btn {
  background: var(--primary);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}
.resources-table .download-btn:hover { background: var(--primary-dark); color: var(--white); }

/* --- ADMIN STYLES (separate scope) --- */
/* kept in admin/assets/admin.css */

/* --- ALERTS --- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-left: 4px solid;
}
.alert-success { background: #ecfdf5; color: #065f46; border-color: #10b981; }
.alert-error   { background: #fef2f2; color: #991b1b; border-color: #ef4444; }
.alert-info    { background: #eff6ff; color: #1e40af; border-color: #3b82f6; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .topbar-text { display: none; }
  .iso-badges { display: none; }
  .nav-toggle { display: flex; order: -1; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: #0a2a3d;
    padding: 16px;
    gap: 4px;
    z-index: 300;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; display: flex; justify-content: space-between; align-items: center; }
  /* Dropdowns hidden by default on mobile — JS adds .mobile-open to show */
  .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 6px;
    margin-top: 2px;
    background: rgba(255,255,255,0.05);
    display: none;
    overflow: hidden;
  }
  .dropdown.mobile-open { display: block; }
  .dropdown li a { color: rgba(255,255,255,0.75); padding: 10px 16px; }
  .dropdown li a:hover { background: rgba(255,255,255,0.07); color: var(--primary); }
  .nav-item.has-dropdown.mobile-open > .nav-link i { transform: rotate(180deg); }
  .nav-link i { transition: transform 0.25s ease; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .about-pillars { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .logo-full-img { height: 44px; max-width: 200px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  .site-header { height: auto; padding: 10px 0; }
  .header-inner { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .logo-full-img { height: 50px; max-width: 240px; }
  .topbar-inner { flex-direction: column; gap: 6px; text-align: center; }
  .topbar-right { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .topbar-divider { display: none; }
}

/* --- ANIMATIONS --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }
.loading { animation: spin 1s linear infinite; }