/*==========================================================================
  CLEAN VISION CLEANING SERVICES — REDESIGN STYLESHEET
  Loaded on every page (linked from includes/header.php) so the header,
  offcanvas menu, footer and back-to-top button look right everywhere.
  Home-page-only sections are prefixed .cv-home to avoid leaking styles
  onto the older inner pages.
==========================================================================*/

:root {
  /* Brand palette — sampled from logo.png (navy + green) */
  --navy: #0A3B72;
  --navy-dark: #062648;
  --navy-light: #12508F;
  --green: #6DBA2E;
  --green-dark: #4C8A1F;
  --green-light: #E9F5DE;

  --bg: #F6F9F5;
  --surface: #FFFFFF;
  --ink: #12202E;
  --muted: #57697B;
  --border: #E4EAE3;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 14px rgba(10, 59, 114, 0.08);
  --shadow: 0 14px 40px rgba(10, 59, 114, 0.12);
  --shadow-lg: 0 28px 70px rgba(10, 59, 114, 0.18);

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1240px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/*==========================================================================
  RESET / BASE
==========================================================================*/
* {
  box-sizing: border-box;

}

html,
body {
  margin: 0;
  padding: 0;


  -webkit-overflow-scrolling: touch;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.cv-home img {
  max-width: 100%;
  display: block;
}

.cv-home a {
  text-decoration: none;
}

.cv-home ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-home h1,
.cv-home h2,
.cv-home h3,
.cv-home h4 {
  font-family: var(--font-head);
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.25;
}

.cv-home p {
  /* margin: 0; */
  /* color: var(--muted) !important; */
  line-height: 1.7;
}

.cv-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Section rhythm */
.cv-section {
  padding: 70px 0;
}

.cv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cv-section-head {
  max-width: 640px;
  margin-bottom: 42px;
}

.cv-section-head.center {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cv-section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
}

.cv-section-head h2 span {
  color: var(--green-dark);
}

.cv-section-head p {
  margin-top: 16px;
  font-size: 17px;
}

/* Buttons */
.cv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.cv-btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.cv-btn--primary:hover {
  background: var(--navy-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.cv-btn--accent {
  background: var(--green);
  color: var(--navy-dark);
}

.cv-btn--accent:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-3px);
}

.cv-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.cv-btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.cv-btn--outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.cv-btn--outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

/*==========================================================================
  TOP BAR
==========================================================================*/
.cv-topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .85);
  font-size: 13.5px;
}

.cv-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.cv-topbar__contact {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.cv-topbar__contact a,
.cv-topbar__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .85);
  transition: var(--transition);
}

.cv-topbar__contact a:hover {
  color: var(--green);
}

.cv-topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.cv-topbar__hours {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cv-topbar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cv-topbar__social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 12px;
  transition: var(--transition);
}

.cv-topbar__social a:hover {
  background: var(--green);
  color: var(--navy-dark);
}

@media (max-width: 991px) {

  .cv-topbar__location,
  .cv-topbar__hours {
    display: none;
  }
}

@media (max-width: 640px) {
  .cv-topbar {
    display: none;
  }
}

/*==========================================================================
  MAIN HEADER
==========================================================================*/
.cv-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 18px rgba(10, 59, 114, .07);
}

.cv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  transition: var(--transition);
}

.cv-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cv-brand__mark {
  height: 76px;
  width: auto;
  transition: var(--transition);
}

.cv-brand__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
  line-height: 1.15;
}

.cv-brand__text strong,
.cv-brand__text .cv-brand__name {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: .01em;
}

.cv-brand__text .cv-brand__name span {
  color: var(--green-dark);
}

.cv-brand__text small {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cv-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cv-nav__list>li {
  position: relative;
}

.cv-nav__list>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cv-nav__list>li>a:hover,
.cv-nav__list>li.is-active>a {
  color: var(--green-dark);
  background: var(--green-light);
}

.cv-nav__list>li>a i {
  font-size: 15px;
  transition: var(--transition);
}

.cv-nav__dropdown:hover>a i {
  transform: rotate(180deg);
}

.cv-nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.cv-nav__dropdown:hover .cv-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cv-nav__submenu li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: var(--transition);
}

.cv-nav__submenu li a:hover {
  background: var(--green-light);
  color: var(--green-dark);
  padding-left: 18px;
}

.cv-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cv-header__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px solid var(--border);
}

.cv-header__phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.cv-header__phone-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-head);
}

.cv-header__phone-text small {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500;
}

.cv-header__phone-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
}

.cv-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 50px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
}

.cv-burger span {
  width: 33px;
  height: 4px;
  background: var(--navy-dark);
  margin: 0 auto;
  transition: var(--transition);
}

.cv-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cv-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.cv-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1180px) {
  .cv-nav {
    display: none;
  }

  .cv-header__phone {
    display: none;
  }

  .cv-burger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .cv-header__cta {
    display: none;
  }

  .cv-brand__mark {
    height: 73px;
  }

  .cv-brand__text .cv-brand__name {
    font-size: 17px;
  }
}

/*==========================================================================
  OFFCANVAS MOBILE MENU
==========================================================================*/
.cv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 38, 72, .55);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 300;
  backdrop-filter: blur(2px);
}

.cv-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cv-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: #fff;
  z-index: 400;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
}

.cv-offcanvas.is-open {
  transform: translateX(0);
}

.cv-offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cv-offcanvas__header img {
  height: 50px;
}

.cv-offcanvas__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  color: var(--navy-dark);
}

.cv-offcanvas__nav {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
}

.cv-offcanvas__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy-dark);
}

.cv-offcanvas__nav a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.cv-offcanvas__submenu {
  padding-left: 14px;
  display: none;
}

.cv-offcanvas__submenu.is-open {
  display: block;
}

.cv-offcanvas__submenu a {
  font-weight: 500;
  font-size: 14px;
  padding: 10px 12px;
}

.cv-offcanvas__nav-toggle {
  cursor: pointer;
}

.cv-offcanvas__body {
  padding: 22px 24px 40px;
}

.cv-offcanvas__body h4 {
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.cv-offcanvas__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.cv-offcanvas__contact a,
.cv-offcanvas__contact div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.cv-offcanvas__contact i {
  color: var(--green-dark);
  margin-top: 2px;
}

.cv-offcanvas__cta {
  display: block;
  text-align: center;
  margin-bottom: 26px;
}

.cv-offcanvas__social {
  display: flex;
  gap: 10px;
}

.cv-offcanvas__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
}

.cv-offcanvas__social a:hover {
  background: var(--green);
  color: #fff;
}

/*==========================================================================
  HERO
==========================================================================*/
.cv-hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 840px;
  overflow: hidden;
  background: var(--navy-dark);
}

.cv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.cv-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.cv-hero__bg {
  position: absolute;
  inset: 0;
}

.cv-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 7s linear;
}

.cv-hero__slide.is-active .cv-hero__bg img {
  transform: scale(1.16);
}

.cv-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 38, 72, .92) 0%, rgba(6, 38, 72, .72) 38%, rgba(6, 38, 72, .32) 68%, rgba(6, 38, 72, .12) 100%);
}

.cv-hero__inner {
  position: relative;
  z-index: 5;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
}

.cv-hero__content {
  max-width: 620px;
  color: #fff;
}

.cv-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(109, 186, 46, .18);
  border: 1px solid rgba(109, 186, 46, .4);
  color: #D9F2C4;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(24px);
}

.cv-hero__slide.is-active .cv-hero__tag {
  animation: cvUp .7s ease forwards .2s;
}

.cv-hero__content h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(30px);
}

.cv-hero__slide.is-active h1 {
  animation: cvUp .7s ease forwards .35s;
}

.cv-hero__content p {
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(30px);
}

.cv-hero__slide.is-active p {
  animation: cvUp .7s ease forwards .5s;
}

.cv-hero__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.cv-hero__slide.is-active .cv-hero__btns {
  animation: cvUp .7s ease forwards .65s;
}

@keyframes cvUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cv-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
}

.cv-hero__arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--navy-dark);
}

.cv-hero__arrow svg {
  width: 20px;
  height: 20px;
}

.cv-hero__arrow--prev {
  left: 30px;
}

.cv-hero__arrow--next {
  right: 30px;
}

.cv-hero__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.cv-hero__dots button {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.cv-hero__dots button.is-active {
  background: var(--green);
  width: 44px;
}

@media (max-width: 640px) {
  .cv-hero {
    height: 88vh;
    min-height: 560px;
  }

  .cv-hero__arrow {
    width: 42px;
    height: 42px;
    display: none !important;
  }

  .cv-hero__arrow--prev {
    left: 14px;
  }

  .cv-hero__arrow--next {
    right: 14px;
  }
}

/* Trust strip overlapping hero bottom */
.cv-trust {
  position: relative;
  z-index: 30;
  margin-top: -46px;
}

.cv-trust__inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cv-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid var(--border);
}

.cv-trust__item:last-child {
  border-right: none;
}

.cv-trust__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}

.cv-trust__item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
}

.cv-trust__item span {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 991px) {
  .cv-trust__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cv-trust__item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 560px) {
  .cv-trust {
    margin-top: -30px;
  }

  .cv-trust__inner {
    grid-template-columns: 1fr;
  }

  .cv-trust__item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cv-trust__item:last-child {
    border-bottom: none;
  }
}

/*==========================================================================
  ABOUT / INTRO
==========================================================================*/
/*.cv-about {*/
/*  padding-top: 130px;*/
/*}*/

.cv-about__grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 60px;
  align-items: center;
}

.cv-about__media {
  position: relative;
}

.cv-about__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.cv-about__badge {
  position: absolute;
  left: -28px;
  bottom: -28px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.cv-about__badge span {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
}

.cv-about__badge p {
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  margin-top: 4px;
}

.cv-about__content .cv-eyebrow {
  margin-bottom: 16px;
}

.cv-about__content h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 20px;
}

.cv-about__content>p {
  font-size: 16.5px;
  margin-bottom: 28px;
}

.cv-about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 34px;
}

.cv-about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 14.5px;
}

.cv-about__feature i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.cv-about__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cv-about__call {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy-dark);
}

.cv-about__call i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 991px) {
  .cv-about__grid {
    grid-template-columns: 1fr;
  }

  .cv-about__media img {
    height: 340px;
  }

  .cv-about__badge {
    left: 16px;
    bottom: -20px;
  }
}

@media (max-width: 560px) {
  .cv-about__features {
    grid-template-columns: 1fr;
  }
}

/*==========================================================================
  SERVICES
==========================================================================*/
.cv-services-grid {
  display: grid;
  /*grid-template-columns: repeat(3, 1fr);*/
  gap: 24px;
}

.cv-service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* padding: 34px 26px; */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cv-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  opacity: 0;
  transition: var(--transition);
}

.cv-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cv-service-card:hover::before {
  opacity: 1;
}

.cv-service-card__icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.cv-service-card:hover .cv-service-card__icon {
  background: var(--green);
  color: #fff;
}

.cv-service-card h3 {
  position: relative;
  z-index: 2;
  font-size: 19px;
  margin-bottom: 10px;
  transition: var(--transition);
}

.cv-service-card:hover h3 {
  color: #fff;
}

.cv-service-card p {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  transition: var(--transition);
}

.cv-service-card:hover p {
  color: rgba(255, 255, 255, .8);
}

.cv-service-card__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy);
  transition: var(--transition);
}

.cv-service-card:hover .cv-service-card__link {
  color: var(--green);
}

.cv-services-cta {
  text-align: center;
  margin-top: 46px;
}

@media (max-width: 1180px) {
  .cv-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cv-services-grid {
    grid-template-columns: 1fr;
  }
}

/*==========================================================================
  WHY CHOOSE US
==========================================================================*/
.cv-why {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.cv-why::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 186, 46, .18) 0%, transparent 70%);
}

.cv-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cv-why__media {
  position: relative;
}

.cv-why__media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.cv-why__rating {
  position: absolute;
  right: -20px;
  top: 30px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.cv-why__rating i {
  color: #F5A623;
  font-size: 20px;
}

.cv-why__rating strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--navy-dark);
}

.cv-why__rating span {
  font-size: 12px;
  color: var(--muted);
}

.cv-why__content .cv-eyebrow {
  background: rgba(109, 186, 46, .15);
  color: var(--green);
}

.cv-why__content h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 18px;
}

.cv-why__content h2 strong {
  color: var(--green);
}

.cv-why__content>p {
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  margin-bottom: 32px;
}

.cv-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.cv-why__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cv-why__feature i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(109, 186, 46, .15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.cv-why__feature h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 3px;
}

.cv-why__feature span {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
}

.cv-why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.cv-why__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
}

.cv-why__stat span {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
}

@media (max-width: 991px) {
  .cv-why__grid {
    grid-template-columns: 1fr;
  }

  .cv-why__media img {
    height: 320px;
  }

  .cv-why__rating {
    right: 16px;
  }
}

@media (max-width: 640px) {

  .cv-why__features,
  .cv-why__stats {
    grid-template-columns: 1fr 1fr;
  }
}

/*==========================================================================
  TESTIMONIALS
==========================================================================*/
.cv-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cv-t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition: var(--transition);
}

.cv-t-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: transparent;
}

.cv-t-card__stars {
  color: #F5A623;
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.cv-t-card__text {
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 24px;
  min-height: 90px;
}

.cv-t-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.cv-t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-t-card__meta h4 {
  font-size: 14.5px;
}

.cv-t-card__meta span {
  font-size: 12.5px;
  color: var(--muted);
}

.cv-testimonials-cta {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 1180px) {
  .cv-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cv-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/*==========================================================================
  FAQ
==========================================================================*/
.cv-faq {
  max-width: 860px;
  margin: 0 auto;
}

.cv-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
}

.cv-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy-dark);
  text-align: left;
}

.cv-faq__q i {
  color: var(--green-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.cv-faq__item.is-open .cv-faq__q i {
  transform: rotate(45deg);
}

.cv-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.cv-faq__a p {
  padding: 0 24px 20px;
  font-size: 14.5px;
}

/*==========================================================================
  CTA BANNER
==========================================================================*/
.cv-cta {
  position: relative;
  overflow: hidden;
}

.cv-cta__bg {
  position: absolute;
  inset: 0;
}

.cv-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv-cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(6, 38, 72, .95) 10%, rgba(6, 38, 72, .8) 55%, rgba(109, 186, 46, .55) 130%);
}

.cv-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 70px 0;
}

.cv-cta__text h2 {
  color: #fff;
  font-size: clamp(24px, 2.8vw, 32px);
  margin-bottom: 10px;
}

.cv-cta__text p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
}

.cv-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cv-cta__inner {
    padding: 50px 0;
  }
}

/*==========================================================================
  FOOTER
==========================================================================*/
.cv-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .7);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

.cv-footer::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 186, 46, .14) 0%, transparent 70%);
}

.cv-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.cv-footer__brand img {
  width: 160px;
  height: 110px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.cv-footer__brand p {
  color: rgba(255, 255, 255, .6);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.cv-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.cv-footer__socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.cv-footer__socials a:hover {
  background: var(--green);
  color: var(--navy-dark);
}

.cv-footer h3 {
  color: #fff;
  font-size: 16.5px;
  margin-bottom: 24px;
  font-family: var(--font-head);
}

.cv-footer__links li {
  margin-bottom: 13px;
}

.cv-footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  transition: var(--transition);
}

.cv-footer__links a i {
  font-size: 11px;
  color: var(--green);
}

.cv-footer__links a:hover {
  color: var(--green);
  padding-left: 4px;
}

.cv-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .7);
}

.cv-footer__contact i {
  color: var(--green);
  margin-top: 3px;
}

.cv-footer__hours {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .6);
}

.cv-footer__hours strong {
  color: #fff;
  font-weight: 500;
}

.cv-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
}

.cv-footer__bottom a {
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

.cv-footer__bottom a:hover {
  color: var(--green);
}

@media (max-width: 991px) {
  .cv-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .cv-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/*==========================================================================
  BACK TO TOP
==========================================================================*/
.cv-top-btn {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 250;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: var(--transition);
}

.cv-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cv-top-btn:hover {
  background: var(--green);
  color: var(--navy-dark);
}

.cv-top-btn svg {
  width: 20px;
  height: 20px;
}

/*==========================================================================
  GENERIC RESPONSIVE SECTION SPACING
==========================================================================*/
@media (max-width: 991px) {
  .cv-section {
    padding: 64px 0;
  }

  .cv-about {
    padding-top: 90px;
  }
}