/* ============================================================
   DOMINION CONSULTING — style.css
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

:root {
  --green: #1db77d;
  --green-dark: #0d9060;
  --green-light: #3dd68c;
  --navy: #0d2137;
  --hero-bg: #1a3a4a;
  --contact-bg: #1a4a5c;
  --gray-bg: #f4f5f7;
  --testi-bg: #f0f2f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --body: #555;
  --star: #f0b429;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: var(--green);
  color: #fff;

  font-size: 14px;
  font-weight: 600;

  padding: 13px 13px 13px 22px;

  border-radius: 8px;
  border: none;

  cursor: pointer;
  transition: opacity .2s, transform .2s;
}

.btn-primary:hover {
  opacity: .88;
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary-sm {
  padding: 10px 10px 10px 18px;
  font-size: 13px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 6px;
  flex-shrink: 0;
}

.btn-icon-navy {
  background: var(--navy);
}

.btn-icon-light-green {
  background: var(--green-light);
}

.btn-icon-white-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;
  background: #fff;

  flex-shrink: 0;
}

.btn-feat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--green-dark);
  color: #fff;

  font-size: 13px;
  font-weight: 600;

  padding: 10px 10px 10px 18px;

  border-radius: 7px;
  border: none;

  cursor: pointer;
  transition: opacity .2s;
}

.btn-feat:hover {
  opacity: .88;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: var(--green);
  color: #fff;

  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;

  padding: 12px 12px 12px 22px;

  border-radius: 8px;
  border: none;

  cursor: pointer;
  align-self: flex-start;

  transition: opacity .2s;
}

.btn-submit:hover {
  opacity: .88;
}


/* ============================================================
   PILLS / SECTION HEADINGS
   ============================================================ */

.pill-green {
  display: inline-block;

  background: var(--green);
  color: #fff;

  font-size: 12px;
  font-weight: 600;

  padding: 5px 16px;

  border-radius: 30px;
  margin-bottom: 16px;

  letter-spacing: .02em;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 48px;
  height: 64px;

  background: var(--navy);

  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  flex-direction: column;

  line-height: 1;

  color: #fff;

  font-weight: 900;
  font-size: 18px;

  letter-spacing: .08em;

  flex-shrink: 0;
}

.logo-d {
  font-size: 20px;

  display: flex;
  align-items: center;

  gap: 1px;
}

.logo-circle {
  display: inline-block;

  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: var(--green);
  color: #fff;

  font-size: 13px;
  font-weight: 900;

  text-align: center;
  line-height: 20px;

  margin: 0 1px;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: .22em;

  color: rgba(255,255,255,.6);

  font-weight: 500;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;

  color: rgba(255,255,255,.75);

  transition: color .2s;
}

.nav-links a:hover,
.nav-active {
  color: var(--green) !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;

  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 13px;
  color: #fff;

  white-space: nowrap;
}

.phone-icon {
  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;

  gap: 8px;

  font-size: 13px;
  font-weight: 600;

  color: #fff;

  cursor: pointer;

  white-space: nowrap;
}


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

.hero {
  width: 100%;

  background:
    linear-gradient(
      135deg,
      #1e4d6b 0%,
      #0d2d3f 55%,
      #0a2030 100%
    );

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 60px 64px 0;

  min-height: 500px;

  position: relative;
  overflow: hidden;

  gap: 40px;
}

.hero-dots {
  position: absolute;

  top: 28px;
  left: 36px;

  width: 150px;
  height: 130px;

  background-image:
    radial-gradient(
      circle,
      rgba(255,255,255,.2) 1.5px,
      transparent 1.5px
    );

  background-size: 14px 14px;

  pointer-events: none;
}

.hero-circle {
    position: absolute;

    right: -140px;
    top: -70px;


    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(29, 183, 125, 0.12);

    pointer-events: none;

    max-width: none;
}

.hero-left {
  width: 100%;
  max-width: 460px;

  padding-bottom: 80px;

  z-index: 2;

  flex-shrink: 1;
}

.hero-left h1 {
  font-size: 44px;
  font-weight: 900;

  color: #fff;

  line-height: 1.14;

  margin-bottom: 20px;
}

.hero-left p {
  font-size: 13px;

  color: rgba(255,255,255,.7);

  line-height: 1.7;

  margin-bottom: 32px;

  max-width: 380px;
}

.hero-right {
  position: relative;

  align-self: flex-end;

  z-index: 2;

  flex-shrink: 1;

  min-width: 0;
}

.hero-woman {
  width: 560px;
  max-width: 100%;

  height: auto;

  object-fit: contain;

  display: block;
}

.hero-badge {
  position: absolute;
  bottom: 80px;
  right: -45px;
  min-width: 120px;
  min-height: 130px;

  padding: 10px 15px;

  background: #fff;
  border-radius: 5px;

  box-shadow: 0 8px 28px rgba(0,0,0,.18);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  z-index: 3;
}

.badge-bars {
  display: flex;
  align-items: flex-end;

  gap: 7px;

  margin-bottom: 8px;
}

.bbar {
  width: 22px;

  border-radius: 3px 3px 0 0;
}

.hero-badge p {
  font-size: 11px;
  font-weight: 700;

  color: #222;

  text-align: center;
}


/* ============================================================
   ABOUT
   ============================================================ */

.about {
  width: 100%;

  background: #fff;

  display: flex;
  align-items: center;

  gap: 72px;

  padding: 90px 72px;
}

.about-img-wrap {
  position: relative;

  flex-shrink: 1;

  width: 420px;

  padding: 24px;
}

.about-deco {
  position: absolute;

  inset: 0;

  background: var(--green);

  border-radius: 10px;

  transform: rotate(-8deg);

  z-index: 0;
}

.about-photo {
  position: relative;

  z-index: 1;

  width: 100%;
  height: 400px;

  object-fit: cover;

  border-radius: 8px;

  display: block;
}

.about-content {
  flex: 1;

  min-width: 0;
}

.about-h2 {
  font-size: 36px;
  font-weight: 800;

  color: var(--navy);

  line-height: 1.2;

  margin-bottom: 16px;
}

.about-lead {
  font-size: 14px;

  color: var(--body);

  line-height: 1.7;

  margin-bottom: 28px;

  max-width: 480px;
}

.about-cols {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 24px;

  margin-bottom: 32px;
}

.col-title {
  font-size: 14px;
  font-weight: 700;

  color: var(--green);

  margin-bottom: 8px;
}

.about-cols p {
  font-size: 13px;

  color: var(--body);

  line-height: 1.65;
}


/* ============================================================
   SERVICES
   ============================================================ */

.services {
  width: 100%;

  background: var(--gray-bg);

  padding: 80px 64px;
}

.services-h2 {
  font-size: 36px;
  font-weight: 800;

  color: var(--navy);

  line-height: 1.22;

  margin-top: 10px;
}

.svc-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;
}

.svc-card {
  min-width: 0;

  background: #fff;

  border-radius: 12px;

  padding: 28px 24px;

  transition: box-shadow .2s;
}

.svc-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.svc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  margin-bottom: 14px;
}

.svc-icon {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  background: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.svc-num {
  font-size: 22px;
  font-weight: 800;

  color: #ddd;

  line-height: 1;
}

.svc-card h3 {
  font-size: 16px;
  font-weight: 700;

  color: #111;

  margin-bottom: 10px;
}

.svc-card p {
  font-size: 13px;

  color: var(--body);

  line-height: 1.68;
}


/* FEATURED SERVICE */

.svc-featured {
  grid-column: 2 / 4;

  background: var(--green);

  border-radius: 12px;

  position: relative;

  overflow: hidden;

  padding: 0;

  min-height: 210px;

  display: flex;
  align-items: stretch;
}

.svc-feat-img {
  position: absolute;

  right: 0;
  top: 0;

  width: 50%;
  height: 100%;

  object-fit: cover;

  object-position: center top;
}

.svc-feat-overlay {
  position: absolute;

  right: 0;
  top: 0;

  width: 50%;
  height: 100%;

  background: rgba(10,80,50,.5);
}

.svc-feat-content {
  position: relative;

  z-index: 2;

  width: 55%;
  max-width: 55%;

  padding: 36px;
}

.svc-icon-white {
  background: rgba(255,255,255,.22);
}

.svc-featured h3 {
  font-size: 20px;
  font-weight: 800;

  color: #fff;

  margin-bottom: 10px;
}

.svc-featured p {
  font-size: 13px;

  color: rgba(255,255,255,.88);

  margin-bottom: 20px;

  line-height: 1.65;
}


/* ============================================================
   STATS
   ============================================================ */

.stats {
  width: 100%;

  position: relative;

  overflow: hidden;

  min-height: 360px;

  display: flex;
  align-items: flex-end;
}

.stats-bg-img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center 25%;
}

.stats-tint {
  position: absolute;

  inset: 0;

  background: rgba(5,15,25,.5);

  z-index: 1;
}

.stats-bar {
  position: relative;

  z-index: 2;

  width: 100%;

  padding: 32px 64px;

  display: flex;
  align-items: center;

  gap: 28px;
}

.stat-glass {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 4px;

  flex: 1;

  min-width: 0;

  background: rgba(13,33,55,.86);

  border: none;

  border-radius: 10px;

  padding: 20px 24px;
}

.stat-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--green);

  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;

  color: rgba(255,255,255,.75);

  font-weight: 500;

  white-space: nowrap;
}

.stat-num {
  font-size: 52px;

  font-weight: 900;

  color: #fff;

  line-height: 1;

  white-space: nowrap;
}

.count {
  display: inline;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials {
  width: 100%;

  background: var(--testi-bg);

  padding: 80px 64px;
}

.testi-h2 {
  font-size: 36px;
  font-weight: 800;

  color: var(--navy);

  line-height: 1.22;

  margin-top: 10px;
}

.testi-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 20px;

  margin-bottom: 32px;

  align-items: start;
}

.testi-card {
  min-width: 0;

  background: #fff;

  border-radius: 12px;

  padding: 24px 22px;

  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.testi-active {
  box-shadow: 0 8px 32px rgba(0,0,0,.13);

  transform: translateY(-6px);
}

.testi-top {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 10px;

  margin-bottom: 14px;
}

.testi-quote {
  font-size: 36px;
  font-weight: 900;

  color: #ccc;

  line-height: 1;
}

.testi-stars {
  display: flex;

  align-items: center;

  gap: 3px;

  flex-wrap: wrap;

  justify-content: flex-end;
}

.testi-stars span {
  font-size: 11px;

  color: #999;

  margin-left: 4px;

  white-space: nowrap;
}

.testi-card > p {
  font-size: 13px;

  color: var(--body);

  line-height: 1.72;

  margin-bottom: 20px;
}

.testi-author {
  display: flex;

  align-items: center;

  gap: 12px;
}

.testi-author img {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  object-fit: cover;

  flex-shrink: 0;
}

.author-role {
  font-size: 11px;

  color: #999;

  display: block;

  margin-bottom: 2px;
}

.testi-author strong {
  font-size: 13px;

  font-weight: 700;

  color: #111;

  display: block;
}

.testi-dots {
  display: flex;

  justify-content: center;

  gap: 8px;
}

.tdot {
  width: 11px;
  height: 11px;

  border-radius: 50%;

  border: none;

  background: #ccc;

  cursor: pointer;

  transition: background .2s;
}

.tdot-active {
  background: var(--green);
}


/* ============================================================
   LOGOS
   ============================================================ */

.logos {
  width: 100%;

  background: #fff;

  padding: 48px 64px;

  text-align: center;
}

.logos-label {
  font-size: 13px;

  color: #888;

  margin-bottom: 30px;

  letter-spacing: .03em;
}

.logos-row {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

.logo-box {
  border: 1.5px solid var(--border);

  border-radius: 8px;

  padding: 16px 28px;

  font-size: 17px;
  font-weight: 500;

  color: #333;

  white-space: nowrap;
}

.logo-box b {
  font-weight: 800;
}

.logo-alt {
  font-style: normal;
  font-weight: 700;
}

.logo-caps {
  text-transform: uppercase;

  letter-spacing: .06em;

  font-size: 15px;

  font-weight: 700;
}


/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  width: 100%;

  background: var(--contact-bg);

  display: flex;

  gap: 60px;

  padding: 80px 64px;

  align-items: flex-start;
}

.contact-left {
  flex: 1;

  min-width: 0;
}

.contact-eyebrow {
  font-size: 13px;

  color: rgba(255,255,255,.75);

  margin-bottom: 10px;

  display: flex;

  align-items: center;

  gap: 6px;
}

.eyebrow-dot {
  color: var(--green);

  font-size: 18px;
}

.contact-left h2 {
  font-size: 32px;

  font-weight: 800;

  color: #fff;

  line-height: 1.25;

  margin-bottom: 30px;
}

.contact-left form {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;

  min-width: 0;
}

.form-row .full {
  grid-column: 1 / -1;

  width: 100%;
}

.contact-left input,
.contact-left select,
.contact-left textarea {
  width: 100%;

  min-width: 0;

  padding: 12px 14px;

  border: 1px solid rgba(255,255,255,.2);

  border-radius: 7px;

  background: rgba(255,255,255,.1);

  color: #fff;

  font-family: 'Inter', sans-serif;

  font-size: 13px;

  outline: none;

  appearance: none;
  -webkit-appearance: none;

  transition: border-color .2s;
}

.contact-left input::placeholder,
.contact-left textarea::placeholder {
  color: rgba(255,255,255,.5);
}

.contact-left select {
  width: 100%;
  min-width: 0;

  padding: 12px 40px 12px 14px;

  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;

  background: rgba(255,255,255,.1);
  color: #fff;

  font-family: 'Inter', sans-serif;
  font-size: 13px;

  outline: none;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition: border-color .2s, background .2s;
}

.contact-left select:hover {
  background: rgba(255,255,255,.14);
}

.contact-left select:focus {
  border-color: var(--green);
}

/* The actual dropdown options */
.contact-left select option {
  background: #1a4a5c;
  color: #fff;
  padding: 10px;
}

.contact-left select option:disabled {
  color: rgba(255,255,255,.5);
}
/* this is where that select stops  */
.contact-left input:focus,
.contact-left select:focus,
.contact-left textarea:focus {
  border-color: var(--green);
}

.contact-left textarea {
  resize: vertical;

  min-height: 100px;
}

.field-wrap {
  position: relative;

  min-width: 0;
}

.select-wrap select,
.select-wrap input {
  padding-right: 36px;
}

.sel-arrow {
  position: absolute;

  right: 12px;
  top: 50%;

  transform: translateY(-50%);

  pointer-events: none;
}

.contact-right {
  flex: 0 0 380px;

  min-width: 0;
}

.contact-photo {
  width: 100%;
  height: 480px;

  object-fit: cover;

  border-radius: 14px;

  display: block;
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  width: 100%;

  background: #0d1f2d;

  padding: 24px 64px;
}

.footer-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(255,255,255,.1);

  flex-wrap: wrap;

  gap: 14px;
}

.footer-nav {
  display: flex;

  gap: 28px;

  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;

  color: rgba(255,255,255,.65);

  transition: color .2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-right {
  display: flex;

  align-items: center;

  gap: 20px;
}

.footer-copy-inline {
  font-size: 12px;

  color: rgba(255,255,255,.4);
}

.footer-socials {
  display: flex;

  gap: 10px;
}

.footer-socials a {
  width: 32px;
  height: 32px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.2);

  display: flex;

  align-items: center;
  justify-content: center;

  transition: background .2s, border-color .2s;
}

.footer-socials a:hover {
  background: var(--green);

  border-color: var(--green);
}

.footer-bottom {
  padding-top: 16px;

  text-align: center;
}

.footer-bottom p {
  font-size: 12px;

  color: rgba(255,255,255,.3);
}


/* ============================================================
   TABLET — 1024px
   ============================================================ */

@media (max-width: 1024px) {

  .navbar {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    padding-left: 32px;
    padding-right: 32px;

    gap: 24px;
  }

  .hero-left {
    max-width: 410px;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .hero-woman {
    width: 460px;
  }

  .about {
    padding-left: 40px;
    padding-right: 40px;

    gap: 40px;
  }

  .about-img-wrap {
    width: 360px;
  }

  .about-photo {
    height: 360px;
  }

  .services,
  .testimonials,
  .contact {
    padding-left: 40px;
    padding-right: 40px;
  }

  .stats-bar {
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact {
    gap: 35px;
  }

  .contact-right {
    flex-basis: 320px;
  }

  .contact-photo {
    height: 420px;
  }

  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
}


/* ============================================================
   SMALL TABLET / LARGE MOBILE — 860px
   ============================================================ */

@media (max-width: 860px) {

  /* ---------- NAVBAR ---------- */

  .navbar {
    height: 60px;

    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-phone {
    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 11px;
  }

  .phone-icon {
    width: 26px;
    height: 26px;
  }

  .nav-menu {
    display: flex;

    gap: 5px;

    font-size: 11px;
  }


  /* ---------- HERO ---------- */

  .hero {
    width: 100%;

    min-height: auto;

    padding: 48px 20px 0;

    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    text-align: center;

    gap: 28px;
  }

  .hero-circle {
        right: -120px;
        top: -80px;

        width: 300px;
        height: 300px;
    }

  .hero-left {
    width: 100%;

    max-width: 600px;

    padding-bottom: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
  }

  .hero-left h1 {
    width: 100%;

    font-size: 36px;

    line-height: 1.15;

    margin-bottom: 18px;
  }

  .hero-left p {
    width: 100%;

    max-width: 520px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 26px;
  }

  /*
     The heading remains centered,
     but Get Started moves to the left.
  */

  .hero-left .btn-primary {
    align-self: flex-start;
  }

  .hero-right {
    width: 100%;

    display: flex;

    justify-content: center;

    align-self: center;

    position: relative;
  }

  .hero-woman {
    width: min(420px, 90vw);

    max-width: 100%;

    height: auto;

    margin: 0;
  }

  .hero-badge {
    right: 3%;

    bottom: 25px;

    min-width: 100px;
    min-height: 100px;

    padding: 10px;
  }

  .badge-bars {
    gap: 4px;
  }

  .bbar {
    width: 12px;
  }


  /* ---------- ABOUT ---------- */

  .about {
    width: 100%;

    flex-direction: column;

    align-items: center;

    padding: 60px 20px;

    gap: 40px;
  }

  .about-img-wrap {
    width: min(430px, 100%);

    padding: 18px;
  }

  .about-photo {
    width: 100%;

    height: 320px;

    object-fit: cover;
  }

  .about-content {
    width: 100%;

    text-align: center;
  }

  .about-h2 {
    font-size: 32px;
  }

  .about-lead {
    max-width: 600px;

    margin-left: auto;
    margin-right: auto;
  }

  .about-cols {
    grid-template-columns: 1fr;

    gap: 20px;

    max-width: 600px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
  }


  /* ---------- SERVICES ---------- */

  .services {
    padding: 60px 20px;
  }

  .services-h2 {
    font-size: 32px;
  }

  .svc-grid {
    grid-template-columns: 1fr 1fr;

    gap: 16px;
  }

  .svc-card {
    min-width: 0;
  }

  /*
     Featured card takes the full row.
  */

  .svc-featured {
    grid-column: 1 / -1;

    min-height: 0;

    display: flex;

    flex-direction: column;
  }

  /*
     IMPORTANT:
     The HTML uses .svc-feat-img.
  */

  .svc-feat-img {
    position: relative;

    top: auto;
    right: auto;

    width: 100%;

    height: 210px;

    object-fit: cover;

    object-position: center;

    order: 1;
  }

  .svc-feat-overlay {
    display: none;
  }

  .svc-feat-content {
    width: 100%;

    max-width: none;

    padding: 26px;

    order: 2;
  }


  /* ---------- STATS ---------- */

  .stats {
    min-height: 380px;
  }

  .stats-bg-img {
    object-position: center center;
  }

  .stats-bar {
    width: 100%;

    padding: 20px;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;

    align-items: stretch;
  }

  .stat-glass {
    width: 100%;

    min-width: 0;

    padding: 16px 12px;

    background: rgba(13,33,55,.88);

    border: none;

    border-radius: 9px;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .stat-label {
    white-space: normal;

    font-size: 10px;

    line-height: 1.3;
  }

  .stat-num {
    font-size: 36px;
  }


  /* ---------- TESTIMONIALS ---------- */

  .testimonials {
    padding: 60px 20px;
  }

  .testi-h2 {
    font-size: 32px;
  }

  .testi-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .testi-active {
    transform: none;
  }

  .testi-card {
    width: 100%;
  }


  /* ---------- LOGOS ---------- */

  .logos {
    padding: 40px 20px;
  }

  .logos-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    width: 100%;
  }

  .logo-box {
    width: 100%;

    min-width: 0;

    padding: 13px 8px;

    font-size: 13px;

    white-space: normal;

    text-align: center;
  }

  .logo-box:last-child {
    grid-column: 1 / -1;
  }


  /* ---------- CONTACT ---------- */

  .contact {
    width: 100%;

    flex-direction: column;

    padding: 60px 20px;

    gap: 0;
  }

  .contact-left {
    width: 100%;
  }

  /*
     KEEP CONTACT IMAGE HIDDEN ON MOBILE
  */

  .contact-right {
    display: none;
  }

  .form-row {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 14px;
  }

  .contact-left input,
  .contact-left select,
  .contact-left textarea {
    width: 100%;

    max-width: 100%;
  }

  .btn-submit {
    width: auto;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    padding: 24px 20px;
  }

  .footer-top {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .footer-nav {
    width: 100%;

    gap: 16px 22px;
  }

  .footer-right {
    width: 100%;

    justify-content: space-between;
  }
}


/* ============================================================
   MOBILE — 540px
   ============================================================ */

@media (max-width: 540px) {

  /* ---------- NAVBAR ---------- */

  .navbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav-logo {
    font-size: 15px;
  }

  .logo-d {
    font-size: 17px;
  }

  .logo-circle {
    width: 18px;
    height: 18px;

    font-size: 12px;

    line-height: 18px;
  }

  .logo-sub {
    font-size: 7px;
  }

  .nav-right {
    gap: 7px;
  }

  .nav-phone {
    font-size: 9px;

    gap: 4px;
  }

  .phone-icon {
    width: 23px;
    height: 23px;
  }

  .phone-icon img {
    width: 12px;
    height: 12px;
  }

  .nav-menu {
    font-size: 10px;

    gap: 4px;
  }

  .nav-menu img {
    width: 16px;
    height: 16px;
  }


  /* ---------- HERO ---------- */

  .hero {
    padding: 40px 16px 0;

    gap: 22px;
  }

  .hero-left h1 {
    font-size: 30px;

    line-height: 1.14;
  }

  .hero-left p {
    font-size: 12px;

    line-height: 1.65;

    margin-bottom: 22px;
  }

  .hero-woman {
    width: min(340px, 92vw);
  }

  .hero-badge {
    right: 0;

    bottom: 18px;

    transform: scale(.78);

    transform-origin: bottom right;
  }


  /* ---------- ABOUT ---------- */

  .about {
    padding: 50px 16px;
  }

  .about-img-wrap {
    width: 100%;

    padding: 14px;
  }

  .about-photo {
    height: 280px;
  }

  .about-h2 {
    font-size: 27px;
  }

  .about-lead {
    font-size: 13px;
  }

  .about-cols {
    gap: 18px;
  }


  /* ---------- SERVICES ---------- */

  .services {
    padding: 50px 16px;
  }

  .section-head {
    margin-bottom: 35px;
  }

  .services-h2 {
    font-size: 27px;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-featured {
    grid-column: 1;
  }

  .svc-card {
    padding: 22px 18px;
  }

  .svc-featured h3 {
    font-size: 18px;
  }

  .svc-feat-img {
    height: 180px;
  }

  .svc-feat-content {
    padding: 22px 18px;
  }


  /* ---------- STATS ---------- */

  .stats {
    min-height: 330px;
  }

  .stats-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 7px;

    padding: 14px 10px;
  }

  .stat-glass {
    padding: 12px 8px;

    border-radius: 8px;
  }

  .stat-dot {
    width: 6px;
    height: 6px;

    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 8px;

    line-height: 1.25;
  }

  .stat-num {
    font-size: 27px;
  }


  /* ---------- TESTIMONIALS ---------- */

  .testimonials {
    padding: 50px 16px;
  }

  .testi-h2 {
    font-size: 27px;
  }

  .testi-card {
    padding: 21px 18px;
  }

  .testi-top {
    gap: 8px;
  }

  .testi-quote {
    font-size: 30px;
  }

  .testi-stars span {
    font-size: 9px;
  }


  /* ---------- LOGOS ---------- */

  .logos {
    padding: 35px 16px;
  }

  .logos-label {
    font-size: 11px;

    margin-bottom: 22px;
  }

  .logo-box {
    font-size: 11px;

    padding: 12px 6px;
  }


  /* ---------- CONTACT ---------- */

  .contact {
    padding: 50px 16px;
  }

  .contact-left h2 {
    font-size: 27px;

    margin-bottom: 25px;
  }

  .contact-left form {
    gap: 12px;
  }

  .form-row {
    gap: 12px;
  }

  .contact-left input,
  .contact-left select,
  .contact-left textarea {
    font-size: 12px;

    padding: 12px;
  }

  .btn-submit {
    width: 100%;

    justify-content: space-between;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    padding: 24px 16px;
  }

  .footer-nav {
    gap: 14px 18px;
  }

  .footer-nav a {
    font-size: 11px;
  }

  .footer-right {
    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
  }
}


/* ============================================================
   VERY SMALL PHONES — 380px
   ============================================================ */

@media (max-width: 380px) {

  /* Keep phone number visible */

  .navbar {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-right {
    gap: 5px;
  }

  .nav-phone {
    font-size: 8px;

    gap: 3px;
  }

  .phone-icon {
    width: 21px;
    height: 21px;
  }

  .phone-icon img {
    width: 11px;
    height: 11px;
  }

  .nav-menu {
    font-size: 9px;
  }

  .nav-menu img {
    width: 15px;
    height: 15px;
  }


  /* Hero */

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left p {
    font-size: 11px;
  }

  .hero-woman {
    width: min(300px, 90vw);
  }

  .hero-badge {
    transform: scale(.68);
  }


  /* Stats */

  .stats {
    min-height: 300px;
  }

  .stats-bar {
    gap: 5px;

    padding: 12px 7px;
  }

  .stat-glass {
    padding: 10px 5px;
  }

  .stat-num {
    font-size: 23px;
  }

  .stat-label {
    font-size: 7px;
  }


  /* Contact */

  .contact-left h2 {
    font-size: 25px;
  }
}


/* ============================================================
   SCROLL REVEAL
   ============================================================ */

.sr {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity .5s ease,
    transform .5s ease;
}

.sr.in {
  opacity: 1;

  transform: none;
}

.sr-d1 {
  transition-delay: .1s;
}

.sr-d2 {
  transition-delay: .2s;
}
/* FINAL HORIZONTAL OVERFLOW FIX */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

* {
  max-width: 100%;
}

.hero,
.about,
.services,
.stats,
.testimonials,
.logos,
.contact,
.footer,
.navbar {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.hero-left,
.hero-right,
.about-content,
.about-img-wrap,
.svc-grid,
.svc-card,
.svc-featured,
.testi-grid,
.testi-card,
.contact-left,
.contact-right,
.footer-top {
  min-width: 0;
  max-width: 100%;
}

.hero-woman {
  max-width: 100%;
  height: auto;
}

.hero-badge {
  max-width: 120px;
}

.form-row,
.form-row .full {
  min-width: 0;
  max-width: 100%;
}

input,
select,
textarea {
  max-width: 100%;
  min-width: 0;
}

/* CONTACT FORM - THREE COLUMNS */
.contact-left form .form-row:first-of-type {
grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Return to one column on mobile */
@media (max-width: 860px) {
.contact-left form .form-row:first-of-type {
grid-template-columns: 1fr;
}
}
/* DESKTOP HERO BADGE POSITION */
@media (min-width: 861px) {
  .hero-badge {
    right: -50px !important;
    bottom: 80px !important;
  }
}/* FINAL DESKTOP HERO BADGE FIX */
@media (min-width: 861px) {
    .hero-badge {
        position: absolute !important;
        right: -50px !important;
        bottom: 80px !important;
    }
}