/* Base */
:root {
  --primary: #1ea83a;
  --primary-dark: #127728;
  --accent-red: #e4202a;
  --accent-yellow: #f0cd1d;
  --dark: #0f1b14;
  --dark-soft: #1b2a22;
  --text: #243126;
  --muted: #6b786f;
  --light: #f6f8f6;
  --white: #ffffff;
  --border: #dde5de;
  --shadow: 0 12px 30px rgba(10, 23, 15, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: min(92%, var(--container)); margin: 0 auto; }
.section { padding: 84px 0; }
.alt-section { background: var(--light); }

.section-tag,
.eyebrow {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.section-head { text-align: center; margin-bottom: 42px; }
.section-head.left { text-align: left; }
.section-head h2,
.section h2,
.inner-hero h2,
.hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--dark);
}
.section-head p,
.section p { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 92px; height: 92px; object-fit: contain; }
.brand h1 { font-size: 1.02rem; line-height: 1.2; color: var(--dark); }
.brand span { font-size: 0.8rem; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { font-weight: 600; color: var(--dark-soft); position: relative; }
.main-nav a.active,
.main-nav a:hover { color: var(--primary-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border-color: rgba(255, 255, 255, 0.9); color: var(--white); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }
.btn-light { background: var(--white); color: var(--primary-dark); }
.btn-nav { background: var(--primary); color: var(--white) !important; padding: 10px 18px; }
.text-link { display: inline-block; margin-top: 16px; color: var(--primary-dark); font-weight: 700; }

.nav-toggle { display: none; background: none; border: 0; width: 46px; height: 46px; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  margin: 5px auto;
  border-radius: 999px;
}

.hero-slider { position: relative; min-height: 78vh; overflow: hidden; }
.slide {
  min-height: 78vh;
  display: none;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.slide.active { display: flex; }
.hero-content { color: var(--white); padding: 80px 0; }
.hero-content h2 { color: var(--white); max-width: 720px; margin-bottom: 18px; }
.hero-content p {
  max-width: 650px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: 0;
  cursor: pointer;
}
.dot.active { background: var(--accent-yellow); }

.network-ticker {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.ticker-label {
  background: linear-gradient(90deg, var(--accent-red), #c61820);
  padding: 16px 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ticker-track { display: flex; align-items: center; overflow: hidden; white-space: nowrap; }
.ticker-move {
  display: inline-flex;
  gap: 44px;
  padding-left: 100%;
  animation: ticker 26s linear infinite;
}
.ticker-move span { color: rgba(255,255,255,0.94); font-weight: 600; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

.about-grid,
.two-col,
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.stats-card,
.contact-card,
.form-card,
.image-card,
.compliance-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stats-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stats-item {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fbfdfb, #f1f7f2);
  border: 1px solid #e7efe8;
}
.stats-item h3 { color: var(--primary-dark); font-size: 1.2rem; margin-bottom: 8px; }
.card-grid { display: grid; gap: 24px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.service-card,
.feature-box,
.location-card,
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.service-card h3,
.feature-box h3,
.location-card h3,
.team-card h3 { margin-bottom: 12px; color: var(--dark); }
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(30,168,58,0.12), rgba(240,205,29,0.25));
}
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gallery-section { padding-bottom: 96px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid img,
.station-card img,
.image-card img,
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.station-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.station-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.station-card img { height: 260px; border-radius: 0; }
.station-content { padding: 22px; }
.station-content h3 { margin-bottom: 10px; }
.badge {
  display: inline-block;
  margin-top: 14px;
  background: rgba(30,168,58,0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}
.inner-hero {
  min-height: 48vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 80px 0;
}
.inner-hero h2,
.inner-hero p { color: var(--white); max-width: 760px; }
.service-layout { display: grid; gap: 52px; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.service-detail.reverse .service-detail-image { order: 2; }
.service-detail.reverse .service-detail-text { order: 1; }
.service-detail-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.clean-list { margin-top: 18px; display: grid; gap: 10px; }
.clean-list li { position: relative; padding-left: 22px; color: var(--muted); }
.clean-list li::before {
  content: "•";
  color: var(--accent-red);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}
.contact-layout { align-items: start; }
.contact-item + .contact-item { margin-top: 22px; }
.contact-item h3 { margin-bottom: 8px; color: var(--dark); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--dark-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d4ddd6;
  outline: none;
  font: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.cta-band h2,
.cta-band p { color: var(--white); }
.site-footer { background: var(--dark); color: rgba(255,255,255,0.85); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
}
.footer-logo { width: 90px; margin-bottom: 14px; }
.site-footer h4 { color: var(--white); margin-bottom: 14px; }
.site-footer li + li { margin-top: 10px; }
.site-footer a:hover { color: var(--accent-yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0 24px;
  text-align: center;
}

/* Google Ghana station map */
.station-map-section .section-head p {
  max-width: 760px;
  margin: 0.8rem auto 0;
}
.station-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 360px);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}
.station-map-card,
.station-summary-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(10, 32, 18, 0.08);
  border: 1px solid rgba(16, 77, 36, 0.08);
}
.station-map-card { padding: 1rem; }
.station-map-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0.2rem 1rem;
  flex-wrap: wrap;
}
.station-map-legend { display: flex; align-items: center; gap: 0.8rem; }
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: #14321f;
}
.legend-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
  background: linear-gradient(135deg, #f20505, #b80000);
  box-shadow: 0 8px 20px rgba(242, 5, 5, 0.28);
}
.station-map-note { margin: 0; color: #5f6f66; font-size: 0.96rem; }
.ghana-google-map-wrap {
  position: relative;
  min-height: 620px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #eff7f1 0%, #ffffff 100%);
}
.ghana-google-map {
  width: 100%;
  height: 620px;
  border: 0;
}
.map-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(239,247,241,0.95), rgba(255,255,255,0.85));
  z-index: 3;
}
.map-loader.is-hidden { display: none; }
.map-loader-card {
  width: min(420px, calc(100% - 24px));
  background: #fff;
  border-radius: 20px;
  padding: 1.3rem 1.35rem;
  box-shadow: 0 14px 35px rgba(8, 28, 16, 0.12);
  border: 1px solid rgba(16,77,36,0.08);
  text-align: center;
}
.map-loader-card h3 { margin-bottom: 0.45rem; color: #0f5f2a; }
.map-floating-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  width: min(360px, calc(100% - 36px));
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(16,77,36,0.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(8, 28, 16, 0.18);
  backdrop-filter: blur(10px);
}
.map-floating-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f6f4;
  color: #173523;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
.map-floating-close:hover { background: #e8efea; }
.map-floating-body { padding: 1rem 1rem 1rem; }
.station-floating-head { padding-right: 2.2rem; margin-bottom: 0.85rem; }
.station-floating-head h3 { margin: 0 0 0.18rem; color: #0f5f2a; font-size: 1.08rem; }
.station-floating-head p { margin: 0; color: #60756a; font-size: 0.93rem; }
.station-floating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.station-floating-stat {
  background: #f7fbf8;
  border: 1px solid rgba(16,77,36,0.08);
  border-radius: 14px;
  padding: 0.72rem 0.82rem;
}
.station-floating-stat .label {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f8478;
  margin-bottom: 0.18rem;
}
.station-floating-stat .value {
  display: block;
  font-weight: 700;
  color: #173523;
  font-size: 0.95rem;
}
.station-floating-contact {
  color: #344a3b;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.station-floating-contact a {
  color: #0f6b31;
  font-weight: 700;
}
.station-floating-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.station-pill {
  background: #edf8ef;
  color: #145a2b;
  border: 1px solid rgba(70, 209, 10, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.station-map-aside { display: block; }
.station-summary-card {
  padding: 1.25rem 1.2rem;
  position: sticky;
  top: 110px;
}
.station-summary-card h3 { margin-top: 0; margin-bottom: 0.85rem; color: #103f24; }
.station-region-list { list-style: none; padding: 0; margin: 0; }
.station-region-list li {
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(10, 31, 18, 0.08);
  color: #31493a;
  line-height: 1.55;
}
.station-region-list li:last-child { border-bottom: 0; }
.summary-tip { margin-top: 1rem; color: #5f6f66; font-size: 0.94rem; }
.summary-tip code {
  background: #f1f5f2;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  color: #234633;
}
.google-map-disclaimer {
  margin-top: 0.85rem;
  color: #617369;
  font-size: 0.86rem;
}

.team-intro { max-width: 900px; color: var(--muted); margin-top: 10px; }
.management-grid { display: grid; gap: 32px; margin-top: 24px; }
.management-profile-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}
.management-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 23, 15, 0.16);
}
.management-profile-image {
  overflow: hidden;
  border-radius: 18px;
  background: #f5f7f5;
  border: 1px solid #e6ece6;
}
.management-profile-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.management-profile-card:hover .management-profile-image img { transform: scale(1.03); }
.management-profile-content h3 { margin: 8px 0 14px; font-size: 1.55rem; color: var(--dark); }
.management-role {
  display: inline-block;
  background: rgba(30, 168, 58, 0.1);
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.management-profile-content p { margin-bottom: 14px; color: var(--muted); line-height: 1.75; }

@media (max-width: 1080px) {
  .feature-grid,
  .card-grid.four,
  .card-grid.three,
  .station-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .two-col,
  .contact-layout,
  .service-detail,
  .station-map-shell { grid-template-columns: 1fr; }
  .network-ticker { grid-template-columns: 1fr; }
  .ticker-label { text-align: center; }
  .station-summary-card { position: static; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 94px;
    left: 4%;
    right: 4%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .main-nav.open { display: flex; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .contact-form .form-row,
  .stats-card { grid-template-columns: 1fr; }
  .brand h1 { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .ghana-google-map-wrap,
  .ghana-google-map { min-height: 500px; height: 500px; }
  .station-floating-grid { grid-template-columns: 1fr 1fr; }
  .map-floating-card {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 12px;
  }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .feature-grid,
  .card-grid.three,
  .card-grid.four,
  .station-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-slider,
  .slide { min-height: 70vh; }
  .hero-content { padding: 60px 0; }
  .brand span { display: none; }
  .station-floating-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .ghana-google-map-wrap,
  .ghana-google-map { min-height: 440px; height: 440px; }
}

/* --- Live Embedded Locations Section --- */
.station-locations-live-embed .section-head p {
  max-width: 760px;
}

.station-live-embed-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 400px);
  gap: 1.5rem;
  align-items: start;
}

.station-live-map-card,
.station-live-directory-card {
  background: #ffffff;
  border: 1px solid rgba(15, 66, 30, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(10, 32, 18, 0.08);
}

.station-live-map-card {
  padding: 1rem;
}

.station-live-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.25rem 0.25rem 1rem;
}

.station-live-title {
  font-size: 1.35rem;
  line-height: 1.2;
  color: #103f24;
  margin-bottom: 0.35rem;
}

.station-live-note {
  color: var(--muted);
}

.station-live-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.station-live-metric-chip {
  min-width: 96px;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdfb, #f1f7f2);
  border: 1px solid #e7efe8;
  text-align: center;
}

.station-live-metric-chip strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  color: #0f5f2a;
}

.station-live-metric-chip span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.station-live-viewer {
  position: relative;
  min-height: 640px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(7, 104, 50, 0.08);
  background: linear-gradient(180deg, #eef8f1 0%, #ffffff 100%);
}

.station-live-frame {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

.station-live-overlay {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: min(350px, calc(100% - 2rem));
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 66, 30, 0.08);
  box-shadow: 0 18px 45px rgba(8, 28, 16, 0.20);
}

.station-live-overlay-body {
  padding: 1rem;
}

.station-live-head h3 {
  color: #0f5f2a;
  margin-bottom: 0.2rem;
}

.station-live-head p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.station-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.station-live-stat {
  background: #f6faf7;
  border: 1px solid rgba(7, 104, 50, 0.08);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
}

.station-live-stat .label {
  display: block;
  font-size: 0.74rem;
  color: #698071;
  margin-bottom: 0.18rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.station-live-stat .value {
  display: block;
  font-weight: 700;
  color: #153523;
  font-size: 0.94rem;
}

.station-live-contact {
  margin: 0.65rem 0 0.85rem;
  color: var(--text);
}

.station-live-contact a {
  color: #0f6b31;
  font-weight: 700;
}

.station-live-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.station-live-pill {
  background: #edf8ef;
  color: #145a2b;
  border: 1px solid rgba(70, 209, 10, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.station-live-directory-card {
  padding: 1.15rem;
  position: sticky;
  top: 110px;
}

.station-live-directory-head h3 {
  color: #103f24;
  margin-bottom: 0.35rem;
}

.station-live-directory-head p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.station-live-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.station-live-filter-chip {
  border: 1px solid rgba(30, 168, 58, 0.16);
  background: #f8fbf8;
  color: #18472a;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.station-live-filter-chip:hover,
.station-live-filter-chip.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border-color: transparent;
}

.station-live-list {
  display: grid;
  gap: 0.85rem;
  max-height: 620px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.station-live-list::-webkit-scrollbar {
  width: 8px;
}

.station-live-list::-webkit-scrollbar-thumb {
  background: rgba(18, 119, 40, 0.18);
  border-radius: 999px;
}

.station-live-item {
  width: 100%;
  border: 1px solid rgba(15, 66, 30, 0.08);
  background: #ffffff;
  border-radius: 18px;
  padding: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: 0.22s ease;
  box-shadow: 0 10px 24px rgba(8, 22, 13, 0.04);
}

.station-live-item:hover,
.station-live-item.active {
  transform: translateY(-2px);
  border-color: rgba(30, 168, 58, 0.22);
  box-shadow: 0 14px 28px rgba(10, 32, 18, 0.08);
}

.station-live-item.active {
  background: linear-gradient(180deg, #f9fdf9 0%, #eef8ef 100%);
}

.station-live-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.station-live-item h4 {
  font-size: 1rem;
  line-height: 1.25;
  color: #14321f;
}

.station-live-item p {
  color: var(--muted);
}

.station-live-region {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 168, 58, 0.1);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.station-live-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.station-live-item-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: #f3f7f3;
  color: #4f6255;
  font-size: 0.78rem;
  font-weight: 600;
}

.station-live-empty {
  border: 1px dashed rgba(15, 66, 30, 0.12);
  border-radius: 18px;
  padding: 1.25rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1180px) {
  .station-live-embed-shell {
    grid-template-columns: 1fr;
  }

  .station-live-directory-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .station-live-toolbar {
    flex-direction: column;
  }

  .station-live-metrics {
    justify-content: flex-start;
  }

  .station-live-viewer,
  .station-live-frame {
    min-height: 520px;
    height: 520px;
  }

  .station-live-list {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .station-live-grid {
    grid-template-columns: 1fr;
  }

  .station-live-overlay {
    top: auto;
    bottom: 1rem;
    right: 0.75rem;
    width: calc(100% - 1.5rem);
  }

  .station-live-viewer,
  .station-live-frame {
    min-height: 460px;
    height: 460px;
  }

  .station-live-item-top {
    flex-direction: column;
  }
}


/* UX refresh: station network ticker, icon station map, station directory and contact map */
.network-ticker {
  position: relative;
  z-index: 5;
}

.station-icon-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 420px);
  gap: 1.6rem;
  align-items: stretch;
  margin-top: 2rem;
}

.station-map-toolbar.compact {
  padding: 0.35rem 0.2rem 1rem;
}

.station-map-visual-card {
  overflow: hidden;
}

.ghana-station-map {
  position: relative;
  min-height: 660px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(70, 209, 10, 0.14), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(240, 205, 29, 0.18), transparent 34%),
    linear-gradient(145deg, #f6fff7 0%, #e8f7ec 48%, #ffffff 100%);
  border: 1px solid rgba(16, 77, 36, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.75);
}

.ghana-station-map::after {
  content: "GHANA STATION NETWORK";
  position: absolute;
  right: 1rem;
  bottom: 0.9rem;
  color: rgba(15, 95, 42, 0.22);
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: clamp(0.8rem, 1.8vw, 1.15rem);
}

.ghana-map-art {
  position: absolute;
  inset: 5% 19% 5% 10%;
  display: grid;
  place-items: center;
  opacity: 0.95;
  pointer-events: none;
}

.ghana-map-art svg {
  width: min(78%, 430px);
  height: min(92%, 620px);
  filter: drop-shadow(0 22px 48px rgba(13, 76, 31, 0.16));
}

.ghana-shape {
  fill: url(#mapFill);
  stroke: rgba(18, 119, 40, 0.48);
  stroke-width: 5;
}

.ghana-river {
  fill: none;
  stroke: rgba(30, 168, 58, 0.28);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
}

.map-pin-layer {
  position: absolute;
  inset: 0;
}

.station-map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.25s ease;
}

.station-map-pin:hover,
.station-map-pin.active {
  transform: translate(-50%, -50%) scale(1.05);
  z-index: 4;
}

.pin-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-red), #b90913);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 13px 26px rgba(228, 32, 42, 0.28);
  border: 3px solid #fff;
}

.station-map-pin.active .pin-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 15px 34px rgba(30, 168, 58, 0.35);
}

.pin-label {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 77, 36, 0.1);
  color: #153923;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-weight: 800;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(8, 28, 16, 0.12);
}

.selected-station-card {
  background: linear-gradient(180deg, #ffffff, #f6fbf7);
  border: 1px solid rgba(16,77,36,0.1);
  border-radius: 20px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 14px 34px rgba(10, 32, 18, 0.08);
}

.selected-station-card h4 {
  color: var(--primary-dark);
  font-size: 1.14rem;
  margin-bottom: 0.2rem;
}

.selected-station-card p {
  margin: 0.15rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.selected-station-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 0.85rem 0;
}

.selected-station-stat {
  background: #fff;
  border: 1px solid rgba(16,77,36,0.08);
  border-radius: 14px;
  padding: 0.72rem 0.82rem;
}

.selected-station-stat span {
  display: block;
  color: #6f8478;
  font-size: 0.74rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.selected-station-stat strong {
  color: var(--dark);
  font-size: 0.95rem;
}

.selected-station-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.selected-station-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-weight: 800;
  font-size: 0.82rem;
  background: var(--primary);
  color: #fff;
}

.selected-station-actions a.secondary {
  background: #edf8ef;
  color: var(--primary-dark);
}

.station-directory-enhanced .station-live-list {
  max-height: 360px;
}

.station-grid-expanded .station-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.station-grid-expanded .station-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(10, 23, 15, 0.16);
}

.station-region-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(228, 32, 42, 0.08);
  color: #b90913;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-map-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 77, 36, 0.1);
  box-shadow: 0 18px 48px rgba(10, 32, 18, 0.12);
  background: #fff;
}

.contact-map-card iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
  display: block;
}

@media (max-width: 1040px) {
  .station-icon-map-shell {
    grid-template-columns: 1fr;
  }
  .station-directory-enhanced .station-live-list {
    max-height: 440px;
  }
}

@media (max-width: 760px) {
  .network-ticker {
    grid-template-columns: 1fr;
  }
  .ticker-label {
    text-align: center;
    padding: 12px 18px;
  }
  .ghana-station-map {
    min-height: 560px;
  }
  .ghana-map-art {
    inset: 6% 5% 6% 0;
  }
  .pin-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .pin-label {
    font-size: 0.72rem;
    padding: 0.28rem 0.52rem;
  }
  .selected-station-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-card iframe {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .station-map-pin {
    flex-direction: column;
    gap: 0.25rem;
  }
  .ghana-station-map {
    min-height: 520px;
  }
  .pin-label {
    max-width: 94px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* Attached Ghana map image replacement for index page */
.ghana-station-map.image-map {
  min-height: unset;
  aspect-ratio: 1122 / 1402;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

.ghana-station-map.image-map::after {
  display: none;
}

.ghana-station-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.ghana-station-map.image-map .map-pin-layer {
  z-index: 5;
}

.ghana-station-map.image-map .station-map-pin {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(30, 168, 58, 0.01);
  opacity: 0.01;
}

.ghana-station-map.image-map .station-map-pin .pin-icon,
.ghana-station-map.image-map .station-map-pin .pin-label {
  display: none;
}

.ghana-station-map.image-map .station-map-pin:hover,
.ghana-station-map.image-map .station-map-pin.active {
  opacity: 1;
  background: rgba(30, 168, 58, 0.16);
  outline: 3px solid rgba(30, 168, 58, 0.28);
}

@media (max-width: 980px) {
  .ghana-station-map.image-map {
    max-height: none;
  }
}


/* Icon card update for About Operating Philosophy and Stations Experience */
.operating-philosophy-section .section-head p,
.station-experience-section .section-head p {
  max-width: 840px;
}

.icon-card-grid {
  align-items: stretch;
}

.icon-feature-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 77, 36, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.icon-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30, 168, 58, 0.35);
  box-shadow: 0 20px 48px rgba(10, 23, 15, 0.16);
}

.icon-feature-media {
  position: relative;
  padding: 16px 16px 0;
  background:
    radial-gradient(circle at top left, rgba(240, 205, 29, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(228, 32, 42, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4faf5 100%);
}

.icon-feature-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
}

.icon-feature-content {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(16, 77, 36, 0.08);
  flex: 1;
}

.icon-feature-content h3 {
  position: relative;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 1.08rem;
}

.icon-feature-content h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow), var(--accent-red));
}

.icon-feature-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

@media (max-width: 620px) {
  .icon-card-grid {
    grid-template-columns: 1fr;
  }

  .icon-feature-media {
    padding: 14px 14px 0;
  }

  .icon-feature-content {
    padding: 18px 18px 22px;
  }
}


/* --- Final hosting polish --- */
.network-ticker {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.station-network-ticker .ticker-label {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.ticker-move {
  animation-duration: 46s;
}

.hero-slider .slide {
  background-position: center right;
}

.hero-slider .container.hero-content {
  width: min(92%, 620px);
  margin-left: max(4%, calc((100vw - var(--container)) / 2));
  margin-right: auto;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(4, 18, 10, 0.78), rgba(4, 18, 10, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(8px);
}

.hero-slider .hero-content h2,
.hero-slider .hero-content p {
  max-width: 100%;
}

.main-nav a:focus-visible,
.btn:focus-visible,
.station-map-pin:focus-visible,
.station-live-item:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(240, 205, 29, 0.85);
  outline-offset: 4px;
}

.contact-form button { cursor: pointer; }

@media (max-width: 1080px) {
  .network-ticker { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero-slider .container.hero-content {
    width: min(92%, 620px);
    margin: 0 auto;
    padding: 26px;
  }
}
