/* ===============================
   CSS Boilerplate - Base Styles
   =============================== */

:root {
    --black: #000000;
    --white: #ffffff;
    --dark-charcoal: #1F1E1E;
    --light-grey: #575A7B;
    --light-grey-2: #f7f9fb;
    --dark-purple: #0D033D;
    --light-yellow: #FAB83A;
    --dark-grey: #3f444b;
    --dark-blue: #3F4860;
    --light-yellow-transparent: #FCAF170F;
    --light-purple-transparent: #3F48600F;
}

/* 1. Box Sizing Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

/* 3. Set core body defaults */
body {
    font-family: "Manrope", sans-serif;
}

/* 4. List style reset */
ul,
ol {
    list-style: none;
}

/* 5. Anchor default styles */
a {
    color: inherit;
    text-decoration: none;
}

/* 6. Image and media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 7. Form elements inherit font */
input,
button,
textarea,
select {
    font: inherit;
}

/* 8. Remove button borders & default styles */
button {
    border: none;
    background: none;
    cursor: pointer;
}

/*BG*/
.bg-white {
    background-color: #ffffff;
}

.bg-dark-charcoal {
    background-color: var(--dark-charcoal);
}

.bg-black {
    background-color: var(--black);
}

.bg-light-grey {
    background-color: var(--light-grey);
}

.bg-light-grey-2 {
    background-color: var(--light-grey-2);
}

.bg-dark-purple {
    background-color: var(--dark-purple);
}

.bg-light-yellow {
    background-color: var(--light-yellow);
}

.bg-dark-grey {
    background-color: var(--dark-grey);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.bg-light-yellow-transparent {
    background-color: var(--light-yellow-transparent);
}

.bg-light-purple-transparent {
    background-color: var(--light-purple-transparent);
}

/*COLOR*/
.color-white {
    color: #ffffff;
}

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

.color-black {
    color: var(--black);
}

.color-light-grey {
    color: var(--light-grey);
}

.color-light-grey-2 {
    color: var(--light-grey-2);
}

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

.color-light-yellow {
    color: var(--light-yellow);
}

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

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

.color-light-yellow-transparent {
    color: var(--light-yellow-transparent);
}

.color-light-purple-transparent {
    color: var(--light-purple-transparent);
}

/*Hover*/
.opacity-hover:hover {
    opacity: 0.8;
}

.bg-white-hover:hover {
    background-color: #ffffff;
}

.bg-dark-charcoal-hover:hover {
    background-color: var(--dark-charcoal);
}

.bg-black-hover:hover {
    background-color: var(--black);
}

.bg-light-grey-hover:hover {
    background-color: var(--light-grey);
}

.bg-light-grey-2-hover:hover {
    background-color: var(--light-grey-2);
}

.bg-dark-purple-hover:hover {
    background-color: var(--dark-purple);
}

.bg-light-yellow-hover:hover {
    background-color: var(--light-yellow);
}

.bg-dark-grey-hover:hover {
    background-color: var(--dark-grey);
}

.bg-dark-blue-hover:hover {
    background-color: var(--dark-blue);
}

.bg-light-yellow-transparent-hover:hover {
    background-color: var(--light-yellow-transparent);
}

.bg-light-purple-transparent-hover:hover {
    background-color: var(--light-purple-transparent);
}

.color-white-hover:hover {
    color: #ffffff;
}

.color-dark-charcoal-hover:hover {
    color: var(--dark-charcoal);
}

.color-black-hover:hover {
    color: var(--black);
}

.color-light-grey-hover:hover {
    color: var(--light-grey);
}

.color-light-grey-2-hover:hover {
    color: var(--light-grey-2);
}

.color-dark-purple-hover:hover {
    color: var(--dark-purple);
}

.color-light-yellow-hover:hover {
    color: var(--light-yellow);
}

.color-dark-grey-hover:hover {
    color: var(--dark-grey);
}

.color-dark-blue-hover:hover {
    color: var(--dark-blue);
}

.color-light-yellow-transparent-hover:hover {
    color: var(--light-yellow-transparent);
}

.color-light-purple-transparent-hover:hover {
    color: var(--light-purple-transparent);
}

/*Border*/
.border-white {
    border-color: var(--white);
    border-width: 1px;
    border-style: solid;
}

.border-dark-charcoal {
    border-color: var(--dark-charcoal);
    border-width: 1px;
    border-style: solid;
}

.border-black {
    border-color: var(--black);
    border-width: 1px;
    border-style: solid;
}

.border-light-grey {
    border-color: var(--light-grey);
    border-width: 1px;
    border-style: solid;
}

.border-light-grey-2 {
    border-color: var(--light-grey-2);
    border-width: 1px;
    border-style: solid;
}

.border-dark-purple {
    border-color: var(--dark-purple);
    border-width: 1px;
    border-style: solid;
}

.border-light-yellow {
    border-color: var(--light-yellow);
    border-width: 1px;
    border-style: solid;
}

.border-dark-grey {
    border-color: var(--light-grey);
    border-width: 1px;
    border-style: solid;
}

.border-dark-blue {
    border-color: var(--dark-blue);
    border-width: 1px;
    border-style: solid;
}

.border-light-yellow-transparent {
    border-color: var(--light-yellow-transparent);
    border-width: 1px;
    border-style: solid;
}

.border-light-purple-transparent {
    border-color: var(--light-purple-transparent);
    border-width: 1px;
    border-style: solid;
}

@media (min-width: 1600px) {

    .container,
    .container-xxl {
        max-width: 1600px;
    }
}

.gap-w-20 {
    width: 20px;
    flex-shrink: 0;
    padding: 0;
}

.btn-login-css {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

.btn-login-css:hover {
    color: var(--white);
}

.cstm-btn-css {
    border-radius: 10px;
    padding: 20px;
    font-size: 15px;
    transition: all 0.25s ease-in-out;
}

/*Main Nav*/
.main-nav {
    width: 100%;
}

.main-nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.main-nav-item {
    position: relative;
}

.main-nav-item>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    color: var(--dark-charcoal);
    font-size: 16px;
    line-height: 1.2;
    padding: 14px 20px;
    transition: color 0.2s ease-in-out;
}

.main-nav-item>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--dark-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-in-out;
}

.main-nav-item>a:hover {
    color: var(--light-grey);
}

.main-nav-item:hover>a::after {
    transform: scaleX(1);
}

.main-nav-item>a.active {
    color: var(--light-grey);
}

.main-nav-item>a.active::after {
    transform: scaleX(1);
}

.submenu a.active {
    background-color: var(--dark-grey);
    color: #ffffff;
}

.main-nav-item.has-dropdown>a i {
    font-size: 16px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 320px;
    background-color: #ffffff;
    border-top: 3px solid var(--dark-purple);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.submenu li a {
    display: block;
    font-size: 14px;
    color: var(--dark-charcoal);
    padding: 14px 18px;
    border-bottom: 1px solid #e4e4e4;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.submenu li:last-child a {
    border-bottom: 0;
}

.submenu li a:hover {
    background-color: var(--dark-grey);
    color: #ffffff;
}

.main-nav-item.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-icon {
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    height: 4px;
    background-color: var(--dark-purple);
    border-radius: 2px;
}

.offcanvas-body ul li a {
    color: var(--dark-charcoal);
    display: flex;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px;
}

.offcanvas-body ul li a:hover {
    color: var(--light-grey);
}

.offcanvas-body>ul>li>a {
    justify-content: space-between;
}

.offcanvas-body .active > a {
    background-color: var(--dark-grey);
    color: #ffffff;
}

.offcanvas-body .active > a:hover {
    color: #ffffff;
}

.offcanvas-body>ul>li:last-child>a {
    border-bottom: 0;
}

.offcanvas-body .dropdown-icon-area i {
    transition: transform 0.3s ease;
}

.offcanvas-body .revert-c .dropdown-icon-area i {
    transform: rotate(180deg);
}

.offcanvas-body ul .sub-menu-c {
    display: none;
}

.offcanvas-body ul .sub-menu-c.show-c {
    display: block;
}

.offcanvas-body ul .sub-menu {
    font-size: 13px;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 670px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.42);
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    padding: 40px 0;
}

.hero-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 26px;
}

.hero-rating-row img {
    max-height: 46px;
    width: auto;
    object-fit: contain;
}

.hero-content-wrap h1 {
    font-size: 115px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content-wrap h1 span {
    display: block;
}

.hero-content-wrap p {
    max-width: 780px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    min-width: 265px;
    padding: 14px 26px;
    border-radius: 10px;
    background-color: var(--dark-purple);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.2s ease-in-out;
}

.hero-cta-btn:hover {
    color: var(--white);
    opacity: 0.9;
}

.about-hero-section {
    min-height: 460px;
    align-items: center;
}

.about-hero-section .hero-overlay {
    background-color: rgba(0, 0, 0, 0.52);
}

.about-hero-section .hero-content-wrap {
    padding: 90px 0 60px;
}

.about-hero-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero-breadcrumb i {
    font-size: 12px;
    margin: 0 4px;
}

.about-hero-section .hero-content-wrap h1 {
    font-size: 115px;
    margin-bottom: 14px;
}

.about-hero-section .hero-content-wrap h1.fire-safety-hero-title {
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Generic compact hero title — use on h1 inside .about-hero-section .hero-content-wrap for long headings */
.about-hero-section .hero-content-wrap h1.page-hero-title {
    font-size: 75px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Fire Safety / Security — service card grids */
.fire-safety-services-section,
.security-services-section {
    padding: 4rem 0 4.5rem;
    background-color: #ffffff;
}

.fra-help-section .fra-help-head {
    margin-bottom: 2.5rem;
}

.fra-help-section .fra-help-head .section-title {
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.fra-help-section .fra-help-head .section-subtitle {
    color: var(--dark-grey);
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
    font-size: 17px;
}

.fra-help-card .fire-safety-service-card__text {
    margin-bottom: 0;
}

.fra-cost-areas-section .fra-prose-block+.fra-prose-block {
    margin-top: 2.5rem;
}

.fra-cost-areas-section .fra-prose-title {
    color: var(--dark-charcoal);
    font-size: 50px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.4px;
    margin: 0 0 0.85rem;
}

.fra-cost-areas-section .fra-prose-text {
    margin: 0;
    color: var(--dark-charcoal);
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .fra-cost-areas-section .fra-prose-title {
        font-size: 34px;
        line-height: 1.18;
    }

    .fra-cost-areas-section .fra-prose-text {
        font-size: 16px;
    }

    .fra-cost-areas-section .fra-prose-block+.fra-prose-block {
        margin-top: 2rem;
    }
}

.fire-safety-service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #faf7f0;
    border-radius: 12px;
    padding: 2rem 1.5rem 1.75rem;
}

.fire-safety-service-card__icon {
    color: var(--light-yellow);
    font-size: 2.75rem;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.fire-safety-service-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0 0 0.85rem;
    line-height: 1.3;
}

.fire-safety-service-card__text {
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-grey);
    margin: 0 0 1.35rem;
    max-width: 26rem;
}

.fire-safety-service-card__btn.cstm-btn-css {
    min-width: 148px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

@media (max-width: 991px) {

    .fire-safety-services-section,
    .security-services-section {
        padding: 3rem 0 3.5rem;
    }
}

@media (max-width: 767px) {

    .fire-safety-services-section,
    .security-services-section {
        padding: 2.5rem 0 3rem;
    }

    .fire-safety-service-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .fire-safety-service-card__icon {
        font-size: 2.25rem;
    }

    .fire-safety-service-card__text {
        font-size: 15px;
    }
}

.about-cta-strip-section {
    position: relative;
    z-index: 3;
}

.about-cta-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-cta-strip--trust {
    grid-template-columns: repeat(3, 1fr);
}

.about-cta-strip--trust .about-cta-strip-item:nth-child(2) {
    background-color: #343a4f;
}

.about-cta-strip-item {
    min-height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.2s ease-in-out;
}

.about-cta-strip-item i {
    font-size: 22px;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 500px;
    }

    .hero-content-wrap h1 {
        font-size: 54px;
    }

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

    .about-hero-section {
        min-height: 360px;
    }

    .about-hero-section .hero-content-wrap {
        padding: 70px 0 50px;
    }

    .about-hero-section .hero-content-wrap h1 {
        font-size: 52px;
    }

    .about-hero-section .hero-content-wrap h1.page-hero-title {
        font-size: 34px;
    }

    .about-cta-strip-item {
        font-size: 18px;
        min-height: 74px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 430px;
    }

    .hero-rating-row {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 18px;
    }

    .hero-rating-row img {
        max-height: 36px;
    }

    .hero-content-wrap h1 {
        font-size: 38px;
    }

    .hero-content-wrap p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-cta-btn {
        min-height: 50px;
        min-width: 235px;
        font-size: 14px;
    }

    .about-hero-section .hero-content-wrap {
        padding: 54px 0 36px;
    }

    .about-hero-breadcrumb {
        font-size: 13px;
    }

    .about-hero-section .hero-content-wrap h1 {
        font-size: 40px;
    }

    .about-hero-section .hero-content-wrap h1.page-hero-title {
        font-size: 26px;
    }

    .about-cta-strip {
        grid-template-columns: 1fr;
    }

    .about-cta-strip-item {
        min-height: 64px;
        font-size: 16px;
    }

    .about-cta-strip-item+.about-cta-strip-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
    }
}

.ready-reliable-content-wrap {
    max-width: 1230px;
    margin: 0 auto;
}

.section-head {
    margin: 0 auto 36px;
}

.section-title {
    font-size: 55px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 0;
}

.ready-reliable-section {
    background-color: #ffffff;
}

.clients-notice-section {
    background-color: #ffffff;
}

.ready-reliable-head h2 {
    color: var(--dark-charcoal);
}

.clients-notice-head h2 {
    color: var(--dark-charcoal);
}

.ready-reliable-head p {
    color: var(--dark-grey);
}

.clients-notice-head p {
    color: var(--dark-grey);
}

.about-notice-section p {
    line-height: 1.5;
}

.about-values-head {
    margin-bottom: 30px;
}

.about-values-head .section-title {
    color: var(--dark-charcoal);
    margin-bottom: 20px;
}

.about-values-divider {
    width: 78px;
    height: 2px;
    background-color: var(--dark-purple);
    display: block;
}

.about-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-value-content h3 {
    color: var(--dark-charcoal);
    font-size: 23px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-value-content p {
    color: var(--dark-charcoal);
    margin-bottom: 0;
    line-height: 1.5;
}

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

.about-faq-title {
    font-size: 55px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
}

.about-faq-intro {
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-grey);
    margin-bottom: 0;
}

.about-faq-accordion .accordion-item {
    border: 0;
    background: transparent;
    margin-bottom: 14px;
}

.about-faq-accordion .accordion-item:first-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.about-faq-accordion .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 10px;
}

.about-faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.about-faq-accordion .accordion-header {
    margin-bottom: 0;
}

.about-faq-accordion .accordion-button {
    background-color: var(--light-grey-2);
    box-shadow: none;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    color: var(--black);
    padding: 1.15rem 1.35rem;
    text-align: left;
}

.about-faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--light-grey-2);
    color: var(--black);
    box-shadow: none;
    border-radius: 10px 10px 0 0;
}

/* Thin chevron (down / up); overrides Bootstrap SVG + blue open state */
.about-faq-accordion .accordion-button::after,
.about-faq-accordion .accordion-button:not(.collapsed)::after {
    flex-shrink: 0;
    width: 0.45rem;
    height: 0.45rem;
    margin-left: auto;
    content: "";
    background-image: none;
    border: 0;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    background-repeat: no-repeat;
    background-size: 0;
    transform-origin: 75% 75%;
    transition: transform 0.2s ease;
}

.about-faq-accordion .accordion-button.collapsed::after {
    transform: rotate(45deg);
}

.about-faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
}

.about-faq-accordion .accordion-collapse {
    border: 0;
}

.about-faq-accordion .accordion-body {
    background-color: var(--white);
    padding: 1rem 1.35rem 1.35rem;
    color: var(--dark-charcoal);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}

.about-faq-accordion .accordion-body p {
    margin-bottom: 0;
}

.about-faq-accordion .accordion-button.collapsed {
    border-radius: 10px;
}

/* Single card: gray header + white answer */
.about-faq-accordion .accordion-item:has(.accordion-collapse.show) {
    border-radius: 10px;
    overflow: hidden;
}

.about-faq-accordion .accordion-collapse.show .accordion-body {
    border-radius: 0;
    box-shadow: none;
}

.about-expert-cta-section {
    position: relative;
    color: var(--white);
    padding: 70px 0 64px;
    overflow: hidden;
}

.about-expert-cta-section::before,
.about-expert-cta-background {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    pointer-events: none;
    opacity: 0.2;
}

.about-expert-cta-section .container {
    position: relative;
    z-index: 1;
}

.about-expert-cta-inner {
    margin-inline: auto;
}

.about-expert-cta-heading {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.15rem;
    letter-spacing: -0.4px;
}

.about-expert-cta-lead {
    font-size: clamp(16px, 1.9vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.75rem;
}

/* Fire risk assessments: bottom CTA with photo + overlay */
.about-expert-cta-section.fra-fire-cta-section {
    background-color: #12151c;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.about-expert-cta-section.fra-fire-cta-section::before,
.about-expert-cta-section.fra-maint-cta-section::before {
    background-image: none;
    background-color: rgba(10, 12, 20, 0.58);
    opacity: 1;
    background-size: auto;
    background-position: center;
    z-index: 1;
}

/* Maintenance CTA: Elementor-like fixed bg (viewport-locked inside overflow clip) + pyramid top */
.about-expert-cta-section.fra-maint-cta-section {
    --fra-cta-shape-h: clamp(52px, 9vw, 88px);
    background-color: #12151c;
    background-image: none;
    /* Extra top space so the divider sits above the heading (shape is position:absolute, out of flow) */
    padding-top: max(70px, calc(3rem + var(--fra-cta-shape-h)));
}

.fra-cta-shape-divider-bottom {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    pointer-events: none;
}

.about-expert-cta-section.fra-maint-cta-section .container {
    position: relative;
    z-index: 3;
}

.fra-cta-shape-divider-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    height: var(--fra-cta-shape-h);
    line-height: 0;
    pointer-events: none;
}

.fra-cta-shape-divider-top svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .about-expert-cta-section.fra-maint-cta-section::after {
        background-attachment: scroll;
    }
}

@media (hover: none) and (pointer: coarse) {
    .about-expert-cta-section.fra-maint-cta-section::after {
        background-attachment: scroll;
    }
}

@media (max-width: 991px) {
    .about-expert-cta-section {
        padding: 56px 0;
    }

    .about-expert-cta-section::before {
        background-size: 70%;
    }

    .about-expert-cta-section.fra-fire-cta-section::before,
    .about-expert-cta-section.fra-maint-cta-section::before {
        background-size: auto;
    }

    .about-expert-cta-section.fra-maint-cta-section {
        padding-top: max(56px, calc(2.5rem + var(--fra-cta-shape-h)));
        padding-bottom: 56px;
    }
}

@media (max-width: 767px) {
    .about-expert-cta-section {
        padding: 44px 0;
    }

    .about-expert-cta-section::before {
        background-size: 95%;
    }

    .about-expert-cta-section.fra-fire-cta-section::before,
    .about-expert-cta-section.fra-maint-cta-section::before {
        background-size: auto;
    }

    .about-expert-cta-section.fra-maint-cta-section {
        padding-top: max(44px, calc(2rem + var(--fra-cta-shape-h)));
        padding-bottom: 44px;
    }
}

.ready-reliable-image-wrap {
    border-radius: 14px;
    overflow: hidden;
}

.ready-reliable-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ready-point-item:first-child {
    padding-top: 0;
}

.ready-point-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #e7e7e7;
}

.ready-point-item:last-child {
    border-bottom: none;
}

.ready-point-icon {
    width: 78px;
    height: 78px;
    min-width: 78px;
    border-radius: 14px;
    background-color: var(--dark-purple);
    color: var(--light-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.ready-point-content h3 {
    color: var(--dark-charcoal);
    font-size: 23px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 600;
}

.ready-point-content p {
    color: var(--dark-grey);
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 50px;
    }

    .about-faq-title {
        font-size: 50px;
    }

    .ready-point-content h3 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 40px;
    }

    .about-faq-title {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .ready-reliable-image-wrap img {
        min-height: 420px;
    }

    .ready-point-content h3 {
        font-size: 30px;
    }

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

    .about-value-content h3 {
        font-size: 30px;
    }

    .about-values-section .col-lg-6:nth-child(2n) .about-value-item {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .section-head {
        margin-bottom: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-faq-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .ready-reliable-image-wrap img {
        min-height: 280px;
    }

    .ready-point-item {
        gap: 12px;
        padding: 18px 0;
    }

    .ready-point-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        border-radius: 10px;
        font-size: 24px;
    }

    .ready-point-content h3 {
        font-size: 24px;
    }

    .ready-point-content p {
        font-size: 14px;
    }

    .about-values-head {
        margin-bottom: 20px;
    }

    .about-value-content h3 {
        font-size: 26px;
    }
}

.fra-clients-section {
    background-color: #ffffff;
    padding: 3.5rem 0 4rem;
}

.fra-clients-title {
    color: var(--dark-charcoal);
    text-align: left;
    margin-bottom: 1rem;
    font-size: 50px;
    line-height: 1.08;
    letter-spacing: -0.4px;
}

.fra-clients-intro {
    margin: 0;
    color: var(--dark-grey);
    font-size: 17px;
    line-height: 1.55;
}

.fra-clients-swiper-wrap {
    min-width: 0;
}

.fra-clients-swiper-wrap .client-logos-swiper {
    overflow: hidden;
}

/* Split column: slides are narrow — cap logo width to slide so Swiper does not clip */
.fra-clients-split-swiper .swiper-slide {
    box-sizing: border-box;
    padding-left: 8px;
    padding-right: 8px;
}

.fra-clients-swiper-wrap .fra-clients-split-swiper img {
    display: block;
    width: auto;
    height: auto;
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {
    .fra-clients-section {
        padding: 2.5rem 0 3rem;
    }

    .fra-clients-title {
        font-size: 34px;
        line-height: 1.18;
    }

    .fra-clients-intro {
        font-size: 16px;
        max-width: none;
    }

    .fra-clients-copy {
        padding-right: 0;
    }

    .fra-clients-swiper-wrap .fra-clients-split-swiper img {
        max-height: 48px;
        max-width: 100%;
    }
}

.client-logos-section {
    background-color: #f6f0e8;
    padding: 26px 0;
}

.client-logos-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.client-logos-swiper img {
    max-height: 56px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
    filter: grayscale(0);
    opacity: 0.98;
}

@media (max-width: 767px) {
    .client-logos-section {
        padding: 18px 0;
    }

    .client-logos-swiper img {
        max-height: 44px;
        max-width: 150px;
    }
}

.protection-section {
    position: relative;
    background-color: #2f3a5f;
    padding: 70px 0 64px;
    overflow: hidden;
}

.protection-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/bg/background-graphic-v2-scaled.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.2;
    pointer-events: none;
}

.protection-section .container {
    position: relative;
    z-index: 1;
}

.protection-head {
    color: var(--white);
}

.protection-head h2 {
    line-height: 1.08;
}

.protection-head p {
    color: rgba(255, 255, 255, 0.9);
}

.protection-card {
    color: var(--white);
    padding: 8px 16px;
}

.protection-icon-wrap {
    color: var(--light-yellow);
    font-size: 60px;
    line-height: 1;
    margin-bottom: 14px;
}

.protection-card h3 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 500;
}

.protection-card p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 440px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.9);
}

.protection-card .cstm-btn-css {
    min-width: 162px;
    padding: 12px 26px;
    font-size: 14px;
    border-radius: 8px;
}

@media (max-width: 1199px) {
    .protection-card h3 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .protection-section {
        padding: 56px 0;
    }

    .protection-section::before {
        background-size: 70%;
    }

    .protection-card h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .protection-section {
        padding: 44px 0;
    }

    .protection-section::before {
        background-size: 95%;
    }

    .protection-icon-wrap {
        font-size: 44px;
    }

    .protection-card h3 {
        font-size: 24px;
    }

    .protection-card p {
        font-size: 14px;
    }
}

/* Fire risk assessments: importance + contact split */
.fra-why-section {
    background-color: var(--white);
}

.fra-why-title.section-title {
    color: var(--dark-charcoal);
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.fra-why-lead {
    color: var(--dark-grey);
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 540px;
}

.fra-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.fra-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark-charcoal);
    font-size: 16px;
    line-height: 1.45;
}

.fra-check-list li i {
    color: var(--dark-purple);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
}

.fra-accreditation-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 32px;
}

.fra-accreditation-logos img {
    height: 65px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.fra-contact-card {
    border-radius: 4px;
    padding: 36px 32px 40px;
}

.fra-contact-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 12px;
    text-align: left;
}

.fra-contact-card>p {
    color: var(--dark-grey);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 22px;
}

.fra-contact-form.contact-enquiry-form {
    margin-left: 0;
    max-width: 100%;
}

.fra-contact-form.contact-enquiry-form .row {
    margin-bottom: 0;
}

.error-msg,
.success-msg {
    margin: 10px 0;
}

.error-msg p,
.success-msg p {
    margin-bottom: 0;
    font-size: 14px;
}

.error-msg p {
    background: #d63637;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
}

.success-msg p {
    background: #15c54b;
    padding: 10px;
    border-radius: 3px;
    color: #fff;
}

.g-recaptcha {
    display: flex;
    align-content: center;
    justify-content: center;
}

/* Maintenance: long-form + sticky contact column (Elementor-style rhythm) */
.fra-maint-content-section {
    background-color: var(--white);
}

.fra-maint-long-form>p {
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.fra-maint-long-form h2.fra-wp-heading {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0 0 1rem;
    letter-spacing: -0.3px;
}

/* UAGB-style icon list (circle + arrow) */
.fra-uagb-icon-list {
    margin: 0 0 0.5rem;
}

.fra-uagb-icon-list__wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fra-uagb-icon-list-child {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fra-uagb-icon-list__source-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--light-yellow);
}

.fra-uagb-list-svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: var(--light-yellow);
}

.fra-uagb-icon-list__label {
    color: var(--dark-charcoal);
    font-size: 16px;
    line-height: 1.45;
}

.uagb-ifb-content .uagb-ifb-left-title-image svg {
    width: 30px;
    line-height: 30px;
    font-size: 30px;
    color: var(--dark-charcoal);
    fill: var(--dark-charcoal);
}

/* Maintenance process timeline */
.fra-maint-process {
    --fra-timeline-progress: 0%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 6px 0 6px 64px;
}

.fra-maint-process::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background-color: var(--light-yellow);
}

.fra-maint-process::after {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 4px;
    height: var(--fra-timeline-progress);
    max-height: 100%;
    background-color: var(--dark-charcoal);
    transition: height 0.2s linear;
}

.fra-maint-process__item {
    position: relative;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fra-maint-process__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fra-maint-process__item:nth-child(2) {
    transition-delay: 0.08s;
}

.fra-maint-process__item:nth-child(3) {
    transition-delay: 0.16s;
}

.fra-maint-process__item:nth-child(4) {
    transition-delay: 0.24s;
}

.fra-maint-process__item:nth-child(5) {
    transition-delay: 0.32s;
}

.fra-maint-process__dot {
    position: absolute;
    left: -64px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-charcoal);
    border: 0;
    box-shadow: none;
    z-index: 2;
}

.fra-maint-process__dot::before {
    content: none;
}

.fra-maint-process__card {
    background-color: #fffdf8;
    border: 1px solid #f3ede0;
    padding: 16px 20px;
    border-radius: 0;
}

.fra-maint-process__card h3 {
    margin: 0 0 6px;
    font-size: 23px;
    line-height: 1.12;
    font-weight: 600;
    color: var(--dark-charcoal);
}

.fra-maint-process__card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.28;
    color: var(--dark-charcoal);
}

/* Client logos carousel (inline with article, Elementor-like spacing) */
.fra-maint-logos-swiper-wrap {
    min-width: 0;
    margin: 0.5rem 0 0;
}

.fra-maint-logos-swiper {
    overflow: hidden;
}

.fra-maint-logos-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    box-sizing: border-box;
}

.fra-maint-logos-swiper .swiper-slide img {
    display: block;
    width: auto;
    height: auto;
    max-height: 56px;
    max-width: 100%;
    object-fit: contain;
}

/* ElementsKit-style icon boxes (contact row) */
.fra-maint-contact-ekit-row {
    margin-top: 0.5rem;
}

.fra-ekit-infobox-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.fra-ekit-infobox-link:hover .fra-ekit-infobox-title,
.fra-ekit-infobox-link:hover p {
    color: var(--dark-charcoal);
}

.fra-ekit-infobox {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
}

.fra-ekit-infobox-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background-color: var(--dark-purple);
    color: var(--light-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.fra-ekit-infobox-body {
    min-width: 0;
}

.fra-ekit-infobox-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin: 0 0 6px;
    line-height: 1.25;
}

.fra-ekit-infobox-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--dark-grey);
}

.fra-ekit-infobox-body p a {
    color: inherit;
    text-decoration: none;
}

.fra-ekit-infobox-body p a:hover {
    text-decoration: underline;
}

.fra-sticky-sidebar {
    position: sticky;
    top: 1.25rem;
}

@media (max-width: 767px) {
    .fra-sticky-sidebar {
        position: static;
    }

    .fra-maint-logos-swiper .swiper-slide img {
        max-height: 48px;
    }

    .fra-accreditation-logos img {
        height: 40px;
        max-width: 130px;
    }

    .fra-contact-card {
        padding: 28px 22px 32px;
    }
}

/* Fire risk assessments: book CTA (striped navy panel + image) */
.fra-book-cta-section.fra-assess-section {
    background-color: #1c2544;
}

.fra-book-cta-panel {
    position: relative;
    background-color: #1c2544;
    overflow: hidden;
}

.fra-book-cta-inner {
    position: relative;
    z-index: 1;
}

.fra-book-cta-intro {
    margin-bottom: 1.25rem;
}

.fra-book-cta-p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.55;
}

.fra-book-cta-p strong {
    color: var(--white);
    font-weight: 700;
}

/* Fire risk assessments: what we assess (image + panel; uses .protection-section bg + ::before) */
.fra-assess-split {
    overflow: hidden;
    border-radius: 0;
}

.fra-assess-media {
    padding: 0;
}

.fra-assess-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.fra-assess-panel {
    padding: 40px;
    color: var(--white);
}

.fra-assess-title {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: var(--white);
    margin-bottom: 14px;
}

.fra-assess-intro {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 26px;
}

.fra-assess-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fra-assess-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--light-yellow);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
}

.fra-assess-list li:last-child {
    margin-bottom: 0;
}

.fra-assess-bullet {
    flex-shrink: 0;
    font-size: 20px;
    border-radius: 50%;
    color: var(--light-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

@media (min-width: 992px) {
    .fra-assess-media {
        min-height: 100%;
    }

    .fra-assess-img {
        min-height: 420px;
    }
}

@media (max-width: 991px) {
    .fra-assess-panel {
        padding: 36px 28px 40px;
    }

    .fra-assess-list li {
        font-size: 16px;
    }
}

.contact-enquiry-section {
    padding: 0 !important;
}

.contact-enquiry-wrap {
    margin: 0 auto;
    overflow: hidden;
    background-color: #f0ebdd;
}

.contact-form-col {
    position: relative;
    background-color: var(--dark-purple);
    border-top-left-radius: 180px;
    border-bottom-left-radius: 180px;
    overflow: hidden;
}

.contact-details-panel {
    background-color: #f0ebdd;
    padding: 48px 52px 46px;
}

.contact-details-panel h2 {
    margin-bottom: 10px;
    color: var(--dark-charcoal);
    font-size: 55px;
    line-height: 1.05;
    letter-spacing: -0.4px;
    font-weight: 600;
}

.contact-details-panel>p {
    max-width: 420px;
    color: var(--dark-charcoal);
    margin-bottom: 26px;
    line-height: 1.25;
    font-size: 25px;
    font-weight: 500;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-charcoal);
    text-decoration: none;
    margin-bottom: 50px;
}

.icon-badge,
.contact-info-icon {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--dark-purple);
    color: var(--light-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex: 0 0 48px;
}

.contact-info-text {
    display: grid;
    gap: 3px;
}

.contact-info-text strong {
    font-size: 23px;
    line-height: 1.04;
    font-weight: 500;
}

.contact-info-text small {
    font-size: 20px;
    line-height: 1.3;
    color: var(--dark-charcoal);
}

.contact-form-panel {
    background-color: transparent;
    color: var(--white);
    padding: 48px 56px 46px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.contact-form-panel h3 {
    color: var(--white);
    text-align: right;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.1;
    position: relative;
    z-index: 3;
}

.contact-form-panel>p {
    text-align: right;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    font-size: 16px;
    position: relative;
    z-index: 3;
}

.contact-enquiry-form {
    margin: 0;
    display: grid;
    gap: 20px;
    max-width: 620px;
    margin-left: auto;
    position: relative;
    z-index: 3;
}

.contact-enquiry-form input,
.contact-enquiry-form textarea {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 3px;
    background-color: #f3f3f3;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
    color: #636363;
}

.contact-enquiry-form textarea {
    min-height: 110px;
    resize: none;
}

.contact-enquiry-form input::placeholder,
.contact-enquiry-form textarea::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

.contact-enquiry-form input:focus,
.contact-enquiry-form textarea:focus {
    outline: none;
    border-color: #fab83a;
    box-shadow: 0 0 0 1px rgba(250, 184, 58, 0.35);
}

/* Reusable: black field borders + white backgrounds (add class to any form wrapper) */
.fpfire-form-fields-bordered input,
.fpfire-form-fields-bordered textarea,
.fpfire-form-fields-bordered select {
    border: 1px solid #000000;
    background-color: #ffffff;
}

/* Contact page variant (matches lighter split-layout design) */
.contact-page-enquiry .contact-enquiry-wrap {
    background-color: #ffffff;
}

.contact-page-enquiry .contact-enquiry-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: var(--white);
    z-index: 0;
}

.contact-page-enquiry .contact-details-panel,
.contact-page-enquiry .contact-form-panel {
    background-color: #ffffff;
    color: var(--dark-charcoal);
    padding: 44px 42px;
    position: relative;
    z-index: 1;
}

.contact-page-enquiry .contact-form-col {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
}

.contact-page-enquiry .contact-details-panel h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.contact-page-enquiry .contact-details-panel>p {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
    margin-bottom: 28px;
}

.contact-page-enquiry .contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-page-enquiry .contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0;
    font-size: 20px;
    border-radius: 8px;
}

.contact-page-enquiry .contact-info-text strong {
    font-size: 23px;
    line-height: 1.1;
    font-weight: 500;
}

.contact-page-enquiry .contact-info-text small {
    font-size: 16px;
    line-height: 1.4;
}

.contact-page-enquiry .contact-form-panel h3 {
    text-align: right;
    color: var(--dark-charcoal);
    margin-bottom: 18px;
    font-size: 25px;
    font-weight: 500;
}

.contact-page-enquiry .contact-form-panel>p {
    display: none;
}

.contact-page-enquiry .contact-enquiry-form {
    max-width: 100%;
    gap: 14px;
}

@media (max-width: 991px) {

    .contact-page-enquiry .contact-enquiry-wrap::before,
    .contact-page-enquiry .contact-enquiry-wrap::after {
        width: min(44%, 220px);
    }

    .contact-page-enquiry .contact-details-panel,
    .contact-page-enquiry .contact-form-panel {
        padding: 32px 24px;
    }

    .contact-page-enquiry .contact-form-panel {
        border-left: 0;
        border-top: 1px solid #efefef;
    }
}

@media (max-width: 767px) {
    .contact-page-enquiry .contact-form-panel h3 {
        font-size: 32px;
    }

    .contact-page-enquiry .contact-info-text strong {
        font-size: 21px;
    }
}

@media (max-width: 1199px) {
    .contact-details-panel h2 {
        font-size: 42px;
    }

    .contact-details-panel>p {
        font-size: 19px;
    }

    .contact-info-text strong {
        font-size: 28px;
    }

    .contact-info-text small {
        font-size: 15px;
    }
}

@media (max-width: 991px) {

    .contact-details-panel,
    .contact-form-panel {
        padding: 36px 28px;
    }

    .contact-form-col {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .contact-details-panel h2 {
        font-size: 36px;
    }

    .contact-details-panel>p {
        font-size: 17px;
    }

    .contact-info-text strong {
        font-size: 25px;
    }

    .contact-info-text small {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .contact-details-panel,
    .contact-form-panel {
        padding: 30px 18px;
    }

    .contact-details-panel h2 {
        font-size: 31px;
    }

    .contact-details-panel>p {
        font-size: 15px;
    }

    .contact-info-text strong {
        font-size: 22px;
    }

    .contact-info-text small {
        font-size: 14px;
    }

    .contact-form-panel>p {
        font-size: 14px;
    }
}

.footer-section {
    background-color: #FCFBFB;
    padding: 40px 0 0 0;
}

.footer-links-col h4 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--dark-purple);
}

.footer-links-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-links-col li:last-child {
    margin-bottom: 0;
}

.footer-links-col a {
    color: var(--dark-charcoal);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
    transition: opacity 0.2s ease;
}

.footer-links-col a:hover,
.footer-links-col a.active {
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .footer-links-col h4 {
        font-size: 22px;
    }

    .footer-links-col a {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .footer-section {
        padding: 46px 0 14px;
    }

    .footer-links-col {
        margin-bottom: 26px;
    }
}

.footer-accreditations {
    margin-top: 40px;
    padding-top: 40px;
}

.footer-logos-wrap {
    gap: 30px;
}

.footer-logos-wrap img {
    max-height: 76px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .footer-accreditations {
        margin-top: 14px;
        padding-top: 20px;
    }

    .footer-logos-wrap {
        gap: 20px;
    }

    .footer-logos-wrap img {
        max-height: 62px;
    }
}

.footer-bottom-bar {
    margin-top: 40px;
    background-color: #545674;
    padding: 20px 0;
}

.footer-bottom-wrap p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
}

.footer-bottom-links a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 400;
}

.footer-bottom-links ul {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-links li {
    display: inline-flex;
    align-items: center;
}

/* Pipe between items (was a+a::before when links were direct children) */
.footer-bottom-links li+li::before {
    content: "";
    width: 1px;
    height: 16px;
    margin: -2px 10px -2px 0;
    background-color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    align-self: center;
}

.footer-bottom-links a:hover {
    opacity: 0.85;
}

.footer-bottom-links a.active {
    opacity: 0.85;
}

/* Privacy policy — legal page layout (reference: fpfire.co.uk style) */
.privacy-policy-section {
    color: #3a3d42;
    font-size: 17px;
    line-height: 1.7;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.privacy-policy-divider {
    display: block;
    width: 56px;
    height: 2px;
    background-color: var(--dark-purple);
    margin-bottom: 1.5rem;
}

.privacy-policy-page-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--dark-purple);
    margin-bottom: 1.35rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.privacy-policy-content h2 {
    margin-bottom: 20px;
}

.privacy-policy-content p {
    margin-bottom: 1.35rem;
}

.privacy-policy-content a {
    color: var(--dark-purple);
}

.privacy-policy-content a:hover {
    color: var(--light-grey);
}

/* Global reset sets ol { list-style: none; padding: 0 } — restore markers for legal copy */
.privacy-policy-content ol {
    list-style-type: decimal;
    padding-left: 1.75rem;
    margin: 0 0 1.35rem;
}

.privacy-policy-content ol ol {
    list-style-type: lower-alpha;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
}

.privacy-policy-content ol ol ol {
    list-style-type: lower-roman;
}

.privacy-policy-content ol ol ol ol {
    list-style-type: decimal;
}

.privacy-policy-content ol li {
    display: list-item;
}

.privacy-policy-content ol li::marker {
    color: #3a3d42;
}

.privacy-policy-heading {
    font-size: 35px;
    font-weight: 500;
    color: var(--dark-charcoal);
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.privacy-policy-heading:first-of-type {
    margin-top: 2.25rem;
}

.privacy-policy-subheading {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111111;
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
}

.privacy-policy-list {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0 0 1.35rem;
}

.privacy-policy-list li {
    margin-bottom: 0.45rem;
    padding-left: 0.2rem;
}

.privacy-policy-list li::marker {
    color: #111111;
}

.privacy-policy-list--decimal {
    list-style: decimal;
    padding-left: 1.5rem;
}

.privacy-policy-list--decimal>li::marker {
    color: #111111;
}

.privacy-policy-list--lower-alpha {
    list-style: lower-alpha;
    padding-left: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.privacy-policy-list--lower-alpha>li {
    margin-bottom: 0.4rem;
}

.privacy-policy-list--lower-roman {
    list-style: lower-roman;
    padding-left: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.privacy-policy-content .privacy-policy-list--decimal .privacy-policy-list--decimal,
.privacy-policy-content .privacy-policy-list--decimal .privacy-policy-list--lower-alpha {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-link {
    color: #0b57d0;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.privacy-policy-link:hover {
    color: #0842a0;
}

.privacy-policy-quote {
    border-left: 3px solid #d8dce3;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    margin: 0 0 1.35rem;
    background-color: #f4f5f7;
}

.privacy-policy-quote p {
    margin-bottom: 0;
    font-style: italic;
    color: #3a3d42;
}

.privacy-policy-table-wrap {
    margin-bottom: 1.75rem;
    border-radius: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.privacy-policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.5;
    color: #2b2e33;
    border: none;
    vertical-align: top;
}

.privacy-policy-table thead th {
    background-color: #e9ecef;
    color: #111111;
    font-weight: 700;
    text-align: left;
    padding: 0.7rem 0.85rem;
    border: none;
    border-bottom: 1px solid #cfd4dc;
}

.privacy-policy-table tbody td {
    padding: 0.65rem 0.85rem;
    border: none;
    border-bottom: 1px solid #e4e7ec;
    vertical-align: top;
}

.privacy-policy-table tbody tr {
    background-color: #ffffff;
}

.privacy-policy-table tbody tr:nth-child(even) {
    background-color: #f7f8fa;
}

.blog-listing-section .row {
    row-gap: 2rem;
}

.blog-card-thumb {
    margin-bottom: 0.9rem !important;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f4f4f4;
}

.blog-card-thumb img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-title {
    margin: 0 0 0.2rem;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.blog-card-title a {
    color: var(--light-yellow);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #d89c28;
}

.blog-card-date {
    margin-bottom: 0.2rem;
    font-size: 16px;
    line-height: 1.4;
    color: #adadad;
}

.blog-card-link {
    font-size: 16px;
    text-decoration: none;
    color: var(--dark-blue);
}

.blog-card-link:hover {
    color: var(--light-grey);
}

.blog-pagination a:hover {
    color: var(--light-grey);
}