/* ============================================================
   DYNASTY TELECOM — STYLESHEET
   Fonts: Inter (body), Montserrat (headings)
   Colors: Primary #00007D | Accent #258410 | Secondary #BBBABF
   ============================================================ */

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #1a1a2e;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.2;
}

p { line-height: 1.7; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ─── Layout Helpers ────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ─── Typography ────────────────────────────────────────── */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #258410;
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #00007D;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.section-title.center { text-align: center; }

.section-title-underline::after,
.section-title-underline-center::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #258410, #50bf45);
  border-radius: 2px;
  margin-top: 0.75rem;
}

.section-title-underline-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.625rem 1.5rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
  background-color: #258410;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: #1e6e0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,132,16,0.35);
}

.btn-secondary {
  background-color: #00007D;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: #01182a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1,31,55,0.35);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline:hover {
  background-color: #ffffff;
  color: #00007D;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  border: 2px solid #00007D;
  color: #00007D;
}
.btn-outline-dark:hover {
  background-color: #00007D;
  color: #ffffff;
}

.btn-outline-green {
  background-color: transparent;
  border: 2px solid #258410;
  color: #258410;
}
.btn-outline-green:hover {
  background-color: #258410;
  color: #ffffff;
}

/* ─── Navbar ────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #4b5563;
  transition: color 0.2s, background-color 0.2s;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.nav-links a:hover {
  color: #00007D;
  background-color: #e6edf2;
}

.nav-cta {
  background-color: #00007D;
  color: #ffffff;
}
.nav-cta:hover {
  background-color: #01182a !important;
  color: #ffffff !important;
  background-color: #01182a;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #00007D;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  padding: 1rem 1.5rem;
  gap: 4px;
}

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

.mobile-menu a {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: #4b5563;
  transition: color 0.2s, background-color 0.2s;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.mobile-menu a:hover {
  color: #ffffff;
  background-color: #00007D;
}

.mobile-menu .btn-primary {
  margin-top: 0.5rem;
  justify-content: center;
}

/* ─── Hero ──────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,31,55,0.72) 0%, rgba(1,31,55,0.45) 60%, rgba(1,15,28,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero-text-backdrop {
  background: rgba(1,31,55,0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-left: 3px solid #258410;
  border-radius: 0 6px 6px 0;
  padding: 2.5rem;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7dd55f;
  margin-bottom: 1rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.hero-title .accent { color: #7dd55f; }

.hero-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero-highlights li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #258410;
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.3);
}

.hero-scroll-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scroll-dot::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

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

/* ─── About ─────────────────────────────────────────────── */
#about { background-color: #ffffff; }

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

.about-strengths {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-strengths li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
}

.about-strengths li .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #258410;
}

/* SVG Network Graphic */
.network-graphic {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border-radius: 12px;
  overflow: hidden;
}

.network-graphic-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00007D 0%, #01182a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-graphic-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(#ffffff 1px, transparent 1px),
    linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 40px 40px;
}

.network-graphic svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.network-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  background-color: #258410;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', system-ui, sans-serif;
  z-index: 2;
}

/* Network SVG animations */
.network-node { animation: networkPulse 2.5s ease-in-out infinite; }
.network-node:nth-child(2) { animation-delay: 0.4s; }
.network-node:nth-child(3) { animation-delay: 0.8s; }
.network-node:nth-child(4) { animation-delay: 1.2s; }
.network-node:nth-child(5) { animation-delay: 1.6s; }

@keyframes networkPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.network-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawLine 3s ease-in-out infinite;
}
.network-line:nth-child(even) { animation-delay: 1s; }

@keyframes drawLine {
  0%   { stroke-dashoffset: 300; opacity: 0.2; }
  50%  { stroke-dashoffset: 0; opacity: 0.8; }
  100% { stroke-dashoffset: -300; opacity: 0.2; }
}

.orbit-ring {
  animation: orbitSpin 18s linear infinite;
  transform-origin: 50% 50%;
}
.orbit-ring-2 {
  animation: orbitSpin 28s linear infinite reverse;
  transform-origin: 50% 50%;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── Partners Carousel ─────────────────────────────────── */
#partners {
  padding: 3.5rem 0;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.partners-header {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.partners-header p {
  font-size: 0.8rem;
  color: #9ca3af;
  max-width: 360px;
  line-height: 1.6;
}

.partner-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.partner-carousel-wrap::before,
.partner-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.partner-carousel-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.partner-carousel-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff 0%, transparent 100%);
}

.partner-track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 5rem;
  animation: partnerScroll 42s linear infinite;
  width: max-content;
}

.partner-carousel-wrap:hover .partner-track {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  flex-shrink: 0;
  min-width: 150px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #f8f9fc;*/
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 0 1.25rem;
  /*filter: grayscale(100%) opacity(0.55);*/
  transition: filter 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: default;
  user-select: none;
}

.partner-card:hover {
  filter: grayscale(0%) opacity(1);
  border-color: #258410;
  background: #ffffff;
}

.partner-card span {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00007D;
  white-space: nowrap;
  text-align: center;
  letter-spacing: 0.01em;
}

.partner-card img {max-height: 100%;}

/* ─── Services ──────────────────────────────────────────── */
#services { background-color: #f5f7fa; }

.services-header { text-align: center; margin-bottom: 3.5rem; }

.services-header p {
  font-size: 0.85rem;
  color: #6b7280;
  max-width: 500px;
  margin: 1.25rem auto 0;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid #e9edf2;
  border-bottom: 3px solid transparent;
  border-radius: 10px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-color 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(1,31,55,0.12);
  border-bottom-color: #258410;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #e6edf2;
  color: #00007D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon {
  background-color: #258410;
  color: #ffffff;
}

.service-card h3 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #00007D;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.service-card p {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.65;
}

.service-card .learn-more {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #258410;
}

/* SVG icon helper */
.icon-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ─── Why Choose ────────────────────────────────────────── */
#why-choose {
  background-color: #00007D;
  position: relative;
  overflow: hidden;
}

#why-choose::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(#ffffff 1px, transparent 1px),
    linear-gradient(90deg, #ffffff 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  font-family: 'Montserrat', system-ui, sans-serif;
  margin-bottom: 1.25rem;
}

.why-body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.stat-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1rem;
}

.stat-chip .value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #7dd55f;
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-chip .label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.reason-item:hover { border-color: rgba(37,132,16,0.4); }

.reason-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #258410;
  stroke: #258410;
  fill: none;
  stroke-width: 1.8;
}

.reason-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ─── Stats ─────────────────────────────────────────────── */
#stats { background-color: #f5f7fa; }

.stats-header { text-align: center; margin-bottom: 3rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e9edf2;
  border-radius: 10px;
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.stat-card:hover { border-color: rgba(1,31,55,0.2); }

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #e6edf2;
  color: #00007D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #00007D;
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-value span.accent { color: #258410; }

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #374151;
  font-family: 'Montserrat', system-ui, sans-serif;
  margin-bottom: 0.4rem;
}

.stat-sub {
  font-size: 0.72rem;
  color: #9ca3af;
  line-height: 1.5;
}

/* ─── Companies ─────────────────────────────────────────── */
#companies { background-color: #ffffff; }

.companies-header { margin-bottom: 3rem; }

.companies-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.companies-header-inner p {
  font-size: 0.82rem;
  color: #6b7280;
  max-width: 750px;
  line-height: 1.7;
}

.companies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.company-card {
  border: 1px solid #e9edf2;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.company-card:hover {
  box-shadow: 0 8px 32px rgba(1,31,55,0.12);
  transform: translateY(-4px);
}

.company-card-top {
  height: 4px;
}

.company-card-body { padding: 2rem; }

.company-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.company-abbr {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  font-family: 'Montserrat', system-ui, sans-serif;
  flex-shrink: 0;
}

.company-name {
  font-size: 1rem;
  font-weight: 900;
  color: #00007D;
  font-family: 'Montserrat', system-ui, sans-serif;
  margin-bottom: 0.15rem;
}

.company-focus {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #258410;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.company-desc {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── Careers ───────────────────────────────────────────── */
#career { padding: 3rem 0; background-color: #f5f7fa; }

.career-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e9edf2;
  background: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr;
}

.career-accent-col {
  width: 120px;
  min-height: 140px;
  background-color: #00007D;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-accent-col svg {
  width: 44px;
  height: 44px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-body {
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.career-text .career-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: #00007D;
  font-family: 'Montserrat', system-ui, sans-serif;
  margin: 0.4rem 0 0.6rem;
}

.career-text p { font-size: 0.82rem; color: #6b7280; line-height: 1.65; max-width: 420px; }

/* ─── Contact / CTA ─────────────────────────────────────── */
#contact {
  background-color: #00007D;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.contact-inner { position: relative; z-index: 1; text-align: center; }

.contact-title {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #ffffff;
  font-family: 'Montserrat', system-ui, sans-serif;
  margin-bottom: 1.25rem;
}

.contact-body {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.contact-info-item:hover { color: #ffffff; }

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact Form */
.contact-form-box {
  margin-top: 4rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: left;
}

.contact-form-box h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', system-ui, sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  font-family: 'Montserrat', system-ui, sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: #ffffff;
  font-size: 0.85rem;
  font-family: 'Inter', system-ui, sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group textarea:focus { border-color: #258410; }

.form-group textarea { resize: none; }

.form-submit { width: 100%; justify-content: center; padding: 0.75rem 1.5rem; }

/* ─── Footer ────────────────────────────────────────────── */
#site-footer {
  background-color: #00007D;
  color: #ffffff;
}

.footer-accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #00007D 0%, #258410 50%, #BBBABF 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.footer-brand .footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /*filter: brightness(0) invert(1);*/
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: #BBBABF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Montserrat', system-ui, sans-serif;
  transition: background-color 0.2s;
}

.footer-social a:hover { background-color: #258410; color: #ffffff; }

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #BBBABF;
  font-family: 'Montserrat', system-ui, sans-serif;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Montserrat', system-ui, sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.footer-services-col ul li a {
  text-transform: none;
  font-size: 0.78rem;
  font-weight: 400;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0;
}

.footer-col ul li a:hover { color: #ffffff; }

.footer-chevron {
  display: inline-block;
  width: 13px;
  height: 13px;
  stroke: #258410;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.footer-col ul li a:hover .footer-chevron { transform: translateX(3px); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.9rem;
  transition: color 0.2s;
}

.footer-contact-item:hover { color: #ffffff; }

.footer-contact-icon {
  width: 15px;
  height: 15px;
  stroke: #258410;
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Scroll-to-top ─────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background-color: #258410;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover { background-color: #1e6e0d; }

#scroll-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .hero-text-backdrop { padding: 1.75rem; }
  .hero-cta-row { flex-direction: column; }
  .companies-grid { grid-template-columns: 1fr; }
  .career-card { grid-template-columns: 1fr; }
  .career-accent-col { width: 100%; min-height: 80px; }
  .career-body { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-grid .network-graphic { order: -1; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-chips { grid-template-columns: 1fr 1fr; }
  .section-padding { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .contact-form-box { padding: 1.75rem; }
  .companies-header-inner { flex-direction: column; align-items: flex-start; }
}
