/*
Theme Name: OA Core
Theme URI: https://kellycreative.com.au/
Author: Kevin Kelly
Description: OA Core is a deliberately ultra-minimal, performance-first WordPress foundation theme.
Version: 1.1.0
License: GPL v2 or later
Text Domain: oa
*/

.coming .site-header,
.site-footer {
  display: none;
}

:root {
  --oa-font-body: "Manrope", Arial, sans-serif;

  --oa-color-base: #111827;
  --oa-color-bg: #ffffff;
  --oa-color-accent: #0f62a0;

  /* Sensible defaults (may be overridden by OA Settings via inline CSS vars) */
  --oa-container-width: 1100px;
  --oa-container-padding: 1.25rem;
}

html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--oa-font-body);
  color: var(--oa-color-base);
  background: var(--oa-color-bg);
  font-size: clamp(1.2rem, 1.2rem + ((1vw - 0.2rem) * 0.392), 1.2rem);
  font-weight: 400;
  letter-spacing: -0.1px;
  line-height: 1.55;
}

/* Accessibility
------------------------------------------ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .5rem .75rem;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  z-index: 9999;
}

.sr-only,
.screen-reader-text,
.oa-page-title,
.wp-block-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Typography
------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.15rem, 2.15rem + ((1vw - 0.2rem) * 1.333), 3rem);
}

h2 {
  font-size: clamp(1.75rem, 1.75rem + ((1vw - 0.2rem) * 0.392), 2rem);
}

h3 {
  font-size: clamp(1.35rem, 1.35rem + ((1vw - 0.2rem) * 0.25), 1.6rem);
}

.has-text-align-center {
	text-align: center;
}

@media screen and (max-width: 767px) {
	h2.wp-block-heading {
		font-size: 2rem !important;
	}
	.the-difference ul {
		padding-left: 0;
	}
}

/* Content rhythm (front-end)
------------------------------------------ */

/* Remove browser default heading margins only within content */
:where(.entry-content :is(h1,h2,h3,h4,h5,h6)) {
  margin-block: 0;
}

/* Baseline rhythm for all direct children */
:where(.entry-content > * + *) {
  margin-top: 1.1em;
}

/* Extra air before headings (only when not first) */
:where(.entry-content > * + h2.wp-block-heading) { margin-top: 1.6em; }
:where(.entry-content > * + h3.wp-block-heading) { margin-top: 1.6em; }

/* Tighten after headings */
:where(.entry-content > h2.wp-block-heading + *) { margin-top: 0.6em; }
:where(.entry-content > h3.wp-block-heading + *) { margin-top: 0.6em; }

/* Optional: if Gutenberg stacks headings */
:where(.entry-content > h2.wp-block-heading + h3.wp-block-heading) {
  margin-top: 0.7em;
}

:where(.wp-block-quote) {
  border-color: currentColor;
  border-width: 0 0 0 2px;
  border-style: solid;
  margin-right: 0;
  margin-left: 0;
  padding: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 3vw, 1.75rem);
}

:where(.wp-block-quote > *:first-child) { margin-top: 0; }
:where(.wp-block-quote > *:last-child) { margin-bottom: 0; }

/* Sidebar */
ol.wp-block-latest-comments {
  padding-left: 0;
}

/* Links
------------------------------------------ */

a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.27em;
  text-decoration-color: color-mix(in srgb, currentColor 60%, transparent);
  transition: color .2s ease, text-decoration-color .2s ease;
}

a:hover,
a:focus-visible {
  color: var(--oa-color-accent);
  text-decoration-color: currentColor;
}

a:visited {
  text-decoration-color: color-mix(in srgb, currentColor 20%, transparent);
}

a:focus-visible {
  outline: 2px solid var(--oa-color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.oa-sidebar a:not(:hover) {
  text-decoration: none;
}

/* Disable tel: links on desktop (pointer input only) */
@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* Elements
------------------------------------------ */

strong {
  font-weight: 900;
}

code {
  padding: 2px 6px 2px 4px;
  background-color: #f3f5f6;
  border: 1px solid #f3f5f6;
  border-radius: 4px;
  font-size: 0.95em;
}

.wp-block-separator {
  border: 1px solid #e1e1e1;
}

/* Layout
------------------------------------------ */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.oa-container {
  width: min(100%, var(--oa-container-width, 1100px));
  margin-inline: auto;
  padding-inline: var(--oa-container-padding, 1.25rem);
}

.alignfull {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.wp-block-columns.alignfull {
  padding-left: 1.55rem !important;
  padding-right: 1.55rem !important;
}

/* Top Bar
------------------------------------------ */

.oa-topbar {
  border-bottom: 1px solid rgb(0 0 0 / 0.03);
  background: rgb(0 0 0 / 0.01);
  font-size: 0.95rem;
}

.oa-topbar__inner {
  padding: 0.5rem 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.oa-topbar__full {
  padding-inline: var(--oa-container-padding, 1.25rem);
}

.oa-topbar a {
  text-decoration: underline;
}

/* Header
------------------------------------------ */

.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(0 0 0 / 0.12);
}

.oa-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-branding {
  flex: 0 0 auto;
  z-index: 99998; /* Ensures logo is visible on mobile nav overlay */
}

.site-branding a {
  text-decoration: none;
}

.custom-logo {
  height: auto;
  display: block;
  max-width: 220px;
}


/* Navigation
------------------------------------------ */

/* Top-level desktop menu only */
.site-nav--desktop .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
}

.site-nav--desktop .menu > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px; /* space between link and toggle button */
  margin: 0;
  padding: 0;
}

.site-nav--desktop a {
  text-decoration: none;
}

/* Dropdown menu (desktop)
------------------------------------------ */

.site-nav--desktop .sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  min-width: 220px;

  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.site-nav--desktop li:hover > .sub-menu,
.site-nav--desktop li:focus-within > .sub-menu,
.site-nav--desktop li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 0s;
}

.site-nav--desktop .sub-menu li {
  margin: 0;
  padding: 0;
}

.site-nav--desktop .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
  color: inherit;
}

.site-nav--desktop .sub-menu a:hover,
.site-nav--desktop .sub-menu a:focus-visible {
  background: rgba(0,0,0,0.06);
  outline: none;
}

.site-nav--desktop .menu > li:last-child > .sub-menu {
  left: auto;
  right: 0;
}

/* Submenu toggle button (desktop + overlay)
------------------------------------------ */

.oa-submenu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  line-height: 0;
  cursor: pointer;
  border-radius: 8px;
}

.oa-submenu-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.oa-submenu-toggle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav--desktop .sub-menu {
    transition: none;
  }
}

/* Hamburger button (single source of truth)
------------------------------------------ */

.oa-menu-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  position: relative;
  background: transparent;
  border: 0;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  color: inherit;

  z-index: 10001; /* above overlay */
}

@media (min-width: 960px) {
  .oa-menu-toggle {
    display: none;
  }
}

/* On open, pin top-right */
.oa-menu-toggle[aria-expanded="true"] {
  position: fixed;
  right: 22px;
  color: #fff;
}

.admin-bar .oa-menu-toggle[aria-expanded="true"] {
  top: 52px;
}

@media (max-width: 782px) {
  .admin-bar .oa-menu-toggle[aria-expanded="true"] {
    top: 66px;
  }
}

.oa-menu-icon .menu-toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, top 180ms ease, opacity 120ms ease;
}

.oa-menu-icon .menu-toggle-bar:nth-child(1) { top: 6px; }
.oa-menu-icon .menu-toggle-bar:nth-child(2) { top: 20px; }
.oa-menu-icon .menu-toggle-bar:nth-child(3) { top: 34px; }

/* Morph to X */
.oa-menu-toggle[aria-expanded="true"] .oa-menu-icon .menu-toggle-bar:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.oa-menu-toggle[aria-expanded="true"] .oa-menu-icon .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.oa-menu-toggle[aria-expanded="true"] .oa-menu-icon .menu-toggle-bar:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

/* Mobile: hide desktop nav */
@media (max-width: 959px) {
  .site-nav--desktop {
    display: none;
  }
}

/* Full-screen overlay nav (mobile)
------------------------------------------ */

.oa-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgb(17 24 39 / 0.92);
  color: #fff;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  padding: max(24px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right))
           max(24px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
}

body.oa-menu-open {
  overflow: hidden;
}

.oa-overlay__inner {
  height: 100%;
  /* use thes instead if the menu grows too long

  min-height: 100vh;
  min-height: 100dvh;

  */
  display: flex;
  flex-direction: column;
}

.site-nav--overlay {
  margin-block: auto;
  width: min(100%, 560px);
  margin-inline: auto;
  text-align: center;
}

/* Overlay menu base */
.site-nav--overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.site-nav--overlay li {
  margin: 0;
  padding: 0;
}

.site-nav--overlay a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.site-nav--overlay li:hover {
  background: rgb(17 24 39 / 0.98);
}

/* Overlay sub-menus */
.site-nav--overlay .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.site-nav--overlay .sub-menu {
  width: 100%;
  margin-top: 12px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.25);

  display: none;
  flex-direction: column;
  gap: 14px;
}

.site-nav--overlay li.is-open > .sub-menu {
  display: flex;
}

/* Optional close button (if you use it) */
.oa-overlay__close {
  opacity: 0;
}


/* Footer
------------------------------------------ */

.site-footer {
  padding: 30px 0;
  border-top: 1px solid #ccc;
  font-size: 14px;
}

.site-footer a:not(:hover) {
  text-decoration: none;
}

.site-footer .oa-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.site-footer__nav ul {
  flex-wrap: wrap;
  justify-content: center;
}

/* Mobile: nav first, copyright below */
.site-footer__nav {
  order: 1;
}

.site-footer__copyright {
  order: 2;
}

/* Footer menu: inline, one line */
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.site-footer__nav li {
  margin: 0;
  padding: 0;
}

@media (min-width: 960px) {
  .site-footer .oa-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .site-footer__copyright {
    order: 1;
  }
  .site-footer__nav {
    order: 2;
  }
}

/* Content With Sidebar
------------------------------------------ */

.oa-layout--single {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.oa-main,
.oa-sidebar {
  min-width: 0; /* prevents overflow with long code/URLs */
}

@media (min-width: 900px) {
  body.has-sidebar .oa-layout--single {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  body.has-sidebar .oa-sidebar {
    position: sticky;
    top: 1.25rem;
    height: fit-content;
  }
}

/* Sidebar widget rhythm */
.oa-sidebar .widget + .widget {
  margin-top: 1.5rem;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 .5rem;
}

/* Post nav */
.oa-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(0 0 0 / 0.12);
}

.oa-post-nav__prev,
.oa-post-nav__next {
  flex: 1;
}

.oa-post-nav__next {
  text-align: right;
}

/* Post title wrapping behaviour */
.wp-block-post-title {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

@media (max-width: 480px) {
  .wp-block-post-title {
    font-size: clamp(1.75rem, 1.2rem + 4.2vw, 2.4rem);
    line-height: 1.08;
    max-width: 20ch;
  }
}

/* FAQ Accordion
--------------------------------------------- */
body:has(section#faq) .site-footer-inner {
  padding-top: 0;
  border-top: 0;
}

#faq {
  margin: 8vw auto;
}

#faq .wp-block-heading {
  margin-bottom: 2vw;
  text-align: center;
}

#faq .oa-faq-intro {
  max-width: 65ch;
  margin: 0 auto 4vw;
  text-align: center;
}

.faq-drawer {
  padding: 0 0 30px;
  border-bottom: 1px solid #333;
  overflow: hidden;
}

@media (max-width: 767px) {
  .faq-drawer.last {
    border-bottom: none;
  }
}

@media (min-width: 768px) {
  .faq-drawer {
    padding: 0 20px 30px 20px;
  }
}

.faq-drawer__content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 280ms ease;
}

.faq-drawer__content {
  overflow: hidden;
  padding-top: 30px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.faq-drawer__title {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 30px 2.5rem 0 0;
  font-size: 20px;
  font-weight: inherit;
  transition: color 0.25s ease-out, font-weight 0.15s ease;
}

.faq-drawer__title::after {
  content: "";
  position: absolute;
  top: 45px;
  right: 10px;
  width: 15px;
  height: 15px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.35s ease-in-out;
}

.faq-drawer__title:hover {
  color: #4E4B52;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper {
  grid-template-rows: 1fr;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper
  .faq-drawer__content {
  opacity: 1;
}

.faq-drawer__trigger:checked + .faq-drawer__title::after {
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.25s ease-in-out;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Optional: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .faq-drawer__content-wrapper,
  .faq-drawer__content,
  .faq-drawer__title,
  .faq-drawer__title::after {
    transition: none;
  }
}

/* Menu icon support
--------------------------------------------- */

.oa-menu-icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.5em;
}

/* If label is hidden, remove spacing */
a .screen-reader-text + .oa-menu-icon,
a .oa-menu-icon + .screen-reader-text {
  margin-right: 0;
}

/* Optional: icon-only links look tidy */
.menu a:has(.oa-menu-icon):not(:has(.oa-menu-label)) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* If you want icon-only menu items to be a consistent tap target */
a:has(.oa-menu-icon):not(:has(.oa-menu-label)) {
  width: 2.25rem;
  height: 2.25rem;
}

/* ---------------------------------------------------------------------------
    Site Specific
--------------------------------------------------------------------------- */

/* Buttons
--------------------------------------------- */

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.563rem 2.563rem;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  background: #fac735;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  transition:
    background-color 0.15s ease-out,
    color 0.15s ease-out,
    box-shadow 0.15s ease-out,
    border-color 0.15s ease-out;
  white-space: nowrap;
  cursor: pointer;
}

.wp-block-button__link:hover {
  color: var(--oa-color-base);
  background: transparent;
}

@media (max-width: 480px) {
  .wp-block-button {
    width: 100% !important;
  }
}

.nav-btn.nav-quote a {
  padding: 0.9rem 1.25rem;
  background: #fac735;
  border: 1px solid #fac735;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.nav-btn.nav-quote a:hover {
  background: transparent;
  border-color: #888;
}

@media screen and (min-width: 960px) {
	.nav-phone {
		pointer-events: none;
		cursor: text;
	}
}

/* Lists
--------------------------------------------- */

ul.no-bullet {
  list-style: none;
}

/* Review Cards
--------------------------------------------- */

.reviews {
  margin-top: 8vw;
}

@media screen and (min-width: 960px) {
  .reviews {
    margin-top: 4vw;
  }
}

.review-item {
  padding: 25px;
  border-radius: 5px;
  border: 1px solid var(--oa-color-base);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.reviews .review-item__stars {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.reviews .review-item__stars .reviewer__ratings {
  display: flex;
  align-items: center;
  padding-left: 0;
}

.reviews .review-item__stars ul {
  margin: 0;
}

.reviews .review-item__stars .reviewer__ratings li {
  list-style: none;
  display: inline-block;
  margin-bottom: -10px;
  margin: 0 5px 0 0;
  line-height: 1;
}

.reviews .review-item__stars .reviewer__ratings li.star-active {
  color: #f8b81f;
  opacity: 0.8;
}

.reviews .review-item__stars .reviewer__ratings li span,
.reviews .review-item__stars .reviewer__ratings li span svg {
  display: block;
  line-height: 1;
}

.reviews .review-item__stars span {
  color: var(--gray);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
}

.reviews .review-item__stars > span {
  font-weight: 500;
  line-height: 1;
}

.review-item p:first-of-type {
  margin: 15px 0 25px 0;
}

.review-item p:last-of-type {
  font-size: 15px;
}

/* Home Page
--------------------------------------------- */

.home .site-content img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero {
  margin-top: 5vw;
}

.hero h2.wp-block-heading {
  max-width: 500px;
  font-size: 2.4rem;
  font-weight: 500;
}

.hero p {
  max-width: 500px;
}

.hero ul {
  margin-bottom: 50px;
  padding-left: 0;
}

.hero li {
  padding: 5px 0;
}

@media screen and (max-width: 480px) {
  .hero img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: none;
  }
}

.locations span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 10px;
  background: #f1f1f1;
  border-radius: 5px;
  font-size: 15px;
}

/*.call-ross .wp-block-button__link {
  background: transparent;
  border: none;
}

.call-ross .wp-block-button__link:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.call-ross a::before {
  content: "Call Ross";
}*/

.hero-form .forminator-guttenberg {
  padding: 20px 20px 5px 20px;
  background: #f1f1f1;
  border-radius: 15px;
}

.yellow-separator {
  position: relative;
  margin-top: 5vw;
  margin-bottom: -1px;
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.yellow-separator::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: white;
  clip-path: polygon(100% 0, 0 0, 0 100%);
}

.yellow-separator::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fddd2f;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.site-content img {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.entry-title {
  display: none;
}

/* The Difference Section */
.the-difference {
  margin: 0 auto;
  padding: 4vw 0;
  background: #fddd2f;
}

.the-difference .wp-block-heading {
  font-size: 3rem;
}

.the-difference li {
  padding: 8px 0;
  font-size: 1.3rem;
}

.the-difference li span {
  display: block;
  margin-left: 25px;
  font-size: 1rem;
}

.the-difference :where(figure) {
  margin: 0;
}

/* Services Section */
.services-section {
  margin: 0 auto;
  padding: 60px 0;
  background-color: #4c4c4c;
  color: rgba(255, 255, 255, 0.85);
}

.service-box {
  padding: 33px 30px;
  background: #555;
  color: rgba(255, 255, 255, 0.85);
  border-top: 10px solid #fddd2f;
  border-right: 1px solid #5e5e5e;
  font-size: 18px;
  line-height: 1.34;
}

.services-section,
.cta-section {
	text-align: center;
}

.services-section .service-box {
	text-align: left;
}

/* Why Choose Us Section */
.why-choose {
  margin: 0 auto;
  padding: 4vw 0 0;
}

.why-choose .wp-block-heading {
  font-size: 3em;
  font-weight: 500;
}

.reason {
  margin-bottom: 30px;
  padding: 15px;
  background: #f7f7f7;
  background: rgba(0, 0, 0, 0.01);
  color: rgba(0, 0, 0, 0.7);
  border-left: 5px solid #fddd2f;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  font-weight: 900;
  line-height: 1.3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reason span {
  display: block;
  font-weight: 400;
}

/* Reviews Section */
.reviews .review-item__stars span {
  color: #636363;
  font-size: 25px;
  line-height: 21px;
  letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
  margin-top: 60px;
  padding: 80px 0 60px 0;
  background: #fac735;
}

.cta-section .wp-block-button {
  margin-top: 25px;
}

.cta-section .wp-block-button__link {
  color: #f1f1f1;
  background: #222;
  border: 5px solid #1e1e1e;
  font-size: 16px;
}

.cta-section .wp-block-button__link:hover {
  color: #000;
  background: transparent;
  border: 5px double #1e1e1e;
  border-color: var(--oa-color-base);
}

/* Services Pages
--------------------------------------------- */

.service .hero .wp-block-image {
  margin-top: 30px;
}

/* Services Testimonials
--------------------------------------------- */

.service-testimonial {
  display: inline-block;
  position: relative;
  margin-top: 30px;
  padding: 25px;
  border-radius: 6px;
  background: #f2f5fb;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  font-size: 15px;
}

.service-testimonial::before {
  font-family: Arial;
  content: "\201C";
  color: #fac735;
  font-size: 170px;
  position: absolute;
  left: -10px;
  top: -80px;
}

.service-testimonial span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.service-testimonial span span {
  margin-top: 0;
}

.service-ideal-for .service-testimonial {
  max-width: 400px;
}

/* Included Section
--------------------------------------------- */

.service-included {
  margin-top: 4vw;
  padding: 6vw 0;
  background: #f1f1f1;
}

.wp-block-columns.service-included {
  margin-bottom: 0;
}

.service-included .wp-block-group {
  max-width: 600px;
}

.service-included h2.wp-block-heading {
  color: rgb(0 0 0 / 0.6);
  font-size: 5rem;
  font-weight: 800;
  line-height: .8;
}

.service-included h2.wp-block-heading span {
  display: block;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.service-included-box {
  padding: 25px;
  background: #f9f9f9;
  border: 1px solid rgb(0 0 0 / 0.09);
  border-radius: 15px;
}

.service-included-box .wp-block-heading {
  color: rgb(0 0 0 / 0.8);
  font-size: 2rem;
  font-weight: 900;
}

.service-included-box p {
  font-size: 16px;
}

/* Ideal For Section
-------------------------------------- */

.wp-block-columns.service-ideal-for {
  margin-top: 0;
}

.service-ideal-for {
  padding: 6vw 0;
}

.service-ideal-for p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1200px) {
  .service-ideal-for .first-col p {
    max-width: 90%;
  }
}

.service-ideal-for .first-col p {
  margin-bottom: 30px;
  font-size: 16px;
}

.service-ideal-for .first-col p:last-child {
  margin-bottom: 0;
}

.service-ideal-for .first-col span {
  display: block;
  font-size: clamp(1.2rem, 1.2rem + ((1vw - 0.2rem) * 0.392), 1.2rem);
  font-weight: 900;
}

.service-ideal-for .first-col span span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.service-ideal-for .last-col .wp-block-heading span:first-of-type,
.service-ideal-for .last-col .wp-block-heading span:last-of-type {
  font-size: 170%;
  font-weight: 800;
}

/* Why Choose Us Section
-------------------------------------- */

.service-why-choose .first .wp-block-heading {
  font-size: 2rem
}

@media screen and (min-width: 1200px) {
  .service-why-choose .first .wp-block-heading {
    max-width: 60%;
    font-size: 3rem
  }
}

.service-why-choose .wp-block-heading span:first-of-type {
  font-size: 170%;
  font-weight: 800;
}

.service-why-choose .wp-block-heading span:last-of-type {
  display: block;
}

.service-why-choose .first p span {
  display: inline-block;
  margin-right: 10px;
  background: #fac735;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.9em;
}

@media screen and (min-width: 1200px) {
  .service-why-choose .last {
    padding-top: 40px;
  }
}

.service-why-choose .last ul {
  padding-left: 0;
}

.service-why-choose .last li {
  display: inline-flex;
  margin: 5px;
  font-size: 14px;
}

.service-why-choose .last li span {
  padding: 8px 15px;
  background: rgb(250 199 53 / 0.4);
  border-radius: 2px;
}

/* Gat a Quote Section
-------------------------------------- */

.service-get-quote {
  padding: 6vw 0 1vw 0;
  background: #fac735;
}

.service-get-quote .wp-block-heading {
  margin: 0 auto;
  max-width: 400px;
}

.service-get-quote .wp-block-button__link {
  color: #f1f1f1;
  background: #222;
  border: 5px solid #1e1e1e;
  font-size: 16px;
}

.service-get-quote .wp-block-button__link:hover {
  color: #000;
  background: transparent;
  border: 5px double #1e1e1e;
  border-color: var(--oa-color-base);
}

/* Services Pages FAQ
-------------------------------------- */

.service #faq {
  margin-bottom: 0;
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.service #faq::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: #f3f4f6; /* light grey */
  z-index: -1;
}

/* Services Pages Footer
-------------------------------------- */

.service .site-footer {
  border-top: none;
}

/* Request a Quote Page
-------------------------------------- */

.request-a-quote-form {
  margin: 0 auto;
  max-width: 800px;
}

.forminator-edit-module {
  display: none;
}

/* All Services Page
-------------------------------------- */

.services-icons-section {
  margin-top: 8vw;
}

.services-box {
  border: 1px solid rgb(0 0 0 / .15);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.services-box img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.services-box .wp-block-heading {
  padding-left: 30px;
}

.services-box ul {
  list-style: none;
}

.services-box li {
  padding: 5px 0;
  font-size: 16px;
  line-height: 1.3;
}

.services-box li::marker {
  content: "✓ ";
  color: #15803d; /* green */
}


/* Specialty Services Page
-------------------------------------- */

.specialty-cleaning .wp-block-image {
	margin: 0 !important;
	padding: 0 !important;
}

.service-box .wp-block-heading a:not(:hover) {
	text-decoration: none;
}

.services-section a:hover {
	color: rgba(255, 255, 255, 0.85);
}

.specialty-hero {
	background: #f3f1f5;
}

@media screen and (min-width: 1200px) {
  .specialty-cleaning :where(.wp-block-columns) {
    margin-bottom: 0;
  }

  .wp-block-columns.alignfull.specialty-hero {
    padding-right: 0 !important;
  }

  .wp-block-columns.alignfull.specialty-hero  .first {
    padding-left: 5vw;
  }

  .specialty-hero .first {
  	padding: 5vw 0 0;
  }
}

.specialty-hero .wp-block-image {
	margin: 0 !important;
}

.specialty-hero img {
	border-radius: 0;
}

.wp-block-image .aligncenter > figcaption {
	font-size: 15px;
	text-align: center;
}

.four-wheel-drive {
	padding: 5vw 0;
}

.caravans {
	padding: 5vw 0;
	background: #f3f1f5;
}
