/* ═══════════════════════════════════════════════════════════
   SWL PHARMA — Modern Redesign
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-400: #60A5FA;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --sky-400:  #38BDF8;
  --sky-500:  #0EA5E9;
  --sky-600:  #0284C7;
  --sky-700:  #0369A1;
  --green-400:#34D399;
  --green-500:#10B981;
  --green-600:#059669;
  --amber-400:#FBBF24;
  --amber-500:#F59E0B;
  --slate-50: #F8FAFC;
  --slate-100:#F1F5F9;
  --slate-200:#E2E8F0;
  --slate-300:#CBD5E1;
  --slate-400:#94A3B8;
  --slate-500:#64748B;
  --slate-600:#475569;
  --slate-700:#334155;
  --slate-800:#1E293B;
  --slate-900:#0F172A;
  --white:    #FFFFFF;

  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.07);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.08);
  --shadow-blue:0 8px 30px rgba(14,165,233,.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  line-height: 1.15;
  font-weight: 700;
  color: var(--slate-900);
}

.gradient-text {
  background: linear-gradient(135deg, var(--sky-500) 0%, var(--blue-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-600);
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.centered-label { display: flex; justify-content: center; }

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 18px;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.centered .section-desc { margin: 0 auto; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky-500) 0%, var(--blue-600) 100%);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14,165,233,.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}

.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06), var(--shadow-md);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-radius: 12px;
  padding: 4px 12px 4px 4px;
  transition: background var(--transition), backdrop-filter var(--transition);
  /* Transparent by default — the PNG's transparent areas show
     whatever colour is directly behind it (dark hero, white navbar, etc.) */
  background: transparent;
}
.logo-swl {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 22px;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  color: var(--slate-800);
}
/* ── Logo adapts to surrounding background ────────────────────
   Scrolled (white) navbar → logo picks up the white backdrop.
   Transparent (hero) navbar → logo is transparent too; text turns white.
   Footer → transparent on its own dark background.
   ─────────────────────────────────────────────────────────── */
.navbar.scrolled .nav-logo {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar:not(.scrolled) .logo-text { color: var(--white); }
.navbar:not(.scrolled) .logo-swl {
  background: linear-gradient(135deg, var(--sky-400), white);
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.navbar.scrolled .nav-links a { color: var(--slate-600); }
.navbar.scrolled .nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }

.nav-cta {
  margin-left: auto;
  font-family: var(--font-main);
  font-size: 14px;
  padding: 10px 22px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  color: var(--slate-700) !important;
  background: transparent !important;
  padding: 10px 14px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 14px !important;
  display: block !important;
}
.dropdown-menu a:hover {
  background: var(--slate-100) !important;
  color: var(--slate-900) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--slate-700); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--slate-900) 0%, #0c1a2e 40%, var(--sky-700) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sky-500), transparent 70%);
  top: -200px; right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-600), transparent 70%);
  bottom: -100px; left: 10%;
  animation: orb-float 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green-500), transparent 70%);
  top: 40%; left: 40%;
  opacity: 0.15;
  animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  padding: 8px 18px 8px 12px;
  border-radius: 100px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }

.stat-num {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-plus {
  font-size: 24px;
  font-weight: 800;
  color: var(--sky-400);
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(14,165,233,.25);
  animation: ring-spin 12s linear infinite;
}
.ring-1 { width: 180px; height: 180px; animation-duration: 12s; }
.ring-2 { width: 130px; height: 130px; animation-duration: 8s; animation-direction: reverse; border-color: rgba(56,189,248,.3); }
.ring-3 { width: 80px; height: 80px; animation-duration: 5s; border-color: rgba(14,165,233,.4); }

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pill-icon-center {
  position: relative;
  z-index: 2;
  width: 100px; height: 100px;
  background: rgba(14,165,233,.15);
  border: 1px solid rgba(14,165,233,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--white);
  animation: float-card 4s ease-in-out infinite;
}

.card-float-1 { top: 60px; right: 20px; animation-delay: 0s; }
.card-float-2 { bottom: 80px; left: 0; animation-delay: 1.5s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 40px; height: 40px;
  background: rgba(14,165,233,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-400);
  flex-shrink: 0;
}
.float-icon-green { background: rgba(16,185,129,.2); color: var(--green-400); }

.float-title { font-weight: 700; font-size: 14px; }
.float-sub { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 500px;
}

.about-card-main {
  position: absolute;
  top: 0; left: 0;
  right: 60px;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--sky-700) 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
  border-radius: 50%;
}
.about-icon-wrap {
  margin-bottom: 20px;
}
.about-card-main h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.about-card-main p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; }

.about-card-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-metric {}
.metric-val {
  display: block;
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.metric-label { font-size: 12px; color: var(--slate-500); font-weight: 500; }

.about-badge-float {
  position: absolute;
  top: 280px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-md);
}

.about-content .section-label { margin-bottom: 16px; }

.about-lead {
  font-size: 20px;
  font-weight: 500;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-body {
  font-size: 16px;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar-icon {
  width: 40px; height: 40px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-600);
  flex-shrink: 0;
}
.pillar h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pillar p { font-size: 14px; color: var(--slate-500); }

/* ─── SERVICES ───────────────────────────────────────────────── */
.services { background: var(--slate-50); }
.services-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(14,165,233,.04) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(37,99,235,.04) 0%, transparent 60%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-500), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(14,165,233,.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-600);
  margin-bottom: 24px;
}
.service-icon-2 { background: rgba(37,99,235,.08); border-color: rgba(37,99,235,.15); color: var(--blue-600); }
.service-icon-3 { background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.15); color: var(--green-600); }
.service-icon-4 { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.15); color: var(--amber-500); }
.service-icon-5 { background: rgba(139,92,246,.08); border-color: rgba(139,92,246,.15); color: #7C3AED; }

.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--slate-500); line-height: 1.7; margin-bottom: 24px; }

.service-arrow {
  width: 32px; height: 32px;
  background: var(--slate-100);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-500);
  transition: all var(--transition);
}
.service-card:hover .service-arrow {
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  color: var(--white);
}

.service-card-cta {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--sky-700) 100%);
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card-cta::before { display: none; }
.service-card-cta h3 { color: var(--white); }
.service-card-cta p { color: rgba(255,255,255,.65); }
.service-card-cta:hover { transform: translateY(-6px); }

/* ─── COVERAGE ───────────────────────────────────────────────── */
.coverage { background: var(--white); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.city-tag {
  background: var(--slate-100);
  color: var(--slate-700);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--slate-200);
  transition: all var(--transition);
}
.city-tag:hover {
  background: rgba(14,165,233,.08);
  border-color: rgba(14,165,233,.2);
  color: var(--sky-700);
}
.city-tag-more {
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  color: var(--white);
  border-color: transparent;
}

.coverage-stats {
  display: flex;
  gap: 40px;
}
.cov-stat {}
.cov-stat-val {
  display: block;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cov-stat-label { font-size: 13px; color: var(--slate-500); font-weight: 500; }

/* Map Card */
.map-card {
  background: linear-gradient(160deg, var(--slate-900) 0%, #0c1e35 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px 32px;
  height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-bg-label {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-family: var(--font-main);
  pointer-events: none;
}

.map-pulse-wrap {
  position: relative;
  width: 100%;
  height: 280px;
}

.map-city {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.map-dot {
  width: 10px; height: 10px;
  background: var(--sky-400);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  position: relative;
  z-index: 2;
}
.map-dot-primary {
  width: 14px; height: 14px;
  background: var(--sky-400);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 0 12px var(--sky-400);
}
.map-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border: 2px solid var(--sky-400);
  border-radius: 50%;
  animation: map-pulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes map-pulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.map-label {
  font-size: 10px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}
.map-label-below { margin-top: 14px; }

.map-footer {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.map-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.legend-dot {
  width: 8px; height: 8px;
  background: var(--sky-400);
  border-radius: 50%;
}
.legend-primary { box-shadow: 0 0 8px var(--sky-400); }

/* ─── PARTNERS ───────────────────────────────────────────────── */
.partners { background: var(--slate-50); }
.partners-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(14,165,233,.05), transparent 60%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,.2);
}

.partner-logo-wrap {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.partner-logo-2 { background: linear-gradient(135deg, var(--green-500), var(--green-600)); }
.partner-logo-3 { background: linear-gradient(135deg, var(--amber-500), #D97706); }
.partner-logo-4 { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.partner-initials {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
}

.partner-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.partner-card p { font-size: 13px; color: var(--slate-500); line-height: 1.6; margin-bottom: 16px; }

.partner-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-600);
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Certifications */
.certs-section { border-top: 1px solid var(--slate-200); padding-top: 64px; }
.certs-section .section-label { margin-bottom: 32px; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.cert-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14,165,233,.2);
}
.cert-icon { flex-shrink: 0; }
.cert-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cert-card p { font-size: 13px; color: var(--slate-500); }

/* ─── NEWS ───────────────────────────────────────────────────── */
.news { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-card-featured {
  background: linear-gradient(135deg, var(--slate-900) 0%, #0c1e35 100%);
  border-color: transparent;
}
.news-card-featured h3 { color: var(--white); }
.news-card-featured p { color: rgba(255,255,255,.65); }

.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-500);
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.2);
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.news-tag-green { color: var(--green-600); background: rgba(16,185,129,.08); border-color: rgba(16,185,129,.2); }
.news-tag-amber { color: var(--amber-500); background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.2); }

.news-card h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.news-card p { font-size: 14px; color: var(--slate-500); line-height: 1.7; flex: 1; }
.news-card-featured p { color: rgba(255,255,255,.6); }

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: auto;
}
.news-card:not(.news-card-featured) .news-meta { border-top-color: var(--slate-200); }

.news-date { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 500; }
.news-card:not(.news-card-featured) .news-date { color: var(--slate-400); }
.news-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-400);
  text-decoration: none;
  transition: color var(--transition);
}
.news-link:hover { color: var(--sky-300); }
.news-card:not(.news-card-featured) .news-link { color: var(--sky-600); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { background: var(--slate-50); }
.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(14,165,233,.05), transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-400); margin-bottom: 4px; }
.contact-val { display: block; font-size: 14px; color: var(--slate-700); text-decoration: none; line-height: 1.7; }
a.contact-val:hover { color: var(--sky-600); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  outline: none;
  transition: all var(--transition);
  width: 100%;
  resize: vertical;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 20px; display: inline-flex; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0; border-radius: 0; }
.footer-brand .logo-text { color: rgba(255,255,255,.7); }
.footer-brand .logo-swl {
  background: linear-gradient(135deg, var(--sky-400), var(--blue-400));
  -webkit-background-clip: text;
  background-clip: text;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; margin-bottom: 28px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(14,165,233,.2);
  border-color: rgba(14,165,233,.3);
  color: var(--sky-400);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-col span { font-size: 14px; color: rgba(255,255,255,.55); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,.3); }
.footer-tagline { font-weight: 600; color: rgba(255,255,255,.25) !important; letter-spacing: 0.04em; }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid,
  .coverage-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-visual { height: 300px; }
  .about-card-main { right: 0; height: 250px; }
  .about-card-secondary { right: 24px; bottom: 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 16px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--slate-900);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    z-index: 999;
  }
  .nav-links.open a { color: rgba(255,255,255,.8); }

  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-stats { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { padding: 20px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .stat-item { width: 100%; padding: 0; }
  .partners-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MULTI-PAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* ─── NAV ACTIVE STATE (scrolled pages) ────────────────────── */
.navbar.scrolled .nav-links .nav-active {
  color: var(--sky-600) !important;
  background: rgba(14,165,233,.08) !important;
  border-radius: var(--radius-sm);
}

/* ─── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--slate-900) 0%, #0c1a2e 50%, var(--sky-700) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,.2), transparent 70%);
  border-radius: 50%;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
  font-weight: 500;
}
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ─── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--slate-900), #0c1e35);
  padding: 48px 0;
}
.stats-strip-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.strip-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.strip-val {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.strip-plus {
  font-size: 32px;
  font-weight: 800;
  color: var(--sky-400);
}
.strip-label {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  white-space: nowrap;
}

/* ─── VALUES GRID ────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,.2);
}
.value-num {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sky-500);
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; margin-bottom: 12px; }
.value-card p { font-size: 14px; color: var(--slate-500); line-height: 1.7; }

/* ─── HOME ABOUT GRID ────────────────────────────────────────── */
.home-about { background: var(--white); }
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.home-about-left .section-label { margin-bottom: 16px; }
.home-about-left .about-body { margin-bottom: 32px; }
.home-about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ─── PARTNERS STRIP (home) ──────────────────────────────────── */
.home-partners { background: var(--white); }
.partners-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.partner-strip-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}
.partner-strip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(14,165,233,.2);
}
.partner-strip-card .partner-logo-wrap {
  width: 64px; height: 64px;
  font-size: 18px;
}
.partner-strip-card span {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-700);
  text-align: center;
  line-height: 1.4;
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--sky-700) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255,255,255,.65); font-size: 16px; }

.btn-white {
  background: var(--white);
  color: var(--sky-700);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

/* ─── SERVICE FEATURES ───────────────────────────────────────── */
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--slate-500);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sky-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── HOME SERVICES GRID ─────────────────────────────────────── */
.services-grid-home { grid-template-columns: repeat(3, 1fr); }

/* ─── PROCESS GRID ───────────────────────────────────────────── */
.process-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.process-num {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--sky-500);
  margin-bottom: 16px;
}
.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--slate-500); line-height: 1.7; }
.process-arrow {
  font-size: 24px;
  color: var(--slate-300);
  padding: 0 8px;
  margin-top: 48px;
  flex-shrink: 0;
}

/* ─── PARTNER DETAIL CARDS ───────────────────────────────────── */
.partner-detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 28px;
  transition: all var(--transition);
}
.partner-detail-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,.15);
}
.partner-detail-logo { flex-shrink: 0; }
.partner-detail-content h2 { font-size: 28px; margin-bottom: 12px; }
.partner-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--slate-200);
}
.partner-highlight {
  font-size: 14px;
  color: var(--slate-600);
  display: flex;
  gap: 8px;
}
.partner-highlight span {
  font-weight: 700;
  color: var(--slate-800);
  min-width: 140px;
}

/* ─── PROVINCE CARDS ─────────────────────────────────────────── */
.provinces-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.province-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  transition: all var(--transition);
}
.province-card:hover { box-shadow: var(--shadow-sm); border-color: var(--slate-300); }
.province-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.province-card span { font-size: 11px; color: var(--slate-400); }
.province-hub {
  background: rgba(14,165,233,.04);
  border-color: rgba(14,165,233,.2);
}
.province-hub h4 { color: var(--sky-700); }
.province-hub-dot {
  width: 8px; height: 8px;
  background: var(--sky-500);
  border-radius: 50%;
  margin: 0 auto 8px;
  box-shadow: 0 0 6px rgba(14,165,233,.5);
}
.provinces-legend {
  display: flex;
  gap: 32px;
  align-items: center;
}
.prov-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}

/* ─── NEWS FULL PAGE ─────────────────────────────────────────── */
.news-featured-full {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: var(--shadow-md);
}
.news-featured-content h2 { font-size: 28px; margin: 16px 0 16px; }
.news-featured-visual { flex-shrink: 0; }
.news-visual-card {
  width: 220px;
  background: linear-gradient(135deg, var(--slate-900), var(--sky-700));
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  color: var(--white);
}
.news-visual-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.news-visual-card p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }

.news-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.news-card-full {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}
.news-card-full:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-date-sm { font-size: 12px; color: var(--slate-400); font-weight: 500; }
.news-card-full h3 { font-size: 18px; line-height: 1.3; }
.news-card-full p { font-size: 14px; color: var(--slate-500); line-height: 1.7; flex: 1; }
.news-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--sky-600);
  text-decoration: none;
  transition: color var(--transition);
  align-self: flex-start;
  margin-top: auto;
}
.news-read-more:hover { color: var(--sky-700); }

/* ─── CONTACT QUICK LINKS ────────────────────────────────────── */
.contact-quick-links { margin-top: 40px; }
.quick-link-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: all var(--transition);
}
.quick-link-btn:hover {
  background: rgba(14,165,233,.06);
  border-color: rgba(14,165,233,.2);
  color: var(--sky-700);
}

/* ─── OFFICES ────────────────────────────────────────────────── */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.office-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.office-icon {
  width: 56px; height: 56px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-600);
  margin-bottom: 20px;
}
.office-card h4 { font-size: 17px; margin-bottom: 10px; }
.office-card p { font-size: 14px; color: var(--slate-500); line-height: 1.7; margin-bottom: 16px; }
.office-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-600);
}

/* ─── MULTI-PAGE RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .provinces-grid { grid-template-columns: repeat(5, 1fr); }
  .process-grid { flex-wrap: wrap; }
  .process-arrow { display: none; }
  .process-step { flex: 1 1 calc(50% - 12px); min-width: 200px; }
}

@media (max-width: 900px) {
  .home-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .partners-strip { grid-template-columns: repeat(2, 1fr); }
  .partner-detail-card { grid-template-columns: 1fr; }
  .news-featured-full { grid-template-columns: 1fr; }
  .news-visual-card { width: 100%; }
  .news-full-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .certs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .provinces-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid-home { grid-template-columns: 1fr; }
  .stats-strip-grid { gap: 24px; }
  .strip-val { font-size: 36px; }
}

@media (max-width: 480px) {
  .provinces-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-strip { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   COVERAGE PAGE — MAP & HUBS
   ═══════════════════════════════════════════════════════════ */

/* ─── LOGO IMAGE ─────────────────────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(41,171,226,0.3));
}

/* ─── MAP SECTION ────────────────────────────────────────────── */
.map-section { background: var(--white); }

.map-section-header {
  margin-bottom: 48px;
}
.map-section-header .coverage-stats { margin-top: 32px; }

.afg-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  line-height: 0;
}

.afg-map-svg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

.afg-outline {
  transition: fill 0.3s ease;
}
.afg-outline:hover { fill: rgba(14,165,233,0.18); }

/* ─── DISTRIBUTION HUBS GRID ─────────────────────────────────── */
.hubs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hub-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: all var(--transition);
}
.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,165,233,.25);
}

.hub-card-main {
  background: linear-gradient(135deg, var(--slate-900) 0%, #0c2040 100%);
  border-color: transparent;
  grid-column: span 2;
}
.hub-card-main h3 { color: var(--white); font-size: 22px; }
.hub-card-main .hub-region { color: rgba(255,255,255,.5); }
.hub-card-main .hub-desc { color: rgba(255,255,255,.7); }
.hub-card-main .hub-serves { color: rgba(255,255,255,.4); border-color: rgba(255,255,255,.1); }

.hub-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hub-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sky-600);
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.18);
  padding: 4px 12px;
  border-radius: 100px;
}
.hub-badge-main {
  color: var(--sky-400);
  background: rgba(14,165,233,.15);
  border-color: rgba(14,165,233,.3);
}

.hub-pulse-dot {
  position: relative;
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.hub-dot-inner {
  position: absolute;
  inset: 2px;
  background: var(--sky-400);
  border-radius: 50%;
}
.hub-dot-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--sky-400);
  border-radius: 50%;
  animation: pulse-dot-ring 2s ease-out infinite;
}
@keyframes pulse-dot-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hub-dot-simple {
  width: 10px; height: 10px;
  background: var(--sky-500);
  border-radius: 50%;
  flex-shrink: 0;
}

.hub-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.hub-region { font-size: 12px; color: var(--slate-400); font-weight: 600; margin-bottom: 10px; }
.hub-desc { font-size: 13px; color: var(--slate-500); line-height: 1.65; margin-bottom: 14px; }
.hub-serves {
  font-size: 11.5px;
  color: var(--slate-500);
  border-top: 1px solid var(--slate-200);
  padding-top: 12px;
  line-height: 1.5;
}

/* ─── ALL 34 PROVINCES GRID ──────────────────────────────────── */
.all-provinces-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.ap-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
  transition: all var(--transition);
}
.ap-card:hover { border-color: rgba(14,165,233,.3); background: rgba(14,165,233,.03); }
.ap-card span { font-size: 12px; font-weight: 600; color: var(--slate-700); }

.ap-hub {
  background: rgba(14,165,233,.05);
  border-color: rgba(14,165,233,.25);
}
.ap-hub span { color: var(--sky-700); font-weight: 700; }

.ap-hub-dot {
  width: 8px; height: 8px;
  background: var(--sky-500);
  border-radius: 50%;
  margin: 0 auto 6px;
  box-shadow: 0 0 6px rgba(14,165,233,.6);
}

.ap-legend {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--slate-200);
}
.ap-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 500;
}

/* ─── COVERAGE PAGE RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .hubs-grid { grid-template-columns: repeat(3, 1fr); }
  .hub-card-main { grid-column: span 3; }
  .all-provinces-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 900px) {
  .hubs-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-card-main { grid-column: span 2; }
  .all-provinces-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .hubs-grid { grid-template-columns: 1fr; }
  .hub-card-main { grid-column: span 1; }
  .all-provinces-grid { grid-template-columns: repeat(3, 1fr); }
  .ap-legend { flex-direction: column; gap: 12px; align-items: flex-start; }
}
