:root {
  /* Brand palette */
  --navy: #133f90; /* navy */
  --navy-dark: #0f3275;
  --sky: #2aace2; /* cyan */
  --sky-dark: #1f93c4;
  --red: #ee2e2e; /* red */
  --green: #34ad4a; /* green */
  --ink: #133f90;
  --text: #374151;
  --muted: #5a6b88; /* dark navy */
  --muted-light: #8a97b0;
  --bg: #ffffff;
  --bg-light: #ebf4ff; /* frost */
  --border: #e1ebf7;
  --star: #ffc233;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(20, 40, 90, 0.06);

  --container: 1440px;
  --gutter: 50px; /* shared horizontal page padding (desktop/tablet) */
  --gap: 24px;

  --font: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-group-nav: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.15;
  font-family: var(--font-display);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Accessibility helpers ---------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 12px;
}

/* --- Layout utilities ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: 50px;
}

.grid {
  display: grid;
  gap: var(--gap);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Typography utilities ------------------------------------------------ */
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.25em;
  color: var(--muted-light);
}
.eyebrow + .h2 {
  margin-top: 16px;
}
.paragraph-small {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.group-summary {
  max-width: 760px;
  margin: 24px auto 40px;
}
.h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.15rem);
  font-weight: 800;
}
.h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
}
.h3 {
  font-size: 1.2rem;
  font-weight: 800;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.center {
  text-align: center;
}
.text-sky {
  color: var(--sky);
  transition: color 0.15s ease;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  --btn-color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn:hover {
  background: var(--btn-hover);
}
.btn-primary {
  --btn-bg: var(--sky);
  --btn-hover: var(--sky-dark);
}
.btn-navy {
  --btn-bg: var(--navy);
  --btn-hover: var(--navy-dark);
}
.btn-red {
  --btn-bg: var(--red);
  --btn-hover: #c8241c;
}
.btn-green {
  --btn-bg: var(--green);
  --btn-hover: #2a8d3c;
}
.btn-white {
  --btn-bg: #fff;
  --btn-color: var(--navy);
  --btn-hover: #e9eef5;
  box-shadow: var(--shadow-sm);
}

/* --- Star rating --------------------------------------------------------- */
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--star);
}
.stars svg {
  width: 18px;
  height: 18px;
}

.hero-card .hero-bg,
.areas img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-media img,
.service-card img,
.step-card img {
  width: 100%;
  object-fit: cover;
}

/* --- Rix Group navbar ---------------------------------------------------- */
.rixgr-navbar {
  position: sticky;
  top: 0;
  z-index: 999999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  background: #001c42;
  color: #fff;
  padding: 0 25px;
  /* border-bottom: 1px solid #87939e; */
  font-family: var(--font-group-nav);
  transition: transform 0.6s ease-in-out;
}
.rixgr-navbar.hidden {
  transform: translateY(-100%);
}
.rixgr-logo {
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 7px;
}
.rixgr-logo-part-of-img {
  width: 121px;
  height: 14px;
}
.rixgr-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 120px;
  height: 36px;
  padding: 0 10px;
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  z-index: 999999;
}
.rixgr-dropdown.open,
.rixgr-dropdown:hover {
  background: #fff;
}
.rixgr-dropdown:hover .rixgr-arrow {
  transform: rotate(360deg);
}
.rixgr-logo-img {
  width: 76px;
  height: 16px;
}
.rixgr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.rixgr-arrow-img {
  width: 15px;
  height: 16px;
}
.rixgr-dropdown-content {
  position: absolute;
  right: -25px;
  top: 100%;
  z-index: 999999;
  display: none;
  width: 325px;
  height: 427px;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.33);
  flex-shrink: 0;
}
.rixgr-dropdown.open .rixgr-dropdown-content {
  display: flex;
}
@media (hover: hover) and (pointer: fine) {
  .rixgr-dropdown:hover .rixgr-dropdown-content {
    display: flex;
  }
}
.rixgr-dropdown-content-img {
  width: 100%;
  height: auto;
}
.rixgr-search-container {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(167, 184, 199, 0.25);
}
#rixgr-searchForm {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}
.rixgr-search-icon,
.rixgr-search-btn img,
.rixgr-link-arrows,
.social a,
.social a img {
  width: 16px;
  height: 16px;
}
.rixgr-search-icon {
  flex: none;
  filter: brightness(0);
}
.rixgr-search-container.focus .rixgr-search-icon {
  filter: none;
}
.rixgr-search-container input[type="text"] {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 6px 4px;
  color: #001c42 !important;
  font-family: var(--font-group-nav);
  font-size: 16px;
  font-weight: 500;
}
.rixgr-search-container input[type="text"]:focus {
  outline: none;
}
.rixgr-search-container input[type="text"]::placeholder {
  color: #001c42 !important;
  opacity: 60%;
  font-family: var(--font-group-nav);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
}
.rixgr-search-btn {
  display: none;
  width: 32px;
  height: 32px;
  padding: 8px;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid #2e6ab3;
  border-radius: 3px;
  background: #fff;
}
.rixgr-search-container.focus .rixgr-search-btn {
  display: flex;
}
.rixgr-search-btn:hover {
  background: #2e6ab3;
}
.rixgr-search-btn:hover img {
  filter: brightness(0) invert(1);
}
.rixgr-links {
  width: 100%;
}
.rixgr-dropdown-content .rixgr-links a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  align-self: stretch;
  padding: 15px 0;
  border-bottom: 1px solid rgba(167, 184, 199, 0.25);
  background: #fff;
  color: #001c42;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
}
.rixgr-dropdown-content .rixgr-links a:hover {
  background: rgba(167, 184, 199, 0.25);
}
.rixgr-links a:active {
  background: linear-gradient(0deg, #a7b8c7 0%, #a7b8c7 100%), #fff;
}
.rixgr-link-arrows {
  padding: 0 10px 0 6px;
  box-sizing: content-box;
}
.rixgr-dropdown-content .rixgr-links a:hover .rixgr-link-arrows,
.rixgr-links a:active .rixgr-link-arrows {
  filter: invert(35%) sepia(92%) saturate(797%) hue-rotate(184deg) brightness(83%) contrast(85%);
}
.rixgr-dropdown-content .rixgr-links a:last-of-type {
  border: 0;
}
.rixgr-menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rixgr-visit-btn {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 10px 17px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2e6ab3;
  border-radius: 3px;
  background: #2e6ab3 !important;
  color: #fff;
  font-family: var(--font-group-nav);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.rixgr-visit-btn:active {
  background: #1f4676;
}
.rixgr-visit-btn:hover {
  background: #295e9e !important;
  font-weight: 500;
}

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 38px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: top 0.6s ease-in-out;
}
.site-header.adjusted {
  top: 0;
}
.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--navy) 0 25%,
    var(--red) 25% 50%,
    var(--green) 50% 75%,
    var(--sky) 75% 100%
  );
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav-phone:hover {
  color: var(--navy-dark);
}
/* --- Hero ---------------------------------------------------------------- */
.hero {
  padding-top: 18px;
}
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-dark);
  color: #fff;
  height: 614px;
  display: flex;
  align-items: center;
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(19, 63, 144, 0.95) 30%,
    rgba(19, 63, 144, 0.55) 55%,
    rgba(19, 63, 144, 0.12) 65%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 64px;
  max-width: 700px;
}
.hero h1 {
  color: #fff;
  margin: 14px 0 18px;
  font-size: clamp(2.8rem, 4.1vw, 3.65rem);
  font-weight: 800;
}
.hero h1 .sky {
  color: var(--sky);
}
.hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  margin-bottom: 26px;
  font-size: 1.05rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
#areas .eyebrow,
.badge-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge-row strong {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}
.accred {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}
.accred img {
  height: 90px;
  width: auto;
}

/* --- Service strip ------------------------------------------------------- */
.service-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-block: 50px;
}
.service-strip a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}
.service-strip img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* --- Split section (Bringing Trusted Services) --------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 435/392;
  object-fit: contain;
}

/* --- Services cards ------------------------------------------------------ */
.services-wrap {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.service-card,
.why-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card img {
  aspect-ratio: 4/3;
}
.service-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.service-card h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}
.service-card .desc {
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}
.feature-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.feature-list svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--navy);
  margin-top: 2px;
}
.service-card .btn {
  min-width: 174px;
  margin-top: auto;
  align-self: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.service-card .btn-navy {
  --btn-bg: linear-gradient(180deg, #5cbae9 0%, #133f90 70%);
  --btn-hover: linear-gradient(180deg, #49a9d9 0%, #0f3275 70%);
}
.service-card .btn-red {
  --btn-bg: linear-gradient(180deg, #ff8b8b 0%, #ee2e2e 70%);
  --btn-hover: linear-gradient(180deg, #ef7474 0%, #cf2424 70%);
}
.service-card .btn-primary {
  --btn-bg: linear-gradient(180deg, #79d9ef 0%, #2aace2 70%);
  --btn-hover: linear-gradient(180deg, #62c7df 0%, #1f93c4 70%);
}
.service-card .btn-green {
  --btn-bg: linear-gradient(180deg, #8be576 0%, #34ad4a 70%);
  --btn-hover: linear-gradient(180deg, #72d45f 0%, #2a8d3c 70%);
}

/* --- Rix Group logos (infinite marquee) ---------------------------------- */
.marquee {
  overflow: hidden;
  /* fade the left/right edges so logos slide in/out smoothly */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-track img {
  max-height: 76px;
  max-width: 320px;
  width: auto;
}
@keyframes marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 48px;
  }
}

/* --- How it works -------------------------------------------------------- */
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding-bottom: 30px;
}
.step-card img {
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.step-card .body {
  padding: 18px 22px 0;
}
.step-card h3 {
  margin-bottom: 6px;
}
.step-pill {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
}
.step-card:nth-child(2) .step-pill {
  background: #197dc4;
}
.step-card:nth-child(3) .step-pill {
  background: var(--sky);
}
.ready-enquire {
  margin-top: 48px;
}

/* --- Quote section ------------------------------------------------------- */
.quote {
  background: linear-gradient(90deg, #2aace2 28%, #b8f4ff 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(360px, 2fr) minmax(0, 3fr);
  gap: 0;
}
.quote-copy {
  padding: 88px 68px;
}
.quote h2 {
  color: #fff;
  margin: 24px 0 14px;
  font-size: clamp(2.6rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.quote-intro {
  max-width: 480px;
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
.quote .pill-tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}
.quote-contact {
  display: grid;
  gap: 27px;
  margin-top: 38px;
}
.quote-contact li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.quote-contact .ico,
.quote-contact .ico img {
  width: 68px;
  height: 68px;
}
.quote-contact .ico {
  flex: none;
}
.quote-contact .ico img {
  object-fit: contain;
}
.quote-contact b {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.quote-contact-copy {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

/* Embedded Jotform quote form */
.quote-embed {
  background: #fff;
  border-radius: var(--radius);
  margin: 44px 44px 44px 0;
  padding: 12px;
  overflow: hidden;
  min-width: 0;
}
.quote-embed iframe {
  display: block;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100%;
  border: 0;
  background: transparent;
  min-height: 640px;
}

/* --- Reviews ------------------------------------------------------------- */
.review-card {
  background: #fff;
  min-height: 340px;
  border: 1px solid #d9e1eb;
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card .stars {
  gap: 6px;
  color: var(--sky);
}
.review-card .stars svg {
  width: 26px;
  height: 26px;
}
.review-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--muted);
}
.review-card .name {
  margin-top: auto;
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
}

/* Reviews scroll as an infinite marquee */
.reviews-marquee {
  padding-block: 20px;
}
.reviews-marquee .marquee-track {
  gap: 28px;
  align-items: stretch;
  animation-duration: 60s;
}
.reviews-marquee .review-card {
  flex: 0 0 352px;
}

/* --- Why choose us ------------------------------------------------------- */
.why {
  background: var(--bg-light);
}
.why-card {
  padding: 26px;
}
.why-ico {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
}
.why-cta {
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  text-align: center;
  align-items: center;
}
.why-cta h3 {
  color: #fff;
  font-size: 1.3rem;
}
.why-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

/* --- Where we work ------------------------------------------------------- */
#areas {
  padding-top: 50px;
}
#areas .container {
  max-width: 1440px;
}
#areas .section-head {
  max-width: 900px;
  margin-bottom: 52px;
}
#areas .eyebrow svg {
  color: var(--sky);
}
#areas #areas-title {
  margin-top: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
}
.areas {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 550px;
  display: flex;
  align-items: center;
  color: #fff;
}
.areas::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(15, 18, 22, 0.76) 0%,
      rgba(15, 18, 22, 0.62) 52%,
      rgba(15, 18, 22, 0.5) 100%
    ),
    linear-gradient(180deg, rgba(15, 18, 22, 0.05) 0%, rgba(15, 18, 22, 0.36) 100%);
}
.areas-inner {
  position: relative;
  z-index: 2;
  width: 45%;
  padding-left: 54px;
  padding-right: 32px;
}
.areas h2 {
  color: var(--sky);
  font-size: clamp(2.05rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 800;
}
.areas p {
  color: rgba(255, 255, 255, 0.96);
  margin-top: 18px;
  max-width: 590px;
  font-size: 1.1rem;
  line-height: 1.45;
}
.areas-coverage {
  position: absolute;
  z-index: 2;
  top: 145px;
  right: 0;
  width: 55%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.area-pills {
  position: static;
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  justify-content: flex-start;
}
.area-pills span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ebf4ffb5;
  color: #172033;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid #ebf4ffc1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.area-pills .featured {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
.area-bar {
  position: static;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
}
.area-bar .btn {
  --btn-bg: #29aae1;
  --btn-hover: #1f93c4;
  min-width: 208px;
  justify-content: center;
  padding: 20px 30px;
  box-shadow: 0 12px 24px rgba(25, 142, 195, 0.24);
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: #1d4897;
  color: rgba(255, 255, 255, 0.88);
}
.site-footer .container {
  max-width: 1320px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 38px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-top .rating .stars {
  margin-bottom: 8px;
  color: var(--sky);
}
.footer-top .rating b {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
}
.footer-top .rating span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.65fr 0.85fr 0.85fr 0.85fr auto;
  gap: 48px;
  padding-block: 46px;
}
.footer-about {
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-brand img {
  width: 235px;
  height: auto;
}
.footer-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-badges img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.footer-main p {
  max-width: 310px;
  margin-bottom: 20px;
  font-size: 0.86rem;
  line-height: 1.5;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.84rem;
  line-height: 1.4;
}
.footer-contact img,
.footer-cta .btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.footer-contact img {
  flex: none;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.footer-col li {
  margin-bottom: 12px;
}
.footer-col a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
}
.footer-col a:hover {
  color: #fff;
}
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-cta .btn {
  width: 160px;
  min-height: 44px;
  justify-content: center;
  padding: 11px 18px;
  font-size: 0.82rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: 18px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
  flex-wrap: wrap;
  gap: 14px;
}
.social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social a {
  display: grid;
  place-items: center;
}
.social a img {
  object-fit: contain;
}
.social-divider {
  width: 1px;
  height: 18px;
  margin-inline: 4px 6px;
  background: rgba(255, 255, 255, 0.22);
}
.footer-group-logo {
  width: 178px;
  height: auto;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1350px) {
  .quote {
    grid-template-columns: 1fr;
  }
  .quote-copy {
    padding: 56px 48px;
  }
  .quote-embed {
    margin: 0 48px 48px;
  }
}
@media (max-width: 1100px) {
  .areas-coverage {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding-right: 0;
    margin-top: 28px;
    gap: 28px;
  }
  .area-pills {
    margin-top: 0;
    max-width: none;
  }
  .area-bar {
    width: fit-content;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 20px;
    height: 52px;
    min-height: 52px;
    padding: 3px 3px 3px 30px;
    font-size: 14px;
    line-height: 1.2;
  }
  .area-bar .btn {
    min-width: clamp(208px, 25vw, 252px);
    height: 46px;
    min-height: 46px;
    padding: 12px 30px;
    font-size: 14px;
  }
  .areas {
    display: block;
    height: auto;
    min-height: 600px;
    padding: 48px;
  }
  .areas-inner {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 980px) {
  .nav {
    gap: 12px;
  }
  .brand img {
    height: 32px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a,
  .nav-phone {
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .nav-actions > .btn {
    display: none;
  }
  .hero-card {
    height: 530px;
    display: block;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    max-width: 590px;
    padding: 64px 48px 0;
  }
  .hero h1 {
    order: 2;
    margin-block: 12px 14px;
    font-size: clamp(2.35rem, 6vw, 3.05rem);
  }
  .hero p {
    order: 4;
    max-width: 520px;
    margin: 18px 0 0;
    font-size: 0.9rem;
    line-height: 1.45;
  }
  .hero .badge-row {
    order: 1;
  }
  .hero-actions {
    order: 3;
  }
  .accred {
    right: auto;
    bottom: 30px;
    left: 48px;
  }
  .accred img {
    height: 70px;
  }
  .service-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 32px 48px;
  }
  .service-strip a {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }
  .split-media {
    width: 100%;
    max-width: 360px;
  }
  .split > div:last-child {
    width: 100%;
    max-width: 620px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card .desc {
    font-size: 14px;
  }
  .feature-list li {
    font-size: 12px;
  }
  #quote .container {
    padding-inline: clamp(18px, 3vw, 25px);
  }
  .quote-embed {
    margin: 12px;
    padding: 8px;
    border-radius: var(--radius);
  }
  .reviews-marquee .review-card {
    flex-basis: 240px;
    min-height: 260px;
    padding: 24px;
  }
  .review-card .stars svg {
    width: 18px;
    height: 18px;
  }
  .review-card p,
  .review-card .name {
    font-size: 14px;
  }
  .footer-main {
    grid-template-columns: minmax(230px, 1.45fr) repeat(2, minmax(110px, 0.75fr));
    gap: 30px 26px;
  }
  .footer-about {
    grid-row: 1 / span 2;
    padding-right: 28px;
  }
  .footer-main > .footer-col:nth-of-type(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .footer-cta {
    grid-column: 3;
    grid-row: 2;
  }
}
@media (min-width: 512px) and (max-width: 981px) {
  .quote-embed iframe {
    min-height: 900px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 25px;
  } /* mobile page padding */
  .section {
    padding-block: 52px;
  }
  .rixgr-dropdown-content {
    right: -25px;
    width: calc(100vw - 50px);
    min-height: auto;
  }
  .rixgr-dropdown:hover {
    background: inherit;
  }
  .rixgr-dropdown.open:hover {
    background: #fff;
  }
  .rixgr-dropdown:hover .rixgr-dropdown-content {
    display: none;
  }
  .rixgr-dropdown.open:hover .rixgr-dropdown-content {
    display: flex;
  }
  .rixgr-dropdown:hover .rixgr-arrow {
    transform: none;
  }
  .rixgr-links a,
  .rixgr-visit-btn,
  .rixgr-search-container input[type="text"],
  .rixgr-search-container input[type="text"]::placeholder {
    font-size: 15px;
  }
  .nav-links,
  .nav-phone {
    display: none;
  }
  .brand img {
    height: 32px;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  #why .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .why-card {
    padding: 16px;
  }
  .why-ico {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
  .why-card h3 {
    font-size: 0.82rem;
  }
  .why-card p {
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .reviews-marquee .review-card {
    flex-basis: calc(100vw - 110px);
    min-height: 250px;
    padding: 20px;
  }
  .review-card p,
  .review-card .name {
    font-size: 12px;
  }
  .services-wrap {
    padding: 28px 10px;
  }
  .quote-copy {
    padding: 44px 28px;
  }
  #quote .container {
    padding-inline: 4px;
  }
  .quote-embed {
    margin: 4px;
    padding: 0;
  }
  #areas {
    padding-top: 52px;
  }
  #areas .section-head {
    margin-bottom: 34px;
  }
  .areas {
    min-height: 0;
    padding: 34px 22px;
  }
  .areas-inner {
    padding: 0;
  }
  .areas p {
    font-size: 1rem;
  }
  .areas h2 {
    font-size: 2rem;
  }
  .area-pills {
    gap: 8px;
  }
  .areas-coverage {
    gap: 24px;
  }
  .area-pills span {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.84rem;
  }
  .area-bar {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    height: 122px;
    min-height: 122px;
    padding: 14px 4px 4px;
    border-radius: 34px;
    font-size: 14px;
    line-height: 1.35;
  }
  .area-bar > span {
    max-width: 260px;
    margin-inline: auto;
    padding-inline: 18px;
    text-align: center;
  }
  .area-bar .btn {
    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;
    padding: 12px 24px;
    font-size: 14px;
  }
  .accred {
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    justify-content: center;
  }
  .accred img {
    width: 200px;
    height: auto;
  }
  .hero-card {
    min-height: 0;
    height: auto;
    background: var(--navy);
  }
  .hero-card .hero-bg {
    bottom: auto;
    height: 205px;
    object-position: center top;
  }
  .hero-card::after {
    inset: 0 0 auto;
    height: 270px;
    background: linear-gradient(
      180deg,
      rgba(19, 63, 144, 0.08) 0%,
      rgba(19, 63, 144, 0.62) 58%,
      var(--navy) 100%
    );
  }
  .hero-inner {
    width: 100%;
    max-width: none;
    padding: 176px 17px 112px;
  }
  .hero h1 {
    margin-block: 12px 14px;
    font-size: clamp(1.75rem, 8.4vw, 2.2rem);
    line-height: 1.08;
  }
  .hero p {
    order: 3;
    margin-bottom: 20px;
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .hero-actions {
    order: 4;
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .badge-row {
    font-size: 0.75rem;
  }
  .badge-row .stars svg {
    width: 14px;
    height: 14px;
  }
  .service-strip {
    gap: 24px 32px;
    padding-block: 28px 34px;
  }
  .split {
    text-align: center;
  }
  .split-media {
    max-width: 230px;
  }
  .split .btn {
    margin-inline: auto;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .footer-top {
    justify-content: center;
    padding-block: 28px;
    text-align: center;
  }
  .footer-badges {
    justify-content: center;
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
  .footer-about {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-right: 0;
    padding-bottom: 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .footer-main > .footer-col:nth-of-type(4) {
    grid-column: 1;
    grid-row: auto;
  }
  .footer-cta {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .footer-cta .btn {
    width: 100%;
  }
  .footer-bottom {
    margin-inline: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .social {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 511px) {
  .quote-embed iframe {
    min-height: 1250px;
  }
}
@media (max-width: 335px) {
  .rixgr-dropdown-content {
    right: -25px;
    width: 100vw;
  }
}
