/* ===================================================================
   LAYOUT.CSS — SpeedMaxNet (Magazine-Style Optimized)
   Container · Navigation · Hero · Sections · Grid Systems
=================================================================== */

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Ultra-wide: cap at 1280px on screens ≥1440px */
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background var(--trans-base),
    box-shadow var(--trans-base);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: var(--shadow-lg);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1440px) {
  .nav-container {
    max-width: 1280px;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  flex-shrink: 0;
}

.logo-mark img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-img {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--trans-fast);
}

.nav-logo:hover .logo-img,
.footer-logo:hover .logo-img {
  opacity: 0.85;
}

.footer-logo .logo-img {
  height: 52px;
}

.footer-logo {
  display: inline-block;
}

.logo-text {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.logo-main {
  color: var(--white);
}
.logo-accent {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--trans-fast);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-base);
}

.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--trans-fast);
}

.nav-phone:hover {
  color: var(--green);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans-base);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-links a {
  font-size: var(--text-lg);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--trans-fast);
}
.mobile-links a:hover {
  color: var(--green);
}

/* ── HERO LAYOUT — Two-column magazine split (OPTIMIZED) ────────── */
.hero {
  position: relative;
  height: auto;
  min-height: 100svh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 60px;
  overflow: hidden;
}

#fiber-animation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.75;
}

/* ── LEFT COLUMN ── */
.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 48px 64px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--white);
  margin: 16px 0 20px;
}

.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3 {
  display: block;
}

.hero-title .line-3.highlight {
  color: var(--green);
  text-shadow: 0 0 40px rgba(141, 198, 63, 0.4);
}

.hero-title .text-green {
  text-shadow: 0 0 40px rgba(141, 198, 63, 0.4);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 16px;
}

.hero-tagline .text-green,
.hero-tagline .text-blue {
  font-weight: 800;
}

.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Stat strip — now in right column */
.hero-stat-strip {
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  padding: 12px 8px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  border-radius: 12px;
}

.hero-stat-strip-right {
  width: 100%;
  max-width: 320px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  flex: 1;
  text-align: center;
}

.hero-stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: inline;
}

.hero-stat-item > div {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-star {
  color: var(--green);
  font-size: 0.75rem;
  display: block;
  margin-bottom: 4px;
}

.hero-stat-item:nth-child(even) .stat-star {
  color: var(--blue);
}

.hero-stat-item:nth-child(even) .stat-value {
  color: var(--blue);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.hero-stat-item:nth-child(even) .stat-suffix {
  color: var(--blue);
}

.stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  white-space: nowrap;
}

.hero-stat-divider {
  display: none;
}

/* ── RIGHT COLUMN ── */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 64px 48px 40px;
  gap: 20px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* Orbit ring system */
.hero-orbit {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(141, 198, 63, 0.15);
  animation: orbitSpin 20s linear infinite;
}

.orbit-ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(141, 198, 63, 0.12);
}

.orbit-ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(0, 212, 255, 0.12);
  animation-duration: 14s;
  animation-direction: reverse;
}

/* Speed badge — the central element */
.speed-badge-hero {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-xl);
  width: 160px;
  height: 160px;
  line-height: 1;
  box-shadow: var(--shadow-glow-green);
  animation: heroGlow 3s ease-in-out infinite;
}

.speed-badge-hero .speed-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.speed-badge-hero .speed-unit {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.speed-badge-hero .speed-label {
  font-size: 10px;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Orbit nodes */
.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.orbit-node span {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  white-space: nowrap;
}

.orbit-node-top {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-node-right {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.orbit-node-bottom {
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-node-left {
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Keep old elements from breaking */
.hero-stats {
  display: none;
}
.scroll-indicator {
  display: none;
}

/* Orbit spin animation */
@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── HERO RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: auto;
  }

  .hero-left {
    padding: 100px 24px 32px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hero-stat-strip {
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .hero-stat-strip-right {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
  }

  .hero-right {
    padding: 32px 24px;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .hero-orbit {
    width: 200px;
    height: 200px;
  }

  .speed-badge-hero {
    width: 100px;
    height: 100px;
  }

  .speed-badge-hero .speed-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
  }

  .hero-left {
    padding: 80px 16px 24px;
  }

  .hero-stat-strip {
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .hero-stat-strip-right {
    max-width: 100%;
  }

  .hero-stat-item {
    padding: 10px 6px;
    flex: 1 1 45%;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    padding: 24px 16px 32px;
    gap: 20px;
  }

  .hero-orbit {
    width: 180px;
    height: 180px;
  }

  .speed-badge-hero {
    width: 90px;
    height: 90px;
  }

  .speed-badge-hero .speed-number {
    font-size: 2.25rem;
  }

  .speed-badge-hero .speed-unit {
    font-size: var(--text-sm);
  }

  .speed-badge-hero .speed-label {
    font-size: 8px;
  }

  .orbit-node {
    padding: 4px 8px;
    gap: 2px;
  }

  .orbit-node span {
    font-size: 7px;
    line-height: 1.2;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

/* ── HERO BADGE ─────────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(141, 198, 63, 0.12);
  border: 1px solid rgba(141, 198, 63, 0.3);
  color: var(--green);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  width: fit-content;
}

/* ── SCROLL INDICATOR ─────────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color var(--trans-base);
  z-index: 10;
}

.scroll-indicator:hover {
  color: var(--green);
}

.scroll-indicator svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 16px;
  }
}

/* ── SECTION HEADER (OPTIMIZED) ─────────────────────────────────── */
.section-header {
  margin-bottom: 40px;
}

.section-header.text-center .section-subtitle {
  margin-top: 16px;
}

.section-header .section-title {
  margin-top: 12px;
}

/* ── SERVICES GRID LAYOUT (OPTIMIZED) ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.service-card.featured {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card.featured {
    grid-column: span 1;
  }
}

/* ── PACKAGES GRID LAYOUT (OPTIMIZED) ───────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 0;
  min-height: 200px;
}

.audience-selector {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 24px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.packages-footer {
  margin-top: 40px;
  text-align: center;
  color: var(--gray-500);
  font-size: var(--text-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── ABOUT/TIMELINE LAYOUT (OPTIMIZED) ────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-header .about-lead {
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 8px;
}

.why-header p {
  color: var(--gray-600);
  max-width: 380px;
  margin-top: 16px;
  line-height: 1.7;
}

.history-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.history-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 12px;
}

.history-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: var(--text-sm);
}

.history-stats {
  display: flex;
  gap: 20px;
}

.hist-stat {
  display: flex;
  flex-direction: column;
}

.hist-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--green);
}

.hist-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.principles-heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 24px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.timeline-item + .timeline-item {
  border-top: 1px solid var(--gray-200);
}

/* ── COVERAGE LAYOUT (OPTIMIZED) ────────────────────────────────── */
.coverage-section {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.coverage-section .container {
  max-width: 100%;
  box-sizing: border-box;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 100%;
}

.coverage-info {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

.coverage-map-wrap {
  min-width: 0;
  max-width: 100%;
}

.coverage-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.map-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  padding: 32px;
  position: relative;
}

.map-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#kenya-map {
  width: 100%;
  height: auto;
  max-height: 500px;
}

/* ── TESTIMONIALS LAYOUT (OPTIMIZED) ────────────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.testimonials-wrapper {
  margin-top: 48px;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px 4px;
  margin: 0 -4px;
}

.testimonials-track::-webkit-scrollbar {
  height: 6px;
}

.testimonials-track::-webkit-scrollbar-track {
  background: var(--gray-200);
  border-radius: var(--radius-full);
}

.testimonials-track::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: var(--radius-full);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--trans-base);
}

.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.slider-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: var(--radius-full);
}

@media (max-width: 768px) {
  .testimonials-track {
    gap: 16px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

/* ── CONTACT LAYOUT (OPTIMIZED) ─────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info-wrap {
  padding-right: 32px;
}

.contact-intro {
  color: var(--gray-600);
  margin-bottom: 32px;
  font-size: var(--text-lg);
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all var(--trans-base);
  text-decoration: none;
}

.contact-method-card:hover {
  border-color: var(--green);
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.contact-method-card.whatsapp {
  background: #25d366;
  color: var(--white);
}

.contact-method-card.whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
}

.contact-method-card.whatsapp .method-label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-method-card.whatsapp .method-value {
  color: var(--white);
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(141, 198, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-method-card.whatsapp .method-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.method-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.method-label {
  font-size: var(--text-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.method-value {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--black);
}

.method-arrow {
  color: var(--gray-400);
  transition: transform var(--trans-base);
}

.contact-method-card:hover .method-arrow {
  transform: translateX(4px);
  color: var(--green);
}

.contact-method-card.whatsapp .method-arrow {
  color: rgba(255, 255, 255, 0.7);
}

.contact-method-card.whatsapp:hover .method-arrow {
  color: var(--white);
}

.contact-quick-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-info-item span {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.contact-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image-card {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-200);
  position: relative;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-400);
}

.contact-image-placeholder span {
  font-size: var(--text-lg);
  font-weight: 600;
}

.contact-image-placeholder small {
  font-size: var(--text-xs);
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info-wrap {
    padding-right: 0;
  }
  .contact-image-wrap {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-method-card {
    padding: 16px 20px;
  }
  .method-icon {
    width: 48px;
    height: 48px;
  }
  .contact-quick-info {
    flex-direction: column;
    gap: 12px;
  }
}

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

/* ── FOOTER LAYOUT (OPTIMIZED) ──────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--blue) 50%,
    var(--green) 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-sm);
  transition: color var(--trans-fast);
}
.footer-legal a:hover {
  color: var(--green);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--green);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-list a:hover {
  color: var(--green);
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--trans-base);
}

.footer-social a:hover {
  background: var(--green);
  color: var(--black);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 0 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .audience-selector {
    flex-wrap: wrap;
    justify-content: center;
  }
  .history-stats {
    gap: 12px;
  }
  .hist-num {
    font-size: var(--text-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .coverage-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .coverage-map-wrap {
    order: -1;
  }
  .coverage-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .coverage-layout {
    gap: 24px;
  }

  .coverage-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .cov-stat {
    flex: 1 1 80px;
    text-align: center;
    min-width: 70px;
  }

  .cov-number {
    font-size: 1.5rem;
  }

  .cov-label {
    font-size: 10px;
  }

  .map-card {
    padding: 12px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .map-header {
    justify-content: center;
    gap: 8px;
    font-size: 10px;
    flex-wrap: wrap;
  }

  #kenya-map {
    max-height: 280px;
    width: 100%;
    height: auto;
  }

  .coverage-section {
    overflow-x: hidden;
  }

  .coverage-info {
    text-align: center;
  }

  .coverage-info p {
    font-size: 14px;
  }

  .notify-me {
    padding: 16px;
    margin-top: 24px;
  }

  .notify-me p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .coverage-checker {
    flex-direction: column;
  }

  .checker-input-wrap {
    min-width: 100%;
  }

  .coverage-stats {
    gap: 16px;
  }

  .cov-stat {
    flex: 1 1 70px;
  }

  .cov-number {
    font-size: 1.5rem;
  }

  .cov-label {
    font-size: 10px;
  }

  .notify-me {
    padding: 16px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-form .btn-primary {
    width: 100%;
  }

  #kenya-map {
    max-height: 280px;
  }
}

/* ── SECTION PADDING (OPTIMIZED) ────────────────────────────────── */
.section-pad {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 64px 0;
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 32px 0;
  }
}
