:root {
  --blue: #397fc3;
  --blue2: #5a9bdd;
  --ink: #0b1420;
  --dark: #09111b;
  --section-bg: #f4f6f8;
  --line: #dbe1e7;
  --text: #162333;
  --hover-blue: #3a6d8c;
  --hover-blue-dark: #001f3f;
  --hover-blue-light: #5a9bdd;
  --hover-blue-pale: #e8f0f4;
  --hover-primary: #397fc3;
  --hover-secondary: #5a9bdd;
  --hover-dark: #343a40;
  --hover-dark-deep: #252b31;
  --hover-shadow: rgba(57, 127, 195, 0.3);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: #fff;
  overflow-x: hidden;
}
.hero-shell {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #0c1520;
}
.hero-slides,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-slide {
  opacity: 0;
  transform: scale(1.075);
  background-position: center;
  background-size: cover;
  transition:
    opacity 1.05s ease,
    transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 15, 25, 0.8) 0%, rgba(9, 22, 35, 0.6) 42%, rgba(4, 11, 18, 0.3) 100%), linear-gradient(180deg, rgba(4, 10, 16, 0.45), rgba(3, 9, 15, 0.7));
}
.site-header {
  position: absolute;
  z-index: 20;
  top: 18px;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(5, 12, 19, 0.86), rgba(5, 12, 19, 0.12));
  backdrop-filter: blur(5px);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  padding: 0 4.8vw;
}
.brand {
  width: 238px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
  margin-right: 38px;
}
.main-nav > a,
.dropdown-toggle {
  position: relative;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 39px 0;
  border: 0;
  background: none;
}
.main-nav > a i,
.dropdown-toggle i {
  font-size: 9px;
  margin-left: 5px;
}
.main-nav > a:after,
.dropdown-toggle:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 0;
  height: 2px;
  background: var(--blue2);
  transition: 0.3s;
}
.main-nav > a:hover:after,
.main-nav > a.active:after,
.main-nav .dropdown-toggle.active:after,
.nav-dropdown:hover .dropdown-toggle:after {
  width: 100%;
}
.main-nav > a.active,
.main-nav .dropdown-toggle.active {
  color: var(--blue2);
}
.nav-dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.dropdown-menu-custom {
  position: absolute;
  top: 76px;
  left: -22px;
  width: 245px;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.28s;
  z-index: 30;
}
.dropdown-menu-custom:before {
  content: "";
  position: absolute;
  top: -7px;
  left: 31px;
  width: 14px;
  height: 14px;
  background: #fff;
  transform: rotate(45deg);
}
.dropdown-menu-custom a {
  display: block;
  padding: 12px 22px;
  color: #172434;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-left: 3px solid transparent;
  transition: 0.25s;
}
.dropdown-menu-custom a:hover {
  color: var(--blue);
  background: #f2f7fc;
  border-left-color: var(--blue);
}
.nav-dropdown:hover .dropdown-menu-custom,
.nav-dropdown.open .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-box {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 1.12;
}
.phone-box small {
  display: block;
  font-size: 10px;
  color: #d9e0e7;
}
.phone-box strong {
  font-size: 20px;
  white-space: nowrap;
}
.phone-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--blue);
  margin-right: 12px;
}
.touch-btn {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 21px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  transition: 0.3s;
}
.touch-btn:hover {
  background: #fff;
  color: #152331;
  transform: translateY(-2px);
}
.icon-btn {
  width: 39px;
  height: 45px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent !important;
  color: #fff !important;
}
.menu-toggle {
  display: none;
}
.close-menu,
.mobile-nav-logo {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 88px 4.8vw 155px;
  display: flex;
  align-items: center;
}
.content-wrap {
  margin-left: 10.5vw;
  margin-top: -5px;
  max-width: 660px;
}
.ghost-word {
  position: absolute;
  left: 3.2vw;
  top: 15%;
  font-size: clamp(105px, 13.5vw, 235px);
  font-weight: 800;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.14);
  letter-spacing: -8px;
  pointer-events: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 19px;
}
.eyebrow span {
  width: 50px;
  height: 1px;
  background: #fff;
}
.content-wrap h1 {
  font-size: clamp(48px, 4.45vw, 79px);
  line-height: 0.97;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
  margin: 0 0 20px;
}
.content-wrap h1 em {
  font-style: normal;
  color: var(--blue2);
}
.content-wrap p {
  font-size: 16px;
  line-height: 1.62;
  max-width: 570px;
  color: #edf2f6;
  margin: 0 0 26px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
}
.hero-buttons a, .services-grid a {
  min-width: 184px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 800;
  transition: 0.3s;
}
.btn-main {
  background: var(--blue);
  padding: 10px 30px;
}
.btn-main:hover {
  background: #fff;
  color: #142230;
  transform: translateY(-3px);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 10px 30px;
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-3px);
}
.slide-rail {
  position: absolute;
  z-index: 15;
  left: max(18px, 2.1vw);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.slide-rail .hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.62);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.slide-rail .hero-dot:hover,
.slide-rail .hero-dot.active {
  background: var(--blue2);
  border-color: var(--blue2);
  transform: scale(1.2);
  box-shadow:
    0 0 0 6px rgba(90, 155, 221, 0.13),
    0 0 18px rgba(90, 155, 221, 0.38);
}
.right-guide {
  position: absolute;
  right: 1.55vw;
  top: 29%;
  height: 42%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  color: #fff;
  text-decoration: none;
}
.right-guide b {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 1px;
}
.right-guide span {
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.3s;
}
.right-guide:hover {
  color: var(--blue2);
}
.right-guide:hover span {
  background: var(--blue2);
}
.hero-bottom {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 165px;
  display: grid;
  grid-template-columns: 24% 15% 61%;
  align-items: stretch;
}
.watermark-logo {
  background: #fff;
  display: flex;
  align-items: center;
  padding-left: 3.5vw;
  overflow: hidden;
}
.watermark-logo img {
  width: 250px;
  opacity: 0.12;
}
.trust-card {
  position: relative;
  background: linear-gradient(145deg, #4f91ce, #326fae);
  margin-top: -48px;
  padding: 23px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.trust-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 7% 100%, transparent 0 21px, rgba(255, 255, 255, 0.08) 22px 23px);
}
.trust-icon {
  position: relative;
  font-size: 31px;
  margin-bottom: 10px;
}
.mini-brand {
  position: relative;
  width: 128px;
  margin: 0 auto 9px;
}
.mini-brand img {
  width: 100%;
}
.trust-card h2 {
  position: relative;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  font-weight: 800;
}
.info-bar {
  background: rgba(7, 15, 25, 0.97);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 24px;
}
.info-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px;
  overflow: hidden;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.info-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #438bd0, #2f70b0);
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left center;
  transition:
    opacity 0.35s ease,
    transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.info-item > * {
  position: relative;
  z-index: 1;
}
.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}
.info-item:hover:before {
  opacity: 1;
  transform: scaleX(1);
}
.info-item:last-child {
  border-right: 0;
}
.info-item > span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  font-size: 18px;
  box-shadow: 0 0 0 10px rgba(57, 127, 195, 0.09);
  animation: softPulse 2.8s infinite;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.info-item:hover > span {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.13);
}
.info-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.info-item p,
.info-item a {
  margin: 0;
  color: #aeb9c5;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.info-item small {
  display: block;
  margin-top: 5px;
  color: #76baff;
  font-size: 12px;
  transition: color 0.3s ease;
  font-weight: bold;
}
.info-item:hover h3,
.info-item:hover p,
.info-item:hover a,
.info-item:hover small {
  color: #fff;
}
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal 0.75s forwards;
}
.delay-1 {
  animation-delay: 0.12s;
}
.delay-2 {
  animation-delay: 0.24s;
}
.delay-3 {
  animation-delay: 0.36s;
}
.close-menu {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 24px;
}
.after-hero {
  min-height: 260px;
  background: #fff;
  color: #1b2733;
  padding: 90px 0;
  text-align: center;
}
.after-hero p {
  opacity: 0.55;
}
.after-hero:target {
  scroll-margin-top: 0;
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes softPulse {
  50% {
    box-shadow: 0 0 0 15px rgba(57, 127, 195, 0.035);
  }
}
@media (max-width: 1240px) {
  .main-nav {
    position: fixed;
    z-index: 99;
    right: -340px;
    top: 0;
    width: 320px;
    height: 100vh;
    margin: 0;
    padding: 76px 34px;
    background: #101a25;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    transition: right 0.4s;
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.35);
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav .close-menu,
  .main-nav .mobile-nav-logo {
    display: block;
  }
  .main-nav .mobile-nav-logo {
    margin-bottom: 17px;
  }
  .main-nav > a,
  .main-nav .dropdown-toggle {
    color: #fff;
    font-size: 17px;
    text-align: left;
    text-transform: none;
    padding: 0;
  }
  .main-nav .desktop-nav-only {
    display: none;
  }
  .main-nav > a::after,
  .main-nav .dropdown-toggle::after {
    display: none;
  }
  .main-nav .dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav .dropdown-menu-custom {
    position: static;
    width: auto;
    display: none;
    margin: 19px 0 0 15px;
    padding: 0;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav .nav-dropdown.open .dropdown-menu-custom {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }
  .main-nav .dropdown-menu-custom::before {
    display: none;
  }
  .main-nav .dropdown-menu-custom a {
    padding: 0;
    border: 0;
    color: #bbc6d1;
    font-size: 14px;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-inner {
    padding: 0 3vw;
  }
  .content-wrap {
    margin-left: 7vw;
  }
  .hero-bottom {
    grid-template-columns: 25% 75%;
  }
  .watermark-logo {
    display: none;
  }
  .info-bar {
    padding: 0 8px;
  }
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 12px;
  }
  .info-item > span {
    flex: 0 0 auto;
  }
  .phone-box {
    display: none;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 78px;
  }
  .brand {
    width: 195px;
  }
  .touch-btn {
    display: none;
  }
  .hero-shell {
    height: auto;
    min-height: 780px;
  }
  .hero-content {
    padding: 78px 23px 210px 48px;
  }
  .content-wrap {
    margin: 0;
  }
  .content-wrap h1 {
    font-size: 47px;
  }
  .content-wrap p {
    font-size: 15px;
  }
  .ghost-word {
    left: 14px;
    top: 18%;
    font-size: 100px;
  }
  .right-guide {
    display: none;
  }
  .hero-bottom {
    height: 190px;
    bottom: 0;
    grid-template-columns: 25% 75%;
  }
  .watermark-logo {
    display: none;
  }
  .trust-card {
    margin-top: -34px;
    padding: 20px 10px;
  }
  .info-bar {
    grid-template-columns: 1fr;
  }
  .info-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 7px 14px;
  }
  .info-item > span {
    width: 37px;
    height: 37px;
    font-size: 14px;
  }
  .info-item h3 {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .info-item p {
    font-size: 9px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .info-item small {
    display: none;
  }
  .hero-buttons {
    width: 100%;
  }
  .hero-buttons a {
    min-width: 0;
    flex: 1;
  }
  .hero-dots {
    bottom: 5px;
  }
}
@media (max-width: 560px) {
  .slide-rail {
    left: 12px;
    gap: 14px;
  }
  .slide-rail .hero-dot {
    width: 10px;
    height: 10px;
  }
  .brand {
    width: min(170px, 55vw);
  }
  .hero-content {
    padding-top: 115px;
    padding-left: 42px;
  }
  .content-wrap h1 {
    font-size: 38px;
  }
  .content-wrap p {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 210px;
  }
  .hero-buttons a {
    height: 46px;
    flex: none;
    padding-inline: 16px;
    gap: 12px;
    white-space: nowrap;
  }
  .hero-bottom {
    grid-template-columns: 35% 65%;
    height: 205px;
  }
  .trust-card h2 {
    font-size: 15px;
  }
  .mini-brand {
    width: 104px;
  }
  .info-item > span {
    display: none;
  }
}

/* Full Home 4-inspired sections */
.wide-container {
  max-width: 1320px;
}
.section-pad {
  padding: 120px 0;
}
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-kicker.light {
  color: #9bc8f3;
}
.section-title {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -2px;
}
.section-title em {
  color: var(--blue);
  font-style: normal;
}
.section-title.light {
  color: #fff;
}
.lead-copy {
  margin: 27px 0 0;
  color: #667383;
  font-size: 17px;
  line-height: 1.8;
}
.about-section {
  background: #fff;
  color: var(--text);
}
.about-visual {
  position: relative;
  min-height: 610px;
}
.about-main-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 76%;
  height: 520px;
  overflow: hidden;
}
.about-small-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 305px;
  border: 14px solid #fff;
  overflow: hidden;
}
.image-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-zoom:hover img {
  transform: scale(1.06);
}
.experience-badge {
  position: absolute;
  left: 3%;
  bottom: 0;
  width: 205px;
  height: 155px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #fff;
  box-shadow: 0 22px 40px rgba(57, 127, 195, 0.25);
}
.experience-badge strong {
  font-size: 58px;
  line-height: 1;
}
.experience-badge span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.35;
}
.shape-lines {
  position: absolute;
  right: 10%;
  top: -28px;
  width: 150px;
  height: 120px;
  background: repeating-linear-gradient(135deg, transparent 0 9px, rgba(57, 127, 195, 0.19) 10px 11px);
}
.about-points {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.about-points article {
  display: flex;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.about-points article > span {
  font-size: 27px;
  color: var(--blue);
  font-weight: 900;
}
.about-points h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.about-points p {
  margin: 0;
  color: #6d7986;
  line-height: 1.7;
}
.signature-row {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 32px;
}
.square-link {
  height: 56px;
  padding: 0 25px;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  transition: 0.3s;
}
.square-link:hover {
  background: #5a9bdd;
  transform: translateY(-3px);
}
.signature-row small {
  display: block;
  color: #8a95a1;
}
.signature-row strong {
  display: block;
  margin-top: 5px;
  color: #1b2a39;
}
.services-section {
  position: relative;
  background: #0a131d;
  color: #fff;
  overflow: hidden;
}
.services-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 55px 55px;
}
.giant-word {
  position: absolute;
  right: -25px;
  top: 0;
  font-size: 210px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  text-transform: uppercase;
  line-height: 1;
}
.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 55px;
}
.section-heading-row > div {
  max-width: 760px;
}
.section-heading-row > p {
  max-width: 410px;
  color: #98a5b2;
  line-height: 1.75;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: #111d29;
  overflow: hidden;
  transition: 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}
.service-image {
  height: 250px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
  transition: 0.7s;
}
.service-card:hover .service-image img {
  transform: scale(1.08);
}
.service-number {
  position: absolute;
  right: 22px;
  top: 50px;
  color: rgba(255, 255, 255, 1);
  font-size: 55px;
  font-weight: 900;
 text-shadow: black -2px -2px 1px ;
}
.service-body span{
  color:#5a9bdd;
  font-size: 75px;
  letter-spacing: -4px;
}
.service-icon {
  position: absolute;
  left: 28px;
  top: 218px;
  width: 66px;
  height: 66px;
  background: var(--blue);
  display: grid;
  place-items: center;
  font-size: 26px;
}
.service-body {
  padding: 62px 28px 34px;
}
.service-body h3 {
  margin: 0 0 16px;
  font-size: 23px;
}
.service-body p {
  color: #9ba8b5;
  line-height: 1.7;
  min-height: 84px;
}
.service-body a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.6px;
}
.service-body a i {
  margin-left: 10px;
  color: var(--blue2);
}
.commitments-section {
  background: var(--section-bg);
  color: var(--text);
}
.commitment-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.floating-statement {
  position: absolute;
  left: -45px;
  bottom: 40px;
  width: 300px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(17, 35, 54, 0.14);
}
.floating-statement i {
  color: var(--blue);
  font-size: 28px;
}
.floating-statement p {
  margin: 12px 0 0;
  line-height: 1.6;
  font-weight: 700;
}
.progress-list {
  margin-top: 35px;
}
.progress-list > div {
  margin-bottom: 23px;
}
.progress-list span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.progress-list span i {
  font-style: normal;
  color: var(--blue);
  font-weight: 800;
}
.progress-list em {
  display: block;
  height: 6px;
  background: #d8dfe6;
  overflow: hidden;
}
.progress-list u {
  display: block;
  width: 0;
  height: 100%;
  background: var(--blue);
  transition: width 1.3s ease;
  text-decoration: none;
}
.progress-list.animated u {
  width: var(--w);
}
.commitment-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
}
.commitment-cards article {
  position: relative;
  padding: 38px 34px;
  background: #fff;
  border-right: 1px solid var(--line);
  transition: 0.35s;
}
.commitment-cards article:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-8px);
}
.commitment-cards article > i {
  font-size: 36px;
  color: var(--blue);
  transition: 0.3s;
}
.commitment-cards article:hover > i {
  color: #fff;
}
.commitment-cards article > span {
  position: absolute;
  right: 26px;
  top: 24px;
  font-size: 45px;
  font-weight: 900;
  color: #edf1f5;
}
.commitment-cards h3 {
  margin: 25px 0 12px;
  font-size: 21px;
}
.commitment-cards p {
  margin: 0;
  color: #72808d;
  line-height: 1.7;
}
.commitment-cards article:hover p {
  color: #e7f1fb;
}
.stats-strip {
  background: var(--blue);
  padding: 42px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats-grid > div {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stats-grid > div:last-child {
  border: 0;
}
.stats-grid strong {
  display: block;
  font-size: 52px;
}
.stats-grid span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.process-section {
  color: var(--text);
  background: #fff;
}
.center-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}
.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.process-line:before {
  content: "";
  position: absolute;
  left: 16.666%;
  right: 16.666%;
  top: 48px;
  border-top: 1px dashed #b7c1cb;
}
.process-line article {
  text-align: center;
  position: relative;
}
.process-icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: #f0f4f7;
  display: grid;
  place-items: center;
  font-size: 27px;
  color: var(--blue);
  transition: 0.35s;
}
.process-icon b {
  position: absolute;
  right: -5px;
  top: 0;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
}
.process-line article:hover .process-icon {
  background: var(--blue);
  color: #fff;
  transform: rotateY(180deg);
}
.process-line h3 {
  font-size: 19px;
}
.process-line p {
  color: #75818d;
  line-height: 1.7;
}
.cta-section {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-image,
.cta-overlay {
  position: absolute;
  inset: 0;
}
.cta-image {
  background: url("../images/contact-sec-BG.webp") center/cover;
}
.cta-overlay {
  background: linear-gradient(90deg, rgba(7, 17, 27, 0.95), rgba(7, 17, 27, 0.74), rgba(57, 127, 195, 0.55));
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-inner h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: 54px;
  line-height: 1.08;
}
.cta-inner h2 em {
  color: #8fc4f4;
  font-style: normal;
}
.cta-call {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 27px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  min-width: 330px;
}
.cta-call > i {
  font-size: 28px;
}
.cta-call small,
.cta-call strong {
  display: block;
}
.cta-call small {
  font-size: 11px;
}
.cta-call strong {
  font-size: 24px;
  margin-top: 4px;
}
.faq-section {
  background: #f5f7f9;
  color: var(--text);
}
.faq-photo {
  aspect-ratio: 16 / 5;
  margin-top: 55px;
  overflow: hidden;
}
.faq-accordion {
  border-top: 1px solid #ccd4dc;
 
}
.faq-item {
  border-bottom: 1px solid #ccd4dc;
   
}
.faq-item button {
  width: 100%;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: none;
  color: #1b2938;
  font-size: 18px;
  font-weight: 800;
  text-align: left;
  
}
.faq-item button i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #e6ebef;
  color: var(--blue);
  transition: 0.3s;
}
.faq-item.active button i {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 55px 25px 4px;
  color: #687582;
  line-height: 1.75;
}
.faq-item.active .faq-answer {
  max-height: 240px;
}
.contact-section {
  background: #0b151f;
  color: #fff;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #111e2a;
}
.contact-copy {
  padding: 60px;
}
.contact-copy h2 {
  font-size: 48px;
  line-height: 1.1;
}
.contact-copy > p {
  color: #a7b3bf;
  line-height: 1.7;
}
.contact-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.contact-copy li {
  display: flex;
  gap: 14px;
  margin: 16px 0;
  color: #d7e0e8;
}
.contact-copy li i {
  color: var(--blue2);
  width: 18px;
}
.estimate-form {
  background: #fff;
  padding: 30px;
  color: var(--text);
}
.estimate-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid label {
  display: block;
}
.form-grid label.full {
  grid-column: 1/-1;
}
.form-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d7dfe6;
  padding: 15px;
  background: #f7f9fb;
  color: #1a2734;
}
.estimate-form button {
  margin-top: 8px;
  border: 0;
  background: var(--blue);
  color: #fff;
  padding: 17px 25px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}
.site-footer {
  background: #071019;
  color: #aab5bf;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: 55px;
  padding-top: 80px;
  padding-bottom: 70px;
}
.footer-brand img {
  width: 235px;
}
.footer-brand p {
  line-height: 1.75;
  max-width: 360px;
}
.footer-grid h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 22px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  color: #9ba8b3;
  text-decoration: none;
  margin: 10px 0;
  line-height: 1.55;
}
.footer-grid a:hover {
  color: var(--blue2);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom > div {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
}
.back-to-top-fixed {
  position: fixed;
  right: 24px;
  bottom: 80px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 31, 63, 0.28);
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.back-to-top-fixed:hover {
  background: var(--blue2);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 31, 63, 0.36);
}
.back-to-top-fixed:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.reveal-on-scroll.from-left {
  transform: translateX(-60px);
}
.reveal-on-scroll.from-right {
  transform: translateX(60px);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-on-scroll.delay-a {
  transition-delay: 0.1s;
}
.reveal-on-scroll.delay-b {
  transition-delay: 0.2s;
}
.reveal-on-scroll.delay-c {
  transition-delay: 0.3s;
}
@media (max-width: 991px) {
  .section-pad {
    padding: 85px 0;
  }
  .section-title {
    font-size: 44px;
  }
  .about-visual {
    min-height: 530px;
  }
  .section-heading-row,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .services-grid,
  .commitment-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-cards article {
    border-bottom: 1px solid var(--line);
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .stats-grid > div:nth-child(2) {
    border-right: 0;
  }
  .process-line {
    grid-template-columns: 1fr 1fr;
  }
  .process-line:before {
    display: none;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .floating-statement {
    left: 20px;
  }
  .section-heading-row {
    gap: 25px;
  }
  .commitment-image {
    height: 460px;
  }
  .cta-call {
    min-width: 0;
  }
  .contact-copy,
  .estimate-form {
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .section-pad {
    padding: 68px 0;
  }
  .section-title {
    font-size: clamp(30px, 9vw, 35px);
    letter-spacing: -1px;
  }
  .about-visual {
    min-height: 430px;
  }
  .about-main-image {
    width: 90%;
    height: 360px;
  }
  .about-small-image {
    height: 200px;
    border-width: 8px;
  }
  .experience-badge {
    width: 150px;
    height: 110px;
  }
  .experience-badge strong {
    font-size: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .commitment-cards {
    grid-template-columns: 1fr;
  }
  .service-image {
    height: 215px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 20px;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .cta-inner h2 {
    font-size: clamp(31px, 9vw, 38px);
  }
  .cta-call {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom > div {
    flex-direction: column;
    gap: 12px;
  }
  .contact-copy,
  .estimate-form {
    padding: 20px;
  }
  .contact-copy h2 {
    font-size: clamp(30px, 9vw, 36px);
  }
  .signature-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-number {
    top: 190px;
  }
  .service-icon {
    top: 183px;
  }
  .commitment-image {
    height: 380px;
  }
  .floating-statement {
    left: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 20px;
  }
  .faq-item button {
    gap: 15px;
    font-size: 16px;
  }
  .faq-item button i {
    flex: 0 0 34px;
  }
  .faq-answer p {
    padding-right: 4px;
  }
  .contact-copy li,
  .footer-grid a,
  .footer-grid p {
    overflow-wrap: anywhere;
  }
}
@media (max-width: 380px) {
  .header-inner {
    padding-inline: 15px;
  }
  .hero-content {
    padding-inline: 18px;
  }
  .content-wrap h1 {
    font-size: 33px;
  }
  .hero-buttons {
    width: 190px;
  }
  .trust-card {
    padding-inline: 6px;
  }
  .trust-icon {
    font-size: 25px;
  }
  .mini-brand {
    width: 90px;
  }
  .trust-card h2 {
    font-size: 13px;
  }
  .info-item {
    padding-inline: 8px;
  }
  .contact-copy,
  .estimate-form {
    padding: 18px 16px;
  }
  .cta-call {
    padding-inline: 20px;
  }
  .cta-call strong {
    font-size: 21px;
  }
}

/* Integrated editorial content sections */
.editorial-section {
  position: relative;
  overflow: hidden;
}
.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 90px;
  align-items: center;
}
.editorial-reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}
.editorial-media {
  position: relative;
  min-height: 610px;
}
.editorial-image {
  position: absolute;
  inset: 0 46px 44px 0;
  overflow: hidden;
}
.editorial-image.tall {
  inset: 0 0 36px 50px;
}
.editorial-image img,
.solution-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.editorial-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 78%;
  border: 1px solid rgba(58, 109, 140, 0.45);
  z-index: -1;
}
.editorial-note,
.service-ribbon {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 3;
  box-shadow: 0 18px 50px rgba(0, 31, 63, 0.16);
}
.editorial-note {
  right: 0;
  bottom: 0;
  background: #001f3f;
  color: #fff;
  padding: 24px 28px;
}
.editorial-note > span {
  font-size: 42px;
  font-weight: 800;
  color: #5a9bdd;
  line-height: 1;
}
.editorial-note small,
.service-ribbon small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 11px;
  margin-bottom: 5px;
}
.editorial-note strong,
.service-ribbon strong {
  display: block;
  font-size: 15px;
  max-width: 215px;
}
.editorial-copy .section-title {
  margin-bottom: 24px;
}
.editorial-points {
  margin: 34px 0 30px;
  border-top: 1px solid #dce3e8;
}
.editorial-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #dce3e8;
}
.editorial-points i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #eaf1f4;
  color: #3a6d8c;
  font-size: 20px;
}
.editorial-points h3 {
  font-size: 19px;
  margin: 0 0 7px;
  color: #001f3f;
}
.editorial-points p {
  margin: 0;
  color: #5d6872;
}
.text-arrow-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  color: #001f3f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.text-arrow-link i {
  color: #3a6d8c;
  transition: transform 0.3s ease;
}
.text-arrow-link:hover i {
  transform: translateX(6px);
}
.editorial-dark {
  background: #001f3f;
  color: #fff;
}
.editorial-dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 42%);
  pointer-events: none;
}
.editorial-watermark {
  position: absolute;
  right: -2%;
  top: 8%;
  font-size: clamp(100px, 16vw, 250px);
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  text-transform: uppercase;
}
.light-copy {
  color: rgba(255, 255, 255, 0.72) !important;
}
.dark-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 34px 0;
}
.dark-feature-grid article {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}
.dark-feature-grid span {
  display: block;
  color: #5a9bdd;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.dark-feature-grid h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.dark-feature-grid p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.editorial-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
}
.service-ribbon {
  left: 0;
  bottom: 0;
  background: #5a9bdd;
  color: #001f3f;
  padding: 22px 27px;
}
.service-ribbon > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #001f3f;
  color: #fff;
}
.editorial-split {
  background: #f4f6f7;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.split-heading > p {
  margin: 0 0 8px;
  color: #66717a;
  line-height: 1.8;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.locations-details-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.solution-card {
  background: #fff;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 31, 63, 0.12);
}
.solution-card-image {
  height: 260px;
  overflow: hidden;
}
.solution-card:hover .solution-card-image img {
  transform: scale(1.05);
}
.solution-card-body {
  position: relative;
  padding: 34px 30px 32px;
}
.solution-card:not(.featured) .solution-card-body,
.solution-card.location-card .solution-card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solution-card:not(.featured) .solution-card-body > i {
  position: absolute;
  top: -30px;
  left: 30px;
  margin: 0;
}
.solution-card-body > span {
  position: absolute;
  right: 24px;
  top: 22px;
  color: #d8e0e5;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}
.solution-card-body > i {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #3a6d8c;
  color: #fff;
  font-size: 21px;
  margin-top: -64px;
  margin-bottom: 28px;
  border: 6px solid #fff;
}
.solution-card-body h3 {
  position: relative;
  font-size: 21px;
  color: #001f3f;
  margin-bottom: 14px;
}
.solution-card-body p {
  position: relative;
  color: #66717a;
  line-height: 1.75;
  margin: 0;
}
.solution-card.featured {
  background: #001f3f;
}
.solution-card.featured .solution-card-body h3 {
  color: #fff;
}
.solution-card.featured .solution-card-body p {
  color: rgba(255, 255, 255, 0.68);
}
.solution-card.featured .solution-card-body > i {
  background: #5a9bdd;
  color: #001f3f;
  border-color: #001f3f;
}
.solution-card.featured .solution-card-body > span {
  color: rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
  .editorial-grid,
  .editorial-reverse,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .editorial-copy {
    order: 2;
  }
  .editorial-reverse .editorial-copy {
    order: 2;
  }
  .editorial-reverse .editorial-media {
    order: 1;
  }
  .editorial-media {
    min-height: 520px;
  }
  .solution-cards {
    grid-template-columns: 1fr 1fr;
  }
  .location-card iframe {
    width: 100%;
  }
  .solution-card:last-child {
    grid-column: 1/-1;
  }
  .split-heading {
    margin-bottom: 36px;
  }
  .split-heading > p {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .editorial-media {
    min-height: 430px;
  }
  .editorial-image {
    inset: 0 20px 35px 0;
  }
  .editorial-image.tall {
    inset: 0 0 35px 20px;
  }
  .editorial-note,
  .service-ribbon {
    padding: 18px;
    max-width: 88%;
  }
  .editorial-note > span {
    font-size: 34px;
  }
  .dark-feature-grid,
  .solution-cards {
    grid-template-columns: 1fr;
  }
  .solution-card:last-child {
    grid-column: auto;
  }
  .solution-card-image {
    height: 235px;
  }
  .split-heading {
    gap: 20px;
  }
  .editorial-grid {
    gap: 34px;
  }
}
@media (max-width: 480px) {
  .editorial-media {
    min-height: 370px;
  }
  .editorial-note strong,
  .service-ribbon strong {
    font-size: 13px;
  }
  .editorial-note small,
  .service-ribbon small {
    font-size: 9px;
  }
  .editorial-points article {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .editorial-points i {
    width: 46px;
    height: 46px;
  }
  .dark-feature-grid {
    gap: 12px;
  }
  .solution-card-body {
    padding: 30px 24px;
  }
}

/* =========================================================
   Blue + gray lively hover enhancements
   No orange or warm accent colors are used.
   ========================================================= */
/* Buttons: layered blue sweep, shine and subtle lift */
.btn-main,
.touch-btn,
.editorial-btn,
.estimate-form button,
.cta-call,
.btn-outline {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.btn-main::before,
.touch-btn::before,
.editorial-btn::before,
.estimate-form button::before,
.cta-call::before,
.btn-outline::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(115deg, var(--hover-blue-dark), var(--hover-blue), var(--hover-blue-light));
  transform: translateX(-108%) skewX(-14deg);
  transform-origin: left center;
  transition: transform 0.52s cubic-bezier(0.22, 0.75, 0.25, 1);
}
.btn-main::after,
.touch-btn::after,
.editorial-btn::after,
.estimate-form button::after,
.cta-call::after,
.btn-outline::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35%;
  left: -55%;
  width: 28%;
  height: 170%;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(18deg);
  transition: left 0.58s ease;
}
.btn-main:hover::before,
.touch-btn:hover::before,
.editorial-btn:hover::before,
.estimate-form button:hover::before,
.cta-call:hover::before,
.btn-outline:hover::before {
  transform: translateX(0) skewX(0);
}
.btn-main:hover::after,
.touch-btn:hover::after,
.editorial-btn:hover::after,
.estimate-form button:hover::after,
.cta-call:hover::after,
.btn-outline:hover::after {
  left: 130%;
}
.btn-main:hover,
.touch-btn:hover,
.editorial-btn:hover,
.estimate-form button:hover,
.cta-call:hover,
.btn-outline:hover {
  color: #fff;
  border-color: var(--hover-blue-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px var(--hover-shadow);
}
.btn-main i,
.touch-btn i,
.editorial-btn i,
.estimate-form button i,
.cta-call i,
.btn-outline i {
  transition:
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.3s ease;
}
.btn-main:hover i,
.touch-btn:hover i,
.editorial-btn:hover i,
.estimate-form button:hover i,
.cta-call:hover i,
.btn-outline:hover i {
  transform: translateX(6px) rotate(9deg) scale(1.08);
}

/* Icons: blue flip/tilt with soft gray-blue shadow */
.service-icon,
.process-icon,
.phone-icon,
.trust-icon,
.editorial-points i,
.solution-card-body > i,
.service-ribbon > i,
.contact-copy li > i,
.footer-grid li > i {
  transition:
    transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.service-icon,
.process-icon,
.phone-icon,
.editorial-points i,
.solution-card-body > i {
  box-shadow: inset 0 -3px 0 rgba(106, 154, 176, 0.5);
}
.service-card:hover .service-icon,
.process-line > div:hover .process-icon,
.phone-box:hover .phone-icon,
.trust-card:hover .trust-icon,
.editorial-points article:hover i,
.solution-card:hover .solution-card-body > i,
.service-ribbon:hover > i,

.footer-grid li:hover > i {
  transform: rotateY(180deg) translateY(-3px) scale(1.05);
  background: linear-gradient(145deg, var(--hover-blue-light), var(--hover-blue));
  color: #fff;
  border-color: var(--hover-blue-light);
  box-shadow: 0 12px 28px rgba(58, 109, 140, 0.28);
}
.contact-copy li:hover > i
{
  transform: rotateY(180deg) translateY(-3px) scale(1.05);
  background: transparent !important;
  color: #fff !important;
  border-color: var(--hover-blue-light);
  box-shadow: 0 12px 28px rgba(58, 109, 140, 0.28);
}
.service-card:hover .service-icon i,
.process-line > div:hover .process-icon i,
.phone-box:hover .phone-icon i,
.editorial-points article:hover i::before,
.solution-card:hover .solution-card-body > i::before,
.service-ribbon:hover > i::before {
  display: inline-block;
  transform: rotateY(180deg);
}

/* Cards: lift, blue animated edge and gentle image movement */
.service-card,
.solution-card,
.commitment-cards article,
.dark-feature-grid article,
.trust-card,
.faq-item {
  transition:
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.42s ease,
    border-color 0.35s ease,
    background-color 0.35s ease;
}
.service-card:hover,
.solution-card:hover,
.commitment-cards article:hover,
.dark-feature-grid article:hover,
.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 31, 63, 0.17);
}
.service-card::after,
.solution-card::after,
.commitment-cards article::after,
.dark-feature-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hover-blue-dark), var(--hover-blue-light));
  transition: width 0.48s cubic-bezier(0.22, 0.75, 0.25, 1);
}
.service-card:hover::after,
.solution-card:hover::after,
.commitment-cards article:hover::after,
.dark-feature-grid article:hover::after {
  width: 100%;
}
.commitment-cards article,
.dark-feature-grid article {
  position: relative;
  overflow: hidden;
}
.service-card:hover .service-image img,
.solution-card:hover .solution-card-image img,
.image-zoom:hover img {
  transform: scale(1.07) translateY(-3px);
}

/* Links and small controls remain within the blue-gray family */
.text-arrow-link:hover,
.footer-grid a:hover,
.main-nav > a:hover,
.nav-dropdown:hover > a {
  color: var(--hover-blue-light);
}
.text-arrow-link:hover i,
.service-number,
.solution-card-body > span {
  color: var(--hover-blue-light);
}
.square-link {
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.square-link:hover {
  transform: translateY(-4px);
  background: var(--hover-blue);
  border-color: var(--hover-blue-light);
  color: #fff;
  box-shadow: 0 10px 22px rgba(58, 109, 140, 0.26);
}

/* FAQ: cleaner movement and blue state change */
.faq-item:hover {
  transform: translateX(6px);
  border-color: rgba(58, 109, 140, 0.5);
  background: var(--hover-blue-pale);
}
.faq-item button i {
  transition:
    transform 0.42s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}
.faq-item:hover button i,
.faq-item.active button i {
  background:  #98c7f7;
  color: #fff;
  transform: rotate(90deg) scale(1.05);
}

/* Navbar: blue animated marker and smoother dropdown */
.dropdown-menu-custom {
  transform-origin: top center;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.nav-dropdown:hover .dropdown-menu-custom {
  transform: translateY(0) scaleY(1);
}
.dropdown-menu-custom a {
  position: relative;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding-left 0.3s ease,
    transform 0.3s ease;
}
.dropdown-menu-custom a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hover-blue-dark), var(--hover-blue-light));
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.dropdown-menu-custom a:hover {
  color: var(--hover-blue);
  background: var(--hover-blue-pale);
  padding-left: 31px;
  transform: translateX(2px);
}
.dropdown-menu-custom a:hover::before {
  width: 12px;
}

/* Decorative editorial accents converted from beige to blue-gray */
.editorial-note > span,
.dark-feature-grid span {
  color: var(--hover-blue-light);
}
.service-ribbon {
  background: var(--hover-blue-light);
  color: var(--hover-blue-dark);
}
.solution-card.featured .solution-card-body > i {
  background: var(--hover-blue-light);
  color: var(--hover-blue-dark);
}

/* =========================================================
   FINAL HOVER PALETTE — requested blue + dark gray only
   #397fc3 / #5a9bdd / dark gray
   ========================================================= */
/* Remove the muted/desaturated blue panel treatment */
.editorial-note,
.service-ribbon {
  background: linear-gradient(135deg, var(--hover-primary), var(--hover-dark)) !important;
  color: #fff !important;
}
.editorial-note > span,
.service-ribbon small,
.service-ribbon strong {
  color: #fff !important;
}
.service-ribbon > i {
  background: var(--hover-dark-deep) !important;
  color: #fff !important;
}

/* Unified premium button hover */
.btn,
.theme-btn,
.primary-btn,
.secondary-btn,
.editorial-btn,
button,
input[type="submit"] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.38s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.38s ease,
    color 0.38s ease,
    border-color 0.38s ease,
    background-color 0.38s ease !important;
}
.btn::before,
.theme-btn::before,
.primary-btn::before,
.secondary-btn::before,
.editorial-btn::before,
button::before,
input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--hover-primary) 0%, var(--hover-secondary) 48%, var(--hover-dark) 100%);
  transform: translateX(-105%);
  transition: transform 0.48s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.btn:hover::before,
.theme-btn:hover::before,
.primary-btn:hover::before,
.secondary-btn:hover::before,
.editorial-btn:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
  transform: translateX(0);
}
.btn:hover,
.theme-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.editorial-btn:hover,
button:hover,
input[type="submit"]:hover {
  color: #fff !important;
  border-color: var(--hover-secondary) !important;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px var(--hover-shadow) !important;
}

/* Cards: blue-to-gray border, lift and soft depth */
.solution-card,
.service-card,
.feature-card,
.process-card,
.dark-feature-grid article,
.editorial-points article {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background-color 0.4s ease !important;
}
.solution-card:hover,
.service-card:hover,
.feature-card:hover,
.process-card:hover,
.dark-feature-grid article:hover {
  transform: translateY(-9px);
  border-color: var(--hover-secondary) !important;
  box-shadow:
    0 22px 44px rgba(52, 58, 64, 0.18),
    0 8px 20px var(--hover-shadow) !important;
}

/* Icons: clearer blue, subtle rotate/scale — no orange, no pale blue */
.solution-card-body > i,
.editorial-points i,
.service-card i,
.feature-card i,
.icon-box,
[class*="icon-box"] {
  transition:
    transform 0.42s cubic-bezier(0.2, 0.75, 0.25, 1),
    background 0.42s ease,
    color 0.42s ease,
    box-shadow 0.42s ease !important;
}
.service-body a i {
  font-size: large;
}
.solution-card:hover .solution-card-body > i,
.editorial-points article:hover i,

.feature-card:hover i,
.icon-box:hover,
[class*="icon-box"]:hover {
  transform: rotateY(180deg) scale(1.08);
  background: linear-gradient(135deg, var(--hover-primary), var(--hover-secondary), var(--hover-dark)) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px var(--hover-shadow) !important;
}
.service-card:hover i
{
  transform: rotateY(180deg) scale(1.08);
  color: #fff !important;
  box-shadow: 0 10px 24px var(--hover-shadow) !important;
}
/* Images */
.solution-card-image img,
.editorial-image img,
img {
  transition:
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 0.7s ease !important;
}
.solution-card:hover .solution-card-image img,
.editorial-media:hover .editorial-image img {
  transform: scale(1.065);
  filter: contrast(1.03) saturate(1.03);
}

/* Links and navigation */
.nav-link,
.navbar a,
.main-menu a,
.text-arrow-link,
.footer a {
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease !important;
}
.nav-link:hover,
.navbar a:hover,
.main-menu a:hover,
.text-arrow-link:hover,
.footer a:hover {
  color: var(--hover-secondary) !important;
  text-shadow: 0 5px 18px rgba(57, 127, 195, 0.24);
}
.text-arrow-link:hover i {
  transform: translateX(7px) scale(1.08);
}

/* FAQ and dropdown */
.accordion-button,
.faq-item,
.dropdown-menu a {
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    border-color 0.35s ease !important;
}
.accordion-button:hover,
.faq-item:hover,
.dropdown-menu a:hover {
  background: linear-gradient(100deg, rgba(57, 127, 195, 0.1), rgba(90, 155, 221, 0.12), rgba(52, 58, 64, 0.08)) !important;
  color: var(--hover-primary) !important;
}
.dropdown-menu a:hover {
  transform: translateX(6px);
}

/* Keep motion respectful and mobile-friendly */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (hover: none) {
  .btn:hover,
  .theme-btn:hover,
  .primary-btn:hover,
  .secondary-btn:hover,
  .editorial-btn:hover,
  .solution-card:hover,
  .service-card:hover,
  .feature-card:hover,
  .process-card:hover {
    transform: none;
  }
}

/* =========================================================
   FINAL SITE PALETTE — screenshot-matched navy + two blues
   Hover gradients use ONLY #397fc3 and #5a9bdd
   ========================================================= */
/* Keep the site identity dark navy, white, soft gray and clear blue */
.editorial-note,
.service-ribbon {
  background: linear-gradient(135deg, #397fc3 0%, #5a9bdd 100%) !important;
  color: #fff !important;
}
.editorial-note > span,
.service-ribbon small,
.service-ribbon strong {
  color: #fff !important;
}
.service-ribbon > i {
  background: #09111b !important;
  color: #fff !important;
}
.editorial-points i,
.solution-card-body > i {
  background: #397fc3 !important;
  color: #fff !important;
}
.text-arrow-link i {
  color: #397fc3 !important;
}
.editorial-frame {
  border-color: rgba(57, 127, 195, 0.42) !important;
}

/* Buttons: preserve all motion, but use the two blue shades only */
.btn::before,
.theme-btn::before,
.primary-btn::before,
.secondary-btn::before,
.editorial-btn::before,
button::before,
input[type="submit"]::before,
.btn-main::before,
.touch-btn::before,
.estimate-form button::before,
.cta-call::before,
.btn-outline::before {
  background: linear-gradient(120deg, #397fc3 0%, #5a9bdd 100%) !important;
}
.btn:hover,
.theme-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.editorial-btn:hover,
button:hover,
input[type="submit"]:hover,
.btn-main:hover,
.touch-btn:hover,
.estimate-form button:hover,
.cta-call:hover,
.btn-outline:hover {
  background: linear-gradient(120deg, #397fc3 0%, #5a9bdd 100%) !important;
  border-color: #5a9bdd !important;
  color: #fff !important;
  box-shadow: 0 15px 30px rgba(57, 127, 195, 0.3) !important;
}

/* Icon hover: two-blue gradient only */
.solution-card:hover .solution-card-body > i,
.editorial-points article:hover i,

.feature-card:hover i,
.icon-box:hover,
[class*="icon-box"]:hover,
.process-line > div:hover .process-icon,
.phone-box:hover .phone-icon,
.trust-card:hover .trust-icon,
.service-ribbon:hover > i,
.footer-grid li:hover > i {
  background: linear-gradient(135deg, #397fc3 0%, #5a9bdd 100%) !important;
  color: #fff !important;
  border-color: #5a9bdd !important;
  box-shadow: 0 10px 24px rgba(57, 127, 195, 0.3) !important;
}

/* Card depth without gray inside the gradient */
.solution-card:hover,
.service-card:hover,
.feature-card:hover,
.process-card:hover,
.dark-feature-grid article:hover,
.commitment-cards article:hover,
.trust-card:hover {
  border-color: #5a9bdd !important;
  box-shadow:
    0 22px 44px rgba(9, 17, 27, 0.16),
    0 8px 20px rgba(57, 127, 195, 0.22) !important;
}
.service-card::after,
.solution-card::after,
.commitment-cards article::after,
.dark-feature-grid article::after {
  background: linear-gradient(90deg, #397fc3 0%, #5a9bdd 100%) !important;
}

/* FAQ and dropdown hover: light two-blue wash only */
.accordion-button:hover,
.faq-item:hover,
.dropdown-menu a:hover,
.dropdown-menu-custom a:hover {
  background: linear-gradient(100deg, rgba(57, 127, 195, 0.1), rgba(90, 155, 221, 0.15)) !important;
  color: #397fc3 !important;
}

/* Navigation underline and active accents */
.main-nav > a::after,
.dropdown-toggle::after,
.dropdown-menu-custom::before {
  background: linear-gradient(90deg, #397fc3 0%, #5a9bdd 100%) !important;
}
.main-nav > a:hover,
.nav-dropdown:hover > a,
.text-arrow-link:hover,
.footer-grid a:hover {
  color: #5a9bdd !important;
}

.offers-btn {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 50px;
}
form.CUS input.subject {
  display: none;
}
.dropdown-toggle:hover {
  background: none !important;
  box-shadow: none !important;
}

.dropdown-toggle::before,
.dropdown-toggle:hover::before {
  display: none !important;
}

.locations-area {
  background: var(--section-bg);
}

.locations-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.locations-heading > p:last-child {
  margin: 22px auto 0;
  color: #66717a;
  line-height: 1.8;
}

.locations-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.locations-buttons .btn-main {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 767px) {
  .locations-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-heading {
    margin-bottom: 34px;
  }
}
