/* ITService4UK visual redesign — v9 (navy + green, full rebuild, no legacy CSS dependency) */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('/wp-content/uploads/redesign-fonts/sora.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/wp-content/uploads/redesign-fonts/plus-jakarta-sans.woff2') format('woff2');
}

:root {
  --navy: #152447;
  --navy-light: #1D3160;
  --green: #2FAE5C;
  --green-dark: #24913F;
  --green-tint: #E9F7EE;
  --text: #1F2733;
  --text-secondary: #5B6472;
  --border: #E5E8EC;
  --bg-alt: #F5F7FA;
  --on-green: #0B2416;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --shadow-card: 0 1px 2px rgba(21,36,71,0.04), 0 8px 24px rgba(21,36,71,0.06);
  --shadow-card-hover: 0 4px 8px rgba(21,36,71,0.06), 0 16px 36px rgba(21,36,71,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body) !important;
  color: var(--text);
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  color: var(--text);
  margin: 0;
}
a { color: var(--green-dark); }
a:hover { color: var(--green); }
img { max-width: 100%; display: block; margin-left: auto; margin-right: auto; }
img.alignleft, img.alignright, img.aligncenter { float: none !important; margin-left: auto !important; margin-right: auto !important; }
/* inline images within real post/page body copy — constrained to a normal readable width so they
   never run full-bleed or oversized inside the text column. Scoped to actual content contexts only
   (WP entry-content, Elementor's content/image/text-editor widgets); post-list thumbnails, header/
   nav/footer icons and the hero photo (a CSS background, not an <img>) are untouched. */
.entry-content img,
.elementor-widget-theme-post-content img,
.elementor-widget-text-editor img,
.elementor-widget-image img,
.wp-block-gallery.has-nested-images figure.wp-block-image img {
  max-width: min(800px, 100%) !important;
  width: auto;
  height: auto;
}

/* the two known malformed pages (pasted-in raw HTML documents from the original migration)
   contain hardcoded multi-column CSS grids with no mobile breakpoint of their own — collapses
   to a single column below tablet width so nothing runs off the edge of the screen. */
@media (max-width: 640px) {
  .its4uk-mobile-grid { grid-template-columns: 1fr !important; }
}

/* ================= HEADER ================= */
.its4uk-header {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  gap: 24px;
  position: relative;
  z-index: 100;
}
.its4uk-header__logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}
.its4uk-header__logo span { color: var(--green); }
.its4uk-nav { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.its4uk-nav li { position: relative; }
.its4uk-nav > li > a {
  color: #C7CEDC; font-weight: 500; font-size: 16px; text-decoration: none;
  font-family: var(--font-body); padding: 8px 0; display: inline-block; transition: color 0.15s ease;
}
.its4uk-nav > li > a:hover { color: #FFFFFF; }
.its4uk-nav .its4uk-submenu {
  display: none; position: absolute; top: 100%; left: 0; background: #FFFFFF;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-card-hover); min-width: 300px;
  padding: 10px; list-style: none; margin: 10px 0 0; z-index: 200;
}
.its4uk-nav li:hover .its4uk-submenu,
.its4uk-nav li.its4uk-submenu--open .its4uk-submenu { display: block; }
.its4uk-nav .its4uk-submenu li a {
  display: block; padding: 10px 14px; font-size: 15px; color: var(--text); border-radius: 0;
  text-decoration: none; font-family: var(--font-body); font-weight: 500; transition: background 0.15s ease;
}
.its4uk-nav .its4uk-submenu li a:hover { background: var(--green-tint); color: var(--green-dark); }
.its4uk-header__right { display: flex; align-items: center; gap: 14px; }
.its4uk-header__call {
  display: flex; align-items: center; gap: 8px; background: var(--green); color: var(--on-green) !important;
  font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: var(--radius-sm);
  text-decoration: none !important; white-space: nowrap; font-family: var(--font-heading);
  transition: background 0.15s ease, transform 0.15s ease;
}
.its4uk-header__call:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.its4uk-header__legacy-link { font-size: 10px; color: #7C89A3; text-decoration: none; display: block; text-align: center; margin-top: 2px; }
.its4uk-menu-toggle { display: none; background: none; border: none; color: #FFFFFF; font-size: 24px; cursor: pointer; line-height: 1; padding: 4px; }
@media (max-width: 900px) {
  .its4uk-header { flex-wrap: nowrap; padding: 12px 16px; gap: 10px; }
  .its4uk-header__logo { font-size: 17px; }
  .its4uk-header__right { gap: 8px; }
  .its4uk-header__call { padding: 8px 12px; font-size: 12.5px; gap: 6px; }
  .its4uk-header__call svg { width: 12px; height: 12px; }
  /* a second, tiny duplicate of the same phone number already shown in the button above it —
     redundant on narrow screens, so it's dropped there to keep the header compact */
  .its4uk-header__legacy-link { display: none; }
  .its4uk-menu-toggle { display: block; }

  /* the nav becomes a tap-to-open dropdown panel instead of the desktop hover menu.
     flex-wrap must be reset to nowrap here — the base .its4uk-nav rule sets it to "wrap"
     for the desktop horizontal layout, and left uncorrected, a column-direction flex
     container that overflows its max-height starts a second COLUMN instead of scrolling,
     which is what was rendering "Posts"/"Reviews" as a second sidebar-like column bleeding
     off the right edge of the screen. */
  .its4uk-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%; z-index: 150;
    background: var(--navy); flex-direction: column; flex-wrap: nowrap; align-items: stretch; gap: 0;
    padding: 4px 16px 12px; margin: 0; max-height: calc(100vh - 60px); overflow-y: auto;
    box-shadow: var(--shadow-card-hover); box-sizing: border-box;
  }
  .its4uk-nav.its4uk-nav--open { display: flex; }
  .its4uk-nav > li { width: 100%; }
  .its4uk-nav > li > a { display: block; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .its4uk-nav .its4uk-submenu {
    display: block; position: static; background: none; box-shadow: none; border-radius: 0;
    padding: 0 0 6px 14px; margin: 0; min-width: 0;
  }
  .its4uk-nav .its4uk-submenu li a { color: #C7CEDC; padding: 9px 4px; font-size: 15px; }
  .its4uk-nav .its4uk-submenu li a:hover { background: none; color: #FFFFFF; }
}

/* ================= TRUST BADGES (deliberately wider than the content container — aligned to the header's own left/right inset instead) ================= */
.its4uk-trust-badges {
  display: flex; gap: 10px; flex-wrap: nowrap; justify-content: center;
  padding: 24px 48px 28px;
  width: 100vw; position: relative; left: 50%; margin-left: -50vw; box-sizing: border-box;
}
.its4uk-trust-badge {
  display: flex; align-items: center; gap: 8px; background: var(--bg-alt); border: 1px solid var(--border);
  padding: 12px 14px; font-size: 12.5px; font-weight: 500; color: var(--text); font-family: var(--font-body);
  flex: 0 1 auto; min-width: 0;
}
.its4uk-trust-badge svg { color: var(--green-dark); flex-shrink: 0; width: 17px; height: 17px; }
.its4uk-trust-badge strong { font-family: var(--font-heading); font-weight: 700; }
.its4uk-trust-badge span { white-space: normal; line-height: 1.35; }
.its4uk-trust-badge__tag {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--text-secondary); background: #EDEFF3; padding: 2px 6px; margin-left: 2px; flex-shrink: 0;
}
@media (max-width: 1100px) {
  .its4uk-trust-badges { flex-wrap: wrap; }
  .its4uk-trust-badge { flex: 1 1 45%; white-space: normal; }
}
@media (max-width: 900px) { .its4uk-trust-badges { padding: 20px 24px 24px; } }
@media (max-width: 560px) { .its4uk-trust-badge { flex: 1 1 100%; } }

/* ================= GENERIC PAGE HERO (applies to every page's own real, existing <h1>, currently hidden by the site's own custom CSS — homepage excluded, it keeps its bespoke hero below) ================= */
/* .page-header (WordPress's native author-archive and tag-archive title wrapper) was hidden by the
   same original site-wide rule as .entry-header, but was never given the same hero treatment —
   author pages (real, indexable) and tag pages rendered with no visible H1 at all as a result.
   :has(h1) matters here: some pages (e.g. /ipad-service-for-brough/, a blog-listing template) reuse
   the .entry-header class on each LOOP ITEM's wrapper too, but those only ever contain an h2 (the
   genuine single-page h1 pattern this hero is built for never appears there) — without this guard
   every one of those loop items rendered as its own empty, textless dark hero bar. */
.entry-header:has(h1.entry-title), .page-header:has(h1.page-title) {
  position: relative;
  background: linear-gradient(100deg, rgba(11,20,40,0.8) 0%, rgba(11,20,40,0.52) 60%, rgba(11,20,40,0.28) 100%),
              url('/wp-content/uploads/2023/09/man-repairing-circuit-board-laptop.webp');
  background-size: cover;
  background-position: center;
  min-height: 190px;
  padding: 40px 48px;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}
.entry-header:has(h1.entry-title)::after, .page-header:has(h1.page-title)::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; max-width: 320px;
  background: linear-gradient(155deg, var(--green), var(--green-dark));
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.94; z-index: 1; pointer-events: none;
}
.entry-header h1.entry-title, .page-header h1.page-title {
  display: flex !important;
  position: relative; z-index: 2;
  font-family: var(--font-heading) !important; font-weight: 700 !important; color: #FFFFFF !important;
  font-size: clamp(20px, 2.4vw, 32px) !important; line-height: 1.3 !important; margin: 0 !important;
  max-width: 700px; text-transform: none !important; letter-spacing: normal !important;
  align-items: center; gap: 14px;
}
/* the small gravatar avatar on author-archive titles doesn't fit the photo-hero treatment cleanly —
   keep it, but round it and give it a white ring so it reads as a deliberate detail, not clutter */
.page-header h1.page-title img.avatar {
  border-radius: 50%; border: 2px solid #FFFFFF; flex-shrink: 0; margin: 0 !important; display: block !important;
}
/* homepage keeps its own bespoke hero (built on the a3746af widget) — re-hide the generic one there */
.page-id-6211 .entry-header { display: none !important; }
/* on every other page, the a3746af/68a0ad0/7711243(/5ed9c98) IDs are Elementor's reused hero-shell
   template and hold nothing but a second copy of that page's own title (and sometimes a subtitle) —
   a duplicate of the real hero above it, never unique content, so it's suppressed the same way the
   duplicate post/page/archive title widgets are. */
body:not(.page-id-6211) .elementor-element-a3746af { display: none !important; }

/* blog posts use a different template: a dynamic "theme-post-title" Elementor widget instead of the hidden WP entry-title */
/* category/tag/archive listing pages use a third template: "theme-archive-title" nested inside a stretched top-section */
.elementor-top-section:has(.elementor-widget-theme-post-title),
.elementor-top-section:has(.elementor-widget-theme-page-title),
.elementor-top-section:has(.elementor-widget-theme-archive-title) {
  position: relative !important;
  background: linear-gradient(100deg, rgba(11,20,40,0.8) 0%, rgba(11,20,40,0.52) 60%, rgba(11,20,40,0.28) 100%),
              url('/wp-content/uploads/2023/09/man-repairing-circuit-board-laptop.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  min-height: 190px !important;
  padding: 40px 48px !important;
  margin: 0 !important;
  overflow: hidden !important;
}
.elementor-top-section:has(.elementor-widget-theme-post-title)::after,
.elementor-top-section:has(.elementor-widget-theme-page-title)::after,
.elementor-top-section:has(.elementor-widget-theme-archive-title)::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; max-width: 320px;
  background: linear-gradient(155deg, var(--green), var(--green-dark));
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.94; z-index: 1; pointer-events: none;
}
.elementor-top-section:has(.elementor-widget-theme-post-title) .elementor-background-overlay,
.elementor-top-section:has(.elementor-widget-theme-page-title) .elementor-background-overlay,
.elementor-top-section:has(.elementor-widget-theme-archive-title) .elementor-background-overlay { display: none !important; }
.elementor-top-section:has(.elementor-widget-theme-post-title) .elementor-container,
.elementor-top-section:has(.elementor-widget-theme-page-title) .elementor-container,
.elementor-top-section:has(.elementor-widget-theme-archive-title) .elementor-container { position: relative; z-index: 2; }
/* each page's own original Elementor CSS gives the wrappers around this title widget large,
   per-page-specific margin offsets (a leftover of the original "title overlaid on a tall
   featured-image banner" design) — that's what was inflating the hero's height well past the
   190px floor above. Zeroed on every wrapper up to (and including) the title widget's own
   column/section, which never affects real article content since it only clears the WRAPPER's
   margin, not the margins of the paragraph/image tags inside real content elsewhere in the page. */
.elementor-section:has(.elementor-widget-theme-post-title),
.elementor-column:has(.elementor-widget-theme-post-title),
.elementor-widget-wrap:has(.elementor-widget-theme-post-title),
.elementor-section:has(.elementor-widget-theme-page-title),
.elementor-column:has(.elementor-widget-theme-page-title),
.elementor-widget-wrap:has(.elementor-widget-theme-page-title),
.elementor-section:has(.elementor-widget-theme-archive-title),
.elementor-column:has(.elementor-widget-theme-archive-title),
.elementor-widget-wrap:has(.elementor-widget-theme-archive-title) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.elementor-widget-theme-post-title, .elementor-widget-theme-page-title, .elementor-widget-theme-archive-title {
  opacity: 1 !important; visibility: visible !important; transform: none !important;
}
.elementor-widget-theme-post-title .elementor-heading-title,
.elementor-widget-theme-page-title .elementor-heading-title,
.elementor-widget-theme-archive-title .elementor-heading-title {
  font-family: var(--font-heading) !important; font-weight: 700 !important; color: #FFFFFF !important;
  font-size: clamp(20px, 2.4vw, 32px) !important; line-height: 1.3 !important;
  text-transform: none !important; letter-spacing: normal !important;
}
/* some posts have a pre-existing duplicate title widget rendered in a SECOND top-section that also holds real article content (image/paragraphs) alongside it. Give hero treatment ONLY to the first matching section; de-hero (but never hide) later ones so the real content in them still renders normally. */
.elementor-top-section:has(.elementor-widget-theme-post-title) ~ .elementor-top-section:has(.elementor-widget-theme-post-title),
.elementor-top-section:has(.elementor-widget-theme-page-title) ~ .elementor-top-section:has(.elementor-widget-theme-page-title),
.elementor-top-section:has(.elementor-widget-theme-archive-title) ~ .elementor-top-section:has(.elementor-widget-theme-archive-title) {
  background: none !important;
  min-height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-top-section:has(.elementor-widget-theme-post-title) ~ .elementor-top-section:has(.elementor-widget-theme-post-title)::after,
.elementor-top-section:has(.elementor-widget-theme-page-title) ~ .elementor-top-section:has(.elementor-widget-theme-page-title)::after,
.elementor-top-section:has(.elementor-widget-theme-archive-title) ~ .elementor-top-section:has(.elementor-widget-theme-archive-title)::after {
  display: none !important;
}
/* the duplicate TITLE WIDGET itself (not its surrounding content) is hidden by a tiny script — see redesign.js */
.its4uk-duplicate-title-hidden { display: none !important; }

/* ================= HERO (real content, real photo — kept deliberately compact so the service cards above read as the primary focus) ================= */
/* homepage-only: these Elementor widget IDs are auto-generated and can coincidentally repeat on other pages, so every rule here is scoped to .page-id-6211 to avoid leaking this hero styling onto unrelated pages/sections */
.page-id-6211 .elementor-element-a3746af {
  position: relative !important;
  min-height: 190px;
  padding-bottom: 20px;
  margin-top: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  left: auto !important;
  right: auto !important;
}
.page-id-6211 .elementor-element-a3746af::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11,20,40,0.78) 0%, rgba(11,20,40,0.4) 55%, rgba(11,20,40,0.12) 100%);
}
.page-id-6211 .elementor-element-a3746af::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 38%; max-width: 320px;
  background: linear-gradient(155deg, var(--green), var(--green-dark));
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.94; z-index: 1; pointer-events: none;
}
.page-id-6211 .elementor-element-a3746af .elementor-background-overlay { display: none; }
/* direct child only — this selector used to be a descendant combinator, which also matched the
   NESTED .elementor-container one level down (inside the 68a0ad0 inner section) and doubled up
   the padding, crushing the heading's available width down to ~39px on narrow phones */
.page-id-6211 .elementor-element-a3746af > .elementor-container { position: relative; z-index: 2; padding: var(--space-sm) var(--space-xl) 0; }
.page-id-6211 .elementor-element-68a0ad0 { margin: var(--space-xs) 0 var(--space-xs) !important; max-width: 640px; }
.page-id-6211 .elementor-element-7711243 .elementor-heading-title {
  font-family: var(--font-heading) !important; font-weight: 700 !important; color: #FFFFFF !important;
  font-size: clamp(17px, 1.7vw, 21px) !important; line-height: 1.3 !important;
  text-transform: none !important; letter-spacing: normal !important;
}
.page-id-6211 .elementor-element-5ed9c98 .elementor-heading-title {
  color: #E7EBF3 !important; font-style: normal !important; font-family: var(--font-body) !important;
  font-size: clamp(12px, 1vw, 13px) !important; line-height: 1.55 !important; font-weight: 400 !important; max-width: 540px;
}
.its4uk-hero-cta {
  position: relative; z-index: 2; display: inline-flex; margin-top: var(--space-xs); background: var(--green);
  color: var(--on-green) !important; font-weight: 700; font-size: 12px; padding: 9px 18px;
  border-radius: var(--radius-sm); text-decoration: none !important; font-family: var(--font-heading);
  box-shadow: 0 8px 20px rgba(47,174,92,0.35); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.its4uk-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(47,174,92,0.45); }
/* the hero heading/subtitle sit in the middle of Elementor's original 3-column (33/33/33) split,
   with the outer two columns left empty as spacers — fine on desktop, but on narrow phones that
   squeezes the text column down to ~35-40px wide, wrapping the heading one character per line.
   Collapse the empty spacer columns and let the text column take the full row on mobile. */
@media (max-width: 640px) {
  .page-id-6211 .elementor-element-e8d9439,
  .page-id-6211 .elementor-element-9d5110a { display: none !important; }
  .page-id-6211 .elementor-element-8681ee0 { width: 100% !important; max-width: 100% !important; flex: 1 1 0 !important; }
}

/* ================= SERVICE ICON CARDS ================= */
.its4uk-icon-cards { display: grid; grid-template-columns: repeat(5, 1fr); }
/* 5 items never divides evenly into a multi-column grid (2, 3 or 4 columns all leave a ragged
   last row with an empty gap next to it) — stacked full-width rows is the only layout that's
   clean for an odd count, so every width at/under this breakpoint gets a single column. */
@media (max-width: 900px) { .its4uk-icon-cards { grid-template-columns: 1fr; } }
.its4uk-icon-cards a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  text-align: center; padding: 30px 14px; min-height: 160px; text-decoration: none; color: #FFFFFF;
  transition: transform 0.18s ease, filter 0.18s ease; position: relative; overflow: hidden;
}
@media (max-width: 900px) {
  /* full-width single column reads better as a compact horizontal row (icon beside text)
     than a tall vertical card repeated 5 times, which would push real content far down the page */
  .its4uk-icon-cards a {
    flex-direction: row; justify-content: flex-start; text-align: left;
    min-height: 0; padding: 16px 20px; gap: 16px;
  }
  .its4uk-icon-cards a svg { width: 24px; height: 24px; }
}
.its4uk-icon-cards a:nth-child(odd) { background: var(--navy); }
.its4uk-icon-cards a:nth-child(even) { background: linear-gradient(155deg, var(--green), var(--green-dark)); }
.its4uk-icon-cards a:hover { transform: translateY(-4px); filter: brightness(1.08); z-index: 2; }
.its4uk-icon-cards a svg { flex-shrink: 0; transition: transform 0.18s ease; }
.its4uk-icon-cards a:hover svg { transform: scale(1.12); }
.its4uk-icon-cards a span {
  font-family: var(--font-heading); font-weight: 700; font-size: 12.5px; line-height: 1.4;
  text-transform: uppercase; letter-spacing: 0.03em; white-space: normal;
}

/* Contact page: "Contact Phone / Address / Hours" icon-box row — these three widgets
   inherit the Elementor kit's default blue (--e-global-color-primary). Recolor to the
   site palette. IDs scoped to this page only (Elementor auto-IDs can repeat elsewhere). */
.elementor-element-96c4950 .elementor-icon-box-icon .elementor-icon,
.elementor-element-2954024 .elementor-icon-box-icon .elementor-icon,
.elementor-element-e999058 .elementor-icon-box-icon .elementor-icon {
  color: var(--green) !important; fill: var(--green) !important;
}
.elementor-element-96c4950 .elementor-icon-box-title,
.elementor-element-96c4950 .elementor-icon-box-title a,
.elementor-element-2954024 .elementor-icon-box-title,
.elementor-element-2954024 .elementor-icon-box-title a,
.elementor-element-e999058 .elementor-icon-box-title {
  color: var(--navy) !important;
}

/* ================= GENERIC SECTION SYSTEM ================= */
.its4uk-block { padding: var(--space-2xl) var(--space-xl); }
.its4uk-block--tight { padding: var(--space-xl) var(--space-xl); }
.its4uk-block--alt { background: var(--bg-alt); }
.its4uk-block--gradient {
  background: linear-gradient(135deg, #0F1B36 0%, var(--navy) 45%, #1A2E5C 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.its4uk-block--gradient::before {
  content: ""; position: absolute; top: -120px; right: -100px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(47,174,92,0.35), transparent 70%);
}
.its4uk-block--gradient h2, .its4uk-block--gradient h3 { color: #FFFFFF; }
.its4uk-eyebrow {
  font-family: var(--font-heading); font-weight: 700; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: var(--space-xs); display: block;
}
.its4uk-block--gradient .its4uk-eyebrow { color: var(--green); }
.its4uk-heading-lg { font-size: clamp(26px, 3vw, 38px); font-weight: 700; line-height: 1.2; }
.its4uk-lede { color: var(--text-secondary); font-size: 16px; line-height: 1.7; max-width: 640px; }
.its4uk-block--gradient .its4uk-lede { color: #C7CEDC; }

/* asymmetric two-column layout used across several sections */
.its4uk-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-xl); align-items: center; }
.its4uk-split--reverse { grid-template-columns: 0.9fr 1.1fr; }
.its4uk-split--reverse > *:first-child { order: 2; }
@media (max-width: 860px) { .its4uk-split, .its4uk-split--reverse { grid-template-columns: 1fr; } .its4uk-split--reverse > *:first-child { order: 0; } }
.its4uk-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

/* cards */
.its4uk-card {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-md); box-shadow: var(--shadow-card); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.its4uk-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.its4uk-card--on-dark { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(2px); }
.its4uk-card--on-dark .its4uk-icon-chip { background: rgba(47,174,92,0.18); }

.its4uk-icon-chip {
  width: 46px; height: 46px; border-radius: 0; background: var(--green-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.its4uk-icon-chip svg { color: var(--green-dark); }

.its4uk-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.its4uk-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; color: var(--text); font-weight: 500; }
.its4uk-checklist li svg { flex-shrink: 0; margin-top: 2px; color: var(--green-dark); }

.its4uk-btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700;
  font-size: 14px; padding: 14px 24px; border-radius: var(--radius-sm); text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.its4uk-btn--primary { background: var(--green); color: var(--on-green) !important; box-shadow: 0 8px 20px rgba(47,174,92,0.3); }
.its4uk-btn--primary:hover { background: var(--green-dark) !important; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47,174,92,0.4); }
.its4uk-btn--outline { background: transparent; color: #FFFFFF !important; border: 1.5px solid rgba(255,255,255,0.35); }
.its4uk-btn--outline:hover { border-color: var(--green); background: rgba(47,174,92,0.12); }
.its4uk-btn--outline-dark { background: transparent; color: var(--text) !important; border: 1.5px solid var(--border); }
.its4uk-btn--outline-dark:hover { border-color: var(--green); color: var(--green-dark) !important; }

/* ================= REVIEWS ================= */
.its4uk-section { padding: var(--space-2xl) var(--space-xl) var(--space-lg); }
.its4uk-section h2 { font-family: var(--font-heading); font-weight: 700; font-size: 30px; color: var(--text); margin: 0 0 var(--space-xs); }
.its4uk-reviews-badge { font-size: 11px; font-weight: 700; color: var(--green-dark); background: var(--green-tint); padding: 6px 14px; border-radius: 0; display: inline-block; }
.its4uk-review-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-md); margin-top: var(--space-md); }
@media (max-width: 860px) { .its4uk-review-cards { grid-template-columns: 1fr; } }
.its4uk-stars { color: #E8A33D; letter-spacing: 2px; font-size: 14px; }

/* ================= MAP ================= */
.its4uk-map-wrap { display: flex; gap: 0; background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: var(--space-md); box-shadow: var(--shadow-card); }
@media (max-width: 860px) { .its4uk-map-wrap { flex-direction: column; } }
.its4uk-map-info { flex: 1; padding: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-sm); justify-content: center; }
.its4uk-map-embed { flex: 1.3; min-height: 340px; }
.its4uk-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 340px; }

/* ================= CONTACT FORM SUBMISSION NOTICE ================= */
.its4uk-form-notice {
  font-family: var(--font-body) !important; font-size: 15px !important; line-height: 1.5 !important;
  border-radius: var(--radius-sm) !important; padding: var(--space-md) var(--space-lg) !important;
  margin-top: var(--space-sm) !important; display: block !important;
}
.its4uk-form-notice--success { background: var(--green-tint) !important; color: var(--on-green) !important; border: 1px solid var(--green) !important; font-weight: 600 !important; }
.its4uk-form-notice--error { background: #FDECEC !important; color: #7A1F1F !important; border: 1px solid #E38C8C !important; }

/* ================= CTA BAND ================= */
.its4uk-cta-band {
  margin: 0 var(--space-xl) var(--space-2xl); border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0F1B36, var(--navy)); padding: var(--space-lg) var(--space-xl);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.its4uk-cta-band::before { content: ""; position: absolute; top: -80px; left: 35%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(47,174,92,0.28), transparent 70%); }
.its4uk-cta-band h2 { color: #FFFFFF; font-size: 24px; margin: 0 0 var(--space-xs); position: relative; z-index: 1; }
.its4uk-cta-band p { color: #C7CEDC; margin: 0; font-size: 14px; position: relative; z-index: 1; }
.its4uk-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.its4uk-btn-whatsapp { background: #25D366; color: #FFFFFF !important; font-weight: 700; font-size: 14px; padding: 14px 20px; border-radius: var(--radius-sm); text-decoration: none !important; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); transition: transform 0.15s ease; }
.its4uk-btn-whatsapp:hover { transform: translateY(-2px); }

/* ================= sticky contact buttons ================= */
.its4uk-sticky-group { position: fixed; bottom: 20px; right: 20px; z-index: 999; display: flex; align-items: center; gap: 10px; }
.its4uk-sticky-contact {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--on-green) !important; font-weight: 700; font-size: 14px;
  padding: 14px 22px; border-radius: 0; box-shadow: 0 10px 24px rgba(47,174,92,0.4);
  text-decoration: none !important; font-family: var(--font-heading); transition: transform 0.15s ease;
}
.its4uk-sticky-contact:hover { transform: translateY(-2px) scale(1.03); }
.its4uk-sticky-contact--whatsapp { background: #25D366; color: #FFFFFF !important; padding: 14px; box-shadow: 0 10px 24px rgba(37,211,102,0.4); }
@media (max-width: 600px) {
  .its4uk-sticky-group { bottom: 14px; right: 14px; gap: 8px; }
  .its4uk-sticky-contact { padding: 12px 18px; font-size: 13px; }
  .its4uk-sticky-contact--whatsapp { padding: 12px; }
}

/* ================= FOOTER ================= */
.its4uk-footer { background: var(--navy); color: #C7CEDC; padding: var(--space-2xl) var(--space-xl) var(--space-md); }
.its4uk-footer h3 { font-family: var(--font-heading); color: #FFFFFF; font-size: 16px; margin: 0 0 var(--space-sm); }
.its4uk-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
@media (max-width: 900px) { .its4uk-footer-grid { grid-template-columns: repeat(2, 1fr); } }
.its4uk-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.its4uk-footer a { color: #C7CEDC; text-decoration: none; font-size: 13px; transition: color 0.15s ease; }
.its4uk-footer a:hover { color: var(--green); }
.its4uk-footer-bottom { border-top: 1px solid #26345C; margin-top: var(--space-lg); padding-top: var(--space-sm); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: #8493AD; }
.its4uk-social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 0; background: #1D3160; margin-right: 8px; transition: background 0.15s ease; }
.its4uk-social a:hover { background: var(--green); }

/* redundant legacy sidebar removed from layout */
.sidebar.widget-area { display: none !important; }
.content-area { width: 100% !important; }

/* ================= TWO-TIER PRICING TABLE + FAQ (data recovery pages) ================= */
.its4uk-pricing-table { width: 100%; max-width: 100%; border-collapse: collapse; margin: var(--space-sm) 0 var(--space-md); background: #FFFFFF; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.its4uk-pricing-table thead th { background: var(--navy); color: #FFFFFF; font-family: var(--font-heading); font-weight: 700; font-size: 14px; text-align: left; padding: 14px var(--space-sm); }
.its4uk-pricing-table thead th:last-child { text-align: right; }
.its4uk-pricing-table tbody td { padding: 14px var(--space-sm); border-top: 1px solid var(--border); border-bottom: 0; font-size: 17px; color: var(--text); vertical-align: top; }
.its4uk-pricing-table tbody td strong { font-family: var(--font-heading); color: var(--navy); }
.its4uk-pricing-table tbody td:last-child { text-align: right; font-family: var(--font-heading); font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.its4uk-pricing-table tbody tr:nth-child(even) { background: var(--bg-alt); }
@media (max-width: 640px) {
  .its4uk-pricing-table thead { display: none; }
  .its4uk-pricing-table, .its4uk-pricing-table tbody, .its4uk-pricing-table tr, .its4uk-pricing-table td { display: block; width: 100%; }
  .its4uk-pricing-table tbody tr { padding: var(--space-sm); }
  .its4uk-pricing-table tbody td { border-top: 0; border-bottom: 0; padding: 2px 0; }
  .its4uk-pricing-table tbody tr:not(:last-child) td:last-child { border-bottom: 1px solid var(--border); padding-bottom: var(--space-sm); }
  .its4uk-pricing-table tbody td:last-child { text-align: left; font-size: 18px; margin-top: 4px; }
}

.its4uk-callout {
  background: var(--green-tint); border: 1px solid rgba(47,174,92,0.3); border-left: 4px solid var(--green);
  border-radius: var(--radius-sm); padding: var(--space-sm) var(--space-md); margin: var(--space-md) 0; font-size: 17px; color: var(--on-green);
}
.its4uk-callout strong { color: var(--navy); }

.its4uk-faq-item { border-top: 1px solid var(--border); padding: var(--space-sm) 0; }
.its4uk-faq-item:first-child { border-top: none; }
.its4uk-faq-item p:first-child { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--navy); margin: 0 0 6px; }
.its4uk-faq-item p:last-child { margin: 0; font-size: 17px; color: var(--text-secondary); line-height: 1.6; }

/* ================= CONTENT PHOTOS (inline article images) =================
   The site-wide `.entry-content img` rule caps at 800px, which is the full
   width of this page's content column once the sidebar is hidden — full-
   bleed against 17px body text with zero vertical margin. This narrower,
   centered, properly-spaced variant is opt-in via an extra class so the
   800px default is untouched for the 170+ other pages relying on it. */
.its4uk-content-photo { margin: var(--space-lg) 0 !important; text-align: center; }
.its4uk-content-photo img {
  max-width: min(700px, 100%) !important; width: auto; height: auto;
  margin: 0 auto; display: inline-block;
}

/* ================= DEDICATED REVIEWS PAGE ================= */
.its4uk-reviews-hero { text-align: center; }
.its4uk-reviews-hero h1 { font-size: 34px; margin: 0 0 10px; }
.its4uk-reviews-subheading { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; font-size: 14px; color: var(--text-secondary); margin: 0 0 var(--space-lg); }
.its4uk-review-cards--five { text-align: left; }
.its4uk-review-cards--five .its4uk-card--quote {
  grid-column: 1 / -1; max-width: 640px; margin: 0 auto; text-align: center;
  background: var(--green-tint); border-color: rgba(47,174,92,0.25);
}
@media (max-width: 860px) { .its4uk-review-cards--five .its4uk-card--quote { max-width: none; } }

/* ================= DEDICATED AREAS WE COVER PAGE ================= */
.its4uk-areas-hero { text-align: center; }
.its4uk-areas-hero h1 { font-size: 34px; margin: 0 0 var(--space-sm); }
.its4uk-areas-hero p { max-width: 720px; margin: 0 auto; font-size: 16px; color: var(--text-secondary); line-height: 1.6; }
.its4uk-areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.its4uk-area-card {
  display: flex; align-items: center; gap: 12px; background: #FFFFFF; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); padding: var(--space-sm) var(--space-md); text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.its4uk-area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.its4uk-area-card .its4uk-icon-chip { width: 38px; height: 38px; }
.its4uk-area-card .its4uk-icon-chip svg { width: 16px; height: 16px; }
.its4uk-area-card span { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--navy); }
.its4uk-areas-outro { text-align: center; max-width: 560px; margin: var(--space-xl) auto 0; font-size: 16px; color: var(--text-secondary); }
.its4uk-areas-outro a { color: var(--green-dark); font-weight: 700; }
