/* ============================================================
   ON CALL CARPET CLEANING — MAIN STYLESHEET
   Carpet & upholstery specialists | Sydney, Australia
   ============================================================ */

/* ============================================================
   1. CSS DESIGN TOKENS
   ============================================================ */
:root {
  /* On Call Carpet Cleaning — navy + lime green brand */
  --primary: #8DC63F;            /* lime green (CTAs / accents) */
  --primary-hover: #7AB332;
  --primary-dark: #1A7E54;       /* mid forest green */
  --primary-light: rgba(141, 198, 63, 0.14);
  --cyan-glow: #C8F542;          /* bright lime accent */
  --navy: #0E3A5F;               /* corporate navy */
  --navy-mid: #082642;
  --navy-light: #1A5E93;
  --accent: #C8F542;             /* lime accent (used as warm accent throughout) */
  --gradient-brand: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--cyan-glow) 100%);
  --gradient-header-bar: linear-gradient(90deg, var(--navy) 0%, var(--primary-dark) 38%, var(--primary) 72%, var(--cyan-glow) 100%);
  --gradient-topbar: linear-gradient(108deg, #051a30 0%, var(--navy-mid) 38%, var(--navy) 72%, #0a3845 100%);
  --accent-hover: #B5E835;
  --white: #ffffff;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --text: #0c1e2e;
  --text-light: #4f6377;
  --border: rgba(141, 198, 63, 0.18);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 80px rgba(0,0,0,0.14);
  --shadow-primary: 0 8px 28px rgba(141, 198, 63, 0.42);
  --shadow-cta-header: 0 4px 20px rgba(141, 198, 63, 0.45), 0 2px 8px rgba(8, 38, 66, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --topbar-height: 40px;
  /* Single-row header (logo | nav | actions) — larger logo, height tuned to fit */
  --header-height: 112px;
  --header-offset: calc(var(--topbar-height) + var(--header-height));
  --container-max: 1280px;
  --header-container-max: 1260px;
  --section-padding: 100px;
}

/* ============================================================
   TOP BAR — corporate ribbon (matches static `html/` export)
        Navy gradient, small caption text on the left with lime bullet
        separators, contact link / socials on the right, lime hover.
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--topbar-height);
  background: var(--gradient-topbar);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  transform: translateY(0);
  transition: transform var(--transition);
}
.top-bar.hidden { transform: translateY(-100%); }
.top-bar .container { width: 100%; }
@media (min-width: 992px) {
  .top-bar .container,
  .site-header .container {
    max-width: var(--header-container-max);
  }
}

/* Layout — left captions + right contact/socials */
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

/* Items: link or span — uniform light caption, hidden FA icons,
   lime bullet inserted via ::before for items past the first. */
.top-bar-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: color var(--transition);
}
a.top-bar-item { font-weight: 600; }
a.top-bar-item:hover { color: var(--cyan-glow); }

.top-bar-item i {
  display: none;
}
/* Use ~ (general sibling) so the explicit `<span class="top-bar-sep">|</span>`
   between items in the PHP template doesn't break the bullet placement. */
.top-bar-left .top-bar-item ~ .top-bar-item::before {
  content: "•";
  margin-right: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9em;
}

/* Hide the explicit pipe separators — bullets above replace them */
.top-bar-sep { display: none; }

/* Right side — email + socials */
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.top-bar-social {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}
.top-bar-social:hover {
  color: var(--navy-mid);
  background: var(--cyan-glow);
  transform: translateY(-1px);
}

/* Mobile: keep the bar lean — drop address, keep tagline + phone */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .top-bar-address { display: none; }
  .top-bar-sep.hide-mobile { display: none; }
  .top-bar { font-size: 0.78rem; }
  .top-bar-left {
    gap: 0.65rem;
    min-width: 0;
    flex: 1 1 auto;
  }
  .top-bar-right {
    flex-shrink: 0;
  }
  .top-bar-left .top-bar-item ~ .top-bar-item::before {
    margin-right: 0.65rem;
  }
  .top-bar-item {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Lists in page/post body & Elementor text/HTML — global ul reset is for nav/layout only */
#primary.site-main ul:not(.nav-list):not(.dropdown-menu):not(.mobile-nav-list):not(.mobile-sub):not(.swiper-pagination):not(.swiper-wrapper):not(.hero-bg-pagination):not(.menu):not(.elementor-icon-list-items):not(.occ-sa-suburbs),
#primary.site-main ol:not(.breadcrumb),
.elementor-widget-text-editor .elementor-widget-container ul:not(.elementor-icon-list-items):not(.occ-sa-suburbs),
.elementor-widget-text-editor .elementor-widget-container ol,
.elementor-widget-html .elementor-widget-container ul:not(.elementor-icon-list-items):not(.occ-sa-suburbs),
.elementor-widget-html .elementor-widget-container ol {
  list-style-position: outside;
  padding-left: 1.35em;
  margin: 0.75em 0 1em;
}
#primary.site-main ul:not(.nav-list):not(.dropdown-menu):not(.mobile-nav-list):not(.mobile-sub):not(.swiper-pagination):not(.swiper-wrapper):not(.hero-bg-pagination):not(.menu):not(.elementor-icon-list-items):not(.occ-sa-suburbs),
.elementor-widget-text-editor .elementor-widget-container ul:not(.elementor-icon-list-items):not(.occ-sa-suburbs),
.elementor-widget-html .elementor-widget-container ul:not(.elementor-icon-list-items):not(.occ-sa-suburbs) {
  list-style-type: disc;
}
#primary.site-main ol:not(.breadcrumb),
.elementor-widget-text-editor .elementor-widget-container ol,
.elementor-widget-html .elementor-widget-container ol {
  list-style-type: decimal;
}
#primary.site-main ul:not(.nav-list):not(.dropdown-menu):not(.mobile-nav-list):not(.mobile-sub):not(.swiper-pagination):not(.swiper-wrapper):not(.hero-bg-pagination):not(.menu):not(.elementor-icon-list-items):not(.occ-sa-suburbs) > li,
#primary.site-main ol:not(.breadcrumb) > li,
.elementor-widget-text-editor .elementor-widget-container ul:not(.elementor-icon-list-items):not(.occ-sa-suburbs) > li,
.elementor-widget-text-editor .elementor-widget-container ol > li,
.elementor-widget-html .elementor-widget-container ul:not(.elementor-icon-list-items):not(.occ-sa-suburbs) > li,
.elementor-widget-html .elementor-widget-container ol > li {
  display: list-item;
  margin: 0.35em 0;
}
#primary.site-main ul ul:not(.elementor-icon-list-items),
.elementor-widget-text-editor .elementor-widget-container ul ul,
.elementor-widget-html .elementor-widget-container ul ul {
  list-style-type: circle;
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}

button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { line-height: 1.75; }

/* Default body copy, including Elementor text content. */
#primary.site-main p,
.entry-content p,
.page-content p,
.post-content p,
.elementor-widget-text-editor .elementor-widget-container p,
.elementor-widget-theme-post-content .elementor-widget-container p,
.elementor-widget-html .elementor-widget-container p {
  font-family: var(--font-body);
  line-height: 1.75;
  color: #4f6377;
  font-size: 1.02rem !important;
  margin: 0 0 1.1rem;
}

/* HTML CTA strip: bright lede on dark band (overrides default body <p> grey) */
#primary.site-main .oncall-html-section .cta-strip p {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
  margin: 0;
}

/* Home hero (Elementor HTML `.hero`): tagline + lede sit on dark slides — default body <p> grey must not win */
#primary.site-main .hero p.hero-tagline,
#primary.site-main .hero .hero-tagline span {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
}

#primary.site-main .hero p.lede {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg, #00AEEF 0%, #00D4FF 50%, #7DD3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: var(--section-padding) 0; }
.bg-light { background: var(--gray-50); }
.bg-navy { background: var(--navy); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: 0;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }

.btn-primary {
  background: var(--gradient-brand);
  background-origin: border-box;
  color: #fff;
  border-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translate3d(0, -2px, 0);
  box-shadow: var(--shadow-primary);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   6. SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.75; }
.section-text { font-size: 1.05rem; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }

.service-page-back {
  margin-top: -8px;
  margin-bottom: 28px;
}
.section-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  overflow: visible;
  padding-block: 12px;
}

/* ============================================================
   7. HEADER (matches static `html/` export — clean white bar)
   ============================================================ */
.site-header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-height);
  height: auto;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(8, 38, 66, 0.1);
}
/* Container fills the bar so nav can centre in remaining space */
.site-header .container {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.5vw, 32px);
  width: 100%;
  overflow: visible;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}
.logo-img {
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Main nav — text + small icon, animated lime/green underline */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  padding: 0.55rem 0;
  background: none;
  border-radius: 0;
  transition: color 0.18s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: translateX(-50%);
  transition: width 0.28s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active,
.current-menu-item > .nav-link,
.current-menu-ancestor > .nav-link,
.current_page_item > .nav-link,
.current_page_ancestor > .nav-link {
  color: var(--navy);
  background: none;
  outline: none;
  box-shadow: none;
}
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after,
.current-menu-item > .nav-link::after,
.current-menu-ancestor > .nav-link::after,
.current_page_item > .nav-link::after,
.current_page_ancestor > .nav-link::after {
  width: 100%;
}
.main-nav .nav-link-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1;
  transition: color 0.18s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.main-nav .nav-link-icon i { font-size: 0.95rem; }
.nav-link:hover .nav-link-icon,
.current-menu-item > .nav-link .nav-link-icon,
.current-menu-ancestor > .nav-link .nav-link-icon,
.current_page_item > .nav-link .nav-link-icon,
.current_page_ancestor > .nav-link .nav-link-icon,
.nav-item.has-dropdown:hover > .nav-link .nav-link-icon,
.nav-item.has-dropdown:focus-within > .nav-link .nav-link-icon {
  color: var(--primary-dark);
  transform: translateY(-1px);
}
.main-nav .nav-link-text {
  white-space: nowrap;
}
.nav-link-chevron {
  font-size: 0.58rem;
  margin-left: 0.1rem;
  opacity: 0.85;
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav-item.has-dropdown:hover > .nav-link .nav-link-chevron,
.nav-item.has-dropdown:focus-within > .nav-link .nav-link-chevron {
  transform: rotate(180deg);
}
@media (max-width: 1180px) {
  .nav-list { gap: 1rem; }
  .nav-link {
    font-size: 0.85rem;
    gap: 0.35rem;
  }
}

/* Mega-menu dropdown — title + subtitle layout */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: -0.6rem;
  min-width: 360px;
  max-width: 420px;
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(8, 38, 66, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top left;
  transition:
    opacity 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0s linear 0.22s;
  pointer-events: none;
  z-index: 100;
}
/* Invisible bridge so cursor doesn't drop into the gap and close the menu */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
  pointer-events: auto;
}
.dropdown-menu li {
  margin: 0;
  list-style: none;
}
.dropdown-menu a,
.dropdown-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  position: relative;
  transition:
    background-color 0.18s ease,
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-link:hover,
.dropdown-link:focus-visible {
  background: var(--primary-light);
  transform: translateX(2px);
  outline: none;
  color: var(--text);
  box-shadow: none;
}
.dropdown-menu .nav-link-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(14, 58, 95, 0.08), rgba(141, 198, 63, 0.16));
  color: var(--navy);
  font-size: 1rem;
  line-height: 1;
  transition: background 0.22s ease, color 0.22s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.dropdown-menu .nav-link-icon i { font-size: 0.95rem; }
.dropdown-menu a:hover .nav-link-icon,
.dropdown-menu a:focus-visible .nav-link-icon,
.dropdown-link:hover .nav-link-icon,
.dropdown-link:focus-visible .nav-link-icon,
.dropdown-menu .current-menu-item > a .nav-link-icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  color: #fff;
  transform: scale(1.04);
}
.dropdown-menu .nav-link-text {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
}
.dropdown-link-desc {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.45;
}
.dropdown-menu .current-menu-item > a {
  background: rgba(14, 58, 95, 0.06);
}

/* Legacy submenu links without dropdown-link class — single-line fallback */
.dropdown-menu li a:not(.dropdown-link):not(:has(.nav-link-icon)) {
  display: block;
  grid-template-columns: none;
  grid-template-rows: none;
  padding: 0.55rem 0.85rem;
}

/* Header actions (CTA) — lime gradient pill from the static hero buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-shrink: 0;
  overflow: visible;
}
.site-header .header-actions .btn-primary {
  flex-shrink: 0;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--cyan-glow) 100%);
  background-origin: border-box;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--navy-mid);
  box-shadow: 0 6px 20px rgba(141, 198, 63, 0.32);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.site-header .header-actions .btn-primary:hover {
  transform: translate3d(0, -2px, 0);
  filter: brightness(1.04);
  color: var(--navy-mid);
  box-shadow: 0 10px 28px rgba(141, 198, 63, 0.42);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  transition: right var(--transition-slow);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { padding: 100px 24px 40px; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.mobile-nav-link .nav-link-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.05rem;
}
.mobile-nav-link .nav-link-text {
  flex: 1;
  text-align: left;
}
.mobile-nav-list > li > a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.mobile-sub {
  padding-left: 16px;
  margin-top: 4px;
  display: none;
}
.mobile-has-sub.active .mobile-sub { display: block; }
.mobile-has-sub > a::after {
  transition: transform var(--transition);
}
.mobile-has-sub.active > a::after {
  transform: rotate(180deg);
}
.mobile-sub li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-sub li a .nav-link-icon {
  width: 32px;
  height: 32px;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.06);
}
.mobile-sub li a:hover { color: var(--cyan-glow); background: rgba(141, 198, 63, 0.12); }
.mobile-nav-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   8. HERO SECTION — light, split-layout (caringsupports style)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: #eef6fb;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--header-offset);
  overflow: visible;
}

/* ----- Hero background image slider (home) ----- */
.hero-bg-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-bg-swiper .swiper-wrapper,
.hero-bg-swiper .swiper-slide {
  height: 100%;
}
.hero-bg-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-bg-swiper .swiper-slide-active img {
  animation: heroKenBurns 14s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      165deg,
      rgba(4, 12, 32, 0.97) 0%,
      rgba(10, 31, 68, 0.88) 28%,
      rgba(16, 41, 82, 0.72) 52%,
      rgba(10, 31, 68, 0.45) 78%,
      rgba(6, 18, 42, 0.35) 100%
    ),
    radial-gradient(
      ellipse 85% 65% at 85% 45%,
      rgba(0, 120, 180, 0.18) 0%,
      transparent 62%
    );
}

.hero-bg-pagination {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 4 !important;
  width: auto !important;
  display: flex !important;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
}
.hero-bg-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  border: 1px solid rgba(10, 31, 68, 0.25);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.hero-bg-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(0, 184, 245, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-swiper .swiper-slide-active img {
    animation: none;
  }
}

.hero--bg-slider .hero-dots {
  opacity: 0.22;
}
.hero--bg-slider .hero-blob {
  opacity: 0.55;
}

/* Dot grid background — decorative only; must not sit above clickable hero UI */
.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(0,174,239,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.hero-blob-1 {
  width: 520px; height: 480px;
  background: rgba(0,174,239,0.07);
  border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%;
  top: -80px; right: -60px;
  animation: morphBlob1 14s ease-in-out infinite alternate;
}
.hero-blob-2 {
  width: 360px; height: 320px;
  background: rgba(0,174,239,0.05);
  border-radius: 38% 62% 54% 46% / 40% 56% 44% 60%;
  bottom: -60px; left: -80px;
  animation: morphBlob2 10s ease-in-out infinite alternate;
}
.hero-blob-3 {
  width: 200px; height: 200px;
  background: rgba(0,136,204,0.06);
  border-radius: 50% 50% 38% 62% / 44% 60% 40% 56%;
  top: 40%; left: 38%;
  animation: morphBlob1 18s ease-in-out infinite alternate;
}

@keyframes morphBlob1 {
  0%   { border-radius: 62% 38% 46% 54% / 60% 44% 56% 40%; transform: translate(0,0) rotate(0deg); }
  100% { border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%; transform: translate(20px,-30px) rotate(6deg); }
}
@keyframes morphBlob2 {
  0%   { border-radius: 38% 62% 54% 46% / 40% 56% 44% 60%; transform: translate(0,0) rotate(0deg); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(-15px,20px) rotate(-5deg); }
}

/* Inner layout */
.hero-inner {
  display: grid;
  grid-template-columns: 62% 38%;
  gap: 48px;
  align-items: center;
  padding: 70px 0 80px;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* ---- LEFT: Content ---- */
.hero-content { max-width: 780px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(0,174,239,0.25);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.hero-label i { color: var(--primary); font-size: 0.85rem; }

.hero-title {
  color: var(--navy);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 32px rgba(255, 255, 255, 0.85);
}
.hero-title-accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #7DD3FC);
  border-radius: 2px;
  opacity: 0.4;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  overflow: visible;
  padding-block: 10px;
}

/* Home hero: darker CTA strip + light copy over navy gradient images */
.hero--bg-slider .hero-title {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.hero--bg-slider .hero-title-accent {
  color: var(--cyan-glow);
}
.hero--bg-slider .hero-title-accent::after {
  background: linear-gradient(90deg, var(--primary), var(--cyan-glow));
  opacity: 0.55;
}
.hero--bg-slider .hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
}
.hero--bg-slider .hero-label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}
.hero--bg-slider .hero-label i {
  color: var(--cyan-glow);
}
.hero--bg-slider .hero-actions {
  margin-bottom: 36px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero--bg-slider .hero-trust {
  border-top-color: rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}
.hero--bg-slider .hero-trust-item {
  color: rgba(255, 255, 255, 0.82);
}
.hero--bg-slider .hero-trust-item i {
  color: var(--cyan-glow);
}
.hero--bg-slider .btn-outline-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}
.hero--bg-slider .btn-outline-primary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
}
.hero-trust-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

/* ---- RIGHT: Visual ---- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

/* Main image frame */
.hero-img-wrap {
  width: 100%;
  max-width: 440px;
  position: relative;
  z-index: 1;
}
.hero-img-frame {
  border-radius: 48% 52% 60% 40% / 44% 40% 60% 56%;
  overflow: hidden;
  background: linear-gradient(145deg, #EBF8FF 0%, #DBEAFE 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morphFrame 12s ease-in-out infinite alternate;
  position: relative;
}
@keyframes morphFrame {
  0%   { border-radius: 48% 52% 60% 40% / 44% 40% 60% 56%; }
  100% { border-radius: 60% 40% 44% 56% / 52% 56% 44% 48%; }
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-img-frame i {
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
}

/* Decorative ring around the frame */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px dashed rgba(0,174,239,0.18);
  border-radius: 50% 50% 60% 40% / 46% 42% 58% 54%;
  animation: morphFrame 14s ease-in-out infinite alternate-reverse;
}

/* Floating stat chips */
.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 10px 18px 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.hero-chip-1 {
  top: 32px; left: -24px;
  animation: chipFloat1 5s ease-in-out infinite alternate;
}
.hero-chip-2 {
  bottom: 80px; right: -28px;
  animation: chipFloat2 7s ease-in-out infinite alternate;
}
.hero-chip-3 {
  bottom: 20px; left: 8px;
  animation: chipFloat1 9s ease-in-out infinite alternate;
}
@keyframes chipFloat1 {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
@keyframes chipFloat2 {
  from { transform: translateY(0); }
  to   { transform: translateY(10px); }
}
.hero-chip-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-chip-icon i { color: var(--primary); font-size: 0.9rem; }
.hero-chip-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero-chip-text span {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 32px 0;
  background: var(--navy);
  border-bottom: none;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200);
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,174,239,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon i { color: var(--primary); font-size: 1.1rem; }
.trust-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.trust-text span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.trust-divider { background: rgba(255,255,255,0.1); }

/* ============================================================
   10. SERVICES SECTION — corporate light cards
        Matches static `html/services.html`: white card on cream surface,
        soft shadow, navy/lime icon tile, brand-stripe on hover that lifts
        the card 3px and fills the icon with a navy → green gradient.
   ============================================================ */
.services-section { background: var(--gray-50); }
/* "Premium" variant from earlier brand was a dark glass band. The static
   carpet design uses light cards everywhere, so the variant is now just a
   slight surface tweak that matches the static `.section.band` look. */
.services-section--premium { background: var(--gray-50); }

/* Grid — default 3 columns; shortcode can override via data-columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

/* Card */
.service-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 1px 4px rgba(8, 38, 66, 0.05);
  transition:
    transform 0.42s cubic-bezier(0.2, 0.75, 0.2, 1),
    box-shadow 0.42s ease,
    border-color 0.28s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-card-inner {
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  z-index: 2;
}

.service-card .service-link {
  margin-top: auto;
}

/* Full-card featured image + brand gradient wash */
.service-card--has-thumb {
  background: var(--navy-mid);
  border-color: rgba(14, 58, 95, 0.55);
  min-height: clamp(300px, 36vw, 380px);
}

.service-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}

.service-card-media-bg {
  position: absolute;
  inset: -14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
  will-change: transform;
}

.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    155deg,
    rgba(200, 245, 66, 0.22) 0%,
    rgba(14, 58, 95, 0.55) 32%,
    rgba(8, 38, 66, 0.88) 58%,
    rgba(8, 38, 66, 0.94) 100%
  );
}

.service-card-featured.service-card--has-thumb {
  background: transparent;
}

.service-card-featured .service-card-media::after {
  background: linear-gradient(
    155deg,
    rgba(200, 245, 66, 0.28) 0%,
    rgba(26, 126, 84, 0.45) 28%,
    rgba(8, 38, 66, 0.82) 55%,
    rgba(5, 26, 48, 0.95) 100%
  );
}

.service-card:hover .service-card-media-bg {
  transform: scale(1.09);
}

@media (prefers-reduced-motion: reduce) {
  .service-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .service-card:hover,
  .service-card-featured:hover {
    transform: none;
  }
  .service-card-media-bg {
    transition: none;
  }
  .service-card:hover .service-card-media-bg {
    transform: none;
  }
}
/* Brand stripe at the top — fades in on hover (matches static `.card::before`) */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--primary-dark), var(--primary));
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 4;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 22px 52px rgba(8, 38, 66, 0.16);
  border-color: var(--gray-300);
}

.service-card--has-thumb:hover {
  border-color: rgba(141, 198, 63, 0.5);
  box-shadow:
    0 26px 60px rgba(8, 38, 66, 0.42),
    0 0 0 1px rgba(200, 245, 66, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon tile — soft navy + lime gradient, fills with brand gradient on hover */
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 58, 95, 0.08), rgba(141, 198, 63, 0.16));
  color: var(--navy);
  margin-bottom: 1rem;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.22s ease;
}
.service-icon i {
  font-size: 1.05rem;
  color: var(--navy);
  transition: color 0.22s ease;
}
.service-card:not(.service-card-featured):not(.service-card--has-thumb):hover .service-icon {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  transform: scale(1.04);
}
.service-card:not(.service-card-featured):not(.service-card--has-thumb):hover .service-icon i,
.service-card:not(.service-card-featured):not(.service-card--has-thumb):hover .service-icon {
  color: #fff;
}

.service-card--has-thumb:not(.service-card-featured):hover .service-icon {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: scale(1.06);
}
.service-card--has-thumb:not(.service-card-featured):hover .service-icon i {
  color: #fff;
}

/* Title / description / link */
.service-title {
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.service-desc {
  font-size: 0.96rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.18s ease;
}
.service-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}
.service-link:hover {
  color: var(--primary-dark);
}
.service-link:hover i {
  transform: translateX(3px);
}

/* Image cards: light copy on dark overlay */
.service-card--has-thumb:not(.service-card-featured) .service-title {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
#primary.site-main .service-card--has-thumb:not(.service-card-featured) .service-desc {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

#primary.site-main .service-card-featured .service-desc {
  color: rgba(255, 255, 255, 0.78);
}

.service-card--has-thumb:not(.service-card-featured) .service-link {
  color: var(--cyan-glow);
}
.service-card--has-thumb:not(.service-card-featured) .service-link:hover {
  color: #fff;
}
.service-card--has-thumb:not(.service-card-featured) .service-icon {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.service-card--has-thumb:not(.service-card-featured) .service-icon,
.service-card--has-thumb:not(.service-card-featured) .service-icon i {
  color: var(--cyan-glow);
}

/* Featured highlight — solid gradient when no image; with image, media layer */
.service-card-featured {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: var(--navy);
}
.service-card-featured::before {
  background: linear-gradient(90deg, var(--cyan-glow), var(--primary), var(--primary-dark));
  opacity: 1;
}
.service-card-featured .service-title {
  color: #fff;
}
.service-card-featured .service-desc {
  color: rgba(255, 255, 255, 0.78);
}
.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.service-card-featured .service-icon,
.service-card-featured .service-icon i {
  color: var(--cyan-glow);
}
.service-card-featured .service-link {
  color: var(--cyan-glow);
}
.service-card-featured .service-link:hover {
  color: #fff;
}
.service-card-featured:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 64px rgba(8, 38, 66, 0.4);
}

/* Section CTA buttons inside the services band */
.services-section--premium .section-cta .btn-outline-dark {
  color: var(--navy);
  border-color: var(--gray-300);
  background: #fff;
}
.services-section--premium .section-cta .btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ============================================================
   11. STATISTICS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a6e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,174,239,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}
.counter, .stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-plus { color: var(--primary); }
.stat-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}
.stat-desc { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   12. WHY CHOOSE US
   ============================================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-icon i { color: var(--primary); font-size: 1.1rem; }
.why-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.why-text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.why-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Why Visual */
.why-visual { position: relative; }
.why-image-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0,174,239,0.05) 100%);
  border: 1px solid var(--border);
}
.why-image-placeholder {
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #EBF8FF 0%, #DBEAFE 100%);
}
.why-image-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-icon i { font-size: 2.5rem; color: #fff; }
.why-image-placeholder > span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.why-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.why-badge i { color: var(--primary); font-size: 1rem; }
.why-badge-1 { top: 32px; right: -24px; }
.why-badge-2 { bottom: 48px; left: -24px; }

/* Home: editorial “Why Us” (stacked story blocks, Caring Supports–style) */
.why-section--editorial .why-editorial-header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.why-section--editorial .why-editorial-tagline {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.why-section--editorial .why-editorial-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0;
}
.why-editorial-block {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 3vw, 32px) clamp(22px, 3.5vw, 40px);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-editorial-block:hover {
  border-color: rgba(0, 174, 239, 0.28);
  box-shadow: 0 16px 48px rgba(0, 174, 239, 0.08);
}
.why-editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.why-editorial-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
}
.why-section--editorial .why-editorial-cta {
  margin-top: 48px;
}

/* About: “Why choose us” — Caring Supports–style pane grid */
.why-section--choose-pane {
  background: #e5f4fb;
}
.why-section--choose-pane .why-choose-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  background: rgba(0, 119, 182, 0.16);
  border: 1px solid rgba(0, 119, 182, 0.2);
  overflow: hidden;
}
.why-section--choose-pane .why-pane-cell {
  background: #eef8fc;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 40px);
}
.why-section--choose-pane .why-pane-cell--spacer {
  min-height: 0;
}
.why-section--choose-pane .why-pane-cell--header {
  text-align: left;
}
.why-section--choose-pane .why-pane-cell--header .why-pane-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-bottom: 14px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.why-section--choose-pane .why-pane-cell--header .why-pane-kicker::before {
  content: '*';
  font-size: 1.15em;
  line-height: 1;
  color: #ec4899;
  font-weight: 800;
}
.why-section--choose-pane .why-pane-headline {
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-align: left;
}
.why-section--choose-pane .why-title-highlight {
  display: inline;
  padding: 0.06em 0.18em;
  border-radius: 4px;
  background: rgba(125, 211, 252, 0.42);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.why-section--choose-pane .why-pane-lead {
  margin: 0;
  max-width: 34rem;
  text-align: left;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}
.why-section--choose-pane .why-pane-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-section--choose-pane .why-pane-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-section--choose-pane .why-pane-icon i {
  font-size: 1.2rem;
  color: var(--navy);
}
.why-section--choose-pane .why-pane-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.why-section--choose-pane .why-pane-desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .why-section--choose-pane .why-choose-pane-grid {
    grid-template-columns: 1fr;
  }
  .why-section--choose-pane .why-pane-cell--spacer {
    display: none;
  }
}

/* ============================================================
   13. PROCESS / HOW IT WORKS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.process-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.process-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.process-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.process-item:hover .process-number { color: rgba(0,174,239,0.15); }
.process-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.process-icon i { font-size: 1.4rem; color: var(--primary); }
.process-item:hover .process-icon { background: var(--primary); }
.process-item:hover .process-icon i { color: #fff; }
.process-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.process-desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  opacity: 0.4;
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--gray-50); }
.testimonials-swiper { padding-bottom: 56px !important; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-stars { display: flex; gap: 4px; }
.testimonial-stars i { color: #FBBF24; font-size: 0.9rem; }
.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.testimonial-text::before { content: '"'; font-size: 2rem; color: var(--primary); line-height: 0.5; vertical-align: -0.5rem; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #00D4FF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-avatar span { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: #fff; }
.testimonial-info strong { display: block; font-size: 0.9rem; font-weight: 700; font-family: var(--font-heading); color: var(--text); }
.testimonial-info span { font-size: 0.8rem; color: var(--text-light); }

/* Swiper customization */
.swiper-button-prev, .swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  top: auto !important;
  bottom: 0;
}
.swiper-button-prev { left: calc(50% - 52px) !important; }
.swiper-button-next { right: calc(50% - 52px) !important; }
.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 0.9rem !important;
  color: var(--primary);
  font-weight: 700;
}
.swiper-pagination-bullet { background: var(--gray-300) !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 24px !important; border-radius: 4px !important; }

/* ============================================================
   16. CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #005A8B 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.cta-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   17. FOOTER — matches static `html/` export (clean dark navy band)
   ============================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--navy-mid) 0%, #051a30 100%);
  color: rgba(255, 255, 255, 0.78);
}
.footer-top {
  padding-top: clamp(2.75rem, 5vw, 3.5rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand,
.footer-links,
.footer-hours { min-width: 0; }

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}
.footer-about {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0 0 0.85rem;
  max-width: 38ch;
}

/* Contact list — icon tiles + label / value (footer column 1) */
.footer-contact-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact-item {
  margin: 0;
}

.footer-contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  padding: 0.15rem 0.25rem 0.15rem 0;
  margin: -0.15rem -0.25rem;
  transition: color var(--transition);
}

.footer-contact-item--static {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(141, 198, 63, 0.11);
  border: 1px solid rgba(141, 198, 63, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-glow);
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  padding-top: 0.2rem;
}

.footer-contact-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.2;
}

.footer-contact-value {
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  word-break: break-word;
}

.footer-contact-link:hover .footer-contact-value {
  color: var(--cyan-glow);
}

.footer-contact-link:hover .footer-contact-icon,
.footer-contact-link:focus-visible .footer-contact-icon {
  background: var(--cyan-glow);
  border-color: var(--cyan-glow);
  color: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(141, 198, 63, 0.28);
}

.footer-contact-link:focus-visible {
  outline: 2px solid var(--cyan-glow);
  outline-offset: 3px;
}

/* Legacy wrapper (older markup) */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0 0 1.5rem;
}
.footer-contact-info a,
.footer-contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--cyan-glow); }
.footer-contact-info i { display: none; }

/* Social pills — small lime hover */
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 0.4rem;
}
.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: color var(--transition), background var(--transition), transform var(--transition), border-color var(--transition);
}
.social-icon:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan-glow);
  color: var(--navy-mid);
  transform: translateY(-1px);
}

/* Column headings */
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
}

/* Fallback if markup is still h2 (cached HTML or third-party widgets) */
.site-footer .footer-links h2.widgettitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
}

/* Link lists — icon + label (Font Awesome), lime hover on icon + text */
.footer-links ul,
.footer-links .menu {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.93rem;
}
.footer-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-menu-link:hover {
  background: none;
  color: var(--cyan-glow);
}
.footer-menu-link .footer-link-text { color: inherit; }
.footer-menu-link:hover .footer-link-text { color: inherit; }
.footer-link-icon {
  flex-shrink: 0;
  width: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}
.footer-link-icon i {
  font-size: 0.88rem;
}
.footer-menu-link:hover .footer-link-icon {
  color: var(--cyan-glow);
  transform: translateX(1px);
}
.footer-link-text { flex: 1; min-width: 0; line-height: 1.5; }
.footer-links .footer-sub-menu {
  margin: 0.4rem 0 0;
  padding: 0 0 0 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  gap: 0.4rem;
}
.footer-links .footer-sub-menu .footer-menu-link { padding: 0; font-size: 0.86rem; gap: 0.45rem; }
.footer-links .footer-sub-menu .footer-link-icon i { font-size: 0.8rem; }

/* Legal links inline-row in footer bottom */
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.footer-legal-links .footer-menu-link {
  width: auto;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  gap: 0.45rem;
}
.footer-legal-links .footer-menu-link:hover { background: none; color: var(--cyan-glow); }
.footer-legal-links .footer-menu-link:hover .footer-link-icon { color: var(--cyan-glow); }
.footer-legal-links .footer-link-text { flex: none; }
.footer-legal-links .footer-link-icon { color: rgba(255, 255, 255, 0.35); }
.footer-legal-links .footer-link-icon i { font-size: 0.82rem; }

/* Hours column (WP-only feature, kept but restyled to match brand) */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
}
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hours-item span:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}
.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.hours-note i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Brand badge in hours column */
.footer-brand-badge { margin-top: 1.25rem; }
.brand-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(141, 198, 63, 0.1);
  border: 1px solid rgba(141, 198, 63, 0.22);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}
.brand-badge-inner i { color: var(--cyan-glow); font-size: 1.05rem; }
.brand-badge-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.brand-badge-inner span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

/* Footer bottom — matches static (single row, copyright + tagline) */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.footer-acknowledgment {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
}
.footer-acknowledgment i {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.footer-bottom-links > span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  min-width: 0;
}

/* ============================================================
   18. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--primary-hover); transform: translateY(-4px); }

/* ============================================================
   19. PAGE HERO (inner pages) — corporate dark title band
        Mirrors the static `html/` page-hero: navy + green gradient,
        subtle 80×80 grid texture, lime glow orb top-right, glassy pill
        kicker, white H1/lede, breadcrumb trail, brand accent stripe.
   ============================================================ */
.page-hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  color: #f3f8fb;
  padding-top:    calc(var(--header-offset) + clamp(2rem, 4vw, 3rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 H80 M40 0 V80' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E") 0 0 / 80px 80px,
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(141, 198, 63, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(15, 81, 57, 0.42), transparent 55%),
    linear-gradient(140deg, var(--navy-mid) 0%, var(--navy) 55%, #0a3845 100%);
}

/* Lime glow orb */
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -130px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(141, 198, 63, 0.24) 0%,
    rgba(141, 198, 63, 0.06) 50%,
    transparent 72%
  );
  filter: blur(40px);
  pointer-events: none;
}

/* Brand accent stripe at the bottom edge */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark) 50%, var(--navy-light) 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 3.4vw + 1rem, 3.45rem);
  max-width: 24ch;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-hero .lede,
.page-hero p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 64ch;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Glassy pill chip kicker */
.page-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero .kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-glow);
  box-shadow: 0 0 0 5px rgba(200, 245, 66, 0.18);
  flex-shrink: 0;
}

/* Breadcrumbs (`<nav class="crumbs"><ol><li>` markup) */
.crumbs {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.crumbs li {
  display: flex;
  align-items: center;
}
.crumbs li::before {
  content: "/";
  margin: 0 0.5rem;
  color: var(--gray-400);
}
.crumbs li:first-child::before {
  display: none;
  margin: 0;
}
.crumbs a {
  color: inherit;
  font-weight: 600;
  transition: color 0.18s ease;
}
.crumbs a:hover { color: var(--navy); }
.crumbs span[aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

/* Breadcrumbs sit on the dark page-hero — invert palette */
.page-hero .crumbs { color: rgba(255, 255, 255, 0.55); }
.page-hero .crumbs a { color: rgba(255, 255, 255, 0.78); }
.page-hero .crumbs a:hover { color: var(--cyan-glow); }
.page-hero .crumbs span[aria-current="page"] { color: #fff; }
.page-hero .crumbs li::before { color: rgba(255, 255, 255, 0.32); }

/* ---- Per-post Page Hero overrides (see inc/page-hero-meta.php) ---- */

/* Solid colour only (no image): suppress the default gradient/grid layers
   so the editor’s background colour actually shows through. */
.page-hero.has-hero-bg-color:not(.has-hero-bg-image) {
  background-image: none;
}

/* Image variant: hide the lime-glow orb so the custom image isn’t obscured. */
.page-hero.has-hero-bg-image::before { display: none; }

/* Dark overlay that sits on top of the image but below the text. */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay-color, rgba(6, 34, 52, 0.55));
  pointer-events: none;
  z-index: 0;
}

/* Custom text colour applies to the hero copy + breadcrumbs. */
.page-hero.has-hero-text-color h1,
.page-hero.has-hero-text-color .kicker,
.page-hero.has-hero-text-color .lede,
.page-hero.has-hero-text-color p,
.page-hero.has-hero-text-color .crumbs,
.page-hero.has-hero-text-color .crumbs a,
.page-hero.has-hero-text-color .crumbs span[aria-current="page"],
.page-hero.has-hero-text-color .crumbs li::before {
  color: var(--hero-text-color, inherit);
}

/* ============================================================
   20. CONTACT FORM
   ============================================================ */
.contact-section { padding: var(--section-padding) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }

/* Contact page — “Why Reach Out” (three cards below form) */
.contact-section .contact-why-intro {
  margin-top: 80px;
}
.contact-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.contact-why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.contact-why-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-why-icon i { color: var(--primary); font-size: 1.2rem; }
.contact-why-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.contact-why-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .contact-why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .contact-why-grid { grid-template-columns: 1fr; }
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i { color: var(--primary); font-size: 1.1rem; }
.contact-info-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-info-text a, .contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--primary); }

/* Elementor Icon List — contact page (Advanced → CSS class: contact_info_icons) */
.contact_info_icons.elementor-icon-list-items,
.elementor-element.contact_info_icons .elementor-icon-list-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact_info_icons.elementor-icon-list-items .elementor-icon-list-item,
.elementor-element.contact_info_icons .elementor-icon-list-items .elementor-icon-list-item {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact_info_icons.elementor-icon-list-items .elementor-icon-list-item::after,
.elementor-element.contact_info_icons .elementor-icon-list-items .elementor-icon-list-item::after {
  content: none !important;
  border: none !important;
}
.contact_info_icons.elementor-icon-list-items .elementor-icon-list-item > a,
.elementor-element.contact_info_icons .elementor-icon-list-items .elementor-icon-list-item > a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.contact_info_icons .elementor-icon-list-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin: 0 !important;
  padding: 0 !important;
  padding-inline-end: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Light tile so icons never sit on the same value as their fill (Elementor often inlines dark SVG fills) */
  background: linear-gradient(155deg, #f5fcff 0%, #e8f6ff 42%, rgba(0, 184, 245, 0.14) 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 119, 182, 0.22);
  box-shadow: 0 2px 10px rgba(0, 90, 140, 0.08);
  color: var(--primary-dark);
}
.contact_info_icons .elementor-icon-list-icon i {
  color: var(--navy);
  font-size: 1.1rem;
}
.contact_info_icons .elementor-icon-list-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  flex-shrink: 0;
  color: var(--primary-dark);
}
/* Override Elementor’s inline dark fills; skip stroke-only / outline glyphs */
.contact_info_icons .elementor-icon-list-icon svg path:not([fill="none"]),
.contact_info_icons .elementor-icon-list-icon svg circle:not([fill="none"]),
.contact_info_icons .elementor-icon-list-icon svg rect:not([fill="none"]),
.contact_info_icons .elementor-icon-list-icon svg polygon:not([fill="none"]),
.contact_info_icons .elementor-icon-list-icon svg polyline:not([fill="none"]) {
  fill: var(--primary-dark) !important;
}
.contact_info_icons .elementor-icon-list-icon svg [stroke]:not([stroke="none"]):not([stroke="0"]) {
  stroke: var(--navy) !important;
}
.contact_info_icons .elementor-icon-list-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  min-width: 0;
  padding: 0 !important;
  align-self: flex-start;
}
.contact_info_icons .elementor-icon-list-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact_info_icons .elementor-icon-list-item > a:hover,
.contact_info_icons .elementor-icon-list-item > a:hover .elementor-icon-list-text {
  color: var(--primary-dark);
}
.contact_info_icons .elementor-icon-list-item > a:hover .elementor-icon-list-text strong {
  color: var(--navy-mid);
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.form-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: var(--radius-md); }

/* ============================================================
   21. SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: var(--section-padding) 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-icon-large {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-detail-icon-large i { font-size: 2rem; color: var(--primary); }
.service-detail-heading { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.service-detail-text { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.service-feature i { color: var(--primary); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.service-visual {
  background: linear-gradient(135deg, var(--gray-50) 0%, #EBF8FF 100%);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 40px;
}
.service-visual-icon i { font-size: 6rem; color: var(--primary); opacity: 0.25; }

/* ============================================================
   22. ABOUT PAGE
   ============================================================ */
.about-story { padding: var(--section-padding) 0; }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.mission-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}
.mission-icon-blue { background: var(--primary-light); color: var(--primary); }
.mission-icon-green { background: rgba(74,222,128,0.1); color: #16A34A; }
.mission-icon-purple { background: rgba(139,92,246,0.1); color: #7C3AED; }
.mission-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.mission-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.team-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light), #DBEAFE);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo i { font-size: 4rem; color: var(--primary); opacity: 0.4; }
.team-info { padding: 24px; }
.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   24. ANIMATIONS
   ============================================================ */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }

/* ============================================================
   25. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0; }

/* Footer: mid screens — hours row full width so link columns breathe */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 48px;
  }
  .footer-hours {
    grid-column: 1 / -1;
  }
  .footer-hours .hours-list {
    max-width: 560px;
  }
}

/* ============================================================
   26. RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-section .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stats-section .stat-item:last-child { border-bottom: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .why-image-placeholder { height: 320px; }
  .why-badge-1 { right: 16px; top: 16px; }
  .why-badge-2 { left: 16px; bottom: 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-connector { transform: rotate(90deg); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 640px;
  }
  .footer-hours {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer-hours .hours-list {
    max-width: 100%;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-mission-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; }
  .service-detail-inner.reverse { direction: ltr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner { padding: 48px 0 56px; }
}

/* ============================================================
   27. RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    /* Room for a larger horizontal logo beside the menu button */
    --header-height: 88px;
  }
  .container { padding: 0 16px; }
  .page-hero::before {
    right: -60px;
    width: min(440px, 90vw);
  }
  .page-hero h1 {
    max-width: none;
  }
  .header-inner {
    justify-content: space-between;
    gap: 16px;
  }
  .main-nav,
  .header-actions {
    display: none;
  }
  .logo-img {
    width: auto;
    max-width: min(280px, 72vw);
    max-height: 70px;
    height: auto;
    object-fit: contain;
  }
  .hamburger {
    display: flex;
    margin-left: 0;
  }
  .hero-bg-pagination {
    bottom: 18px !important;
  }
  .hero-trust { gap: 12px; }
  .hero-actions { gap: 12px; }
  .trust-grid { flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 calc(50% - 16px); justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-section .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-section .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .section-cta { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .why-actions { flex-direction: column; }
  .why-badge { display: none; }
}

/* ============================================================
   28. RESPONSIVE — SMALL MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --section-padding: 48px; }
  .container { padding: 0 16px; }
  .trust-item { flex: 1 1 100%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-section .stat-item { border-right: none; }
  .stats-section .stat-item:nth-child(odd) { border-right: none; }
  .back-to-top { right: 16px; bottom: 16px; }
}

/* ============================================================
   29. ELEMENTOR ABOUT + SHARED (occ-* sections, hero, tokens)
   Shared by About and Contact Elementor HTML. Contact layout: section 30.
   Works with or without outer <div class="occ-wp-about"> for About-only slices.
   ============================================================ */

.occ-wp-about,
.occ-el-section.occ-page-hero,
.occ-el-section.occ-content-band,
.occ-el-section.occ-stats-wrap,
.occ-el-section.occ-contact-band {
  --occ-navy: #0e3a5f;
  --occ-navy-deep: #082642;
  --occ-navy-mid: #1a5e93;
  --occ-green: #0f5139;
  --occ-green-mid: #1a7e54;
  --occ-green-tint: #e7f1ec;
  --occ-lime: #8dc63f;
  --occ-lime-bright: #c8f542;
  --occ-bg: #f4f7fb;
  --occ-surface: #ffffff;
  --occ-ink: #0c1e2e;
  --occ-ink-soft: #1a2a3c;
  --occ-muted: #4f6377;
  --occ-muted-soft: #7d8c9c;
  --occ-line: #dde4ec;
  --occ-line-strong: #c5d0dc;
  --occ-shadow-xs: 0 1px 2px rgba(8, 38, 66, 0.06);
  --occ-shadow-sm: 0 2px 8px rgba(8, 38, 66, 0.06);
  --occ-radius: 12px;
  --occ-radius-lg: 18px;
  --occ-max: 1240px;
}

.occ-wp-about {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--occ-ink);
  background: var(--occ-bg);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.occ-el-section.occ-content-band,
.occ-el-section.occ-stats-wrap,
.occ-el-section.occ-contact-band {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.occ-el-section.occ-contact-band {
  padding-block: clamp(3.5rem, 5vw, 5rem);
  background: var(--occ-bg);
  color: var(--occ-ink);
}

.occ-el-section .occ-el-container {
  width: min(100% - 2.5rem, var(--occ-max));
  margin-inline: auto;
  max-width: 100%;
}

.occ-el-section {
  width: 100%;
  max-width: 100%;
}

.occ-el-section.occ-content-band a,
.occ-el-section.occ-stats-wrap a,
.occ-el-section.occ-contact-band a {
  color: var(--occ-navy-mid);
  text-decoration: none;
}

.occ-el-section.occ-content-band a:hover,
.occ-el-section.occ-stats-wrap a:hover,
.occ-el-section.occ-contact-band a:hover {
  color: var(--occ-navy);
}

.occ-page-hero h1,
.occ-prose h2 {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 0.75rem;
}

.occ-page-hero h1 {
  font-size: clamp(2.15rem, 3.4vw + 1rem, 3.45rem);
  margin-bottom: 1rem;
}

.occ-prose h2 {
  font-size: clamp(1.7rem, 1.8vw + 1rem, 2.25rem);
}

.occ-el-section.occ-page-hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  color: #f3f8fb;
  padding-block: clamp(3rem, 5vw, 4.5rem) clamp(3.5rem, 6vw, 5.5rem);
  background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cpath d='M0 40 H80 M40 0 V80' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E") 0 0 / 80px 80px,
      radial-gradient(ellipse 50% 70% at 100% 0%, rgba(141, 198, 63, 0.22), transparent 55%),
      radial-gradient(ellipse 60% 80% at 0% 100%, rgba(15, 81, 57, 0.42), transparent 55%),
      linear-gradient(140deg, var(--occ-navy-deep) 0%, var(--occ-navy) 55%, #0a3845 100%);
}

.occ-el-section.occ-page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -130px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.24) 0%, rgba(141, 198, 63, 0.06) 50%, transparent 72%);
  filter: blur(40px);
  pointer-events: none;
}

.occ-el-section.occ-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--occ-lime), var(--occ-green-mid) 50%, var(--occ-navy-mid) 100%);
  pointer-events: none;
}

.occ-page-hero .occ-el-container {
  position: relative;
  z-index: 1;
}

.occ-page-hero h1 {
  color: #fff;
  max-width: 24ch;
}

.occ-lede {
  font-size: 1.1rem;
  max-width: 64ch;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.occ-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 1.25rem;
}

.occ-kicker .occ-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--occ-lime-bright);
  box-shadow: 0 0 0 5px rgba(200, 245, 66, 0.18);
}

.occ-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.occ-crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.occ-crumbs li {
  display: flex;
  align-items: center;
}

.occ-crumbs li::before {
  content: "/";
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.32);
}

.occ-crumbs li:first-child::before {
  display: none;
  margin: 0;
}

.occ-crumbs a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.occ-crumbs a:hover {
  color: var(--occ-lime-bright);
}

.occ-crumbs span[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.occ-el-section.occ-content-band {
  padding-block: clamp(3.5rem, 5vw, 5rem);
  background: var(--occ-bg);
  color: var(--occ-ink);
}

.occ-prose {
  max-width: 760px;
}

.occ-prose > h2:first-child {
  margin-top: 0;
}

.occ-prose h2 {
  margin-top: 2.5rem;
  color: var(--occ-navy);
}

.occ-prose p {
  margin: 0 0 1rem;
  color: var(--occ-ink-soft);
}

.occ-notice {
  border-left: 4px solid var(--occ-lime);
  padding: 1rem 1.25rem;
  background: var(--occ-green-tint);
  border-radius: 0 var(--occ-radius) var(--occ-radius) 0;
  margin: 1.75rem 0;
  color: var(--occ-ink-soft);
  font-size: 0.96rem;
}

.occ-notice strong {
  color: var(--occ-navy-deep);
}

.occ-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.occ-btn-primary {
  background: linear-gradient(135deg, var(--occ-lime) 0%, var(--occ-lime-bright) 100%);
  color: var(--occ-navy-deep);
  box-shadow: 0 6px 20px rgba(141, 198, 63, 0.32);
}

.occ-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(141, 198, 63, 0.42);
  color: var(--occ-navy-deep);
}

.occ-el-section.occ-stats-wrap {
  padding-block: clamp(3.5rem, 5vw, 5rem);
  background: var(--occ-bg);
}

.occ-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.occ-stat-card {
  background: var(--occ-surface);
  border: 1px solid var(--occ-line);
  border-radius: var(--occ-radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  box-shadow: var(--occ-shadow-xs);
}

.occ-stat-card .occ-num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--occ-navy);
  letter-spacing: -0.03em;
}

.occ-stat-card .occ-num em {
  font-style: normal;
  color: var(--occ-green-mid);
}

.occ-stat-card .occ-stat-label {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  color: var(--occ-muted);
}

/* ============================================================
   30. ELEMENTOR CONTACT BAND (.occ-el-section.occ-contact-band)
   Paste the contact band section only (see html/contact-elementor.html).
   Replace the demo form with Contact Form 7 / Elementor Form when ready.
   ============================================================ */

.occ-el-section.occ-contact-band .contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.occ-el-section.occ-contact-band .contact-card {
  background: var(--occ-surface);
  border: 1px solid var(--occ-line);
  border-radius: var(--occ-radius-lg);
  padding: 1.85rem;
  box-shadow: var(--occ-shadow-sm);
}

.occ-el-section.occ-contact-band .contact-card > h2:first-child {
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--occ-navy);
}

.occ-el-section.occ-contact-band .contact-card .info-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--occ-line);
}

.occ-el-section.occ-contact-band .contact-card .info-row:first-of-type {
  border-top: none;
  padding-top: 0;
}

.occ-el-section.occ-contact-band .contact-card .info-row .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(14, 58, 95, 0.08);
  color: var(--occ-navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.occ-el-section.occ-contact-band .contact-card .info-row .icon svg {
  width: 18px;
  height: 18px;
}

.occ-el-section.occ-contact-band .contact-card .info-row .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--occ-muted);
}

.occ-el-section.occ-contact-band .contact-card .info-row .value {
  font-weight: 700;
  color: var(--occ-ink);
}

.occ-el-section.occ-contact-band .contact-card .info-row .value a {
  color: var(--occ-ink);
}

.occ-el-section.occ-contact-band .contact-card .info-row .value a:hover {
  color: var(--occ-navy);
}

.occ-el-section.occ-contact-band .form-grid {
  display: grid;
  gap: 1rem;
}

.occ-el-section.occ-contact-band .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.occ-el-section.occ-contact-band label {
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.4rem;
  color: var(--occ-ink-soft);
}

.occ-el-section.occ-contact-band input,
.occ-el-section.occ-contact-band select,
.occ-el-section.occ-contact-band textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--occ-line-strong);
  font: inherit;
  background: var(--occ-surface);
  color: var(--occ-ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.occ-el-section.occ-contact-band input:focus-visible,
.occ-el-section.occ-contact-band select:focus-visible,
.occ-el-section.occ-contact-band textarea:focus-visible {
  outline: none;
  border-color: var(--occ-green-mid);
  box-shadow: 0 0 0 3px rgba(26, 126, 84, 0.18);
}

.occ-el-section.occ-contact-band textarea {
  min-height: 140px;
  resize: vertical;
}

.occ-el-section.occ-contact-band .form-hint {
  font-size: 0.82rem;
  color: var(--occ-muted);
  margin-top: 0.5rem;
}

.occ-el-section.occ-contact-band .contact-card.reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

@media (max-width: 768px) {
  .occ-el-section.occ-contact-band .contact-layout {
    grid-template-columns: 1fr;
  }

  .occ-el-section.occ-contact-band .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   31. SERVICE PAGE ELEMENTOR BLOCK (.occ-rcc-*)
   Shared layout for all service HTML widgets. Markup: wrap in
   <div class="occ-rcc-wrap" lang="en-AU"> … </div>
   (see html/residential-carpet-cleaning-elementor.html).
   ============================================================ */

  .occ-rcc-wrap {
    --rcc-navy: #0e3a5f;
    --rcc-navy-deep: #082642;
    --rcc-green: #1a7e54;
    --rcc-lime: #8dc63f;
    --rcc-lime-bright: #c8f542;
    --rcc-bg: #f4f7fb;
    --rcc-surface: #ffffff;
    --rcc-ink: #0c1e2e;
    --rcc-muted: #4f6377;
    --rcc-line: #dde4ec;
    --rcc-radius: 14px;
    --rcc-radius-lg: 20px;
    --rcc-shadow: 0 8px 32px rgba(8, 38, 66, 0.08);
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--rcc-ink);
    line-height: 1.65;
    font-size: 1rem;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    overflow-x: clip;
  }
  .occ-rcc-wrap *, .occ-rcc-wrap *::before, .occ-rcc-wrap *::after { box-sizing: border-box; }

  .occ-rcc-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rcc-navy-deep) 0%, var(--rcc-navy) 45%, #0a3845 100%);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2rem);
    text-align: center;
  }
  .occ-rcc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 80% 0%, rgba(141, 198, 63, 0.2), transparent 50%),
                radial-gradient(ellipse 60% 40% at 0% 100%, rgba(26, 126, 84, 0.35), transparent 45%);
    pointer-events: none;
  }
  .occ-rcc-hero-inner { position: relative; z-index: 1; max-width: 52rem; margin: 0 auto; }
  .occ-rcc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
  }
  .occ-rcc-kicker span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--rcc-lime-bright);
    box-shadow: 0 0 0 4px rgba(200, 245, 66, 0.2);
  }
  .occ-rcc-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw + 1rem, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #fff;
  }
  .occ-rcc-lead {
    margin: 0 auto 1.75rem;
    max-width: 42rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
  }
  .occ-rcc-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
  }
  .occ-rcc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
  }
  .occ-rcc-btn-primary {
    background: linear-gradient(135deg, var(--rcc-lime) 0%, var(--rcc-lime-bright) 100%);
    color: var(--rcc-navy-deep);
    box-shadow: 0 6px 24px rgba(141, 198, 63, 0.35);
  }
  .occ-rcc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(141, 198, 63, 0.45);
    color: var(--rcc-navy-deep);
  }
  .occ-rcc-btn-ghost {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
  }
  .occ-rcc-btn-ghost:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
  }

  .occ-rcc-body {
    background: var(--rcc-bg);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
  }
  .occ-rcc-inner { max-width: 72rem; margin: 0 auto; }

  .occ-rcc-prose {
    width: 100%;
    max-width: none;
    margin: 0 0 2.5rem;
  }
  .occ-rcc-prose p {
    margin: 0 0 1.1rem;
    color: var(--rcc-muted);
    font-size: 1.02rem;
  }
  .occ-rcc-prose p:last-child { margin-bottom: 0; }

  .occ-rcc-section-title {
    text-align: center;
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--rcc-navy);
  }
  .occ-rcc-section-sub {
    text-align: center;
    margin: 0 auto 2rem;
    max-width: 36rem;
    color: var(--rcc-muted);
    font-size: 0.98rem;
  }

  .occ-rcc-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
  }
  .occ-rcc-card {
    background: var(--rcc-surface);
    border: 1px solid var(--rcc-line);
    border-radius: var(--rcc-radius-lg);
    padding: 1.5rem 1.35rem;
    box-shadow: var(--rcc-shadow);
    height: 100%;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .occ-rcc-card:hover {
    border-color: rgba(141, 198, 63, 0.45);
    transform: translateY(-2px);
  }
  .occ-rcc-card h3 {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--rcc-navy);
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .occ-rcc-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(141,198,63,0.2), rgba(14,58,95,0.12));
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--rcc-green);
  }
  .occ-rcc-card-icon svg { width: 1.1rem; height: 1.1rem; }
  .occ-rcc-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--rcc-muted);
    line-height: 1.55;
  }

  .occ-rcc-includes {
    background: var(--rcc-surface);
    border-radius: var(--rcc-radius-lg);
    border: 1px solid var(--rcc-line);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 3rem;
    box-shadow: var(--rcc-shadow);
  }
  .occ-rcc-includes h2 {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--rcc-navy);
    text-align: center;
  }
  .occ-rcc-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.65rem 1.25rem;
  }
  .occ-rcc-checklist li {
    display: flex !important;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--rcc-ink);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(221, 228, 236, 0.8);
  }
  .occ-rcc-checklist li:nth-last-child(-n+2) { border-bottom: none; }
  @media (min-width: 720px) {
    .occ-rcc-checklist li:nth-child(odd) { border-right: 1px solid rgba(221, 228, 236, 0.8); padding-right: 1rem; }
  }
  .occ-rcc-check {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(141, 198, 63, 0.2);
    color: var(--rcc-green);
    display: grid;
    place-items: center;
    margin-top: 0.1rem;
  }
  .occ-rcc-check svg { width: 0.75rem; height: 0.75rem; }

  .occ-rcc-process {
    margin-bottom: 3rem;
  }
  .occ-rcc-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    counter-reset: rccstep;
  }
  .occ-rcc-step {
    position: relative;
    background: var(--rcc-surface);
    border: 1px solid var(--rcc-line);
    border-radius: var(--rcc-radius);
    padding: 1.35rem 1.1rem 1.35rem 3.25rem;
    box-shadow: 0 2px 12px rgba(8, 38, 66, 0.05);
  }
  .occ-rcc-step::before {
    counter-increment: rccstep;
    content: counter(rccstep);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--rcc-navy);
    color: var(--rcc-lime-bright);
    font-weight: 800;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
  }
  .occ-rcc-step strong {
    display: block;
    font-size: 0.92rem;
    color: var(--rcc-navy);
    margin-bottom: 0.25rem;
  }
  .occ-rcc-step span {
    font-size: 0.82rem;
    color: var(--rcc-muted);
    line-height: 1.45;
  }

  .occ-rcc-suburbs {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: linear-gradient(180deg, rgba(14,58,95,0.06) 0%, transparent 100%);
    border-radius: var(--rcc-radius-lg);
    margin-bottom: 2.5rem;
  }
  .occ-rcc-suburbs h2 {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--rcc-navy);
  }
  .occ-rcc-suburbs p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--rcc-muted);
    max-width: 52rem;
    margin-inline: auto;
    line-height: 1.65;
  }

  .occ-rcc-final {
    position: relative;
    overflow: hidden;
    border-radius: var(--rcc-radius-lg);
    padding: clamp(2rem, 4vw, 2.75rem);
    background: linear-gradient(120deg, var(--rcc-navy) 0%, var(--rcc-navy-deep) 100%);
    color: #fff;
    text-align: center;
  }
  .occ-rcc-final::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rcc-lime), var(--rcc-green), var(--rcc-lime-bright));
  }
  .occ-rcc-final h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
  }
  .occ-rcc-final > p {
    margin: 0 0 1.25rem;
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    max-width: 36rem;
    margin-inline: auto;
  }
  .occ-rcc-address {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.82);
  }
  .occ-rcc-address svg { flex-shrink: 0; opacity: 0.85; }

  @media (max-width: 600px) {
    .occ-rcc-checklist li { border-right: none !important; }
    .occ-rcc-cta-row { flex-direction: column; }
    .occ-rcc-btn { width: 100%; }
  }

/* ============================================================
   32. SERVICE AREAS ELEMENTOR BLOCK (.occ-sa-wrap)
   Paste html/service-areas-elementor.html into an Elementor HTML widget.
   ============================================================ */
.occ-sa-wrap {
  --occ-sa-navy: #0e3a5f;
  --occ-sa-navy-deep: #082642;
  --occ-sa-green-mid: #1a7e54;
  --occ-sa-lime: #8dc63f;
  --occ-sa-lime-bright: #c8f542;
  --occ-sa-bg: #f4f7fb;
  --occ-sa-surface: #ffffff;
  --occ-sa-ink: #0c1e2e;
  --occ-sa-ink-soft: #1a2a3c;
  --occ-sa-muted: #4f6377;
  --occ-sa-line: #dde4ec;
  --occ-sa-radius-lg: 18px;
  --occ-sa-max: 1240px;
  color: var(--occ-sa-ink);
  background: var(--occ-sa-bg);
  font-family: var(--font-body, "Plus Jakarta Sans", system-ui, sans-serif);
  overflow-x: clip;
  max-width: 100%;
}

.occ-sa-wrap *, .occ-sa-wrap *::before, .occ-sa-wrap *::after { box-sizing: border-box; }

.occ-sa-band {
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
}

.occ-sa-inner {
  width: min(100% - 2.5rem, var(--occ-sa-max));
  margin-inline: auto;
}

.occ-sa-head {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.occ-sa-head.center {
  margin-inline: auto;
  text-align: center;
}

.occ-sa-head.center .occ-sa-lede {
  margin-inline: auto;
}

.occ-sa-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--occ-sa-green-mid);
  margin-bottom: 0.75rem;
}

.occ-sa-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--occ-sa-lime-bright);
  box-shadow: 0 0 0 4px rgba(200, 245, 66, 0.28);
}

.occ-sa-wrap h2 {
  font-family: var(--font-heading, inherit);
  font-size: clamp(1.55rem, 2.4vw + 0.5rem, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--occ-sa-navy);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.occ-sa-lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--occ-sa-muted);
  margin: 0;
  max-width: 62ch;
}

.occ-sa-prose {
  max-width: 72ch;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--occ-sa-ink-soft);
}

.occ-sa-prose p { margin: 0 0 1rem; }
.occ-sa-prose p:last-child { margin-bottom: 0; }
.occ-sa-prose a {
  color: var(--occ-sa-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.occ-sa-prose a:hover { color: var(--occ-sa-green-mid); }

.occ-sa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.occ-sa-card {
  background: var(--occ-sa-surface);
  border: 1px solid var(--occ-sa-line);
  border-radius: var(--occ-sa-radius-lg);
  padding: 1.45rem 1.35rem 1.35rem;
  box-shadow: 0 2px 8px rgba(8, 38, 66, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.occ-sa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--occ-sa-navy), var(--occ-sa-green-mid), var(--occ-sa-lime));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.occ-sa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(8, 38, 66, 0.1);
  border-color: #c5d0dc;
}

.occ-sa-card:hover::before { opacity: 1; }

.occ-sa-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 58, 95, 0.08), rgba(26, 126, 84, 0.12));
  color: var(--occ-sa-navy);
  margin-bottom: 0.85rem;
}

.occ-sa-card-icon svg { width: 1.25rem; height: 1.25rem; }

.occ-sa-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--occ-sa-navy);
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.occ-sa-card .occ-sa-card-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--occ-sa-muted);
  margin: 0 0 0.85rem;
}

.occ-sa-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
}

.occ-sa-suburbs li {
  display: block;
  list-style: none;
  list-style-type: none;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--occ-sa-ink-soft);
  background: var(--occ-sa-bg);
  border: 1px solid var(--occ-sa-line);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  line-height: 1.3;
}

.occ-sa-notice {
  margin-top: 1.75rem;
  border-left: 4px solid var(--occ-sa-lime);
  padding: 1rem 1.15rem;
  background: #e7f1ec;
  border-radius: 0 12px 12px 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--occ-sa-ink-soft);
}

.occ-sa-notice strong { color: var(--occ-sa-navy-deep); }

.occ-sa-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.occ-sa-service-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--occ-sa-surface);
  border: 1px solid var(--occ-sa-line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--occ-sa-ink);
  font-size: 0.9rem;
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.occ-sa-service-link svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--occ-sa-green-mid);
}

.occ-sa-service-link:hover {
  border-color: var(--occ-sa-green-mid);
  color: var(--occ-sa-navy);
  box-shadow: 0 4px 14px rgba(8, 38, 66, 0.08);
}

.occ-sa-faq {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.occ-sa-faq-item {
  background: var(--occ-sa-surface);
  border: 1px solid var(--occ-sa-line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}

.occ-sa-faq-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--occ-sa-navy);
  margin: 0 0 0.45rem;
  line-height: 1.35;
}

.occ-sa-faq-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--occ-sa-muted);
}

.occ-sa-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.occ-sa-stat {
  background: var(--occ-sa-surface);
  border: 1px solid var(--occ-sa-line);
  border-radius: var(--occ-sa-radius-lg);
  padding: 1.15rem 1rem;
  text-align: center;
}

.occ-sa-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--occ-sa-navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.occ-sa-stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--occ-sa-muted);
  line-height: 1.35;
}

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

@media (max-width: 560px) {
  .occ-sa-services { grid-template-columns: 1fr; }
  .occ-sa-stats { grid-template-columns: 1fr; }
}

/* CTA strip inside Elementor HTML blocks (inner pages — static-html.css is front-page only) */
.oncall-html-section .cta-strip {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(141, 198, 63, 0.2), transparent 60%),
    linear-gradient(120deg, #082642 0%, #0e3a5f 50%, #0f5139 100%);
  color: #fff;
  border-radius: 18px;
  padding: clamp(2rem, 4vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 12px 40px rgba(8, 38, 66, 0.18);
}

.oncall-html-section .cta-strip h2 {
  color: #fff;
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2vw + 0.5rem, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.oncall-html-section .cta-strip .cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
