/*!
Theme Name: OA
Theme URI: https://kellycreative.com.au/
Author: Kevin Kelly
Author URI: https://kellycreative.com.au/
Description: OA is a theme created by Kevin Kelly (Kelly Creative) using the Underscores base theme.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: oa
*/

/* Vivid Red is for highlighting elements I need to address */
.has-vivid-red-color {
  color: var(--wp--preset--color--base) !important;
}

.entry-content p + ul.wp-block-list,
.entry-content p + ol.wp-block-list {
  margin-top: -10px !important;
}

.green-info-box {
  padding: 5vw;
  background: var(--service-perf-bg);
  border-radius: 12px;
}

.mzp-c-picto.accessibility img {
  top: 0 !important;
  width: 80px !important;
  height: auto;
}

/* All H2 block headings get spacing, except the first one */
.single .entry-content h2.wp-block-heading:not(:first-of-type),
.single .entry-content h3.wp-block-heading,
.single .entry-content h4.wp-block-heading {
  margin-top: 50px !important;
}

/* Resume
--------------------------------------------- */
.resume .site-content {
  margin: 50px auto;
}

.resume .entry-title {
  max-width: 720px;
  line-height: 1.1;
}

.print-icon {
  margin-top: 30px;
}

.print-icon {
  background: none;
  border: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}

.print-icon svg {
  display: block;
}

.print-icon:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 6px;
}

.print-contact,
.print-icon {
  display: none;
}

.download-pdf span {
  font-size: 14px;
}


@media print {
  button.print-icon,
  .site-header,
  .wp-block-column.oa-toc,
  footer#colophon.site-footer {
    display: none !important;
  }
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .print-contact {
    display: block;
    font-size: 11pt;
    margin: 0 0 20mm 0;
    padding-bottom: 4mm;
    border-bottom: 1px solid #ddd;
  }
  h1, h2, h3, h4, h5 {
    font-weight: bold;
    page-break-after: avoid;
    page-break-inside:avoid;
  }
  .resume .site-content {
    margin: 0 auto;
  }
  .resume h1 {
    font-size: 35px !important;
  }
  .printbreak {
    break-before: always !important;
  }
}

/* OA design tokens
--------------------------------------------------------- */

:root {
    /* Colours (mirroring theme.json palette) */
    --oa-color-base: var(--wp--preset--color--base, #111827);
    --oa-color-muted: var(--wp--preset--color--muted, #6B7280);

    --oa-color-bg: var(--wp--preset--color--background, #FFFFFF);
    --oa-color-bg-alt: var(--wp--preset--color--background-alt, #F8FAFC);
    --oa-color-bg-alt-2: var(--wp--preset--color--background-alt-2, #F1F5F9);

    --oa-color-border: var(--wp--preset--color--border, #E2E8F0);

    --oa-color-accent: var(--wp--preset--color--accent, #0F62A0);
    --oa-color-accent-soft: var(--wp--preset--color--accent-soft, #D9EDF5);

    --oa-color-warm-highlight: var(--wp--preset--color--warm-highlight, #F5EDE2);

    --oa-color-danger: var(--wp--preset--color--danger, #B91C1C);

    /* Typography */
    --oa-font-body: var(
      --wp--preset--font-family--system,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      Oxygen-Sans,
      Ubuntu,
      Cantarell,
      "Helvetica Neue",
      sans-serif
    );

    --oa-font-mono: var(
      --wp--preset--font-family--system-mono,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );

    --oa-font-size-xs: var(--wp--preset--font-size--xs, 0.75rem);
    --oa-font-size-sm: var(--wp--preset--font-size--sm, 0.875rem);
    --oa-font-size-base: var(--wp--preset--font-size--base, 1rem);
    --oa-font-size-lg: var(--wp--preset--font-size--lg, 1.125rem);
    --oa-font-size-xl: var(--wp--preset--font-size--xl, 1.25rem);
    --oa-font-size-2xl: var(--wp--preset--font-size--2xl, 1.5rem);
    --oa-font-size-3xl: var(--wp--preset--font-size--3xl, 1.875rem);

    --oa-line-height-body: 1.6;
    --oa-line-height-heading: 1.2;

    /* Spacing scale */
    --oa-space-1: 0.25rem;
    --oa-space-2: 0.5rem;
    --oa-space-3: 0.75rem;
    --oa-space-4: 1rem;
    --oa-space-6: 1.5rem;
    --oa-space-8: 2rem;
    --oa-space-10: 2.5rem;
    --oa-space-12: 3rem;

    /* Layout */
    --oa-container-width: 1200px; /* used by .site-container */
    --oa-container-content: 720px; /* matches theme.json contentSize */

    /* Buttons */
    --oa-button-radius: 999px;
    --oa-button-radius-sm: 0.4rem;
    --oa-button-padding-y: 1.563rem;
    --oa-button-padding-x: 2.563rem;
    --oa-button-font-weight: 600;
    --oa-button-transition:
      background-color 0.15s ease-out,
      color 0.15s ease-out,
      box-shadow 0.15s ease-out,
      border-color 0.15s ease-out;

    /* Forms */
    --oa-input-radius: 0.5rem;
    --oa-input-border: 1px solid var(--oa-color-border);
    --oa-input-border-focus: 1px solid var(--oa-color-accent);
    --oa-input-bg: #ffffff;
    --oa-input-bg-disabled: #f3f4f6;
    --oa-input-shadow-focus: 0 0 0 3px rgba(15, 98, 160, 0.25); /* accent-ish */

    /* Controls */
    --oa-control-height: 2.75rem; /* ~44px, finger-friendly */
  }

/* Normalize - Micro reset: modern baseline
--------------------------------------------------------- */

html { box-sizing: border-box; -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: inherit; }

body { margin: 0; }

img, video, svg, canvas { max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }


/* Accessibility
--------------------------------------------- */
.screen-reader-text,
.site-title a,
.site-description,
.entry-date.published,
.entry-footer,
.home .entry-header,
.contact-page .entry-title {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .service .site-content img:not(.picto-side img) {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    white-space: nowrap;
  }
}

/*@media (max-width: 781px) {
  .home .site-content img {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    white-space: nowrap;
  }
}*/

.screen-reader-text:focus {
  background-color: #111827;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #ffffff;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  margin: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}


/* Display None
--------------------------------------------- */
.post-edit-link {
  display: none !important;
}


/* Base
--------------------------------------------------------- */

body {
  margin: 0;
  background: var(--oa-color-bg);
  color: var(--oa-color-base);
  font-family: var(--oa-font-body);
  font-size: var(--oa-font-size-base);
  line-height: var(--oa-line-height-body);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}


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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--oa-space-3);
  font-weight: 400;
  line-height: 1.1;
}

h1, .h1 { font-size: 3.5rem; font-weight: 300; line-height: .9; margin-bottom: 20px; }
h2, .h2 { font-size: 2rem; }
h3, .h3 { font-size: 1.5rem; }
h4, .h4 { font-size: var(--oa-font-size-lg); }
h5, h6, .h5, .h6 {
  font-size: var(--oa-font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 615px) {
  h2, .h2 { font-size: 1.7rem; }
}

p,
li {
  font-size: 1.15rem;
  line-height: 1.55;
}

p { margin: 0 0 1.25em; }

li { padding: 0.25rem 0; }

pre {
  background: #eee;
  font-family: var(--oa-font-mono);
  line-height: 1.6;
  margin: 0 0 1.6em;
  padding: 1.25em;
  overflow: auto;
}

code, kbd, samp, tt, var {
  padding: 0 5px 2px 5px;
  background: #eee;
  border-radius: 3px;
  font-family: var(--oa-font-mono);
  font-size: 0.95em;
}


/* Links
-------------------------------------------------------------- */
a {
  color: var(--oa-font-body);
  text-decoration: underline;
  text-decoration-thickness: 0.125em;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:visited { color: var(--oa-font-body); }

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

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

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

a.is-external-link {
  white-space: nowrap;
}

a.is-external-link:not(.wp-block-button__link)::after {
  content: " ";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: .20em;
  margin-right: -0.25em;
  margin-left: -0.10em;
  background-image: url("/wp-content/themes/oa/img/external-link.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: top;
}

a.is-external-link::after {
  display: inline-block;
}

/* Don’t show external icon in social menus */
.oa-social-menu a.is-external-link::after{
  content: none;
  display: none;
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
}

.wp-block-buttons {
  box-sizing:border-box;
}

.wp-block-buttons>.wp-block-button {
  display: inline-block;
  margin: 0;
  text-align: center
}

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

.wp-block-buttons .wp-block-button__link {
  width: 100%
}

.wp-block-button__link,
.search-submit,
.form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--oa-button-padding-y) var(--oa-button-padding-x);
  border-radius: var(--oa-button-radius);
  border-width: 1px;
  border-style: solid;
  background: #fed45f; /* soft orange */;
  font-size: var(--oa-font-size-sm);
  font-weight: var(--oa-button-font-weight);
  text-decoration: none;
  line-height: 1;
  transition: var(--oa-button-transition);
  white-space: nowrap;
  cursor: pointer;
}

a.wp-block-button__link {
  color: var(--oa-color-base);
}

.wp-block-button__link:hover {
  text-decoration: none;
}

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

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.button:hover,
.button:focus,
.wp-element-button:hover,
.wp-element-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  /*background-color: var(--oa-color-base);
  border-color: var(--oa-color-base);
  color: #ffffff;*/
}

button:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled,
input[type="submit"]:disabled,
.button[disabled],
.wp-element-button[disabled],
.wp-block-button__link[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

.oa-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--oa-button-padding-y) var(--oa-button-padding-x);
  border-radius: var(--oa-button-radius);
  border-width: 1px;
  border-style: solid;
  font-size: var(--oa-font-size-sm);
  font-weight: var(--oa-button-font-weight);
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: var(--oa-button-transition);
}

.oa-button--primary {
  background-color: var(--oa-color-accent);
  border-color: var(--oa-color-accent);
  color: #ffffff;
}

.oa-button--primary:hover,
.oa-button--primary:focus {
  background-color: var(--oa-color-base);
  border-color: var(--oa-color-base);
  color: #ffffff;
}

.oa-button--secondary {
  background-color: #ffffff;
  border-color: #7e7e7e;
  color: var(--oa-color-base);
}

.oa-button--secondary:hover,
.oa-button--secondary:focus {
  border-color: var(--oa-color-accent);
  color: var(--oa-color-accent);
}

.oa-button--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--oa-color-accent);
}

.oa-button--ghost:hover,
.oa-button--ghost:focus {
  background-color: var(--oa-color-accent-soft);
  border-color: transparent;
  color: var(--oa-color-accent);
}

/* Sizes */
.oa-button--sm {
  padding: 0.45rem 0.9rem;
  font-size: var(--oa-font-size-xs);
  border-radius: var(--oa-button-radius-sm);
}

.oa-button--lg {
  padding: 0.9rem 1.6rem;
  font-size: var(--oa-font-size-base);
}

/* Disabled state */
.oa-button[disabled],
.oa-button.is-disabled,
.oa-button--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.unset .wp-block-button__link {
  all: unset;
  color: var(--oa-color-base) !important;
  cursor: pointer;
}

.unset .wp-block-button__link:hover {
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-decoration-thickness: 0.125em;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.website-performance .unset .wp-block-button__link:hover {
  color: #009900 !important;
}

@media (max-width: 767px) {
  .wp-block-button.unset {
    margin-top: 20px;
  }
}


/* Force Buttons Inline at the Bottom of a Box
--------------------------------------------- */
.wp-block-column.box {
  display: flex;
  flex-direction: column;
}

.wp-block-column.box > .wp-block-buttons {
  margin-top: auto;
}

/* Only remove last <p> margin when there is NO button group in the box */
.box:not(:has(.wp-block-buttons)) p:last-of-type,
.reviews:not(:has(.wp-block-buttons)) p:last-of-type {
  margin-bottom: 0;
}

.wp-block-column:not(:has(.wp-block-buttons)) p:last-of-type {
  margin-bottom: 0;
}

/* Images
-------------------------------------------------------------- */
.has-border img {
  border: 1px solid #e6e6e6;
}

/* HR
-------------------------------------------------------------- */
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/* Lists
-------------------------------------------------------------- */
li:not(.oa-nav-overlay-menu li) {
  padding: 5px 0;
}

.has-checkmark ul {
  list-style: none !important;
}

.has-checkmark li::marker {
  content: "✓   ";
}

.has-squarebox-tick li::marker {
  content: "☑   ";
}

.has-squarebox-tick li {
  padding: 20px 0;
  font-size: 1.2em;
  line-height: 1.5;
}

ul.nobullet {
  list-style: none;
}

/* Forms
--------------------------------------------- */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--oa-input-radius);
  border: var(--oa-input-border);
  background-color: var(--oa-input-bg);
  color: var(--oa-color-base);
  font-size: var(--oa-font-size-sm);
  line-height: 1.4;
  transition:
    border-color 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background-color 0.15s ease-out,
    color 0.15s ease-out;
    min-height: var(--oa-control-height);
}

@media (max-width: 767px) {
	input[type="text"],
	input[type="email"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="tel"],
	select,
	textarea {
	  border: 1px solid #7e7e7e;
	}
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--oa-color-muted);
  opacity: 0.8;
}

/* Focus states */

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border: var(--oa-input-border-focus);
  box-shadow: var(--oa-input-shadow-focus);
}

/* Disabled & readonly */

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
textarea[readonly] {
  background-color: var(--oa-input-bg-disabled);
  cursor: not-allowed;
}

/* Validation colours */

input[type="text"].is-error,
input[type="email"].is-error,
input[type="url"].is-error,
input[type="password"].is-error,
input[type="search"].is-error,
input[type="number"].is-error,
input[type="tel"].is-error,
select.is-error,
textarea.is-error {
  border-color: var(--oa-color-danger);
}

.form-error-message {
  margin-top: 0.25rem;
  font-size: var(--oa-font-size-xs);
  color: var(--oa-color-danger);
}

/* Labels and help text */

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: var(--oa-font-size-sm);
  color: var(--oa-color-base);
}

.form-field-description,
.form-hint {
  margin-top: 0.25rem;
  font-size: var(--oa-font-size-xs);
  color: var(--oa-color-muted);
}

/* Form layout helpers */

.form-row {
  margin-bottom: var(--oa-space-4);
}

.form-row--inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--oa-space-4);
}

.form-row--inline > * {
  flex: 1 1 0;
  min-width: 180px;
}

/* Containers and Layout
--------------------------------------------------------------*/
:root {
  --oa-container-width: <?php echo esc_html( $container ); ?>;
  --oa-breakpoint-desktop: <?php echo esc_html( $break ); ?>;
}

.site-container {
  max-width: var(--oa-container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.intro {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Full-width alignment (for blocks using alignfull). */
.alignfull {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* Alignwide can be slightly wider than content. */
.alignwide {
  max-width: calc(var(--oa-container-width) + 160px);
  margin-left: auto;
  margin-right: auto;
}

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

:where(.wp-block-columns) {
  margin-bottom: 0;
}

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

.site-content { flex: 1 0 auto; }
.site-footer { flex-shrink: 0; }

.site-container {
  max-width: var(--oa-container-width, 1200px);
  margin-left: auto;
  margin-right: auto;
}

/* Optional: nicer padding on small screens */
@media (max-width: 600px) {
  .site-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.site-content-inner {
  padding-top: var(--oa-space-8);
  padding-bottom: var(--oa-space-8);
}

.service .site-content-inner {
  padding-bottom: 0;
}


/* Branding
--------------------------------------------------------------
.site-title  {
  padding: 5px;
  font-weight: 600;
  border: 2px solid #555;
  border-radius: 6px;
}

.site-description {
  padding: 5px;
  font-size: 30px;
  font-weight: 600;
  border: 3px solid #000;
  border-radius: 6px;
}
*/
/* =========================================================
   OA Header + Nav (matches your header.php markup)
   - Desktop: two-line nav items + actions + hamburger
   - Mobile: logo | centred phone | hamburger
   - Overlay: full-screen menu with actions + site links + optional social column
========================================================= */

:root {
  --oa-header-bg: #fed45f; /* keep your existing colour */
  --oa-header-fg: #111827;

  --oa-overlay-bg: rgba(17, 24, 39, 0.94);
  --oa-overlay-fg: #ffffff;

  --oa-break: 960px;

  --oa-kicker-size: 0.78rem;
  --oa-label-size: 1.02rem;
  --oa-overlay-label-size: clamp(1.6rem, 3.2vw, 2.35rem);

  --oa-dot: #22c55e;
}

/* ---------------------------
   Header shell
---------------------------- */
.site-title { margin-bottom: 0; }
.site-title a { text-decoration: none; }
.site-description { margin: 0; }

.site-header {
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--oa-header-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: var(--oa-header-fg);
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: var(--oa-header-bg);
}

.site-branding {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-branding img {
  width: auto;
  height: auto;
}

.custom-logo-link--mobile {
  display: none;
}

@media (max-width: 767px) {
  .custom-logo-link:not(.custom-logo-link--mobile) {
	display: none;
  }
  .site-header .custom-logo-link {
	border-color: #000;
  }
  .custom-logo-link--mobile {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }
  .custom-logo--mobile {
    display: block;
  }
}

/* Sticky header */
.oa-header-sticky .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ---------------------------
   Nav layout
---------------------------- */

#site-navigation.main-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

/* Left-to-right row: [menus/phone] [hamburger] */
.oa-header-inline {
  display: flex;
  align-items: left;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 480px) {
  #site-navigation.main-navigation {
    margin-left: 25px;
  }
}

/* Desktop menus: primary + actions */
.oa-header-menus {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 3rem);
  padding-right: 20px;
}

/* Base UL styling */
.oa-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  
}

/* Primary centred; actions right */
.oa-menu--primary {
  justify-content: end;
  gap: 2.25rem;
}
.oa-menu--actions {
  justify-content: flex-end;
  gap: 2.25rem;
}

@media (max-width: 615px) {
  .is-phone {
    margin-right: 80px;
  }
}

/* Two-line items: kicker + label (kicker comes from data-kicker attr) */
.oa-menu > li > a {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  line-height: 1.05;
  font-weight: 600;
  font-size: var(--oa-label-size);
  padding: 0.35rem 0.25rem;
  text-decoration: none;
}

.oa-menu > li > a[data-kicker]::before {
  content: attr(data-kicker);
  font-size: var(--oa-kicker-size);
  font-weight: 600;
  text-align: left;
  opacity: 0.9;
}

.oa-menu--overlay > li > a[data-kicker]::before {
  display: none;
}

/* Hover */
.oa-menu > li > a:hover,
.oa-menu > li > a:focus-visible {
  text-decoration: none;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.08em;
  opacity: .7;
}

/* Green dot for “Get a Quote” (apply menu item class: has-dot) */
.has-dot > a {
  position: relative;
  padding-right: 1rem;
}
.has-dot > a::after {
  content: "";
  position: absolute;
  right: -.7rem;
  top: 1.6rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--oa-dot);
}

/* ---------------------------
   Desktop dropdowns (menu-1 depth 2)
   Works for BOTH header + overlay menus (but overlay overrides below)
---------------------------- */

.oa-menu--primary li { position: relative; }

.oa-menu--primary li.not-on-main {
  display: none;
}

.oa-menu--primary ul.sub-menu {
  position: absolute;
  top: 100%;
  left: -999em;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.5rem 0 0;
  padding: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  width: 260px;
  list-style: none;
  z-index: 99999;
}

.oa-menu--primary ul.sub-menu a {
  color: var(--oa-header-fg);
  background: #fff;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  font-weight: 700;
  font-size: 0.98rem;
}

.sub-menu li a:hover {
  opacity: .7;
}

.oa-menu--primary li:hover > ul,
.oa-menu--primary li.focus > ul {
  left: auto;
}

/* ---------------------------
   Mobile header layout
   (logo | phone | hamburger)
---------------------------- */

.oa-header-phone {
  display: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  justify-self: center;
}

.oa-header-phone::before {
  content: 'Contact Me';
  display: block;
  font-size: var(--oa-kicker-size);
  font-weight: 600;
  text-align: left;
  line-height: 1.05;
  opacity: 0.9;
}
@media (max-width: 480px) {
  .oa-header-phone::before {
	font-size: 16px;
  }
  .oa-header-phone {
	margin-top: 5px;
	margin-left: -15px;
  }
}

@media (max-width: 959px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .oa-header-menus { display: none; }

  .oa-header-phone {
    display: block;
    text-align: center;
  }
}

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

.menu-toggle.oa-menu-toggle {
  display: inline-flex;
  position: relative;
  background: none;
  border: 0;
  padding: 0.75rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  color: inherit;
}

.menu-toggle.oa-menu-toggle .menu-toggle-bar {
  display: block;
  width: 40px;
  height: 3px;
  margin: 6px 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

/* Expanded: turn into a proper X */
.menu-toggle.oa-menu-toggle[aria-expanded="true"] .menu-toggle-bar {
  position: absolute;
  left: 50%;
  top: 70%;
  margin: 0; /* kill the vertical spacing */
  transform-origin: center;
}

.menu-toggle.oa-menu-toggle[aria-expanded="true"] {
  color: white;
}

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

/* Cross bars */
.menu-toggle.oa-menu-toggle[aria-expanded="true"] .menu-toggle-bar {
  transform: rotate(45deg);
}

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

body.nav-open { overflow: hidden; }

/* ---------------------------
   Full-screen overlay
---------------------------- */

.oa-nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: var(--oa-overlay-bg);
  color: var(--oa-overlay-fg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 0s linear 200ms;
  z-index: 9999;
}

@media (max-width: 767px) {
  .oa-nav-overlay {
	background: rgba(17, 24, 39, 1);
  }
}

/* Respect the [hidden] attribute your JS toggles */
.oa-nav-overlay[hidden] { display: none !important; }

#site-navigation.toggled .oa-nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 200ms ease;
}

.oa-nav-overlay-inner {
  height: 100%;
  width: 100;
  margin: 0 auto;
  max-width: 1024px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

#site-navigation.main-navigation {
  max-width: 900px;
}

@media (max-width: 959px) {
  .oa-nav-overlay-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
  }
}

/* Overlay menu switching */
.oa-menu--overlay-mobile { display: none; }
.oa-menu--overlay-desktop { display: flex; }

@media (max-width: 959px) {
  .oa-menu--overlay-mobile { display: flex; }
  .oa-menu--overlay-desktop { display: none; }
}


/* Social column (optional) */
.oa-nav-social {
  align-self: start;
}

@media (min-width: 960px) {
  .oa-nav-social {
    margin-top: 5vw;
  }
}

.oa-social-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

/* Hide the visible label text but keep it accessible
   And make the anchor the clickable icon box */
.oa-social-menu .facebook > a,
.oa-menu--overlay .facebook > a,
.oa-social-menu .instagram > a,
.oa-menu--overlay .instagram > a,
.oa-social-menu .linkedin > a,
.oa-menu--overlay .linkedin > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}

/* Put the icon ON the anchor (so it’s inside the <a>) */
.oa-social-menu .facebook > a::before,
.oa-menu--overlay .facebook > a::before,
.oa-social-menu .instagram > a::before,
.oa-menu--overlay .instagram > a::before,
.oa-social-menu .linkedin > a::before,
.oa-menu--overlay .linkedin > a::before {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.oa-social-menu .facebook > a:hover,
.oa-social-menu .instagram > a:hover,
.oa-social-menu .linkedin > a:hover {
  transform: scale(1.2);
}

/* Background images */
.oa-social-menu .facebook > a::before,
.oa-menu--overlay .facebook > a::before {
  background-image: url("/wp-content/themes/oa/img/facebook-white.svg");
}

.oa-social-menu .instagram > a::before,
.oa-menu--overlay .instagram > a::before {
  background-image: url("/wp-content/themes/oa/img/instagram-white.svg");
}

.oa-social-menu .linkedin > a::before,
.oa-menu--overlay .linkedin > a::before {
  background-image: url("/wp-content/themes/oa/img/linkedin-white.svg");
}

/* ============================
   Social icons inline ONLY in overlay (mobile)
   ============================ */

/* Default: social list stays vertical in its own column (desktop) */
.oa-nav-social .oa-social-menu{
  display: grid;
  gap: 1.25rem;
}

/* Mobile overlay: show social icons inline and centre them */
@media (max-width: 959px) {

  /* Re-enable the social area on mobile (you currently hide it) */
  .oa-nav-social {
    display: block;
    justify-self: center;
    align-self: end;
    margin-top: 1.5rem;
  }

  /* Make the social icons a horizontal row */
  .oa-nav-social .oa-social-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
	margin: 15px 0 0;
  }
}


/* Overlay actions (top right; centred on mobile) */
.oa-nav-overlay-actions {
  position: absolute;
  top: 1.5rem;
  right: calc(1.5rem + 56px);
}

@media (max-width: 959px) {
  .oa-nav-overlay-actions {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 3rem));
  }

  .oa-nav-overlay-actions .oa-menu {
    width: 100%;
    justify-content: space-between;
  }
}

/* Overlay main menu (centre list) */
.oa-menu--overlay {
  flex-direction: column;
  text-align: center;
  width: 100%;
}

/* Bigger overlay labels */
.oa-menu--overlay > li > a {
  color: rgb(255 255 255 / 70%);
  font-size: var(--oa-overlay-label-size);
  font-weight: 800;
  text-decoration: none;
}

/* Overlay sub-menus: show nested (no hover dropdown) */
.oa-menu--overlay ul.sub-menu {
  position: static;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  background: transparent;
  box-shadow: none;
  opacity: 0.9;
}

.oa-menu--overlay ul.sub-menu a {
  padding: 0.2rem 0;
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
}


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

/*.service .site-footer {
  margin-top: -30px;
}*/

.site-footer-inner {
  padding-top: var(--oa-space-6);
  padding-bottom: var(--oa-space-6);
  border-top: 1px solid var(--oa-color-border);
  font-size: var(--oa-font-size-sm);
  color: var(--oa-color-muted);
}

.footer-widgets {
  margin-bottom: var(--oa-space-6);
}

.site-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--oa-space-2);
  align-items: center;
  justify-content: space-between;
}

/* Footer Bottom */
#footer-bottom {
  width: 100%;
}

#footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

/* Footer menu base */
#footer-bottom-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

#footer-bottom-menu .menu li {
  font-size: 14px;
}

#footer-bottom-menu .menu a {
  text-decoration: none;
}

/* Mobile: 959px and below */
@media (max-width: 959px) {
  #footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Force order exactly as requested */
  #copyright {
    order: 2;
  }

  #footer-bottom-menu {
    order: 1;
    margin-top: 0.75rem;
    width: 100%;
  }

  #footer-bottom-menu .menu {
    justify-content: center;
  }
}


/* Captions
--------------------------------------------- */
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}


/* Galleries
--------------------------------------------- */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

/* Jetpack infinite scroll
--------------------------------------------------------------*/

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
  display: block;
}

/* Miscellaneous
--------------------------------------------------------------*/
@media only screen and (max-width: 960px) {
  .nom { /* Not on Mobile - 959px */
    display: none
  }
}

.what-happens-next {
  padding: 8vw 0;
  background: #f9f9f9;
}

.wp-block-quote {
  padding-left: 5px;
  border-left: 4px solid #9e9e9e;
}

.single .wp-block-quote {
  margin-left: 0;
  padding: 10px;
  background: var(--oa-header-bg);
  background: rgba(254, 212, 95, .6) !important;
  border-left: 4px solid #333;
  border-radius: 5px;
}

/* Element Width Control
--------------------------------------------------------------*/
@media (max-width: 959px) {
  .wide959 {
    flex-grow: 1 !important;
  }
}

.m600 {
  max-width: 600px;
}

.m700 {
  max-width: 700px;
}

.m800 {
  max-width: 800px;
}

.m900 {
  max-width: 900px;
}

.m1024 {
  max-width: 1024px;
}

.m1200 {
  max-width: 1200px;
}

.error-404.not-found {
  margin: 0 auto;
  width: 800px;
  max-width: 90%;
}


/* Steps
--------------------------------------------- */
.step {
  --d: clamp(40px, 8vw, 60px);
  --o: calc(var(--d) * -0.25);
  position: absolute;
  top: var(--o);
  left: var(--o);
  inline-size: var(--d);
  aspect-ratio: 1;
  background: white;
  border: 1px solid #333;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: calc(var(--d) / 2);
}

.has-steps .box {
  padding: 6vw;
  padding-left: 15vw;
}

@media screen and (min-width: 960px) {
  .has-steps .box {
    padding: 3vw;
    padding-left: 6vw;
  }
}

/* Boxes
--------------------------------------------- */
.box .wp-block-buttons {
  margin-top: 1.5rem
}

.box,
.review-item {
  position: relative;
  padding: 6vw;
  border-radius: 5px;
  border: 1px solid var(--oa-color-base);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media screen and (min-width: 1200px) {
  .box,
  .review-item {
    padding: 2vw;
  }
}

@media screen and (max-width: 480px) {
  .whats-included .box {
    padding: 0;
    border-radius: 0;
    border: 0px solid rgba(0,0,0,0);
    box-shadow: 0 4px 12px rgba(0,0,0,0);
  }
}

/* Author Box
--------------------------------------------- */
.author-box {
  margin: 50px 0;
  max-width: 900px;
  padding: 35px 30px 40px 35px;
  background: #F5F6F8;
  border: 1px solid #e9e9e9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.author-box img {
  border-radius: 9999px;
}

.author-box p:first-child {
  margin-top: -20px;
  margin-bottom: 0;
  font-size: 90%;
  font-weight: 800;
  text-transform: uppercase;
  opacity: .7;
}

@media screen and (min-width: 960px) {
  .author-box {
    text-align: left;
  }
  .author-box p:first-child {
    margin-top: 0;
  }
  .author-box .wp-block-image {
    float: right;
  }
}

/* Review Cards
--------------------------------------------- */
.reviews {
  margin-top: 8vw;
}

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

.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: .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;
}

/* SVG Lists
--------------------------------------------- */
ul.picto-side {
  margin: 0 0 0 -30px;
  list-style: none;
}

.mzp-c-picto,
.mzp-c-picto-image {
  position: relative;
}

.mzp-c-picto-image {
  top: 30px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  text-align: center;
}

.mzp-c-picto-image {
  filter:
    invert(39%)
    sepia(89%)
    saturate(5288%)
    hue-rotate(75deg)
    brightness(91%)
    contrast(101%);
}/* green */

.mzp-c-picto p {
  margin-left: 60px;
}


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

#faq {
  margin: 8vw auto;
}

.service #faq  {
  background-color: var(--oa-zone--alt);
}

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

@media (max-width: 767px){
  :has(.oa-toc) #faq .wp-block-heading {
    text-align: left;
  }
}

@media (min-width: 690px){
  :has(.oa-toc) #faq .wp-block-heading {
	padding-top: 50px;
    border-top: 1px solid #e1e1e1;
  }
}

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

.faq-drawer__content-wrapper {
  font-size: 1.25em;
  line-height: 1.4em;
  max-height: 0px;
  overflow: hidden;
  transition: 0.25s ease-in-out;
}

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

.faq-drawer__title::after {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  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__content {
  padding-top: 30px;
}

.faq-drawer__trigger:checked
  + .faq-drawer__title
  + .faq-drawer__content-wrapper {
  max-height: 100%;
}

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

input[type="checkbox"] {
  display: none;
}



/* --------------------------------------------------------------------------
   Services (Global)
-------------------------------------------------------------------------- */

/* Tokens (optional but helps keep colours consistent) */
:root{
  --service-cta-bg: #fed45f;   /* soft orange */
  --service-gray-bg: #f5f6f8;  /* light gray */
  --service-white-bg: whitesmoke;
  --service-box-white: #fefefe;
}

/* Mobile/tablet tweaks */
@media (max-width: 1024px){
  .three-steps {
    max-width: 90%;
  }
}

/* Maintenance Plans Table
--------------------------------------------- */
.maintenance-plans-section {
  margin-bottom: 8vw;
}

.maintenance-plans-section .wp-block-heading {
  margin: 50px auto;
  text-align: center;
}

.maintenance-plans th,
.maintenance-plans td {
  padding: 30px 15px;
  border-bottom: 1px solid #e9e9e9;
}

.maintenance-plans tr {
  line-height: 1.2;
}

.maintenance-plans tr:nth-child(even) {
  background: #fafafa;
}

.maintenance-plans {
  margin: 0 auto;
  width: 100%;
  max-width: 90%;
}

.maintenance-plans .plan-price {
  color: #6f8695;
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
}

.maintenance-plans .paid-quaterly {
  color: var(--black);
  font-size: 80%;
  font-weight: 400;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .maintenance-plans {
    width: 100%;
    max-width: 96%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .maintenance-plans thead {
    display: none;
  }

  .maintenance-plans tbody tr {
    display: block;
    margin: 0 0 12px 0;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.03);
    font-size: 95%;
  }

  .maintenance-plans tbody td {
    display: block;
    padding: 8px 0 !important; /* override inline/table styles */
    border: 0 !important;
    text-align: right;
  }

  /* Feature name becomes the card header */
  .maintenance-plans tbody td:first-child {
    font-weight: 500;
    padding: 6px 0 10px !important;
    border-bottom: 1px solid #f1f5f9 !important;
    margin: 0 0 6px 0;
    text-align: left;
  }

  /* Each plan value shows as "Plan: Value" on one line */
  .maintenance-plans tbody td[data-label] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .maintenance-plans tbody td[data-label]::before {
    content: attr(data-label);
    opacity: .85;
    text-align: left;
  }

  /* Tighter last item */
  .maintenance-plans tbody td:last-child {
    padding-bottom: 0 !important;
  }

  /* Nice ticks look good on mobile */
  .maintenance-plans tbody td:has(> .tick) {
    font-weight: 600;
  }

  .maintenance-plans .tick {
    font-weight: 700;
  }
}

/* Optional: subtle “featured” highlight if you add .is-featured to a column later */
@media (max-width: 767px) {
  .maintenance-plans tbody td[data-label*="Business"] { /* example highlight */
    background: linear-gradient(to right, rgba(34,197,94,.07), transparent);
    border-radius: 8px;
    padding: 10px 12px !important;
    margin: 4px -12px;
  }
}

@media only screen and (min-width: 768px) {
  .maintenance-plans table tr {
    display: grid;
    grid-template-columns: minmax(180px, 1.2fr) repeat(3, 1fr) !important; /* feature + 3 equal plans */
    font-size: 14px;
  }

  .maintenance-plans .paid-quaterly,
  .maintenance-plans .hero p span {
    display: block;
  }
}

@media only screen and (min-width: 984px) {
  .maintenance-plans .paid-quaterly {
    display: block;
  }
}

.maintenance .wp-block-list.has-checkmark {
  padding: 0;
}

.maintenance .wp-block-list.has-squarebox-tick {
  padding-left: 30px;
}


/* Swiper (reusable, dependency-free)
--------------------------------------------- */

.oa-swiper {
  position: relative;
}

.oa-swiper__controls {
  display: none; /* shown only when JS initialises on small screens */
  align-items: center;
  justify-content: space-between;
  gap: var(--oa-space-3);
  margin-top: var(--oa-space-3);
}

.oa-swiper__btn {
  appearance: none;
  border: 1px solid var(--oa-color-border);
  background: var(--oa-color-bg);
  color: var(--oa-color-base);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.oa-swiper__btn:hover {
  background: #fed45f; /* soft orange */;
}

.oa-swiper__btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.oa-swiper__dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: center;
}

.oa-swiper__dot {
  width: 8px;
  height: 12px;
  border-radius: 999px;
  background: var(--oa-color-border);
}

.oa-swiper__dot.is-active {
  background: #fed45f; /* soft orange */;
}

/* Mobile swiper behaviour: below 767px */
@media (max-width: 766px) {
  .oa-swiper__track {
    display: flex !important;
    gap: var(--oa-space-4);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--oa-space-2);
    scrollbar-width: none;
  }

  .oa-swiper__track::-webkit-scrollbar {
    display: none;
  }

  /* Default slide sizing */
  .oa-swiper__track > * {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  /* Variant: cards (tweak if you want more/less peek) */
  .oa-swiper--cards .oa-swiper__track > * {
    flex-basis: 100%;
  }

  /* Only show controls when JS says it's actually “swipable” */
  .oa-swiper[data-oa-swiper-ready="1"] .oa-swiper__controls {
    display: flex;
  }
}

/* Blog cards grid
--------------------------------------------- */

.oa-cards-grid {
  display: grid;
  gap: var(--oa-space-6);
  grid-template-columns: 1fr;
  margin-top: var(--oa-space-6);
}

@media (min-width: 600px) {
  .oa-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .oa-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.oa-card {
  background: var(--oa-color-bg);
  border: 1px solid var(--oa-color-border);
  border-radius: 0.9rem;
  padding: var(--oa-space-6);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.oa-card__title {
  margin: 0 0 var(--oa-space-2);
  font-size: 1.5rem;
  line-height: var(--oa-line-height-heading);
}

.oa-card__link {
  color: var(--oa-color-base);
  text-decoration: none;
}

.oa-card__link:hover,
.oa-card__link:focus {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #999;
}

.oa-card__meta {
  font-size: var(--oa-font-size-sm);
  color: var(--oa-color-muted);
}

/* Blog card excerpt: visually clamp without changing the actual text */
.oa-card__excerpt,
.entry-summary,
.post-card__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* change to 2, 4, 5 etc */
  overflow: hidden;
}

.oa-card__excerpt {
  margin-top: var(--oa-space-3);
  flex: 1 1 auto;
  color: var(--oa-color-base);

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oa-card__excerpt p {
  margin: 0;
}

.oa-card__footer {
  margin-top: var(--oa-space-4);
}

.oa-related-posts {
  margin-top: var(--oa-space-12);
  padding-top: var(--oa-space-8);
  border-top: 1px solid var(--oa-color-border);
}

.oa-related-posts__title {
  margin-bottom: var(--oa-space-4);
}

/* Blog Pages
--------------------------------------------- */
.single-post .entry-content {
  margin-top: 90px;
}


.single .entry-title {
  font-size: 2.5rem;
  line-height: 1.3;
}

.single-post .wp-block-heading {
  font-weight: 600;
}

@media (max-width:959px) {
  .resume .entry-title {
    font-size: 2.5rem;
  }
}

.comments-area {
  margin-top: 5vw;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .6rem;
  align-items: center;
}

.entry-meta .dashicons {
  position: relative;
  top: 3px;
}

.entry-meta .meta-sep {
  opacity: .5;
}

.entry-meta a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #9e9e9e;
  text-underline-offset: .15em;
}

.meta-item.updated-on {
  display: none;
}

/* Sticky TOC (single posts)
--------------------------------------------- */
.oa-toc {
  height: 100%;
  border: 1px solid var(--oa-color-border);
  background: var(--oa-color-bg-alt);
  border-radius: 0.75rem;
  padding: 1rem;
}

.oa-toc h3 {
  margin: 0 0 0.75rem;
  font-size: var(--oa-font-size-sm);
  font-weight: 600;
}

.oa-toc .wp-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

p.block-toc {
  padding-bottom: 20px;
}

.oa-toc li {
  padding: 0 !important;
}

.oa-toc .wp-block-list a {
  display: block;
  padding: 0.35rem 0;
  color: var(--oa-color-muted);
  text-decoration: none;
}

.oa-toc a:hover,
.oa-toc a:focus {
  color: var(--oa-color-base);
}

.oa-toc__item {
  margin: 0;
  padding: 0;
}

.oa-toc__item a {
  display: block;
  padding: 0.35rem 0;
  color: var(--oa-color-muted);
  text-decoration: none;
}

.oa-toc__item a:hover,
.oa-toc__item a:focus {
  color: var(--oa-color-base);
  text-decoration: underline;
}

.oa-toc__item.is-active > a {
  color: var(--oa-color-accent);
  font-weight: 600;
}

/* Make anchor jumps play nicely with sticky header */
.oa-toc-content h2,
.oa-toc-content h3,
.oa-toc-content h4 {
  scroll-margin-top: calc(var(--oa-sticky-offset, 1.5rem) + 0.75rem);
}

@media (min-width: 960px) {
  .oa-toc {
    position: sticky;
    top: var(--oa-sticky-offset);
    max-height: calc(100vh - var(--oa-sticky-offset, 1.5rem) - 2rem);
    overflow: auto;
  }
}

/* Share page feature
--------------------------------------------- */
.oa-share {
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0;
}

.oa-share__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fed45f; /* soft orange */
  cursor: pointer;
  transition: transform 180ms ease,
              box-shadow 180ms ease,
              background-color 180ms ease,
              border-color 180ms ease;
              will-change: transform;
}

.oa-share__btn:hover {
  border-color: rgba(0,0,0,.22);
  background: white;
}

.oa-share__icon svg {
  display: block;
}

.oa-share-modal[hidden] { display: none; }

.oa-share-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9998;
}

.oa-share-modal__panel {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, calc(100vw - 2rem));
  border-radius: 18px;
  background: #fff;
  padding: 2rem;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.oa-share-modal__close {
  position: absolute;
  top: .8rem;
  right: .9rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.oa-share-modal__title {
  margin: 0 0 .25rem;
  font-size: 2rem;
}

.oa-share-modal__desc {
  margin: 0 0 1.2rem;
  opacity: .75;
}

.oa-share-modal__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .75rem;
  margin: 1rem 0 1.25rem;
}

@media (max-width: 700px) {
  .oa-share-modal__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.oa-share-link {
  display: grid;
  place-items: center;
  gap: .35rem;
  padding: .9rem .6rem;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
}

.oa-share-link:hover {
  border-color: rgba(0,0,0,.20);
}

.oa-share-link__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.oa-share-link__label {
  font-size: .85rem;
  opacity: .85;
}

.oa-share-modal__copy {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.oa-share-modal__input {
  flex: 1;
  padding: .7rem .8rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
}

.oa-share-modal__copybtn {
  padding: .7rem .9rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
}

.oa-share-modal__copied {
  font-size: .9rem;
  opacity: .8;
}

html.oa-modal-open {
  overflow: hidden;
}

/* OA Theme Test Page helpers */
.oa-theme-test {
  max-width: var(--oa-container-content, 720px);
  margin: 0 auto;
}
.oa-test-section {
  padding: var(--oa-space-6) 0;
  border-bottom: 1px solid var(--oa-color-border);
}
.oa-test-grid {
  display: grid;
  gap: var(--oa-space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 782px) {
  .oa-test-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.oa-test-gallery {
  display: grid;
  gap: var(--oa-space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 782px) {
  .oa-test-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.oa-test-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--oa-color-border);
  border-radius: 0.5rem;
}

.oa-long-title {
  font-size: var(--oa-font-size-xl);
  line-height: var(--oa-line-height-heading);
  word-break: break-word;
}

/* Terms and Conditions Page
--------------------------------------------- */
.terms-conditions .entry-title,
.privacy-policy .entry-title,
.service-summary .entry-title {
  margin: 30px 0 60px 0;

}

/* Contact Page
--------------------------------------------- */

.contact-page-wrapper.wp-block-columns.alignfull {
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}

.contact-page-wrapper .wp-block-columns {
  padding: 0 5%;
}

.contact-page-wrapper p.watermark {
  position: relative;
  margin: -15vw 0 0 -.5vw; 
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  color: #e9e9e9;
  font-size: 27vw;
  font-weight: 900;
  text-align: center;
  z-index: -1;
}

@media (max-width: 650px) {
  .contact-page-wrapper p.watermark {
	display: none;
  }
}

.contact-page .wp-block-heading {
  margin-bottom: 30px;
  font-size: 3.5rem;
}

@media (min-width: 767px) {
  .contact-form-col {
	padding: 35px;
	background: #fee292; /* softer orange */
	border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
  }
  .contact-page .wp-block-columns {
    margin: 6vw auto 0 auto;
  }
}

.contact-page .wp-block-columns {
  max-width: 1200px;
}

.contact-page a {
  /*text-decoration-style: dotted;*/
}

.contact-page .socials img {
  margin-left: 15px;
}

.contact-page .socials img:hover {
  opacity: .7;
}

.contact-page .socials .fb img {
  max-height: 44px;
  width: auto;
}

.contact-page .socials .insta img {
  max-height: 50px;
  width: auto;
}

.contact-page .socials .linked img {
  max-height: 44px;
  width: auto;
}

/* Shared Form (Design/Redesign/SEO)
--------------------------------------------- */
.remove-anxiety {
  margin-top: 15px;
  font-size: 14px;
}

@media (max-width: 480px) {
  .remove-anxiety {
	text-align: center;	
  }
}

/* Forminator
--------------------------------------------- */

.forminator-design--default .forminator-label {
  font-size: 16px !important;
  font-weight: 600 !important;
}

.forminator-design--default .forminator-description {
  font-size: 14px !important;
}

.forminator-design--default .forminator-button-submit {
  border-radius: var(--oa-button-radius) !important;
  border: 1px solid #8e8e8e !important;
  font-size: var(--oa-font-size-sm);
  font-weight: var(--oa-button-font-weight);
}


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

.home .site-content {
  padding-top: 0;
  background: whitesmoke;
}

.home .intro {
  padding: 10vw 1rem;
}

.home .intro .wp-block-heading {
  font-size: 2.5rem;
}

@media (min-width: 960px) {
  .home .intro .wp-block-heading {
    font-size: 3rem;
  }
}

.home .intro p {
  margin-bottom: 0;
  font-size: 18px;
}

.home .intro a:not(:hover) {
  color: var(--oa-font-body);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.home .quote {
  padding: 5vw;
  background: #efecdd; /* sand */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home .quote .wp-block-group {
  padding-left: 15px;
  border-left: 3px solid var(--oa-color-base);
}

.home .quote p:first-child {
  font-size: 20px;
}

/*
.home .quote a {
  color: var(--oa-color-accent);
  text-decoration: none;
}

.home .quote a:hover {
  color: var(--oa-color-accent);
  text-decoration: underline;
}
*/
.home .quote a.is-external-link::after {
  display: none;
}

.home .site-footer {
  background: #e6e6e6;
}

.home .site-footer-inner {
  border-top: none;
}

/* Tiles
--------------------------------------------- */
:root {
  --animation-speed:    1200ms;
  --service-rescue-bg:  #C6E20F;
  --service-perf-bg:    #E6F2A6;
  --service-redesign-bg:#FFD800;
  --service-design-bg:  #FFF3B0;
  --service-seo-bg:     #8FA6D8;
  --service-maint-bg:   #D8E0EE;
  --service-contact-bg: #2F8149;
}

.steps-group {
  margin: 0 auto;
  max-width: 75%;
}

.steps-row {
  display: flex;
  align-items: flex-start; /* prevents stretch */
  gap: 1rem;
  margin-bottom: 30px;
}

.how-works .steps {
  justify-content: center;
  flex: 0 0 var(--d);      /* fixed width in flex */
  block-size: var(--d);    /* <-- this is the key */
  --d: clamp(60px, 8vw, 80px);
  --o: calc(var(--d) * -0.25);
  top: var(--o);
  left: var(--o);
  margin-right: 35px;
  inline-size: var(--d);
  aspect-ratio: 1;
  color: white;
  background: rgba(255, 255, 255, .2);
  border: 1px solid #333;
  border-radius: 50%;
  place-items: center;
  font-size: calc(var(--d) / 2);
  display: grid;
}

@media (max-width: 767px) {
  .how-works .steps {
    display: none;
  }
}

.arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--oa-color-base);
  transform: rotate(180deg);
}

.tiles-row .wp-block-column {
  display: flex;
  padding: 3vw;
  border-radius: 12px;

  /* Base transition (applies both in and out) */
  transition: transform var(--animation-speed) ease,
              box-shadow var(--animation-speed) ease,
              filter var(--animation-speed) ease;
}

.home .tiles-row .wp-block-column {
  padding: 1vw 2vw;
  min-height: 343px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.home .tiles-row .wp-block-column {
  padding: 1vw 2vw;
  min-height: 343px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@media (max-width: 959px) {
  .home .tiles-row .wp-block-column {
    padding: 8vw 5vw;
  }
}

.tiles-row .wp-block-heading {
  font-weight: 600;
}

.tiles-row:hover > a {
  color: var(--oa-color-base);
  text-decoration: underline !important;
}

.tiles-row  a:hover {
  color: var(--oa-color-base);
}

.tiles-row a:hover .wp-block-column,
.tiles-row a:focus-visible .wp-block-column {
  transform: translateX(1.75rem);
}

.tiles-row .row-link a {
  transform: translateY(0);
  transition-delay: 200ms; /* delay appearance */
}

.tiles-row .wp-block-column:hover .row-link a,
.tiles-row .wp-block-column:focus-within .row-link a {
  transform: translateY(0);
  transition-delay: 200ms; /* delay appearance */
}

.tiles-row .wp-block-column > .wp-block-group {
  transition: transform var(--animation-speed) ease;
}

.home .tiles-row .wp-block-column:hover > .wp-block-group {
  transform: translateX(1.75rem);
}

/* Row specifics */
.home .row-1 .wp-block-column:first-of-type {
  background: #efecdd; /* sand */
}

.home .row-1 .wp-block-column:last-of-type {
  background: #C7D90B;
}

.home .row-2 .wp-block-column:first-of-type {
  background: tomato;
  animation: fadeUp var(--animation-speed) ease both;
}

.home .row-2 .wp-block-column:last-of-type {
  background: #FFA6D9;
  animation: fadeUpSlow var(--animation-speed) ease both;
}

.home .row-3 .wp-block-column:first-of-type {
  background: #FFAA00;
}

.home .row-3 .wp-block-column:last-of-type {
  background: #FFDB00;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpSlow {
  from { opacity: 0; transform: translateY(100px); }
  to   { opacity: 1; transform: translateY(0); }
}

.home .tiles-row .wp-block-group {
  display: flex;
  align-items: flex-end;
}

.how-works .wp-block-column {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vw 0;
  height: 600px;
  background: #516E77;
  border-radius: 12px;
}

@media (max-width: 781px) {
  .how-works .wp-block-column {
    height: 100%;
  }
}

.how-works .wp-block-column:first-of-type {
  color: white;
}

.how-works .wp-block-column:last-of-type {
  color: white;
  background: #187335;
}

.home .how-works .wp-block-column:last-of-type .wp-block-group:hover {
  transition: transform .4s;
  transform: translate(.5rem);
}

.how-works .wp-block-column:last-of-type a {
  text-decoration: none;
}

.how-works .wp-block-column:last-of-type a:hover {
  color: white;
  text-decoration: underline;
}


/* All Services Page
--------------------------------------------- */
.all-services-page .intro {
  padding: 6vw 0;
  max-width: 900px;
}

.all-services-page .intro p:last-child {
  margin-bottom: 0;
}

.all-services-page .tiles-row .row-link:hover {
  transform: translateX(1.75rem);
  transition: transform var(--animation-speed) ease;
}

.all-services-page .row-1 .wp-block-column:first-of-type  {
  color: #1F2A00;
  background: var(--service-rescue-bg);
}

.all-services-page .row-1 .wp-block-column:last-of-type {
  color: #1F2A00;
  background: var(--service-perf-bg);
}

.all-services-page .row-2 .wp-block-column:first-of-type {
  color: #3A2F00;
  background: var(--service-design-bg);
}

.all-services-page .row-2 .wp-block-column:last-of-type {
  color: #3A2F00;
  background: var(--service-redesign-bg);
}

.all-services-page .row-3 .wp-block-column:first-of-type  {
  color: #0E1A33;
  background: var(--service-seo-bg);
}

.all-services-page .row-3 .wp-block-column:last-of-type  {
  color: #0E1A33;
  background: var(--service-maint-bg);
}

.all-services-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vw;
  color: white;
  background: var(--service-contact-bg);
  border-radius: 12px;
  font-weight: 600;
}

.all-services-contact a:hover {
  color: white;
}

/* Transition paragraphs (site-wide) */
.is-centered p.transition {
  margin-bottom: 0;
  justify-content: center;
  width: 100%;
}

p.transition,
p.row-link:not(.home p.row-link a) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateX(0);
  transition: transform var(--animation-speed) ease;
  will-change: transform;
  font-weight: 600;
}

/* Make the link content align nicely when used inside these paragraphs */
p.transition > a,
p.row-link > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hover/focus moves the whole “unit” */
p.transition:has(a:hover),
p.transition:has(a:focus-visible),
p.row-link:has(a:hover),
p.row-link:has(a:focus-visible) {
  transform: translateX(1.75rem);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  p.transition,
  p.row-link,
  .arrow {
    transition: none;
    transform: none;
  }
}

/* Service Pages
--------------------------------------------- */
.related-posts {
  margin-bottom: 6vw;
}

.related-posts .oa-card {
  border: 1px solid var(--oa-color-base);
}

.related-posts .oa-card__title a:not(:hover) {
  text-decoration: none;
}

.related-posts .oa-card__cta:hover {
  color: var(--oa-color-base);
  background: var(--oa-header-bg) !important;
  border-color: var(--oa-color-base);
}

@media (max-width: 781px) {
  .section-last-columns {
    margin-top: -120px;
  }
}

.details .wp-block-heading {
  font-size: 2rem;
}

.website-rescue .flat-fee,
.local-seo .practical-improvements {
  padding: 8vw 0;
  background: whitesmoke;
}

.website-rescue .flat-fee .wp-block-list {
  margin-top: 0;
  margin-bottom: 0;
}

.how-process-works {
  margin: 8vw auto;
  padding: 8vw;
  background: whitesmoke;
}

.how-process-works {
  background: #f9f9f9;
}

.how-process-works .box {
  padding: 1.5vw 2vw;
  background: var(--oa-header-bg);
}

.how-process-works .wp-block-button__link {
  background: transparent;
}

.how-process-works .wp-block-button__link:hover {
  background: var(--service-maint-bg);
}

.how-process-works .three-steps {
  margin-top: 10vw;
}

.work-together {
  margin: 8vw auto;
}

.work-together .box {
  text-align: center;
}

.work-together .wp-block-button__link {
  background: transparent;
}

.cta {
  padding: 8vw 0;
  background: var(--oa-header-bg);
  background: rgba(254, 212, 95, .8);
  text-align: center;
}

.cta .wp-block-button {
  margin-bottom: 20px;
}

.cta .wp-block-button__link {
  background: #f9f9f9;
}

.work-together .wp-block-button__link:hover {
  background: var(--oa-header-bg) !important;
}

/* Website Rescue
--------------------------------------------- */
.start-a-rescue .entry-header,
.start-a-rescue .entry-content {
  margin: 0 auto;
  max-width: 900px;
}

.payment .entry-header,
.payment .entry-content {
  margin: 0 auto;
  max-width: 600px;
}

.start-a-rescue .entry-header,
.start-a-rescue .entry-content p,
.payment .entry-header,
.payment .entry-content p {
  text-align: center;
}

p.next-note {
  margin-bottom: -15px;
  text-align: left !important;
}

.start-a-rescue .entry-header,
.payment .entry-header {
  margin-top: calc(1px + 3vw);
}

.start-a-rescue .entry-title,
.payment .entry-title {
  font-size: 2.5em;
}

.reasurance {
  padding: 10px;
  background: var(--service-perf-bg);
  border-radius: 6px;
}

.payment .wp-block-buttons {
  margin: 50px auto;
}

.has-square-logo img {
  position: relative;
  top: 10px;
}

.website-rescue .seo-anchor {
  margin-top: 30px;
  padding: 8vw;
  background: rgba(199, 217, 11, .4);
}

@media (min-width: 960px) {
  .website-rescue .seo-anchor {
    margin-top: 60px;
  }
  .website-rescue .seo-anchor p {
    font-size: 1.7rem;
  }
}

.forminator-guttenberg {
  margin: 50px auto;
  padding: 5%;
}

#forminator-module-180.forminator-title {
  margin-top: 50px;
}

.forminator-ui.forminator-custom-form[data-design="default"] .forminator-input {
  height: 60px !important;
}

.forminator-ui#forminator-module-179.forminator-design--default .forminator-button-submit {
  padding: 15px 20px;
}

@media (min-width: 767px) {
  .forminator-guttenberg {
    background: whitesmoke;
    border: 1px solid #e1e1e1;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 480px) {
  .forminator-guttenberg {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }
}

/* Local SEO
--------------------------------------------- */
.local-seo .practical-improvements {
  padding: 8vw;
}

.local-seo .whats-included,
.redesign .whats-included {
  padding: 5vw 0 2vw 0;
}

/* Web Redesign
--------------------------------------------- */
.redesign .frustrated {
  padding: 8vw;
  background: whitesmoke;
}

.redesign .frustrated .lc {
  margin: 0 auto;
  max-width: 800px;
}

.redesign .frustrated .mzp-c-picto-image {
  top: 25px;
}

/* Maintenance
--------------------------------------------- */
.maintenance .included-as-a-minimum {
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 781px) {
  .included-last .wp-block-list {
    margin-top: -50px;
  }
}

.maintenance .pricing-table {
  margin-top: 4vw;
  padding: 8vw;
  background: whitesmoke;
}

.maintenance .pricing-table .lc {
  margin: 0 auto;
  max-width: 800px;
}

.plan-options {
  margin-top: 50px;
}

.plan-options .box {
  text-align: center;
  background: white;
}

.oa-plan h3 {
  font-size: 2.5rem;
}

.oa-plan__amount {
  font-size: 1.8rem;
}

.oa-plan__note {
  font-size: 14px;
}

.oa-plan__equals {
  opacity: .8;
  font-size: 14px;
}

@media (max-width: 959px) {
  .services__hero .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100%;
    flex-grow: 1;
  }
}

@media (min-width: 960px) {
  .lc,
  .trust {
    text-align: center;
  }
  .details {
    padding-top: 5vw;
  }
  .website-rescue .flat-fee p {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
  .how-process-works p,
  .feeling-overwhelmed .wp-block-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
  .website-rescue .flat-fee {
    margin: 4vw 0;
    padding: 4vw 0;
  }
  .website-rescue .flat-fee .wp-block-list {
    margin-left: calc(50% - 350px) !important;
    max-width: 740px;
  }
  .local-seo .practical-improvements {
    margin-top: 4vw;
  }
  .how-process-works,
  .redesign .frustrated {
    margin: 4vw auto;
    padding: 4vw;
  }
  .how-process-works .three-steps {
    margin-top: 4vw;
  }
  .work-together {
    margin: 8vw auto 4vw auto;
  }
  .cta,
  .local-seo .practical-improvements {
    padding: 6vw 0;
  }
  .local-seo .practical-improvements .wp-block-list {
    margin-bottom: 0;
    margin-left: calc(50% - 270px) !important;
    max-width: 600px;
  }
  .web-design .work-together .wp-block-list {
    margin-bottom: 0;
    margin-left: calc(50% - 270px) !important;
    max-width: 700px;
  }
  .web-design .work-together {
    margin-top: 8vw;
  }
  .feeling-overwhelmed .wp-block-heading {
    margin-bottom: 30px
  }
  .redesign .whats-included {
    padding: 0;
  }
  .redesign .frustrated .mzp-c-picto-image {
    top: 15px;
  }
  .maintenance .included-as-a-minimum {
    margin-top: 6vw;
  }
}

/* 404error Page
--------------------------------------------- */
.error404 .page-title {
	margin-top: 3rem;
}

.error404 .widget_recent_entries,
.error404 .widget_archive {
	margin: 5vw 0;
}

.error404 .widget_recent_entries a:not(:hover),
.error404 .widget_categories a:not(:hover) {
	text-decoration: none;
}

.error-links a {
	text-decoration-thickness: 1px; 
	text-decoration-style: dotted;
}

.error404 .widget_recent_entries a:hover,
.error404 .widget_categories a:hover {
	text-decoration: underline;
	text-decoration-style: dotted;
}

.error404 input[type="search"] {
	min-height: 60px;
}

.error404 .search-submit {
	margin-top: 15px;
}

.error404 .widget-area,
.error404 .page-content > .widget {
	opacity: 0.9;
}




/* Fix WordPress Website Page
 * /website-rescue/fix-wordpress-website/
--------------------------------------------- */
@media (min-width: 960px) {
  .this-is-not-a-rebuild-service .wp-block-list {
    margin-bottom: 0;
    margin-left: calc(50% - 200px) !important;
    max-width: 400px;
  }
  .what-happens-next .wp-block-list {
    margin-bottom: 0;
    margin-left: calc(50% - 220px) !important;
    max-width: 500px;
  }
  .repair-vs-rebuild .wp-block-list {
    margin-bottom: 0;
    margin-left: calc(50% - 200px) !important;
    max-width: 500px;
  }
}

@media (max-width: 767px) {
  .fix-wordpress-website img {
    display: none;
  }
}