/* ==================================================
   LOCAL FONTS
================================================== */

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('../fonts/SourceSans3-VariableFont_wght.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Agbalumo';
  src: url('../fonts/Agbalumo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==================================================
   ROOT VARIABLES
================================================== */

:root {
    --primary: #F56600;
    --primary-light: #FF8630;
    --primary-gradient: linear-gradient(90deg, #F56600 2%, #FF8630 65%);

    --blue: #075A91;
    --dark: #013B62;
    --text: #000000;
    --muted: #666666;
    --light: #f7f8fb;
    --white: #ffffff;
    --border: #e7e7e7;

    --heading-font: 'Manrope', sans-serif;
    --body-font: 'Source Sans 3', sans-serif;

    --container: 1320px;
    --gutter: 15px;
    --radius: 16px;
}

/* ==================================================
   RESET
================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 180%;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    text-rendering: optimizeSpeed;
}

img,
picture,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* ==================================================
   TYPOGRAPHY
================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 16px;
    font-family: var(--heading-font);
    line-height: 1.15;
    font-weight: 700;
    color: var(--dark);
}

h1 { font-size: clamp(40px, 5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

p {
    margin: 0 0 18px;
}

/* ==================================================
   GLOBAL DESIGN SYSTEM
================================================== */

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
    margin: 0 0 16px;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--dark);
}

.heading-1 {
    font-size: 58px;
    line-height: 118%;
}

.heading-2 {
    font-size: 43px;
    line-height: 118%;
}

.heading-3 {
    font-size: 36px;
    line-height: 120%;
}

.heading-4 {
    font-size: 28px;
    line-height: 125%;
}

.heading-5 {
    font-size: 22px;
    line-height: 130%;
}

.heading-6 {
    font-size: 18px;
    line-height: 135%;
}

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

.text-blue {
    color: var(--blue);
}

.text-dark {
    color: var(--dark);
}

.eyebrow {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(245, 102, 0, 0.10);
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* ==================================================
   CONTAINER & GRID
================================================== */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container-narrow {
    max-width: 900px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: calc(var(--gutter) * -1);
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-inline: var(--gutter);
}

.col-1  { width: 8.333333%; }
.col-2  { width: 16.666667%; }
.col-3  { width: 25%; }
.col-4  { width: 33.333333%; }
.col-5  { width: 41.666667%; }
.col-6  { width: 50%; }
.col-7  { width: 58.333333%; }
.col-8  { width: 66.666667%; }
.col-9  { width: 75%; }
.col-10 { width: 83.333333%; }
.col-11 { width: 91.666667%; }
.col-12 { width: 100%; }

/* ==================================================
   UTILITIES
================================================== */

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.w-100 { width: 100%; }
.img-fluid { max-width: 100%; height: auto; display: block; }
.section-padding { padding: 120px 0; }
.section-padding-top { padding-top: 120px; }
.section-padding-bottom { padding-bottom: 120px; }
.column-left-padding { padding-left: 30px; }
.column-right-padding { padding-right: 30px; }

/* ==================================================
   BUTTONS
================================================== */

.btn,
.btn-primary,
.btn-secondary,
button,
input[type="submit"],
.frm_style_formidable-style.with_frm_style .frm_submit button {
    position: relative;
    overflow: hidden;

    min-height: 52px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;

    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.btn-primary,
button,
input[type="submit"],
.frm_style_formidable-style.with_frm_style .frm_submit button  {
    background: var(--primary-gradient);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* Shine Effect */

.btn::before,
.btn-primary::before,
.btn-secondary::before,
button::before,
input[type="submit"]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 70px;
    height: 200%;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.45) 50%,
        rgba(255,255,255,0) 100%
    );

    transform: rotate(25deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.btn:hover::before,
.btn-primary:hover::before,
.btn-secondary:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
    left: 130%;
}

/* Hover */

.btn-primary:hover,
.btn-secondary:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover,
.frm_style_formidable-style.with_frm_style .frm_submit button:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
	border-color: transparent;
}

/* ==================================================
   HEADER
================================================== */

.site-header {
    background: var(--white);
    position: relative;
    z-index: 100;
    padding-bottom: 31px;
}


.header-top {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-logo img {
    width: 220px;
    height: auto;
    display: block;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111111;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none;
	transition: .25s ease;
}

a.header-info-item:hover {
    color: var(--blue);
    text-decoration: underline;
}

.info-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.site-nav {
    background: var(--white);
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: -31px;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    max-width: 1290px;
    z-index: 20;
}

.primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-menu li {
    position: relative;
    padding: 0 42px;
}

.primary-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    background: var(--blue);
    transform: translateY(-50%);
}

.primary-menu a {
    color: var(--text);
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover {
    color: var(--primary);
}

/* ===============================
   DESKTOP DROPDOWN / MEGA MENU
================================ */

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

.primary-menu > li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-menu > li.menu-item-has-children > a::after {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23004A7C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.primary-menu .sub-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 630px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 4px;
    padding: 28px 34px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 999;
}

.primary-menu .sub-menu a {
    left: 0 !important;
}

.primary-menu ul.sub-menu li:not(:last-child)::after {
    left: -10px;
    background: var(--primary);
}

.primary-menu ul.sub-menu li::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 1px;
    height: 16px;
    background: var(--primary);
    transform: translateY(-50%);
}

.primary-menu > li.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.primary-menu .sub-menu li {
    list-style: none;
	padding: 0;
}

.primary-menu .sub-menu a {
    display: block;
    color: var(--text);
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    padding: 4px 0;
    transition: .25s ease;
}

.primary-menu .sub-menu a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* keep dropdown from disappearing while moving mouse */
/* .primary-menu > li.menu-item-has-children::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 22px;
} */

/* ==================================================
   HERO SECTION
================================================== */

.hero-section {
    background: #EEF4F8;
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}

/* Soft blue glow behind hero image */
.hero-section::before {
    content: "";
    position: absolute;
    right: 16%;
    top: 120px;
    width: 640px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(178, 211, 238, 0.95) 0%,
        rgba(178, 211, 238, 0.65) 45%,
        rgba(178, 211, 238, 0) 78%
    );
    filter: blur(42px);
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

/* Bottom wave image */
.hero-section::after {
    content: "";
    position: absolute;
    left: -5%;
    bottom: 0;
    width: 100%;
    height: 270px;
    background: url('/wp-content/uploads/2026/06/here-section-bottom.webp') no-repeat left bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.hero-wrap {
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 48%;
    position: relative;
    z-index: 3;
    padding-bottom: 55px;
}

.hero-content h1 {
    max-width: 620px;
    margin: 0 0 16px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 58px;
    line-height: 118%;
    font-weight: 600;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-divider {
    max-width: 430px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-divider span {
    height: 1px;
    background: var(--blue);
    flex: 1;
}

.hero-divider i {
    color: #FF1717;
    font-style: normal;
    font-size: 22px;
    line-height: 1;
}

.hero-divider img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.hero-content p {
    max-width: 490px;
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 180%;
	width: 70%;
}

ul.check-list {
    display: flex;
	flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

ul.check-list li {
    display: flex;
    gap: 5px;
    align-items: center;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
}

ul.check-list li span img {
    width: 24px;
    height: 24px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 18px;
    border-left: 1px solid var(--blue);
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 15px;
    line-height: 1.35;
}

.trust-icon img {
    width: 29px;
    height: 36px;
    object-fit: contain;
}

.hero-image {
    width: 52%;
    align-self: flex-end;
    position: relative;
    z-index: 3;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================================================
   HERO RESPONSIVE
================================================== */

@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 50px;
    }

    .hero-section::before {
        right: 2%;
        width: 460px;
        height: 460px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-section::before {
        right: 50%;
        top: auto;
        bottom: 80px;
        transform: translateX(50%);
        width: 420px;
        height: 420px;
    }

    .hero-section::after {
        width: 130%;
        height: 220px;
    }

    .hero-wrap {
        flex-direction: column;
        min-height: auto;
        text-align: left;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero-content h1,
    .hero-content p,
    .hero-divider {
        text-align: left;
		width: 100%;
    }

    .hero-section .eyebrow {
        text-align: left;
    }

    .hero-image {
        max-width: 620px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding-top: 40px;
    }

    .hero-section::before {
        content: none;
    }

    .hero-section::after {
        width: 160%;
        height: 160px;
        left: -20%;
    }

    .hero-content h1 {
        font-size: 38px;
		text-align: left;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-trust {
        border-left: 0;
        padding-left: 0;
    }
	
}

/* ==================================================
   INNER BANNER
================================================== */

.inner-banner {
    position: relative;
    overflow: hidden;
    background: #EEF4F9;
    padding: 105px 0 70px;
}

.inner-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/wp-content/uploads/2026/07/inner-banner-art.webp') no-repeat center center;
    background-size: 100% 100%;
    z-index: 2;
    pointer-events: none;
}

.inner-banner-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.breadcrumb {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,.65);
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--blue);
}

.inner-banner .heading-1 {
    max-width: 560px;
    margin-bottom: 22px;
}

.inner-banner p {
    max-width: 520px;
    margin: 0;
    font-size: 18px;
    line-height: 180%;
}

/* ==================================================
   FAQ SECTION
================================================== */

.section-heading-center {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 30px;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 1040px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 18px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 26px rgba(0,0,0,.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 72px;
    padding: 24px 34px;
    border: 0;
    background: #fff;
    color: #000;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-transform: none;
    box-shadow: none;
}

.faq-question:hover {
    transform: none;
}

.faq-question span {
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid #888;
    transition: .3s ease;
    flex-shrink: 0;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    background: #EEF4F9;
    transition: grid-template-rows .35s ease, padding .35s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 34px 14px;
    font-size: 17px;
    line-height: 180%;
}

.faq-answer-inner a {
    display: block;
    padding: 0 0 34px 34px;
	color: var(--primary);
	transition: .25s ease;
}

.faq-answer-inner a:hover span {
    transform: translateX(5px);
    color: var(--blue);
}

.faq-answer-inner a span {
    display: inline-block;
    transition: .25s ease;
}

.faq-answer-inner a:hover {
    color: var(--blue);
}

.faq-item.active {
    background: #EEF4F9;
}

.faq-item.active .faq-question {
    background: #EEF4F9;
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

/* ==================================================
   CARE CTA SECTION
================================================== */
.page-id-189 section.care-cta-section {
    padding-top: 76px;
}

.care-cta-box {
    position: relative;
    min-height: 530px;
    padding: 70px 60px;
    border-radius: 12px;
    background: #EEF4F9;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.18);
}

.care-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.care-cta-content .heading-2 {
    margin-bottom: 22px;
	max-width: 90%;
}

.care-cta-content p {
    max-width: 560px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 180%;
}

.care-cta-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.care-cta-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 47%;
    z-index: 1;
}

.care-cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   SERVICE INTRO SECTION
========================================== */

.service-intro-section {
    background: var(--white);
}

.service-intro-content {
    padding-right: 50px;
}

.service-intro-content .heading-2 {
    max-width: 700px;
    margin-bottom: 22px;
}

.service-intro-content p {
    max-width: 555px;
    margin-bottom: 22px;
}

.service-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-benefits-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 16px;
    line-height: 170%;
}

.service-benefits-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    background: url('/wp-content/uploads/2026/07/check-badge.webp') no-repeat center;
    background-size: contain;
}

/* ==========================================
   CONTACT CARD
========================================== */

.service-contact-card {
    background: #EEF4F9;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.service-contact-card h3 {
    margin-bottom: 15px;
    color: var(--blue);
    position: relative;
}

.service-contact-card h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary);
    margin-top: 12px;
}

.service-contact-card p {
    margin-bottom: 22px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
    line-height: 170%;
}

.contact-list i {
    color: var(--blue);
    margin-top: 5px;
}

.btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        #0E4F86 0%,
        #1672B7 100%
    );
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    transition: all .3s ease;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22,114,183,.25);
}

.btn-blue svg,
.btn-blue i {
    font-size: 18px;
}

.service-card-divider {
    height: 1px;
    background: #C8D7E5;
    margin: 35px 0;
}

.service-trust-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--dark);
    font-weight: 600;
}

span.services-trust-content {
    max-width: 160px;
    line-height: normal;
}

/* ==================================================
   ABOUT STAND SECTION
================================================== */
.about-stand-head {
    margin-bottom: 60px;
}

.about-stand-head .heading-2 {
    max-width: 620px;
    margin-bottom: 0;
}

.about-stand-head .heading-2::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    background: var(--primary);
    margin-top: 18px;
}

.about-stand-head p {
    max-width: 560px;
    margin: 0 0 0 auto;
    font-size: 18px;
    line-height: 180%;
}

.about-stand-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-stand-card {
    position: relative;
    padding: 44px 32px 42px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background: #fff;
    text-align: center;
}


.about-stand-card::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(245,102,0,.08);
    z-index: -1;
}

.about-stand-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: rgba(245, 102, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stand-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-stand-card h3 {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.about-stand-card p {
    margin: 0;
    font-size: 18px;
    line-height: 180%;
}

/* ==================================================
   ABOUT SECTION
================================================== */

.about-section {
    background: var(--white);
}

.about-image-box {
    position: relative;
    padding: 0 12px 12px 0;
}

.about-image-box.anb {
    padding: 0;
}

.about-image-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 1px solid var(--primary);
    border-radius: 0 14px 14px 14px;
    z-index: 1;
}

.about-image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 10px;
}

.about-content {
    max-width: 620px;
    margin-left: auto;
}

.about-content .heading-2 {
    margin-bottom: 22px;
}

h2.heading-2.tpr {
    max-width: 500px;
}

.about-content p {
    max-width: 610px;
    font-size: 18px;
    line-height: 180%;
    margin-bottom: 22px;
}

.about-features {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(0, 104, 168, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-feature strong {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 700;
}

.about-image-box.anb::after {
    content: none;
}

.about-image-box.anb img {
    height: unset;
}

/* ==================================================
   SUPPORT SIGNS SECTION
================================================== */

.support-signs-section {
    background: #fff;
}

.support-signs-row {
    margin-top: 60px;
    row-gap: 28px;
}

.support-sign-card {
    height: 100%;
    padding: 34px 36px;
    border-radius: 8px;
    background: rgba(245, 102, 0, 0.08);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .18);
}

.support-sign-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.support-sign-card p {
    margin: 0;
    font-size: 18px;
    line-height: 180%;
}

/* ==================================================
   SERVICE AREA CTA
================================================== */

.service-area-content {
    padding-right: 10px;
}

.service-area-cta-wrap {
    background: #EEF4F9;
    border-radius: 14px;
    padding: 55px;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.service-area-content p {
    max-width: 520px;
    margin: 24px 0 30px;
}

.service-area-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-areas-box h3 {
    text-align: center;
    margin-bottom: 28px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.area-card {
    min-height: 190px;
    padding: 28px 14px 24px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,.14);
    transition: .3s ease;
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.area-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(245, 102, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.area-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.area-card h3 {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0;
}

.service-areas-box .areas-grid .area-card h3 {
    font-size: 16px;
}

.area-card h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    background: var(--primary);
    margin: 15px auto 0;
}

a.btn-outline-orange {
    padding: 7px 22px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 800;
    font-family: var(--heading-font);
}

h2.heading-2.tb::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--primary);
    margin-top: 18px;
}

h2.heading-2.tb {
    width: max-content;
}

.section-heading-center.df {
    display: flex;
    justify-content: center;
}

/* Blog Page */

.blog-main-heading .heading-2 {
    display: inline-block;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--primary);
}

.blog-row {
    margin-top: 60px;
    row-gap: 50px;
}

.blog-card {
    position: relative;
}

.blog-card-image {
    display: block;
    position: relative;
    z-index: 2;
}

.blog-card-image img {
    width: 340px;
    height: 217px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

.blog-card-content {
    position: relative;
    margin-top: -95px;
    padding: 115px 22px 24px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    background: #fff;
    box-shadow: 10px 10px 0 rgba(245,102,0,.08);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

.blog-card-meta span {
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(245,102,0,.08);
    color: var(--primary);
    font-size: 14px;
	line-height: normal;
}

.blog-card-meta a {
    color: var(--blue);
    font-size: 14px;
    text-decoration: underline;
}

.blog-card h2 {
    margin: 0 0 18px;
    font-family: var(--heading-font);
    font-size: 21px;
    line-height: 1.35;
}

.blog-card h2 a {
    color: var(--dark);
}

.blog-read-more {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

a.blog-read-more span {
    transition: .25s ease;
    display: inline-block;
}

.blog-read-more:hover span {
	transform: translateX(5px);
}

.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 4px;
    border-radius: 6px;
    background: #EEF4F9;
    color: var(--blue);
    font-weight: 700;
}

.blog-pagination .current {
    background: var(--primary);
    color: #fff;
}

.single-blog-section .row {
    display: flex;
}

.single-blog-section .col-8 {
    flex: 1;
}

.blog-date {
    display: block;
    margin-bottom: 16px;
    color: #666;
    font-size: 14px;
}

.single-blog-image {
    margin: 32px 0;
}

.single-blog-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.blog-body h2 {
    margin-top: 22px;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
	scroll-margin: 22px 0;
	
}

.blog-body h3 {
    margin-top: 22px;
    margin-bottom: 16px;
	font-size: 24px;
    font-weight: 700;
}

blockquote.wp-block-quote.is-layout-flow.wp-block-quote-is-layout-flow {
    margin: 0;
}

.blog-body p {
    margin-bottom: 22px;
    line-height: 180%;
}

.blog-body ul,
.blog-body ol {
    padding-left: 22px;
    margin-bottom: 24px;
}

.toc-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 28px;
}

.toc-card h3 {
    margin-bottom: 20px;
}

.toc-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-card li:not(:last-child) {
    margin-bottom: 14px;
}

.toc-card a {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: var(--heading-color);
    line-height: 160%;
}

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

.toc-card span {
    color: var(--primary);
    font-weight: 700;
}

.single-blog-section .col-4 {
    position: sticky;
    top: 130px;
    align-self: flex-start;
}

.toc-card {
    position: static;
}

/* ==================================================
   HOW IT WORKS SECTION
================================================== */

.how-section {
    background: var(--white);
}

.how-top-row {
    row-gap: 45px;
}

.areas-row {
    row-gap: 45px;
}

.how-image-box {
    position: relative;
    padding: 0 12px 12px 0;
}

.how-image-box::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    border: 1px solid var(--primary);
    border-radius: 0 14px 14px 14px;
    z-index: 1;
}

.how-image-box img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 410px;
    object-fit: cover;
    border-radius: 10px;
}

.how-content {
    max-width: 670px;
    margin-left: auto;
}

.how-content .heading-2 {
    margin-bottom: 22px;
}

.how-content p {
    max-width: 660px;
    font-size: 18px;
    line-height: 180%;
    margin: 0;
}

.how-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 34px;
    margin-top: 95px;
}

.how-steps::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50px;
    border-top: 3px dotted var(--primary);
    z-index: 1;
}

.how-step {
    position: relative;
    text-align: center;
    z-index: 2;
}

.how-step::after {
    content: "";
    position: absolute;
    top: 44px;
    right: -22px;
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 3;
}

.how-step:last-child::after {
    display: none;
}
.how-step-icon {
    position: relative;
    z-index: 3;
    width: 105px;
    height: 105px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: #FDF4EE; /* figma color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.how-step h3 {
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
    margin: 0 0 18px;
}

.how-step p {
    max-width: 180px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 180%;
    text-align: center;
}


/* ==================================================
   PRIVACY POLICY
================================================== */

.legal-content {
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    padding: 70px 70px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 700;
}

.legal-content p,
.legal-content li {
    font-size: 18px;
    line-height: 180%;
}

.legal-content ul {
    padding-left: 22px;
    margin-bottom: 22px;
}

.legal-content a {
    color: var(--primary);
    font-weight: 500;
}

.legal-content a:hover {
	color: var(--blue);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (min-width: 2500px) {
	.hero-section::before {
		right: 25%;
	}
}

@media (max-width: 1199px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .inner-banner {
        padding: 90px 0 60px;
        background: #EEF4F9;
    }

    .inner-banner::before,
    .inner-banner::after {
        display: none;
    }
	
	.care-cta-box {
        padding: 50px 35px;
    }

    .care-cta-content {
        max-width: 100%;
    }

    .care-cta-content p {
        font-size: 19px;
    }

    .care-cta-image {
        position: relative;
        width: 100%;
        max-width: 520px;
        margin: 40px auto 0;
    }
	
	.service-intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .service-contact-card {
        padding: 30px;
    }
	
	.about-stand-head .heading-2 {
        margin-bottom: 22px;
    }

    .about-stand-head p {
        margin-left: 0;
    }

    .about-stand-cards {
        grid-template-columns: 1fr;
    }
	
	.about-content {
        max-width: 100%;
        margin-left: 0;
        margin-top: 45px;
    }
	
	.support-signs-row .col-6 {
        width: 100%;
    }
	
	.service-area-cta-wrap {
        padding: 40px 30px;
    }

    .service-area-buttons {
        flex-wrap: wrap;
    }

    .service-areas-box {
        margin-top: 40px;
    }
	
	.blog-row .col-4 {
        width: 50%;
    }
	
	.single-blog-section .row {
        flex-direction: column;
    }
	
	.how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
    }

    .how-steps::before,
    .how-step::after {
        display: none;
    }
	
	.how-image-box img {
        height: 320px;
    }

    .how-content p {
        font-size: 17px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }
	
	.how-content {
        max-width: 100%;
        margin-left: 0;
    }
	
}

@media (max-width: 575px) {
    .breadcrumb {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .inner-banner .heading-1 {
        max-width: 100%;
    }

    .inner-banner p {
        max-width: 100%;
    }
	
	section.care-cta-section {
    	padding-top: 0;
	}
	
	.about-image-box img {
        height: 320px;
    }

    .about-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
	
	.about-stand-head {
    	margin-bottom: 22px;
	}
	
	.about-stand-card {
		padding: 20px 10px;
	}
	
	.service-area-cta-wrap {
        padding: 30px 20px;
    }
	
	.areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        min-height: auto;
    }
	
	.blog-row .col-4 {
        width: 100%;
    }
	
	.blog-card-image img {
		width: 280px;
	}
	
	.blog-sidebar {
		margin-top: 0;
	}
	
	.hero-trust strong br {
    	display: none;
	}
	
	.how-step {
    	padding: 28px 14px 24px;
    	background: #ffffff;
    	border-radius: 10px;
    	text-align: center;
    	box-shadow: 0 3px 10px rgba(0, 0, 0, .14);
    	transition: .3s ease;
	}
	
	.how-steps,
	.services-cards {
		gap: 12px;
	}
	
	.how-step p {
    	max-width: 100%;
	}
	
	.column-left-padding {
    	padding-left: 0;
	}
	
	.care-cta-box {
        padding: 30px 20px;
		min-height: unset;
    }
	
	.legal-content {
    	padding: 20px;
	}
	
	.hero-actions {
		flex-direction: column-reverse;
		align-items: flex-start;
		gap: 22px;
	}
	
	.about-feature strong br {
    	display: none;
	}
	
	.inner-banner {
		padding: 40px 0;
	}
	
	.founder-content {
    	padding-top: 40px;
	}
	
	a.btn-outline-orange {
		width: 100%;
		text-align: center;
	}
	
	.faq-answer-inner a {
		padding: 0 0 20px 25px;
	}
	
	.support-signs-row {
		margin-top: 20px;
	}
	
	.support-sign-card,
	.service-card {
		padding: 20px !important;
	}
	
	.services-cards {
		margin-top: 10px !important;
	}
	
	.how-steps {
		margin-top: 25px;
	}
	
	.page-id-189 section.care-cta-section {
    	padding-top: 0;
	}
	
	.contact-main-heading .heading-2 {
		border: 0 !important;
		position: relative;
	}

.contact-main-heading .heading-2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50px, 0px);
    width: 100px;
    height: 1px;
    background: var(--primary);
}
	
	.contact-trust strong br {
    display: none;
}
	
	.contact-info-card {
		padding: 20px !important;
	}
	
	.single-blog-section .row {
        flex-direction: column-reverse;
        gap: 40px;
    }
	
	.blog-body p:last-child {
    	margin-bottom: 0;
	}
	
	.blog-body h3 {
		font-size: 20px;
	}
	
	.single-blog-section .col-4 {
    	position: relative;
    	top: 0;
	}
	
	br {
		display: none !important;
	}
	
	.legal-content br {display: block !important;}
	
	    .service-contact-card {
        padding: 30px 20px;
    }

}


/* ==================================================
   GLOBAL HEADING RESPONSIVE
================================================== */

@media (max-width: 1199px) {
    .heading-1 { font-size: 50px; }
    .heading-2 { font-size: 46px; }
}

@media (max-width: 991px) {
    .heading-1 { font-size: 46px; }
    .heading-2 { font-size: 40px; }
    .heading-3 { font-size: 36px; }
}

@media (max-width: 575px) {
    .heading-1 { font-size: 38px; }
    .heading-2 { font-size: 32px; }
    .heading-3 { font-size: 28px; }
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
    padding: 28px 0;
    background: var(--dark);
    color: var(--white);
}

.footer-inner p {
    margin: 0;
}

.footer-call-card.landing-page-footer-call-card {
    max-height: max-content;
}

p.landing-page-cr {
    margin: 0;
    color: #777;
    font-size: 14px;
    text-align: center;
}

/* ==================================================
   FORMS
================================================== */

input,
textarea,
select {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
}

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

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .header-info {
        gap: 18px;
    }

    .header-info-item {
        font-size: 14px;
    }

    .primary-menu li {
        padding: 0 24px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .col-lg-1  { width: 8.333333%; }
    .col-lg-2  { width: 16.666667%; }
    .col-lg-3  { width: 25%; }
    .col-lg-4  { width: 33.333333%; }
    .col-lg-5  { width: 41.666667%; }
    .col-lg-6  { width: 50%; }
    .col-lg-7  { width: 58.333333%; }
    .col-lg-8  { width: 66.666667%; }
    .col-lg-9  { width: 75%; }
    .col-lg-10 { width: 83.333333%; }
    .col-lg-11 { width: 91.666667%; }
    .col-lg-12 { width: 100%; }

    .header-top {
        min-height: auto;
        padding: 24px 0;
    }

    .header-info {
        flex-wrap: wrap;
        justify-content: center;
    }

/*     .site-nav {
        margin: 0 auto -25px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 15px;
		display: none;
    } */

    .primary-menu li {
        padding: 0 20px;
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .container {
        max-width: 540px;
    }

    .col-md-1  { width: 8.333333%; }
    .col-md-2  { width: 16.666667%; }
    .col-md-3  { width: 25%; }
    .col-md-4  { width: 33.333333%; }
    .col-md-5  { width: 41.666667%; }
    .col-md-6  { width: 50%; }
    .col-md-7  { width: 58.333333%; }
    .col-md-8  { width: 66.666667%; }
    .col-md-9  { width: 75%; }
    .col-md-10 { width: 83.333333%; }
    .col-md-11 { width: 91.666667%; }
    .col-md-12 { width: 100%; }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .container {
        max-width: 100%;
    }

    [class*="col-"] {
        width: 100%;
    }

    .site-logo img {
        width: 190px;
    }

    .header-info {
        display: none;
    }

/*     .site-nav {
        min-height: 56px;
        margin-bottom: -28px;
    } */

    .primary-menu a {
        font-size: 14px;
    }

    .btn,
    .btn-primary,
    .btn-secondary,
    button,
    input[type="submit"] {
        min-height: 50px;
        padding: 0 22px;
        font-size: 14px;
		width: 100%;
    }
	
	.blog-body h2 {
		font-size: 26px;
	}
	
	.care-cta-content .heading-2 {
		max-width: 100%;
	}
	
	.footer-cta {
		width: 100%;
	}
	
}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    background: #EEF4F9;
    padding: 42px 0 28px;
    color: #111;
}

/* bottom wave pattern */
.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 195px;
    background: url('/wp-content/uploads/2026/06/site-footer-bg-scaled.webp') no-repeat left bottom;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo img {
    width: 230px;
    height: auto;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-cta > span {
    color: var(--dark);
    font-size: 20px;
    line-height: 1.4;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(7, 90, 145, 0.18);
    margin: 38px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr;
    gap: 70px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 26px;
}

span.footer-icon {
    padding-top: 5px;
}

.footer-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-address p {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
}

.footer-call-card {
    width: max-content;
    max-width: 100%;
    padding: 18px 22px;
    border-radius: 6px;
    background: transparent;
    box-shadow: 0 6px 14px rgba(0,0,0,.14);
}

.footer-call-card h3 {
    margin: 0 0 14px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-call-card a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--primary);
    font-family: var(--heading-font);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-call-card a:hover {
    text-decoration: underline;
}

.footer-call-card a span {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    background: rgba(245, 102, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-call-card a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-links h3 {
    position: relative;
    margin: 0 0 24px;
    color: #0068a8;
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
}

.footer-links h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 34px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #111;
    font-size: 16px;
    line-height: 1.35;
    transition: .25s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-view-all {
    color: var(--primary) !important;
    font-family: var(--heading-font);
    font-size: 14px !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
	transition: .25s ease;
}

a.footer-view-all:hover {
    color: #0068a8 !important;
    letter-spacing: 1.16px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal a {
    color: #111;
    font-size: 16px;
	transition: .25s ease;
	
}

.footer-legal a:hover {
    color: var(--blue);
}

.footer-legal span {
    width: 2px;
    height: 20px;
    background: var(--primary);
}

.footer-bottom p {
    margin: 0;
    color: #777;
    font-size: 14px;
    text-align: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-socials a {
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.footer-socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive */

@media (max-width: 1199px) {
    .footer-main {
        gap: 40px;
    }

    .footer-call-card a {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-legal,
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .footer-call-card a {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .footer-bottom {
        gap: 18px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }
	
	.section-padding { padding: 60px 0; }
.section-padding-top { padding-top: 60px; }
.section-padding-bottom { padding-bottom: 60px; }
	
	.site-header {
    	padding-bottom: 0;
	}
	
	.header-top {
		padding: 14px 0;
		align-items: flex-start;
	}
	
	.faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 14px;
        font-size: 15px;
    }
	
	.services-overview-box {
		height: unset !important;
		
	}
	
	section.services-overview {
    	padding-bottom: 0 !important;
	}
	
	.faq-list .faq-item:last-child {
    	margin: 0;
	}
	
	.eyebrow {
		font-size: 10px;
	}
	
	.footer-call-card {
		width: 100%;
	}
	
	.faq-list {
		margin-top: 20px;
	}
	
	button.custom-form-close {
    	width: max-content;
	}
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
	min-height: unset;
    padding: unset;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: .3s ease;
}

.mobile-menu-overlay,
.mobile-menu {
    display: none;
}

@media (max-width: 991px) {
    .site-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        display: block;
        transition: .3s ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        padding: 24px;
        display: block;
        overflow-y: auto;
        transition: .35s ease;
    }

    body.mobile-menu-open .mobile-menu {
        right: 0;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

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

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
    }

    .mobile-menu-logo img {
        width: 160px;
        height: auto;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 8px;
        background: var(--primary);
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
		min-height: unset;
		padding: unset;
    }

    .mobile-primary-menu,
    .mobile-primary-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-primary-menu > li {
        border-bottom: 1px solid rgba(0,74,124,.14);
    }

    .mobile-primary-menu a {
        display: flex;
        justify-content: space-between;
        padding: 14px 0;
        color: var(--text);
        font-family: var(--heading-font);
        font-size: 16px;
        font-weight: 600;
    }

    .mobile-primary-menu .sub-menu {
        display: none;
        padding-left: 14px;
        padding-bottom: 10px;
		margin-bottom: 20px;
    }

    .mobile-primary-menu li.submenu-open > .sub-menu {
        display: block;
		border-left: 1px solid var(--border);
    }

    .submenu-toggle {
        color: var(--primary);
        font-weight: 700;
		font-size: 26px;
    }

    .mobile-menu-cta {
        width: 100%;
        margin-top: 28px;
        justify-content: center;
    }
}