@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

body {
  font-family: var(--sans);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
:root {
  --navy: #2caaec;
  --navy-mid: #0d3060;
  --blue: #1a5fb4;
  --sky: #e5f6ff;
  --sky-light: #e0f4fd;
  --gold: #c9a84c;
  --gold-light: #fdf6e3;
  --off-white: #f8f7f4;
  --warm-white: #bdebff;
  --text: #1a1a1a;
  --muted: #5a6a7a;
  --border: #e4e8ee;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}
/* HEADER */

.main-header-wrap {
  position: relative;
  z-index: 999;
  background: #fff;
}

/* TOP BAR */

.header-top-bar {
  background: #2dadef;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  padding: 12px 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT */

.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-item i {
  color: var(--white);
  font-size: 14px;
}

.header-top-item span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

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

/* RIGHT */

.header-top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-right span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.header-top-right a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

/* MAIN AREA */

.main-header-area {
  padding: 22px 0;
}

.main-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */

.main-header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.main-header-logo img {
  width: 130px;

  object-fit: contain;
}

/* MENU */

.main-header-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-header-menu ul li {
  position: relative;
}

.main-header-menu ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.main-header-menu ul li a:hover {
  color: #36c6ef;
}

.main-header-menu ul li a i {
  font-size: 12px;
}

/* RIGHT */

.main-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* PHONE */

.main-header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid #e5e5e5;
}

.main-header-phone-icon {
  color: var(--navy);
  font-size: 20px;
}

.main-header-phone a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

/* MOBILE TOGGLE */

.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 24px;
  color: #111;
  cursor: pointer;
}

/* MOBILE MENU */

.mobile-menu-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  display: none;
  border-top: 1px solid #eee;
}

.mobile-menu-box.active {
  display: block;
}

.mobile-menu-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-box ul li {
  margin-bottom: 18px;
}

.mobile-menu-box ul li:last-child {
  margin-bottom: 0;
}

.mobile-menu-box ul li a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 600;
}

/* ANIMATION */

@keyframes headerGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* RESPONSIVE */

@media (max-width: 1399px) {
  .main-header-logo h2 {
    font-size: 34px;
  }

  .main-header-menu ul {
    gap: 28px;
  }
}

@media (max-width: 1199px) {
  .main-header-menu {
    display: none;
  }

  .main-header-phone {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 767px) {
  .header-top-bar {
    display: none;
  }

  .main-header-logo h2 {
    font-size: 28px;
  }

  .main-header-logo img {
    width: 114px;
    height: 84px;
  }

  .main-header-btn {
    display: none;
  }
}
.realestate-banner-section {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #111;
}

/* BACKGROUND IMAGE */

.realestate-banner-bg {
  position: absolute;
  inset: 0;
}

.realestate-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TOP BAR */

/* LOGO */

.realestate-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.realestate-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #7c5a00;

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

.realestate-logo-icon i {
  color: #f4b116;
  font-size: 15px;
}

.realestate-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #7c5a00;
}

/* LEFT CONTENT */

.realestate-banner-content {
    width: 100%;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0 0 0;
}
.btn-wrap {
  display: block;
}
/* SHAPE */

.realestate-banner-shape {
  position: absolute;
  inset: 0;
  background: #000000a6;
}

/* EXTRA CIRCLE EFFECT */

.realestate-banner-shape::after {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.08);

  right: -220px;
  top: 40px;
}

/* INNER */

.realestate-banner-inner {
  position: relative;
  z-index: 3;
  padding: 60px 60px 60px 58px;
}

/* TITLE */

.realestate-banner-inner h1 {
  font-size: 63px;
  color: #fff;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.realestate-banner-inner h1 span {
  display: block;
}
.realestate-banner-inner p {
      color: #fff;
      font-size: 19px;
      font-weight: 300;
      line-height: 28px;
      margin: 0 auto 40px auto;
      max-width: 50%;
  }
.services-section {
  padding: 110px 0;
  background: var(--off-white);
  overflow: hidden;
}

@media (max-width: 1199px) {
    .realestate-banner-section {
    height: auto;
    min-height: 390px;
    }

    .realestate-banner-content {
    width: 100%;
    top: 44px;
    }
    .realestate-banner-inner h1 {
    font-size: 53px;
    }
    .realestate-banner-inner p {
        max-width: 90%;
    }

}
@media (max-width: 991px) {
    .bullet-grid, .split-grid, .about-grid, .emergency-inner, .portal-grid {
        display: block !important;
    }
    .h4-blocks, .pkg-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    .section-tag {
        font-size: 15px;
    }
    .split-content, .about-content {
        margin: 20px 0;
    }
}

@media (max-width: 767px) {
    .portal-content{
        margin-bottom: 20px;
    }
    .section-tag {
        font-size: 15px;
    }
    .realestate-banner-inner p {
        max-width: 90%;
    }
  .realestate-banner-section {
    min-height: 530px;
  }

  .realestate-banner-inner {
    padding: 40px 0;
  }

  .realestate-banner-inner h1 {
    font-size: 37px;
    line-height: 1;
  }

  .realestate-banner-inner p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 80%;
  }

  .realestate-banner-btn {
    min-width: 160px;
    height: 52px;
  }

  .realestate-banner-btn span {
    font-size: 15px;
  }
  .section-tag {
    font-size: 15px;
  }
}
.trustbar-section {
  background: linear-gradient(135deg, #0a43a8e0 0%, #2dadef 100%);
  padding: 18px 0;
  overflow: hidden;
}

/* SLIDER */

.trustbar-slider {
  width: 100%;
}

/* ITEM */

.trustbar-item {
  color: #fff;
  font-size: 18px;
  padding: 0px 20px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  position: relative;
}

/* DOT */

/* SLICK */

.slick-track {
  display: flex !important;
  align-items: center;
}

.slick-slide {
  height: inherit !important;
}

/* RESPONSIVE */

@media (max-width: 767px) {
  .trustbar-section {
    padding: 14px 0;
  }

  .trustbar-item {
    font-size: 15px;
  }
}
.trust-logo-slider {
  padding: 50px 0;
  background: #ebebeb;
}

.trust-carousel .item {
  padding: 10px;
}

.logo-box {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
/* ─── PROCESS ─── */
.process-section {
  padding: 110px 0;
}
.process-head {
  text-align: center;
  margin-bottom: 70px;
}
.process-head p {
  max-width: 480px;
  margin: 16px auto 0;
}
.process-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-wrap::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #3178bb 0 8px,
    transparent 8px 18px
  );
  z-index: 0;
}
.process-item {
  text-align: center;
  position: relative;
  z-index: 2;
}
.process-icon {
  width: 92px;
  height: 92px;
  background: var(--navy);
  border-radius: 26px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--warm-white);
  font-size: 30px;
  transition: all 0.3s;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
}
.process-item:hover .process-icon {
  background: var(--blue);
  transform: translateY(-4px) rotate(-4deg);
}
.process-num {
  position: absolute;
  bottom: -10px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #29b6f6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  border: 3px solid #ffffff;
}
.process-item h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.section-heading {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
}
.section-heading em {
  font-style: italic;
  color: var(--navy);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .wave-btn-blue, .split-image, .pkg-card {
      margin: 10px 0;
  }
  .section-heading {
      font-size: 40px;
    }
    .section-tag {
        margin: 25px  0 13px 0;
        font-size: 15px;
    }
  .process-wrap {
    grid-template-columns: 1fr !important;
  }
  .eicr-codes {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .bullet-grid,
  .split-grid,
  .about-grid,
  .h4-blocks,
  .emergency-inner,
  .pkg-grid,
  .portal-grid {
    display: block !important;
  }
  .h4-block,
  .pkg-grid {
    margin-bottom: 20px;
  }
  .em-image {
    min-height: 100% !important;
  }
  .em-content {
    padding: 35px 20px 0 !important;
  }
}

@media (max-width: 1100px) {
  .process-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
/* ─── SERVICES CARDS ─── */
.services-section {
  padding: 110px 0;
  background: var(--off-white);
  overflow: hidden;
}
.services-head {
  text-align: center;
  margin-bottom: 56px;
}
.services-head p {
  max-width: 540px;
  margin: 16px auto 0;
}
.services-section .svc-owl-clip {
  overflow: hidden;
}
.services-section .svc-slide {
  padding: 0 22px;
}
.svc-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7, 30, 61, 0.12);
}
.services-section .svc-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.services-section .svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.services-section .svc-card:hover .svc-img img {
  transform: scale(1.06);
}
.services-section .svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0) 50%,
    rgba(7, 30, 61, 0.35) 100%
  );
}
.services-section .svc-shelf {
  padding: 48px 26px 28px;
  position: relative;
}
.services-section .svc-icon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--warm-white);
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 6px 20px rgba(7, 30, 61, 0.2);
  transition: all 0.3s;
}
.services-section .svc-card:hover .svc-icon {
  background: var(--white);
  color: var(--navy);
}
.services-section .svc-shelf h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.services-section .svc-shelf p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  text-align: center;
  margin-bottom: 22px;
}
.services-section .svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.services-section .svc-link-wrap {
  text-align: center;
}
.services-section .svc-link:hover {
  gap: 10px;
}
.services-section .owl-dots {
  margin-top: 42px !important;
  text-align: center;
}
.services-section .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: #cdd4de !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all 0.3s !important;
  display: inline-block;
}
.services-section .owl-dot.active span {
  background: var(--navy) !important;
  width: 24px !important;
  border-radius: 4px !important;
}
.services-section .owl-nav {
  display: none !important;
}
/* ─── VHL GROUP ─── */
.group-section {
  padding: 110px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.group-section::after {
  content: "VHL";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 400;
  color: rgba(7, 30, 61, 0.04);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

.group-header {
  text-align: center;
  margin-bottom: 64px;
}

.group-header p {
  max-width: 660px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.group-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.gc-photo {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.gc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.group-card:hover .gc-photo img {
  transform: scale(1.05);
}

.gc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0.1) 0%,
    rgba(7, 30, 61, 0.45) 100%
  );
}

.gc-body {
  padding: 36px 36px 40px;
  position: relative;
}

.group-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--blue) 100%);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(7, 30, 61, 0.1);
}
.group-card:hover::before {
  opacity: 1;
}

.group-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.group-card.featured::before {
  opacity: 1;
}

.gc-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 14px;
  right: 22px;
  letter-spacing: -0.03em;
  z-index: 3;
  opacity: 0.85;
}

.group-card.featured .gc-num {
  color: #fff;
}

.gc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -64px 0 24px;
  font-size: 22px;
  color: var(--navy);
  border: 4px solid var(--warm-white);
  position: relative;
  z-index: 4;
}

.group-card.featured .gc-icon {
  background: var(--white);
  color: var(--navy);
  border-color: var(--sky);
}

.gc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--navy);
}

.group-card.featured .gc-title {
  color: #fff;
}

.gc-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--muted);
}

.group-card.featured .gc-desc {
  color: rgba(255, 255, 255);
}
@media (max-width: 768px) {
  .group-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 1100px) {
  .group-cards,
  .accred-cards {
    grid-template-columns: 1fr 1fr !important;
  }
}
/* ─── WHY US ─── */
.why-section {
  padding: 110px 0;
  background: var(--off-white);
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.why-images {
  position: relative;
}
.img-stack {
  position: relative;
  height: 770px;
}
.img-stack .img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 78%;
  border-radius: 24px;
  overflow: hidden;
}
.img-stack .img-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 6px solid var(--off-white);
}
.img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exp-badge {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(7, 30, 61, 0.15);
  border: 1px solid var(--border);
  min-width: 124px;
}
.exp-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--sky);
  font-size: 20px;
}
.exp-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}
.exp-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.why-content {
}
.why-content > p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin: 24px 0 32px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-item .fi-check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--sky-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}
.feature-item span {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}
.feature-item span b {
  font-weight: 600;
  color: var(--navy);
}
.why-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 50px;
  transition: all 0.25s;
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 95, 180, 0.3);
}
/* ─── ABOUT ─── */
.about-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(41, 182, 246, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

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

.about-images {
  position: relative;
}

.img-stack {
  position: relative;
  height: 1050px;
}

.img-stack .img-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exp-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: var(--warm-white);
  border-radius: 20px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(7, 30, 61, 0.15);
  border: 1px solid var(--border);
  min-width: 130px;
}

.exp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--sky);
  font-size: 20px;
}

.exp-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  color: var(--navy);
}

.exp-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

.about-content {
}

.about-content p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-content p:last-of-type {
  margin-bottom: 36px;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 110px 0;
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header p {
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  border: 1px solid var(--border);
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-tile:hover img {
  transform: scale(1.08);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0) 30%,
    rgba(7, 30, 61, 0.92) 100%
  );
  transition: background 0.3s;
}

.service-tile:hover::after {
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0.2) 10%,
    rgba(7, 30, 61, 0.95) 100%
  );
}

.service-tile-body {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  width: 100%;
}

.st-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 14px;
}

.st-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}

.st-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.35s;
}

.service-tile:hover .st-desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 4px;
}

/* ─── VHL GROUP ─── */
.group-section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, #1e6fb0 100%);
}
.group-header p, .group-header div, .group-header h2, .group-header em {
    color: #fff !important;
}
.group-section::after {
  content: "VHL";
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--serif);
  font-size: 220px;
  font-weight: 400;
  color: rgba(7, 30, 61, 0.04);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

.group-header {
  text-align: center;
  margin-bottom: 64px;
}

.group-header p {
  max-width: 580px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.group-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.group-card {
  background: var(--white);
  border-radius: 24px;
  padding: 0;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.gc-photo {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.gc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.group-card:hover .gc-photo img {
  transform: scale(1.05);
}

.gc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0.1) 0%,
    rgba(7, 30, 61, 0.45) 100%
  );
}

.gc-body {
  padding: 36px 36px 40px;
  position: relative;
}

.group-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky) 0%, var(--blue) 100%);
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.group-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(7, 30, 61, 0.1);
}
.group-card:hover::before {
  opacity: 1;
}

.group-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.group-card.featured::before {
  opacity: 1;
}

.gc-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 14px;
  right: 22px;
  letter-spacing: -0.03em;
  z-index: 3;
  opacity: 0.85;
}

.group-card.featured .gc-num {
  color: #fff;
}

.gc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -64px 0 24px;
  font-size: 22px;
  color: var(--white);
  border: 4px solid var(--warm-white);
  position: relative;
  z-index: 4;
}

.group-card.featured .gc-icon {
  background: var(--white);
  border-color: var(--navy);
}

.gc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--navy);
}

.group-card.featured .gc-title {
  color: #fff;
}

.gc-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.values-section .gc-desc {
  max-width: 550px;
  margin: 10px auto;
}
.group-card.featured .gc-desc {
  color: rgba(255, 255, 255);
}

/* ─── COVERAGE ─── */
.coverage-section {
  padding: 110px 0;
}

.coverage-inner {
  background: var(--navy);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.coverage-text {
  padding: 72px 64px;
  position: relative;
}

.coverage-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.coverage-text .section-tag {
  color: var(--white);
}
.coverage-text .section-tag::before {
  background: var(--sky);
}

.coverage-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}

.coverage-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255);
  margin-bottom: 28px;
}

.coverage-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.area-chip {
  background: rgba(41, 182, 246, 0.12);
  border: 1px solid rgba(41, 182, 246, 0.2);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
}

.coverage-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky);
  color: var(--white);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  transition: all 0.25s;
}

.coverage-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

.coverage-image {
  position: relative;
  min-height: 400px;
  padding: 50px 50px 50px 0;
}

.coverage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coverage-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, transparent 40%);
  z-index: 1;
}

/* ─── VALUES CAROUSEL ─── */
.values-section {
  padding: 110px 0;
  background: var(--off-white);
  overflow: hidden;
}

.values-header {
  margin-bottom: 56px;
  text-align: center;
}

.values-owl-wrap {
  overflow: hidden;
}

.val-card {
  background: var(--fwhite);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 560px;
}

.val-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(7, 30, 61, 0.1);
}

.val-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.val-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.val-card:hover .val-img img {
  transform: scale(1.04);
}

.val-icon-wrap {
  display: flex;
  justify-content: center;
  margin-top: -26px;
  position: relative;
  z-index: 5;
}

.val-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--warm-white);
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(7, 30, 61, 0.2);
}

.val-body {
  padding: 20px 28px 32px;
  text-align: center;
}

.val-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}

.val-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 24px;
}

.val-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.val-link:hover {
  gap: 10px;
}

.owl-dots {
  margin-top: 40px !important;
  text-align: center;
}
.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: #cdd4de !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all 0.3s !important;
  display: inline-block;
}
.owl-dot.active span {
  background: var(--navy) !important;
  width: 24px !important;
  border-radius: 4px !important;
}
.owl-nav {
  display: none !important;
}

/* ─── WHY US ─── */
.why-section {
  padding: 110px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content {
}

.why-boxes {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-box {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--sky);
  transition: all 0.3s;
}

.why-box:hover {
  border-left-color: var(--blue);
  box-shadow: 0 8px 30px rgba(7, 30, 61, 0.08);
  transform: translateX(4px);
}

.why-box-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 18px;
}

.why-box-text h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-box-text p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
}

.why-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 540px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.why-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-size: 18px;
}

.why-badge-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.why-badge-text span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ─── ACCREDITATIONS ─── */
.accred-section {
  padding: 110px 0;
  overflow: hidden;
}

.accred-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: baseline;
  margin-bottom: 56px;
}

.accred-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
  border-left: 3px solid var(--sky);
  padding-left: 20px;
  margin-top: 24px;
}
.accred {
  text-align: center;
  margin-bottom: 40px;
}
.accred-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.accred-card h4 {
    margin: 10px 0;
    font-weight: 400;
    color: var(--navy);
}
.accred-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-bottom: 3px solid var(--sky);
  transition: all 0.3s;
}

.accred-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7, 30, 61, 0.1);
}

.ac-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 20px;
}

.ac-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.ac-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
/* HERO */
.services-hero {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #111;
}
.services-hero-bg {
  position: absolute;
  inset: 0;
}
.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 48, 96, 0.94) 0%,
    rgba(44, 170, 236, 0.7) 100%
  );
}
.services-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}
.services-hero-content {
  max-width: 720px;
  padding: 60px 0;
}
.services-hero-content h1 {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.services-hero-content h1 em {
  font-style: italic;
  color: var(--sky);
}
.services-hero-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

/* SPLIT SECTION */
.split-section {
  padding: 60px 0;
}
.split-section.bg-off {
  background: var(--off-white);
}
.split-section.bg-white {
  background: var(--white);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse {
  direction: rtl;
}
.split-grid.reverse > * {
  direction: ltr;
}
.split-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.split-image:hover img {
  transform: scale(1.04);
}
.split-content .lead-text {
  margin-top: 18px;
  margin-bottom: 30px;
  line-height: 26px;
}

/* H4 BLOCKS */
.h4-blocks {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}
.h4-block {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--sky);
  transition: all 0.3s;
}
.split-section.bg-off .h4-block {
  background: var(--white);
}
.h4-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7, 30, 61, 0.08);
}
.h4b-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.h4-block:hover .h4b-icon {
  background: var(--navy);
  transform: scale(1.06);
}
.h4b-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.h4b-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* WIDE H4 BLOCK with bullets */
.h4-wide {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--sky);
  margin-top: 54px;
}
.split-section.bg-off .h4-wide {
  background: var(--white);
}
.h4-wide h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 18px;
}
.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
}
.bullet-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.bullet-item .bdot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--sky-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.bullet-item span {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
}

/* EICR CODES */
.eicr-codes-block {
  margin-top: 40px;
}
.eicr-codes-block h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 18px;
  text-align: center;
}
.eicr-codes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.code-badge {
  border-radius: 16px;
  padding: 24px 18px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}
.code-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(7, 30, 61, 0.08);
}
.code-badge.c1 {
  background: #fff5f5;
  border-color: #ffcdd2;
}
.code-badge.c2 {
  background: #fff8e1;
  border-color: #ffecb3;
}
.code-badge.c3 {
  background: #e8f5e9;
  border-color: #c8e6c9;
}
.code-badge.fi {
  background: var(--sky-light);
  border-color: #b3e5fc;
}
.cb-code {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.code-badge.c1 .cb-code {
  color: #d32f2f;
  font-size: 25px;
  margin-bottom: 20px;
}
.code-badge.c2 .cb-code {
  color: #f57f17;
  font-size: 25px;
  margin-bottom: 20px;
}
.code-badge.c3 .cb-code {
  color: #2e7d32;
  font-size: 25px;
  margin-bottom: 20px;
}
.code-badge.fi .cb-code {
  color: var(--blue);
  font-size: 25px;
  margin-bottom: 20px;
}
.cb-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* BOILER CAROUSEL */
.boiler-section {
  padding: 100px 0;
  background: var(--sky);
  overflow: hidden;
}
.boiler-header {
  text-align: center;
  margin-bottom: 50px;
}
.boiler-header .lead-text {
  max-width: 80%;
  margin: 14px auto 0;
  margin-top: 18px;
  line-height: 26px;
}
.val-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 560px;
}
.val-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(7, 30, 61, 0.1);
}
.val-img {
  height: 185px;
  overflow: hidden;
  position: relative;
}
.val-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.val-card:hover .val-img img {
  transform: scale(1.05);
}
.val-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0) 50%,
    rgba(7, 30, 61, 0.35) 100%
  );
}
.val-icon-wrap {
  display: flex;
  justify-content: center;
  margin-top: -26px;
  position: relative;
  z-index: 5;
}
.val-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--off-white);
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(7, 30, 61, 0.2);
}
.val-body {
  padding: 22px 24px 28px;
  text-align: center;
}
.val-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.val-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}
.boiler-cta {
  text-align: center;
  margin-top: 44px;
}

/* EMERGENCY */
.emergency-section {
  padding: 100px 0;
  background: var(--off-white);
}
.emergency-inner {
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--sky-light);
}
.em-image {
  position: relative;
  min-height: 420px;
}
.em-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.em-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 45%,
    var(--sky-light) 95%
  );
  z-index: 1;
}
.em-content {
  padding: 70px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.em-content .section-tag {
  color: var(--sky);
}
.em-content .section-tag::before {
  background: var(--sky);
}
.em-content .lead-text, .packages-header .lead-text {
    margin: 18px 0 30px;
    margin-top: 18px;
    margin-bottom: 30px;
    line-height: 26px;
}
/* COMPLIANCE PACKAGES */
.packages-section {
  padding: 60px 0;
  background: var(--white);
}
.packages-header {
  text-align: center;
  margin-bottom: 50px;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--off-white);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7, 30, 61, 0.12);
}
.pkg-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.pkg-img {
  height: 185px;
  overflow: hidden;
  position: relative;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}
.pkg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0) 50%,
    rgba(7, 30, 61, 0.4) 100%
  );
}
.pkg-shelf {
  padding: 44px 26px 32px;
  position: relative;
}
.pkg-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(7, 30, 61, 0.2);
  transition: all 0.3s;
}
.pkg-card.featured .pkg-icon {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--navy);
}
.pkg-shelf h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.pkg-card.featured .pkg-shelf h3 {
  color: #fff;
}
.pkg-shelf p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}
.pkg-card.featured .pkg-shelf p {
  color: rgba(255, 255, 255, 0.75);
}
.packages-cta {
  text-align: center;
  margin-top: 46px;
}

/* CLIENT PORTAL */
.portal-section {
  padding: 60px 0;
  background: var(--off-white);
}
.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.portal-mockup-wrap {
  border-radius: 28px;
  overflow: hidden;
  height: 460px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e6fb0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}
.pm-screen {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}
.pm-topbar {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.pm-dot.r {
  background: #ff5f57;
}
.pm-dot.y {
  background: #febc2e;
}
.pm-dot.g {
  background: #28c840;
}
.pm-title {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 6px;
}
.pm-body {
  padding: 13px;
}
.pm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 8px;
}
.pm-prop {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.8);
  flex: 1;
  min-width: 0;
}
.pm-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.pm-status.ok {
  background: rgba(40, 200, 64, 0.15);
  color: #28c840;
}
.pm-status.due {
  background: rgba(254, 188, 46, 0.15);
  color: #febc2e;
}
.pm-download {
  font-size: 10px;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
}
.portal-content .lead-text {
  margin-top: 18px;
}
.portal-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-light);
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 3px solid var(--sky);
}

/* FAQ */
.faq-section {
  padding: 60px 0;        
  background: var(--off-white);
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open {
  border-color: var(--sky);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: linear-gradient(135deg, #2dadef 0%, #1076b8 100%);
}
.faq-q h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.25s;
  background: rgba(255, 255, 255, 0.15);
}
.faq-a {
  display: none;
  padding: 20px 24px;
}
.faq-item.open .faq-a {
  display: block;
}
.faq-a p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* FINAL CTA */
.final-cta {
  padding: 100px 0;
}
.final-cta-inner {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1e6fb0 100%);
  padding: 80px 70px;
  text-align: center;
}
.final-cta-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.final-cta-inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(41, 182, 246, 0.06);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.final-cta h2 em {
  font-style: italic;
  color: var(--sky);
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.about-images {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 480px;
}
/* COMPLIANCE PACKAGES */
.packages-section {
  padding: 60px 0;
  background: var(--white);
}
.packages-header {
  text-align: center;
  margin-bottom: 50px;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  background: var(--off-white);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7, 30, 61, 0.12);
}
.pkg-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.pkg-img {
  height: 185px;
  overflow: hidden;
  position: relative;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}
.pkg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 30, 61, 0) 50%,
    rgba(7, 30, 61, 0.4) 100%
  );
}
.pkg-shelf {
  padding: 44px 26px 32px;
  position: relative;
}
.pkg-icon {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--white);
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(7, 30, 61, 0.2);
  transition: all 0.3s;
}
.pkg-card.featured .pkg-icon {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--navy);
}
.pkg-shelf h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
}
.pkg-card.featured .pkg-shelf h3 {
  color: #fff;
}
.pkg-shelf p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}
.pkg-card.featured .pkg-shelf p {
  color: rgba(255, 255, 255, 0.75);
}
.packages-cta {
  text-align: center;
  margin-top: 46px;
}
.accred-card.featured .ac-title, .accred-card.featured .ac-desc {
    color: var(--white);
}
.accred-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.portal-content .lead-text, .lead-textedd {
    margin-top: 18px;
    margin-bottom: 30px;
    line-height: 26px;
}
.review-showcase-section {
  padding: 90px 0;
  overflow: hidden;
}
.g-review-row {
  background: linear-gradient(
    180deg,
    rgb(45 173 239) 0%,
    rgb(11 107 161) 100%
  );
  padding: 50px 10px;
  border-radius: 20px;
}

/* HEADING */

/* GOOGLE BOX */

.google-review-box {
  max-width: 620px;
  margin: 0 auto 60px;
  border: 1px dashed #b8d6ea;
  border-radius: 16px;
  background: #fff;
  padding: 18px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.google-review-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-review-left img {
  width: 36px;
  height: 36px;
}

.google-review-left h3 {
  font-size: 42px;
  font-weight: 800;
  color: #000;
}

.google-review-stars {
  display: flex;

  gap: 4px;
}

.google-review-stars i {
  color: #ffb400;
  font-size: 14px;
}

.google-review-stars span {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.google-review-link {
  color: #36c6ef;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* REVIEW CARD */

.review-card-item {
  background: #fff;
  border-radius: 20px;
  padding: 28px 28px 22px;
  border-bottom: 3px solid #36c6ef;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.review-stars i {
  color: #ffb400;
  font-size: 15px;
}

/* USER */

.review-user-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.review-user-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-user-left img {
  width: 52px !important;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-left h4 {
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  color: #111;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-user-left span {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #777;
}

.review-quote {
  font-size: 60px;
  line-height: 1;
  color: #cfeef8;
  font-weight: 800;
}

/* OWL */

.client-review-slider .owl-stage {
  display: flex;
}

.client-review-slider .owl-item {
  height: auto;
}

.client-review-slider .owl-dots {
  margin-top: 35px;
  text-align: center;
}

.client-review-slider .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #d0d7dd !important;
  display: block;
  border-radius: 50%;
  transition: 0.3s;
}

.client-review-slider .owl-dot.active span {
  background: #ffffff !important;
  width: 26px;
  border-radius: 30px;
}

.client-review-slider .owl-nav {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
}

@media (max-width: 767px) {
  .group-cards, .accred-cards, .accred-top {
      grid-template-columns: 1fr !important;
  }
  .review-showcase-section {
    padding: 60px 0;
  }

  .google-review-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .google-review-left {
    flex-wrap: wrap;
  }

  .review-card-item {
    padding: 24px 22px;
    min-height: auto;
  }
}
.faqss {
  margin: 0 auto;
}
.premium-footer {
  position: relative;
  background: linear-gradient(
    135deg,
    #399fd3 0%,
    #10a5f7 50%,
    #0e72ab 100%
  );
  padding: 90px 0 0;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  top: -250px;
  right: -180px;
}

.premium-footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

.footer-wrapper {
  position: relative;
  z-index: 2;
}

.footer-logo-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  transition: 0.4s;
}
.footer-box img {
    border-radius: 14px;
}
.footer-logo-box:hover {
  transform: translateY(-8px);
}

.footer-logo a{
  width: 190px;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  margin-bottom: 25px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.4s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2db7ff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 183, 255, 0.4);
}

.footer-heading {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px;
  font-family: var(--serif);
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(to right, #2db7ff, #8de0ff);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255);
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-links a i {
  color: #fff;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(8px);
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  font-size: 17px;
}

.contact-info i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.open-hours-box p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.license {
  margin-top: 25px;
  color: #9fdcff;
  font-size: 15px;
}

.license a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  background: linear-gradient(
    135deg,
    #2dadef 0%,
    #10a5f7 50%,
    #0e72ab 100%
  );
}

@media (max-width: 991px) {
  .footer-box {
    margin-bottom: 40px;
  }

  .premium-footer {
    padding-top: 60px;
  }
}
.emergency-call-section {
    padding: 100px 0;
  }

  .emergency-call-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 30px;
  }

  /* BACKGROUND IMAGE */

  .emergency-bg-image {
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?q=80&w=1800&auto=format&fit=crop")
      center center no-repeat;
    background-size: cover;
    z-index: 1;
  }

  /* BLUE OVERLAY */

  .emergency-call-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      #2dadef 0%,
      #10a5f7 50%,
      #0e72ab 100%
    );
    z-index: 2;
  }

  /* LEFT IMAGE */

  .emergency-call-image {
    width: 46%;
    position: relative;
    z-index: 5;
  }

  .emergency-call-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
  }

  /* CENTER ICON */

  .emergency-center-icon {
    position: absolute;
    left: 46%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 118px;
    height: 118px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .emergency-center-icon img {
    width: 100px;

    object-fit: contain;
  }

  /* RIGHT CONTENT */

  .emergency-call-content {
    width: 54%;
    padding-left: 75px;
    position: relative;
    z-index: 5;
  }

  /* BOTTOM AREA */

  /* PHONE BUTTON */

  /* TEXT */

  /* RESPONSIVE */

  @media (max-width: 1199px) {
    .emergency-call-wrapper {
      flex-direction: column;
      padding: 25px;
    }

    .emergency-call-image {
      width: 100%;
    }

    .emergency-call-image img {
      height: 320px;
    }

    .emergency-call-content {
      width: 100%;
      padding-left: 0;
      padding-top: 70px;
    }

    .emergency-center-icon {
      left: 50%;
      top: 43%;
    }
  }

  @media (max-width: 767px) {
    .emergency-call-section {
      padding: 50px 0;
    }

    .emergency-call-wrapper {
      border-radius: 25px;
      padding: 18px;
    }

    .emergency-call-image img {
      height: 240px;
      border-radius: 20px;
    }

    .emergency-center-icon {
      width: 75px;
      height: 75px;
      top: 34%;
    }

    .emergency-center-icon img {
      width: 38px;
      height: 38px;
    }

    .emergency-call-content {
      padding-top: 50px;
    }
  }

.conto {
  color: var(--blue);
  font-weight: 600;
}
.conto.featured {
  color: var(--white);
}

.form-group{
  margin-bottom:10px;
}

.form-group label{
  display:block;
  margin-bottom:10px;
  font-size:15px;
  font-weight:600;
  color:#222;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 15px 14px;
  font-size: 15px;
  background: #fafafa;
  transition: 0.3s;
}

.form-group input,
.form-group select{
  height:50px;
}

.form-group textarea{
  min-height:130px;
  resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:#111;
  background:#fff;
}

.checkbox-wrap{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:25px;
}

.check-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fafafa;
  border:1px solid #e5e5e5;
  padding:16px 18px;
  border-radius:14px;
  cursor:pointer;
  transition:0.3s;
}

.check-item:hover{
  border-color:#111;
  background:#fff;
}

.check-item input{
  width:18px;
  height:18px;
}

.check-item span{
  font-size:15px;
  color:#222;
}

.quote-btn{
  width:100%;
  height:60px;
  border:none;
  border-radius:14px;
  background:#111;
  color:#fff;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  margin-top:10px;
}

.quote-btn:hover{
  background:#000;
  transform:translateY(-2px);
}

@media(max-width:767px){

  .quote-form-wrap{
      padding:28px;
  }

  .quote-heading h2{
      font-size:30px;
  }

}