@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  /* Palette: Space Indigo, Regal Navy, Baltic Blue, Cerulean, Powder Blue */
  --space-indigo: #21295c;
  --regal-navy: #1b3b6f;
  --baltic-blue: #065a82;
  --cerulean: #1c7293;
  --powder-blue: #9eb3c2;
  --bg: #f2f5f8;
  --bg-elevated: #ffffff;
  --bg-soft: #e8eef4;
  --bg-muted: #e0e6ed;
  --bg-dark: #21295c;
  --bg-dark-2: #1b3b6f;
  --primary: #1b3b6f;
  --primary-hover: #065a82;
  --primary-soft: rgba(27, 59, 111, 0.12);
  --accent: #1c7293;
  --accent-orange: #1c7293;
  --text-main: #21295c;
  --text-soft: #5c6b7a;
  --text-on-dark: #e8eef4;
  --text-on-dark-soft: #9eb3c2;
  --border-subtle: #d0dae4;
  --shadow-soft: 0 18px 45px rgba(33, 41, 92, 0.12);
  --shadow-lift: 0 24px 56px rgba(33, 41, 92, 0.14);
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 26px;
  --radius-pill: 999px;
  /* Unifies varied photo colour casts with the navy / cerulean brand */
  --photo-filter: contrast(1.06) saturate(0.9) brightness(1.03);
  --photo-filter-hover: contrast(1.09) saturate(0.96) brightness(1.05);
  --photo-overlay: linear-gradient(
    165deg,
    rgba(27, 59, 111, 0) 35%,
    rgba(27, 59, 111, 0.12) 100%
  );
  --photo-overlay-strong: linear-gradient(
    180deg,
    rgba(33, 41, 92, 0) 40%,
    rgba(27, 59, 111, 0.22) 100%
  );
  --section-pad-y: clamp(3.5rem, 8vw, 5rem);
  --transition-smooth: 0.35s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --reveal-duration: 0.75s;
}

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

html {
  scroll-padding-top: clamp(4.5rem, 14vw, 5.5rem);
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
    scroll-padding-top: 4rem;
  }
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(28, 114, 147, 0.08), transparent 55%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(27, 59, 111, 0.04), transparent 45%),
    linear-gradient(180deg, #f7f9fc 0%, var(--bg) 35%, #eef2f7 100%);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 3px solid rgba(28, 114, 147, 0.4);
  outline-offset: 3px;
  border-radius: 8px;
}

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

/* Brand-aligned photo treatment (logos excluded below) */
.card-media img,
.card-media .card-image,
.hero-photo-main img,
.hero-photo-overlay img,
.tabs-with-images .tab-panel-image img,
.about-showcase img,
img.hero-image {
  filter: var(--photo-filter);
  transition: filter 0.55s var(--ease-out), transform 0.65s var(--ease-out);
}

.card-media--diagram img,
img.hero-image[src$=".svg"] {
  filter: none;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.65rem, 2vw, 1.15rem) clamp(0.75rem, 2.5vw, 1.35rem);
  background: linear-gradient(160deg, #f0f4f8 0%, #e4ecf4 50%, #dce6ef 100%);
}

.card-media--diagram::after {
  opacity: 0.55;
}

.card:hover .card-media img,
.card:hover .card-media .card-image {
  filter: var(--photo-filter-hover);
}

.card:hover .card-media--diagram img {
  filter: none;
}

.hero-photo-stack:hover .hero-photo-main img,
.hero-photo-stack:hover .hero-photo-overlay img {
  filter: var(--photo-filter-hover);
}

.logo img,
.logo-img,
.footer-brand img,
.footer-col img {
  filter: none;
}

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Positioning context for mobile menu + full-width dropdown */
.site-header .container {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(33, 41, 92, 0.05);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
  }
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 32px rgba(33, 41, 92, 0.09);
  border-bottom-color: rgba(208, 218, 228, 0.85);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo img,
.logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

/* Square brand mark (navy tile): soften on light header */
.site-header .logo img,
.site-header .logo-img {
  border-radius: 10px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.logo-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-main);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary);
  box-shadow: 0 6px 16px rgba(27, 59, 111, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.logo-text .amp {
  color: var(--primary);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.28s var(--ease-out);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--cerulean), var(--primary));
  border-radius: 999px;
  transition: width 0.32s var(--ease-out);
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.current {
  color: var(--primary);
}

.main-nav a.current::after {
  width: 100%;
}

.nav-link-with-chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-chevron {
  font-size: 0.55em;
  opacity: 0.8;
  vertical-align: middle;
  transition: transform 0.28s var(--ease-out);
  display: inline-block;
}

.nav-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown__panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  z-index: 100;
  min-width: min(100vw - 2.5rem, 288px);
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 44px rgba(33, 41, 92, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out),
    visibility 0.28s;
}

@supports (backdrop-filter: blur(8px)) {
  .nav-dropdown__panel {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(-180deg);
}

.main-nav .nav-dropdown__panel a {
  display: block;
  padding: 0.42rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
}

.main-nav .nav-dropdown__panel a::after {
  display: none;
}

.main-nav .nav-dropdown__panel a:hover {
  color: var(--primary);
  background: var(--bg-soft);
}

.main-nav .nav-dropdown__panel a.current {
  color: var(--primary);
  background: rgba(27, 59, 111, 0.06);
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown__panel {
    transition: opacity 0.15s ease, visibility 0.15s;
  }

  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    transform: translate(-50%, 0);
  }
}

.header-cta {
  display: none;
}

.header-phone {
  display: flex;
  align-items: center;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.header-phone-link:hover {
  opacity: 0.92;
  transform: translateX(2px);
}

.header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-main);
  color: #ffffff;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(33, 41, 92, 0.22);
}

.header-phone-link:hover .header-phone-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(33, 41, 92, 0.28);
}

.header-phone-icon svg {
  display: block;
}

.header-phone-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.header-phone-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.header-phone-number {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-contact {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.header-contact-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-soft);
}

.header-contact-number {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.35rem;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s var(--ease-out);
}

.nav-toggle:hover {
  background: var(--bg-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  transition: transform 0.32s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 4.5rem 0 4.2rem;
  background: linear-gradient(145deg, #f4f7fb 0%, #e4ecf4 42%, #eef2f8 100%);
  color: var(--text-main);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -25% -10%;
  background: radial-gradient(ellipse 55% 45% at 18% 35%, rgba(28, 114, 147, 0.14), transparent 62%),
    radial-gradient(ellipse 50% 40% at 88% 72%, rgba(27, 59, 111, 0.11), transparent 58%),
    radial-gradient(ellipse 40% 35% at 55% 10%, rgba(6, 90, 130, 0.08), transparent 55%);
  animation: heroMeshDrift 22s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroMeshDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-1.5%, 1.2%) scale(1.04);
    opacity: 0.88;
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(158, 179, 194, 0.18) 1px, transparent 1px),
    linear-gradient(225deg, rgba(158, 179, 194, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.35;
  pointer-events: none;
  animation: heroGridShift 48s linear infinite;
}

@keyframes heroGridShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 40px 40px, -40px 40px;
  }
}

/* reusable dark hero style for inner pages */
.page-hero {
  position: relative;
  padding: 3.8rem 0 3.5rem;
  background: radial-gradient(circle at top left, var(--bg-dark) 0, var(--bg-dark-2) 55%, var(--bg-dark) 100%);
  color: #ffffff;
  overflow: hidden;
}

.page-hero h1,
.page-hero h2,
.page-hero h3 {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  color: #e8eef4;
}

.page-hero .eyebrow {
  color: #b8c9d6;
}

/* Cards / white panels inside dark page-hero (service subpages): reset typography */
.page-hero .card h1,
.page-hero .card h2,
.page-hero .card h3,
.page-hero .card h4 {
  color: var(--text-main);
  text-shadow: none;
}

.page-hero .card p,
.page-hero .card li {
  color: var(--text-soft);
}

.page-hero .card .testimonial-name {
  color: var(--text-soft);
}

.page-hero .card .icon-list li {
  color: var(--text-soft);
}

.page-hero .card .icon-list li::before {
  color: var(--primary);
}

.page-hero .card h2 a,
.page-hero .card h3 a {
  color: var(--primary);
}

.page-hero .card h2 a:hover,
.page-hero .card h3 a:hover {
  color: var(--primary-hover);
}

/* Force white heading in dark page-hero (overrides .section-header h2) */
.page-hero .section-header h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* J&J-style light page intro (eyebrow + title + description) */
.page-intro {
  padding: clamp(3rem, 7vw, 4.25rem) 0 clamp(2.75rem, 6vw, 3.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 55%, var(--bg-soft) 100%);
  border-bottom: 1px solid rgba(208, 218, 228, 0.85);
  box-shadow: 0 24px 48px rgba(33, 41, 92, 0.04);
}

.page-intro-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 0.6rem;
  position: relative;
  padding-left: 1rem;
}

.page-intro-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
}

.page-intro h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  color: var(--text-main);
  line-height: 1.25;
}

.page-intro-desc {
  margin: 0;
  max-width: 42rem;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin: 0 0 0.5rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-card {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.85rem, 4vw, 2.35rem);
  border-radius: var(--radius-2xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 28px 72px rgba(33, 41, 92, 0.14), 0 0 0 1px rgba(27, 59, 111, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.hero-card:hover {
  box-shadow: 0 28px 72px rgba(33, 41, 92, 0.18), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(28, 114, 147, 0.25);
  pointer-events: none;
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 5.5vw + 0.65rem, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--primary);
}

.hero-text {
  max-width: 32rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* J&J-style hero: service pills row */
.hero-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-pill {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 1);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.28s var(--ease-out), border-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out), transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-out);
}

.hero-pill:hover {
  background: var(--primary-soft);
  border-color: rgba(27, 59, 111, 0.4);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(33, 41, 92, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

/* J&J-style stats strip in hero */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.hero-stat-num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    background 0.28s var(--ease-out), border-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out);
}

.btn:focus-visible {
  outline: 3px solid rgba(28, 114, 147, 0.4);
  outline-offset: 3px;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--baltic-blue));
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(33, 41, 92, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(33, 41, 92, 0.55);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 32px rgba(33, 41, 92, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(148, 163, 184, 0.65);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: rgba(209, 213, 219, 1);
}

.btn-outline {
  background: #ffffff;
  border-color: rgba(209, 213, 219, 1);
  color: var(--primary);
}

.btn-outline:hover {
  background: #f9fafb;
}

.btn-whatsapp {
  background: #22c55e;
  border-color: #16a34a;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

.btn-full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-badges span {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 1);
}

.hero-panel {
  position: relative;
}

.hero-panel-inner {
  position: relative;
  padding: clamp(1.6rem, 3.5vw, 2rem) clamp(1.5rem, 3vw, 1.85rem);
  border-radius: var(--radius-2xl);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(208, 218, 228, 0.95);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out);
}

.hero-panel-inner:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(27, 59, 111, 0.15);
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-photo-stack {
  position: relative;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  transition: transform 0.6s var(--ease-out);
}

.hero-photo-stack:hover {
  transform: translateY(-4px);
}

.hero-photo-main {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 64px rgba(33, 41, 92, 0.22), 0 0 0 1px rgba(27, 59, 111, 0.08);
  aspect-ratio: 4 / 5;
}

.hero-photo-main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    200deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(27, 59, 111, 0.14) 100%
  );
  border-radius: inherit;
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.85s var(--ease-out);
  position: relative;
  z-index: 0;
}

.hero-photo-stack:hover .hero-photo-main img {
  transform: scale(1.04);
}

.hero-photo-overlay {
  position: absolute;
  right: 6%;
  bottom: -12%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(27, 59, 111, 0.32), 0 0 0 1px rgba(27, 59, 111, 0.06);
  transition: transform 0.65s var(--ease-out), box-shadow 0.65s var(--ease-out);
  z-index: 2;
}

.hero-photo-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(145deg, transparent 40%, rgba(28, 114, 147, 0.12) 100%);
  border-radius: inherit;
}

.hero-photo-stack:hover .hero-photo-overlay {
  transform: translate(-3px, -4px) rotate(-1deg);
  box-shadow: 0 22px 50px rgba(27, 59, 111, 0.38);
}

.hero-photo-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 0.85s var(--ease-out);
  position: relative;
  z-index: 0;
}

.hero-photo-stack:hover .hero-photo-overlay img {
  transform: scale(1.06);
}

.hero-photo-accent {
  position: absolute;
  background: var(--primary);
  opacity: 0.14;
}

.hero-photo-accent-top {
  top: -12%;
  right: 0;
  width: 36%;
  height: 26%;
  border-radius: 0 1.5rem 1.5rem 0;
}

.hero-photo-accent-bottom {
  left: -10%;
  bottom: -18%;
  width: 40%;
  height: 32%;
  border-radius: 1.5rem 0 0 0;
}

.hero-panel-inner h2 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
}

.hero-panel-inner p {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.hero-panel-inner ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-panel-inner li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.hero-panel-inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}

.hero-list {
  list-style: none;
  padding: 0.6rem 0 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-main);
}

.hero-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.25rem;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(147, 197, 253, 0.9);
}

/* hero bullet list colour on light hero */
.hero .hero-list {
  color: var(--text-main);
}

.hero-form .form-field {
  margin-bottom: 0.7rem;
}

.hero-form .form-field input,
.hero-form .form-field select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(209, 213, 219, 1);
  background: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.hero-form .form-field input:focus,
.hero-form .form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 59, 111, 0.1);
  transform: translateY(-1px);
}

.two-column-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .two-column-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.section {
  position: relative;
  padding: var(--section-pad-y) 0;
}

/* Soft bands so long pages breathe (homepage + inner pages with these classes) */
.section.services,
.section.why-choose-us {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(242, 245, 248, 0.4) 45%, transparent 100%);
}

.section.testimonials,
.section.areas {
  background: linear-gradient(180deg, transparent 0%, rgba(232, 238, 244, 0.55) 50%, transparent 100%);
}

main > .section:not(.hero):not(:first-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(120px, 20vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(28, 114, 147, 0.45), transparent);
  opacity: 0.65;
  pointer-events: none;
}

main > .section.section--no-rule::before,
main > .section.hero-subpage::before {
  display: none;
}

.hero-subpage {
  padding-top: 3.2rem;
}

/* Service / area page hero strip (not homepage .hero .hero-media) */
.hero-subpage .hero-media {
  position: relative;
  margin-bottom: 1.75rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(33, 41, 92, 0.12), 0 0 0 1px rgba(27, 59, 111, 0.06);
}

.hero-subpage .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: var(--photo-overlay-strong);
  z-index: 1;
}

.hero-subpage .hero-media img,
img.hero-image {
  width: 100%;
  max-height: min(48vh, 420px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 0;
  display: block;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 0;
}

img.hero-image[src*="underfloor-pipes-install"] {
  object-position: center 50%;
}

/* Service subpage hero: show full photo (letterboxed) instead of cropping with cover */
.hero-subpage .hero-media.hero-media--contain-full {
  isolation: isolate;
  background: linear-gradient(165deg, #f0f4f8 0%, #e8eef4 45%, #dde8f0 100%);
}

/* Blurred same-image fill so letterboxed sides are not empty (--hero-fill-image on element) */
.hero-subpage .hero-media.hero-media--contain-full::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: 0;
  background-color: var(--bg-soft);
  background-image: var(--hero-fill-image, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: blur(42px) saturate(0.88) brightness(1.05);
  -webkit-filter: blur(42px) saturate(0.88) brightness(1.05);
  transform: translateZ(0) scale(1.08);
  opacity: 0.94;
  pointer-events: none;
}

.hero-subpage .hero-media.hero-media--contain-full::after {
  background: var(--photo-overlay);
  z-index: 2;
}

.hero-subpage .hero-media.hero-media--contain-full img,
img.hero-image.hero-image--contain-full {
  object-fit: contain;
  object-position: center center;
  max-height: min(78vh, 680px);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-subpage .hero-media.hero-media--contain-full::before {
    filter: none;
    -webkit-filter: none;
    opacity: 0.4;
    transform: translateZ(0) scale(1.02);
  }
}

.section-header {
  text-align: left;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  max-width: 48rem;
}

.section-header .section-eyebrow {
  display: block;
  margin-bottom: 0.4rem;
}

/* Tabs (Mission / Vision) */
.tabs {
  border-radius: var(--radius-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 34px rgba(33, 41, 92, 0.08);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--primary-soft);
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.tab-btn {
  appearance: none;
  border: 1px solid rgba(27, 59, 111, 0.18);
  background: #ffffff;
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition-smooth), border-color var(--transition-smooth),
    transform var(--transition-smooth);
}

.tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 59, 111, 0.35);
}

.tab-btn[aria-selected="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.tab-panels {
  padding: 0;
}

.tab-panel {
  display: none;
  color: var(--text-soft);
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin: 0 0 0.5rem;
  color: var(--text-main);
  font-size: 1.25rem;
  font-weight: 700;
}

/* Tab panels with image + content */
.tabs-with-images .tab-panels {
  padding: 0;
}

.tabs-with-images .tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
}

.tabs-with-images .tab-panel-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-muted), #d0dae6);
}

.tabs-with-images .tab-panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--photo-overlay-strong);
}

.tabs-with-images .tab-panel-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  position: relative;
  z-index: 0;
}

.tabs-with-images .tab-panel-image:has(img[src$=".svg"]) {
  background: linear-gradient(145deg, #f4f7fb, #e4ecf4);
}

.tabs-with-images .tab-panel-image:has(img[src$=".svg"])::after {
  display: none;
}

.tabs-with-images .tab-panel-image:has(img[src$=".svg"]) img {
  filter: none;
  object-fit: contain;
  object-position: center;
  padding: clamp(0.75rem, 2.2vw, 1.25rem) clamp(0.85rem, 2.5vw, 1.4rem);
}

.tabs-with-images .tab-panel-content {
  padding: 1.75rem 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tabs-with-images .tab-panel-content p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .tabs-with-images .tab-panel-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tabs-with-images .tab-panel-image {
    aspect-ratio: 16 / 10;
  }

  .tabs-with-images .tab-panel-content {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* Counters strip */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.counter-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(208, 218, 228, 0.95);
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(33, 41, 92, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(33, 41, 92, 0.1);
  border-color: rgba(27, 59, 111, 0.14);
}

.counter-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.counter-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

/* Testimonial slider */
.testimonial-slider {
  position: relative;
}

.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}

.slider-slide {
  min-width: calc((100% - 2rem) / 3);
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.slider-btn {
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 111, 0.25);
  background: #ffffff;
  color: var(--text-main);
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.slider-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(27, 59, 111, 0.5);
}

@media (max-width: 992px) {
  .counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slider-slide {
    min-width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 600px) {
  .slider-slide {
    min-width: 100%;
  }

  .counter-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
  }

  .counter-num {
    font-size: 1.45rem;
  }
}

.section-header h2 {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  margin: 0 0 0.4rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 0.55rem;
  background: linear-gradient(90deg, var(--cerulean), var(--primary));
  border-radius: 999px;
  transition: width 0.9s var(--ease-out);
}

.section-header.in-view h2::after,
.section.animate-fade-up.in-view .section-header h2::after,
.section.animate-slide-left.in-view .section-header h2::after,
.section.animate-slide-right.in-view .section-header h2::after {
  width: 3rem;
}

.page-hero .section-header h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.85));
}

.section-header p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-soft);
}

.page-hero .section-header p {
  color: #e8eef4;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

/* Services: 3 columns = 2 even rows of 3 (no 4+2 layout) */
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.85rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 1rem 1.05rem 1.1rem;
  }

  .card-media {
    margin: -1rem -1.05rem 0.85rem;
    width: calc(100% + 2.1rem);
  }
}

.projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.85rem);
  align-items: stretch;
}

.projects-grid .project-card {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.project-card p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.project-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Process: 4 columns = 1 row of 4 on desktop */
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.process-step {
  position: relative;
}

.step-number {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

/* J&J-style keyframes for scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out);
}

.animate-fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* slide / zoom variants for scroll animations */
.animate-slide-left,
.animate-slide-right,
.animate-zoom-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity calc(var(--reveal-duration) + 0.05s) var(--ease-out),
    transform calc(var(--reveal-duration) + 0.05s) var(--ease-out);
}

.animate-slide-left {
  transform: translate(-44px, 26px);
}

.animate-slide-right {
  transform: translate(44px, 26px);
}

.animate-zoom-in {
  transform: scale(0.94) translateY(18px);
}

.animate-slide-left.in-view,
.animate-slide-right.in-view,
.animate-zoom-in.in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered children: delay applied via script */
.stagger-children > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.58s var(--ease-out), transform 0.58s var(--ease-out);
}

.stagger-children > *.in-view {
  opacity: 1;
  transform: translateY(0);
}

.card {
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, #ffffff 0%, #fafbfd 100%);
  border: 1px solid rgba(208, 218, 228, 0.9);
  box-shadow: 0 12px 32px rgba(33, 41, 92, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  padding: 1.2rem 1.3rem 1.25rem;
  transition: box-shadow 0.32s var(--ease-out), transform 0.32s var(--ease-out),
    border-color 0.32s var(--ease-out);
}

/* Service cards in grid: equal height, content aligned */
.services-grid .service-card {
  display: flex;
  flex-direction: column;
}

.services-grid .service-card .service-card-link {
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Full-bleed card header image: breaks out of flex content box so it matches card width */
.card-media {
  position: relative;
  isolation: isolate;
  margin: -1.2rem -1.3rem 1rem;
  width: calc(100% + 2.6rem);
  max-width: none;
  align-self: stretch;
  border-radius: calc(var(--radius-xl) - 5px);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--bg-muted), #d8e2ec);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  background: var(--photo-overlay);
}

.card-media img,
.card-media .card-image {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  aspect-ratio: unset;
  max-width: none;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  position: relative;
  z-index: 0;
  transition: transform 0.65s var(--ease-out), filter 0.55s var(--ease-out);
}

.card:hover .card-media img,
.card:hover .card-media .card-image {
  transform: scale(1.045);
}

/* Services grid only: portrait pump photo — zoom focal point so the card reads as “pump”, not full cupboard */
.services-grid .card-media--pressure-pump img,
.services-grid .card-media--pressure-pump .card-image {
  object-position: 48% 49%;
  transform: scale(1.82);
  transform-origin: 48% 49%;
}

.services-grid .card:hover .card-media--pressure-pump img,
.services-grid .card:hover .card-media--pressure-pump .card-image {
  transform: scale(1.88);
}

/* Fallback when .card-image is not inside .card-media (older pages) */
.card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  border-radius: calc(var(--radius-xl) - 5px);
  margin: -1.2rem -1.3rem 1rem;
  object-fit: cover;
  object-position: center 35%;
}

.card-media--ufh img,
.card-media--ufh .card-image {
  object-position: center 40%;
}

/* Floor install (pipes on boards): show more of the layout */
.card-media--ufh:not(.card-media--ufh-manifold) img,
.card-media--ufh:not(.card-media--ufh-manifold) .card-image {
  object-position: center 52%;
}

/* Vertical manifold shot in 3:2 cards — keep distributor & pump in frame */
.card-media--ufh-manifold img,
.card-media--ufh-manifold .card-image {
  object-position: 48% 18%;
}

.card-media--bathroom img,
.card-media--bathroom .card-image {
  object-position: center 30%;
}

.card-media--emergency img,
.card-media--emergency .card-image {
  object-position: center 45%;
}

.card-media--water-softener img,
.card-media--water-softener .card-image {
  object-position: center 100%;
}

.card-media--pressure-pump img,
.card-media--pressure-pump .card-image {
  object-position: 48% 47%;
}

.ufh-manifold-feature__figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 22px 52px rgba(33, 41, 92, 0.12);
  background: linear-gradient(180deg, #ebe6e1 0%, #e0d9d2 100%);
}

.ufh-manifold-feature__figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.ufh-manifold-section__cards {
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary);
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.service-card h2 a {
  color: inherit;
}

.service-card h2 a:hover {
  color: var(--primary);
}

.service-card-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.service-card-link:hover {
  text-decoration: underline;
}

.card:hover {
  border-color: rgba(27, 59, 111, 0.22);
  box-shadow: 0 20px 44px rgba(33, 41, 92, 0.13);
  transform: translateY(-4px);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.service-tag {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-soft);
  color: var(--text-soft);
}

.service-list {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.scope-service-blocks {
  max-width: 36rem;
  margin-top: 0.5rem;
}

.scope-block-title {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.scope-list-intro {
  margin: 1.75rem 0 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.service-scope-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
  column-count: 3;
  column-gap: 2rem;
}

.service-scope-list li {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
  .service-scope-list {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .service-scope-list {
    column-count: 1;
  }
}

.about {
  padding-top: 3rem;
  background: var(--bg-soft);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: start;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(208, 218, 228, 0.95);
  box-shadow: 0 16px 44px rgba(33, 41, 92, 0.1), 0 0 0 1px rgba(27, 59, 111, 0.05);
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--bg-muted), #d5dee8);
}

.about-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: var(--photo-overlay);
  border-radius: inherit;
}

.about-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  position: relative;
  z-index: 0;
}

.about-copy h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.about-copy p {
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}

.about-cta {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* improve contrast when about band uses dark hero */
.page-hero .about-copy p {
  color: #cbd5f5;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.icon-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--primary);
}

.page-hero .icon-list li {
  color: var(--text-on-dark);
}

.about-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.stat {
  border-radius: var(--radius-xl);
  padding: 0.95rem 0.85rem;
  text-align: center;
  background: linear-gradient(165deg, #ffffff, #f8fafc);
  border: 1px solid rgba(208, 218, 228, 0.95);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.about-panel .stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(33, 41, 92, 0.1);
  border-color: rgba(27, 59, 111, 0.18);
}

.stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

/* Stat blocks sit on light panels even inside page-hero */
.page-hero .stat .stat-number {
  color: var(--text-main);
}

.page-hero .stat .stat-label {
  color: var(--text-soft);
}

.areas {
  padding-top: 3rem;
}

.areas-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.pill {
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
}

.testimonials {
  padding-top: 3rem;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
}

.testimonial-name {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.page-hero .testimonial-name {
  color: var(--text-on-dark);
}

.contact {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background: var(--bg-soft);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact-copy h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.contact-copy p {
  margin-bottom: 1.2rem;
  color: var(--text-soft);
}

.page-hero .contact-copy p {
  color: #cbd5f5;
}

.contact-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.contact-details li {
  margin-bottom: 0.4rem;
}

.contact-details a {
  color: var(--primary);
}

.page-hero .contact-details li {
  color: var(--text-on-dark);
}

.page-hero .contact-details a {
  color: #bfdbfe;
}

.contact-form {
  border-radius: var(--radius-2xl);
  padding: clamp(1.5rem, 3vw, 1.85rem) clamp(1.45rem, 3vw, 1.75rem) clamp(1.45rem, 3vw, 1.65rem);
  background: linear-gradient(165deg, #ffffff 0%, #f9fafb 100%);
  border: 1px solid rgba(208, 218, 228, 0.95);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(209, 213, 219, 1);
  background: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: rgba(27, 59, 111, 0.22);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27, 59, 111, 0.12);
  transform: translateY(-1px);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  /* Solid colour so footer logo background can match exactly */
  background: #21295c;
  padding: 2.2rem 0 1.6rem;
  font-size: 0.85rem;
  color: var(--text-on-dark);
}

.footer-cta-bar {
  padding: 1.35rem 1.35rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-cta-bar h3 { margin: 0; font-size: 1.1rem; color: #ffffff; font-weight: 700; }
.footer-cta-bar p { margin: 0.25rem 0 0; font-size: 0.95rem; color: #e8eef4; line-height: 1.45; }

/* Ghost button on dark footer — avoids white slab; strong hover contrast */
.site-footer .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
}

.site-footer .btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.site-footer .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.95);
  color: #ffffff;
  outline-color: rgba(255, 255, 255, 0.6);
}

.site-footer .btn-outline:active {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-cta-bar { flex-direction: column; align-items: flex-start; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 0.3rem;
}

.footer-col a {
  color: #e0e8f0;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 0.5rem;
  max-width: 22rem;
}

.footer-contact li {
  margin-bottom: 0.25rem;
}

.footer-cta {
  margin-top: 0.8rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.footer-social-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #9eb0c4;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.22s var(--ease-out), transform 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out);
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.footer-social-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 0.7rem;
  font-size: 0.78rem;
}

.footer-bottom-right {
  color: #c5d4e0;
}

@media (max-width: 900px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .hero {
    padding: 3rem 0 3.25rem;
  }

  .hero-card {
    padding: 1.35rem 1.2rem 1.45rem;
  }

  .hero-media {
    order: -1;
    justify-content: center;
  }

  .hero-photo-stack {
    max-width: min(420px, 100%);
    margin-inline: auto;
  }

  .hero-photo-main {
    aspect-ratio: 4 / 5;
  }

  .hero-photo-overlay {
    right: 4%;
    bottom: -8%;
    width: 40%;
  }

  .hero-service-pills {
    gap: 0.4rem;
  }

  .hero-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
  }

  .hero-stats {
    gap: 0.85rem 1.25rem;
    justify-content: flex-start;
  }

  .hero-stat {
    flex: 1 1 auto;
    min-width: min(100%, 8.5rem);
  }

  .hero-stat-num {
    font-size: 1.1rem;
  }

  .hero-text {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.65rem 0.75rem;
    padding-block: 0.65rem;
  }

  .header-inner .logo {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .header-inner .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .header-inner .header-phone {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: flex-start;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0;
    padding: 0.65rem 1rem 0.85rem;
    gap: 0.15rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 16px 40px rgba(33, 41, 92, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out),
      visibility 0.32s;
    z-index: 60;
    max-height: min(70vh, 28rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  @supports (backdrop-filter: blur(8px)) {
    .main-nav {
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    color: var(--text-main);
    padding: 0.55rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .main-nav a:hover {
    color: var(--primary);
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    align-self: stretch;
    width: 100%;
  }

  .nav-dropdown__trigger {
    width: 100%;
  }

  .nav-dropdown__panel {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: max-height 0.35s var(--ease-out), opacity 0.28s var(--ease-out),
      visibility 0.28s, padding 0.28s var(--ease-out);
  }

  /* Touch / focus must not open the submenu; only .is-open (tap on Services). */
  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    max-height: min(70vh, 22rem);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.15rem 0 0.35rem 0.75rem;
  }

  .nav-dropdown.is-open:hover .nav-dropdown__panel,
  .nav-dropdown.is-open:focus-within .nav-dropdown__panel {
    max-height: min(70vh, 22rem);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.15rem 0 0.35rem 0.75rem;
  }

  .nav-dropdown:hover .nav-chevron,
  .nav-dropdown:focus-within .nav-chevron {
    transform: none;
  }

  .nav-dropdown.is-open .nav-chevron {
    transform: rotate(-180deg);
  }

  .main-nav .nav-dropdown__panel a {
    white-space: normal;
    padding: 0.45rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .main-nav .nav-dropdown__panel a:hover {
    background: transparent;
  }

  .header-phone-link {
    gap: 0.55rem;
    min-height: 44px;
    align-items: center;
  }

  .header-phone-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .header-phone-label {
    font-size: 0.65rem;
  }

  .header-phone-number {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
    align-self: center;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .page-intro h1 {
    font-size: clamp(1.45rem, 6vw + 0.5rem, 2rem);
  }

  /* Prevent iOS zoom on focus */
  .form-field input,
  .form-field textarea,
  .form-field select,
  .hero-form .form-field input,
  .hero-form .form-field select {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-subpage .hero-media img,
  img.hero-image {
    max-height: min(42vh, 320px);
  }

  .hero-subpage .hero-media.hero-media--contain-full img,
  img.hero-image.hero-image--contain-full {
    max-height: min(62vh, 520px);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1160px, 100% - 1.25rem);
  }

  .hero {
    padding: 2.65rem 0 2.75rem;
  }

  .section {
    padding-block: clamp(2.5rem, 8vw, 3rem);
  }

  .hero-card {
    padding: 1.15rem 1rem 1.25rem;
    border-radius: var(--radius-xl);
  }

  .hero-panel-inner {
    padding: 1.35rem 1.1rem;
  }

  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 18px;
  }

  .contact-form {
    padding: 1.25rem 1.1rem 1.2rem;
  }

  .tab-buttons {
    padding: 0.75rem 0.85rem;
    gap: 0.4rem;
  }

  .tab-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
  }

  .section-header {
    margin-bottom: 1.35rem;
  }
}

@media (max-width: 380px) {
  .logo-name {
    font-size: 0.78rem;
    letter-spacing: 0.025em;
  }

  .logo-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .logo-img,
  .site-header .logo-img {
    height: 40px;
    max-width: 120px;
  }

  .header-phone-number {
    font-size: 0.82rem;
  }
}

/* WhatsApp call-to-action button (fixed bottom right) */
.whatsapp-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out);
}

.whatsapp-cta::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: whatsappRing 2.4s var(--ease-out) infinite;
  pointer-events: none;
}

@keyframes whatsappRing {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  70% {
    transform: scale(1.15);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.whatsapp-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.52);
}

.whatsapp-cta:hover::before {
  animation: none;
  opacity: 0;
}

.whatsapp-cta:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.5);
  outline-offset: 3px;
}

.whatsapp-cta svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-cta {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-cta svg {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .hero-bg-overlay {
    animation: none !important;
  }

  .whatsapp-cta::before {
    animation: none !important;
    opacity: 0 !important;
  }

  .animate-fade-up,
  .animate-slide-left,
  .animate-slide-right,
  .animate-zoom-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .stagger-children > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }

  .section-header h2::after,
  .section.animate-fade-up.in-view .section-header h2::after,
  .section.animate-slide-left.in-view .section-header h2::after,
  .section.animate-slide-right.in-view .section-header h2::after {
    width: 3rem !important;
    transition: none !important;
  }

  .hero-photo-stack:hover,
  .hero-photo-stack:hover .hero-photo-main img,
  .hero-photo-stack:hover .hero-photo-overlay,
  .hero-photo-stack:hover .hero-photo-overlay img {
    transform: none !important;
  }

  .card:hover .card-media img,
  .card:hover .card-media .card-image {
    transform: none !important;
  }

  .services-grid .card-media--pressure-pump img,
  .services-grid .card-media--pressure-pump .card-image {
    transform: scale(1.82) !important;
  }

  .services-grid .card:hover .card-media--pressure-pump img,
  .services-grid .card:hover .card-media--pressure-pump .card-image {
    transform: scale(1.82) !important;
  }

  .card-media img,
  .card-media .card-image,
  .hero-photo-main img,
  .hero-photo-overlay img,
  .tabs-with-images .tab-panel-image img,
  .about-showcase img,
  img.hero-image {
    filter: contrast(1.04) brightness(1.02) !important;
  }

  .tabs-with-images .tab-panel-image:has(img[src$=".svg"]) img {
    filter: none !important;
  }

  .main-nav {
    transition: none !important;
  }
}

