@import "variables.css";

/* Color Utility Classes */
.color-orange-light {
  color: var(--orange-light);
}
.bg-orange-light {
  background-color: var(--orange-light);
}

.color-orange {
  color: var(--orange);
}
.bg-orange {
  background-color: var(--orange);
}

.color-blue {
  color: var(--blue);
}
.bg-blue {
  background-color: var(--blue);
}

.color-blue-light {
  color: var(--blue-light);
}
.bg-blue-light {
  background-color: var(--blue-light);
}

.color-teal {
  color: var(--teal);
}
.bg-teal {
  background-color: var(--teal);
}

.color-white {
  color: var(--white);
}
.bg-white {
  background-color: var(--white);
}

.color-off-white {
  color: var(--off-white);
}
.bg-off-white {
  background-color: var(--off-white);
}

.color-gray-light {
  color: var(--gray-light);
}
.bg-gray-light {
  background-color: var(--gray-light);
}

.color-gray-text {
  color: var(--gray-text);
}
.bg-gray-text {
  background-color: var(--gray-text);
}

.color-border {
  color: var(--border);
}
.bg-border {
  background-color: var(--border);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}
body {
  font-family: "Inter", sans-serif;
  color: #1a2332;
  background: var(--white);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px;
  height: 70px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img {
  max-height: 60px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--blue) !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-light);
}

.nav-links a.active {
  border-bottom: 2px solid var(--orange-light);
  border-radius: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.15s;
  flex-shrink: 0;
}

.nav-cta i {
  font-size: 13px;
}

.nav-cta:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: 0.3s;
}

nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* content sits above bottom strips */
  padding: 0;
  background: none;
  text-align: left;
}

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url(../images/hero-v2.jpg) center / cover no-repeat;
  z-index: 0;
}

/* Left-side gradient overlay so text is readable */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgb(255 255 255 / 54%) 0% 10%,
    rgb(255 255 255 / 51%) 30% 40%,
    rgb(255 255 255 / 0%) 50%,
    rgb(5 0 0 / 0%) 100%
  );
}

/* Text content sits on the left */
.hero-content {
  margin-top: 3.5em;
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 60px 40px 40px;
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue);
  margin: 0 0 12px;
}

.hero h1 .accent {
  color: var(--orange-light);
}

/* Underline accent below h1 */
.hero-underline {
  width: 52px;
  height: 4px;
  background: var(--orange-light);
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--blue);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-light);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244, 121, 32, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-secondary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* ── Service icons strip ── */
.hero-services-strip {
  position: relative;
  z-index: 1;
  background: rgb(255 255 255 / 65%);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  margin-top: auto;
  margin-right: 1.6em;
  margin-left: 1.6em;
  border-radius: 16px;
}

.hero-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

/* Divider between items */
.hero-service-item:not(:last-child) {
  padding-right: 12px;
  border-right: 1px solid var(--border);
}

.hero-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--blue);
}

.hero-service-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ── Trust pills strip ── */
.hero-trust-strip {
  position: relative;
  z-index: 1;
  background: #1a3c6e30;
  padding: 20px 40px;
  margin-bottom: 1.5em;
}

.hero-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.hero-trust-item i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}

/* =============================================
   MOBILE
   ============================================= */

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: 4px;
  }
  .nav-links.is-open a {
    display: block;
    padding: 10px 12px;
  }

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

  .hero-content {
    padding: 40px 20px 28px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-services-strip {
    padding: 16px 20px;
    overflow-x: auto;
  }
  .hero-services-inner {
    gap: 20px;
    min-width: max-content;
  }
  .hero-service-item:not(:last-child) {
    padding-right: 20px;
  }

  .hero-trust-strip {
    padding: 10px 20px;
  }
  .hero-trust-inner {
    gap: 10px;
    justify-content: center;
  }
  .hero-trust-divider {
    display: none;
  }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--orange);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  max-width: 220px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 88px 40px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 600px;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-text p:last-child {
  margin-bottom: 0;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(244, 121, 32, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2px;
}
.about-card p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.45;
}
.about-visual {
  background: linear-gradient(135deg, var(--blue) 0%, #2a5a9e 100%);
  border-radius: 16px;
  padding: 40px 36px;
  color: white;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(244, 121, 32, 0.15);
}
.about-visual h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}
.about-visual .tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  position: relative;
}
.about-visual ul {
  list-style: none;
  position: relative;
}
.about-visual ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about-visual ul li:last-child {
  border-bottom: none;
}
.about-visual ul li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services {
  background: url("../images/1.jpg") center / cover no-repeat;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
  cursor: default;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(26, 60, 110, 0.1);
  transform: translateY(-4px);
  border-color: var(--orange-light);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange-light), #f59d4e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.service-card p {
  font-size: 1 rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ── WHY US ── */
.why {
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.why-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.why-card:hover {
  box-shadow: 0 6px 24px rgba(26, 60, 110, 0.09);
  transform: translateY(-3px);
}
.why-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 5px;
}
.why-card p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* ── PROCESS ── */
.process {
  background: white;
}
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--orange-light), var(--blue));
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange-light);
  margin: 0 auto 18px;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(244, 121, 32, 0.25);
}
.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.process-step p {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ── AUTOMATION ── */
.automation {
  background: linear-gradient(135deg, #0d2040, #1a3c6e);
}
.automation .section-title {
  color: white;
}
.automation .section-sub {
  color: rgba(255, 255, 255, 0.7);
}
.automation .section-eyebrow {
  color: var(--orange-light);
}
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.auto-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: background 0.2s;
}
.auto-card:hover {
  background: rgba(255, 255, 255, 0.1);
}
.auto-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
}
.auto-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.auto-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ── COMPLIANCE ── */
.compliance {
  /* background: var(--off-white); */
  background: url("../images/compliance.png") center / cover no-repeat;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.compliance-box {
  background: rgb(255 255 255 / 91%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
}
.compliance-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange-light);
  color: var(--blue);
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  background: rgba(26, 60, 110, 0.07);
  border: 1px solid rgba(26, 60, 110, 0.15);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge::before {
  content: "✓";
  color: var(--orange-light);
  font-weight: 800;
}

/* ── CLIENTS ── */

/* ── CONTACT ── */
.contact {
  background: white;
}
.contact-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  border-radius: 16px;
  padding: 40px 32px;
}
.contact-banner-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  /* color: white; */
}
.contact-banner-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--orange-light);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}
.contact-banner-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  /* color: white; */
  margin-bottom: 8px;
}
.contact-banner-content p {
  font-size: 1.1rem;
  /* color: var(--blue); */
  line-height: 1.5;
}
.contact-banner-content a {
  /* color: #ffb84d; */
  text-decoration: none;
  transition: color 0.2s;
}
.contact-banner-content a:hover {
  /* color: #ffd699; */
  text-decoration: underline;
}
.contact-row h4 {
  display: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #1a2332;
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange-light);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  background: var(--orange-light);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--orange);
}

/* ── FOOTER ── */
footer {
  background: rgba(26, 60, 110, 0.97);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 40px 28px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-brand {
  flex: 1;
  min-width: 220px;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.83rem;
  line-height: 1.65;
}
.footer-col {
  flex: 1;
  min-width: 160px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange-light);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.78rem;
}
.footer-bottom span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .compliance-grid,
  .contact-grid,
  .contact-banner {
    grid-template-columns: 1fr;
  }
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  .services {
    background:
      linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
      url("../images/1.jpg") center / cover no-repeat;
  }
  .services .section-title {
    color: white;
  }
  .services .section-sub {
    color: rgba(255, 255, 255, 0.85);
  }
  .process-steps::before {
    display: none;
  }
  section {
    padding: 80px 24px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }
  .footer-top {
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .stats-strip .stat-item {
    min-width: 120px;
  }
}

/* mobile nav open */
.nav-mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--blue);
  padding: 16px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.nav-mobile-open .nav-links a {
  color: white;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
}
