/* ==========================================================
   SIMPLEX FIRE & SECURITY â€” THEME OVERRIDES (CLEAN REBUILD)
   ========================================================== */

:root {
    --simplex-red: #F61D1E;
    --simplex-black: #000000;
    --simplex-white: #ffffff;
}

/* ----------------------------------------------------------
   GLOBAL RESET â€“ REMOVE ALL MENU UNDERLINES
   ---------------------------------------------------------- */

.main-navigation .menu > li > a::before,
.main-navigation .menu > li > a::after,
.main-navigation .menu > li > a > span::before,
.main-navigation .menu > li > a > span::after,
.sub-menu li a::before,
.sub-menu li a::after {
    display: none !important;
    content: none !important;
}

.main-navigation .menu > li > a,
.sub-menu li a {
    text-decoration: none !important;
}

/* ----------------------------------------------------------
   MENU COLOURS
   ---------------------------------------------------------- */

.main-navigation .menu > li > a {
    color: var(--simplex-black) !important;
    font-weight: 500;
}

.main-navigation .menu > li:hover > a,
.main-navigation .menu > li.current-menu-item > a {
    color: var(--simplex-red) !important;
}

/* Dropdown colours */
.sub-menu {
    background: var(--simplex-white) !important;
    border: 1px solid #ddd !important;
}

.sub-menu li a {
    background: var(--simplex-white) !important;
    color: var(--simplex-black) !important;
}

.sub-menu li a:hover {
    background: #f1f1f1 !important;
    color: var(--simplex-red) !important;
}

/* ----------------------------------------------------------
   TOPBAR + HEADER BASE STYLING
   ---------------------------------------------------------- */

.header-topbar.style-2 {
    background: var(--simplex-black) !important;
}

.header-topbar.style-2 a {
    color: var(--simplex-white) !important;
}

.header-topbar.style-2 .fas,
.header-topbar.style-2 .fab {
    color: var(--simplex-red) !important;
}

.octf-main-header {
    background: var(--simplex-white) !important;
    border-bottom: 1px solid #e6e6e6 !important;
}

/* ----------------------------------------------------------
   SIMPLEX â€“ COMPACT HEADER (SHRINK WHITE MENU BAR)
   ---------------------------------------------------------- */

/* Shrink padding around the menu/header area */
.octf-main-header .octf-area-wrap {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/* Force a shorter mainbar height and centre contents */
.octf-main-header .octf-mainbar,
.octf-main-header .octf-mainbar-row {
    min-height: 70px !important;        /* overall header depth */
    height: 70px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Make columns sit nicely inside the shorter bar */
.octf-main-header .octf-mainbar .octf-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Logo column + menu column â€“ no extra vertical padding */
.octf-main-header .logo-col,
.octf-main-header .menu-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Keep the logo nicely sized for the smaller bar */
.site-logo img {
    max-height: 48px !important;
    height: auto;
    width: auto;
}

/* Compact top bar as well so the two look balanced */
.header-topbar.style-2 .octf-area-wrap {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/* Mobile header compact */
.header_mobile .mlogo_wrapper {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */

.site-footer.footer-v1 {
    background: #000000 !important;
    color: #ffffff !important;
}

.site-footer.footer-v1 a {
    color: #ffffff !important;
}

.site-footer.footer-v1 a:hover {
    color: var(--simplex-red) !important;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */

.octf-btn-primary,
.btn-slider {
    background: var(--simplex-red) !important;
    border-color: var(--simplex-red) !important;
    color: var(--simplex-white) !important;
}

.octf-btn-primary:hover,
.btn-slider:hover {
    opacity: 0.85 !important;
}

/* ==========================================================
   SIMPLEX STATIC HERO (NEW SECTION)
   ========================================================== */

.simplex-hero {
    width: 100%;
    height: 550px;
    background: url("../images/slider/slide1-home1.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Dark overlay */
.simplex-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

/* Text wrapper */
.simplex-hero .container {
    position: relative;
    z-index: 10;
}

.simplex-hero-kicker {
    color: var(--simplex-white);
    font-size: 20px;
    margin-bottom: 10px;
}

.simplex-hero-title {
    color: var(--simplex-white);
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.simplex-hero-subtitle {
    color: var(--simplex-white);
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
}

/* Hero responsive */
@media (max-width: 768px) {
    .simplex-hero {
        height: 420px;
    }

    .simplex-hero-title {
        font-size: 36px;
    }

    .simplex-hero-subtitle {
        font-size: 16px;
    }
}

/* ==========================================================
   REMOVE REVOLUTION SLIDER (FULL CLEAN)
   ========================================================== */

#rev_slider_one_wrapper,
.rev_slider_wrapper,
.rev_slider,
.fullscreenbanner,
.fullscreen-container,
.rev-slidebg,
.tp-caption {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}
/* ==========================================================
   SIMPLEX â€” CORE VALUES (BLACK SECTION WITH RED ACCENTS)
   ========================================================== */

.simplex-core-values {
    background: #000000;
    padding: 80px 0;
    color: #ffffff;
}

.simplex-core-kicker {
    color: var(--simplex-red);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.simplex-core-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.simplex-core-row {
    justify-content: center;
    gap: 25px 0;
}

.simplex-core-card {
    background: #111111;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #1c1c1c;
    transition: 0.3s ease;
    height: 100%;
}

.simplex-core-card:hover {
    transform: translateY(-6px);
    border-color: var(--simplex-red);
}

.simplex-core-icon {
    font-size: 36px;
    color: var(--simplex-red);
    margin-bottom: 15px;
}

.simplex-core-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.simplex-core-card p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.4;
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
    .simplex-core-title {
        font-size: 26px;
    }

    .simplex-core-card {
        margin-bottom: 20px;
    }
}
/* ==========================================================
   FIX CORE VALUES OVERLAY ISSUE
   Ensure section has proper spacing and nothing overlaps it
   ========================================================== */
.simplex-core-values {
    background: #000000;
    padding: 80px 0 120px 0; /* <-- Extra bottom padding added */
    color: #ffffff;
    position: relative;
    z-index: 5;
}

/* Force next section to sit below it */
.simplex-core-values + section,
.simplex-core-values + div,
.simplex-core-values + .container {
    margin-top: 80px !important;
}

/* Core value cards */
.simplex-core-card {
    background: #111111;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #1c1c1c;
    transition: 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 10;
}

.simplex-core-card:hover {
    transform: translateY(-6px);
    border-color: var(--simplex-red);
}
/* ===========================
   CORE VALUES â€” POLISH & LAYOUT
   =========================== */

/* Section spacing */
.simplex-core-values {
    padding: 80px 0;
    background: #000; /* Keep your black theme */
    text-align: center;
}

/* Title spacing */
.simplex-core-title {
    color: #fff;
    margin-bottom: 45px;
    font-weight: 800;
}

.simplex-core-kicker {
    color: #F61D1E;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Flex uniform height + spacing */
.simplex-core-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Card styling */
.simplex-core-card {
    background: #111;
    padding: 28px 20px;
    border-radius: 10px;
    width: 210px;
    height: 260px; /* uniform height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.32);
    transition: all 0.25s ease;
}

/* Hover effect */
.simplex-core-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(255,0,0,0.25);
}

/* Icons */
.simplex-core-icon i {
    color: #F61D1E;
    font-size: 32px;
    margin-bottom: 15px;
}

/* Headings */
.simplex-core-card h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Text */
.simplex-core-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.5;
}

/* Fade-in animation */
.simplex-core-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.simplex-core-card:nth-child(1) { animation-delay: 0.1s; }
.simplex-core-card:nth-child(2) { animation-delay: 0.2s; }
.simplex-core-card:nth-child(3) { animation-delay: 0.3s; }
.simplex-core-card:nth-child(4) { animation-delay: 0.4s; }
.simplex-core-card:nth-child(5) { animation-delay: 0.5s; }

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

/* MOBILE FIXES */
@media (max-width: 768px) {
    .simplex-core-card {
        width: 46%;
        height: auto;
        min-height: 230px;
    }
}

@media (max-width: 480px) {
    .simplex-core-card {
        width: 90%;
    }
}
/* ============================
   SIMPLEX â€” SERVICE CARD UPGRADE
   ============================ */

.simplex-service-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.25s ease;
    height: 100%;
    border: 1px solid #f1f1f1;
    text-align: left;
}

.simplex-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
    border-color: #e0e0e0;
}

.simplex-service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.simplex-service-icon svg {
    width: 100%;
    height: 100%;
    fill: #F61D1E; /* SIMPLEX RED */
}

.simplex-service-card h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    color: #000;
}

.simplex-service-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}
/* ============================================
   SIMPLEX â€” SERVICE ICONS MATCH CORE VALUE ICONS
   ============================================ */

.simplex-service-card .icon-main,
.icon-box-s2 .icon-main,
.icon-box-s1 .icon-main {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.simplex-service-card .icon-main i,
.icon-box-s2 .icon-main i,
.icon-box-s1 .icon-main i {
    font-size: 36px;
    color: #F61D1E; /* SIMPLEX RED */
}

/* Remove purple tint from template icons */
.icon-box-s2 .icon-main span,
.icon-box-s1 .icon-main span {
    color: #F61D1E !important;
}

/* Remove background shapes that conflict */
.icon-box-s2::before,
.icon-box-s1::before {
    display: none !important;
}

/* Service card modern cleanup */
.icon-box-s2,
.icon-box-s1 {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 35px 25px;
    transition: all 0.25s ease;
}

/* Hover effect identical to Core Values */
.icon-box-s2:hover,
.icon-box-s1:hover {
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
/* ----------------------------------------------------------
   SIMPLEX CTA SECTION FIX
   ---------------------------------------------------------- */

.cta {
    position: relative;
    padding: 60px 50px !important;        /* Reduce height */
    min-height: 320px;                    /* Clean, modern CTA height */
    border-radius: 12px;                  /* Optional: subtle rounded edges */
    
    /* Background behaviour */
    background-size: contain !important;  /* Prevent stretching */
    background-repeat: no-repeat;         /* Avoid duplication */
    background-position: right center;    /* Puts image nicely on the right */
    background-color: #F61D1E;            /* Simplex red underlay */
}

/* Make sure text stays readable on red */
.cta .ot-heading span,
.cta .ot-heading h2,
.cta p {
    color: #ffffff !important;
}

/* Button inside CTA */
.cta .octf-btn {
    border-color: #fff !important;
    color: #fff !important;
}

.cta .octf-btn:hover {
    background: #ffffff !important;
    color: #F61D1E !important;
}
.cta {
    background-image: url("images/cta/bg-cta1-home1.png");
}
.cta {
    margin-bottom: 60px !important; /* space above footer */
}
/* =========================================
   PREMIUM ABOUT SECTION (FAFS / MARLOWE FEEL)
   ========================================= */

.simplex-about-premium{
    padding: 90px 0;
    background: #fff;
}

.simplex-eyebrow{
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    color: var(--simplex-red);
    margin-bottom: 10px;
}

.simplex-h2{
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 18px;
}

.simplex-lead{
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
    max-width: 560px;
}

.simplex-body{
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    max-width: 560px;
}

.simplex-metrics{
    margin-top: 22px;
    margin-bottom: 18px;
}

.simplex-metric{
    border-left: 3px solid #eee;
    padding-left: 14px;
    margin-bottom: 14px;
}

.simplex-metric__value{
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    color: #111;
}

.simplex-metric__label{
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

.simplex-accreditations{
    margin-top: 6px;
    font-size: 13px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.simplex-accreditations .dot{ color:#bbb; }

.simplex-actions{
    margin-top: 22px;
    display:flex;
    gap: 16px;
    align-items:center;
    flex-wrap: wrap;
}

.simplex-link{
    font-weight: 700;
    color: #111;
    text-decoration: none;
}

.simplex-link:hover{ color: var(--simplex-red); }

.simplex-about-media{
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.simplex-about-img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    display:block;
    filter: contrast(1.02);
}

.simplex-about-card{
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(0,0,0,.78);
    color: #fff;
    padding: 18px 18px;
    border-radius: 12px;
    max-width: 360px;
    backdrop-filter: blur(6px);
}

.simplex-about-card__title{
    font-weight: 900;
    margin-bottom: 6px;
}

.simplex-about-card__text{
    font-size: 13px;
    line-height: 1.6;
    opacity: .9;
}

@media(max-width: 991px){
    .simplex-about-img{ height: 360px; }
}
.simplex-about-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}
.simplex-about-clean {
    padding-top: 60px;
    padding-bottom: 80px;
}
.simplex-divider {
    width: 60px;
    height: 3px;
    background: var(--simplex-red);
    margin: 12px 0 24px;
}
.simplex-about-clean {
    background: #fafafa;
}
.simplex-about-image,
.simplex-about-image img {
    filter: contrast(1.08) brightness(0.92);
}
.simplex-service-breakdown {
    padding: 90px 0;
    background: #f8f9fa;
}

.simplex-service-tile {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 8px;
    height: 100%;
    border-top: 3px solid #e31e24;
    transition: all 0.25s ease;
}

.simplex-service-tile i {
    font-size: 34px;
    color: #e31e24;
    margin-bottom: 20px;
}

.simplex-service-tile h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.simplex-service-tile p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.simplex-service-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.simplex-service-breakdown .container,
.simplex-page-content .container,
section .container {
    max-width: 1140px;
}
/* ============================
   SIMPLEX — COMPLIANCE SECTION
   ============================ */

.simplex-compliance {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.simplex-compliance .simplex-h2 {
    max-width: 520px;
}

.simplex-compliance ul.list-items {
    margin-top: 10px;
}

.simplex-compliance ul.list-items li {
    padding-left: 22px;
    position: relative;
    margin-bottom: 10px;
}

.simplex-compliance ul.list-items li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--simplex-red);
    font-weight: 700;
}
/* ============================
   COMPLIANCE VISUAL UPGRADE
   ============================ */

.simplex-compliance-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.compliance-card {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

.compliance-card strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.compliance-card span {
    font-size: 14px;
    color: #666;
}
/* ============================
   TRUST STRIP
   ============================ */

.simplex-trust-strip {
    background: #f9f9f9;
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.simplex-trust-strip .trust-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.simplex-trust-strip .trust-item span {
    font-size: 14px;
    color: #666;
}

@media (max-width: 767px) {
    .simplex-trust-strip .trust-item {
        margin-bottom: 25px;
    }
}
/* =========================
   Compliance Section (Dark)
========================= */

.simplex-compliance--dark {
    background: #0f1115;
    color: #ffffff;
    position: relative;
}

/* subtle top separator so it doesn't blend into footer */
.simplex-compliance--dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

/* Headings */
.simplex-compliance--dark h2,
.simplex-compliance--dark h3 {
    color: #ffffff;
}

/* Paragraph text */
.simplex-compliance--dark p {
    color: #cfd3da;
}

/* Small red section label (COMPLIANCE) */
.simplex-compliance--dark .section-label,
.simplex-compliance--dark span {
    color: #ff2a2a;
    letter-spacing: 0.12em;
}

/* Compliance cards / boxes */
.simplex-compliance--dark .compliance-card {
    background: #171a21;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: none;
}

/* Card titles */
.simplex-compliance--dark .compliance-card h4 {
    color: #ffffff;
}

/* Card text */
.simplex-compliance--dark .compliance-card p {
    color: #bfc4cc;
}
/* Fix compliance card text contrast */
.simplex-compliance--dark .compliance-card h4 {
    color: #ffffff;
}

.simplex-compliance--dark .compliance-card span,
.simplex-compliance--dark .compliance-card p {
    color: #ff2a2a;
}
/* ================================
   Compliance – Dark Premium Styling
   ================================ */

/* Text contrast fix */
.simplex-compliance--dark .compliance-card h4 {
    color: #ffffff;
}

.simplex-compliance--dark .compliance-card span,
.simplex-compliance--dark .compliance-card p {
    color: #ff2a2a;
}

/* Premium card look */
.simplex-compliance--dark .compliance-card {
    background: linear-gradient(180deg, #171a21 0%, #12141a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle lift on hover */
.simplex-compliance--dark .compliance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
/* ================================
   Compliance – Dark Premium Styling
   ================================ */

/* Text contrast fix */
.simplex-compliance--dark .compliance-card h4 {
    color: #ffffff;
}

.simplex-compliance--dark .compliance-card span,
.simplex-compliance--dark .compliance-card p {
    color: #ff2a2a;
}

/* Premium card look */
.simplex-compliance--dark .compliance-card {
    background: linear-gradient(180deg, #171a21 0%, #12141a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Subtle lift on hover */
.simplex-compliance--dark .compliance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
/* Force text colour inside compliance cards */
.simplex-compliance--dark .compliance-card,
.simplex-compliance--dark .compliance-card * {
    color: #ffffff;
}

/* Secondary text inside cards */
.simplex-compliance--dark .compliance-card span,
.simplex-compliance--dark .compliance-card p {
    color: #ff2a2a;
}

/* If headings exist inside cards */
.simplex-compliance--dark .compliance-card h4,
.simplex-compliance--dark .compliance-card h5 {
    color: #ffffff;
}
/* Compliance cards – depth & separation */
.simplex-compliance--dark .compliance-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

/* Hover state (subtle premium lift) */
.simplex-compliance--dark .compliance-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 42, 42, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}
.simplex-compliance--dark .compliance-card h4 {
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}
.simplex-compliance--dark .compliance-card p {
    font-size: 14px;
    letter-spacing: 0.2px;
}
/* ===============================
   COMPLIANCE – PREMIUM CARD DEPTH
   =============================== */

.simplex-compliance--dark .compliance-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    transition: all 0.35s ease;
}

/* Hover = premium lift */
.simplex-compliance--dark .compliance-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 45, 45, 0.65);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.85);
}
/* Force light text inside dark compliance cards */
.simplex-compliance--dark .compliance-card h4,
.simplex-compliance--dark .compliance-card h5,
.simplex-compliance--dark .compliance-card strong {
    color: #ffffff !important;
}
.simplex-compliance--dark .compliance-card p {
    color: #ff2d2d;
    font-size: 14px;
    letter-spacing: 0.25px;
    margin: 0;
}
.simplex-compliance--dark .compliance-card h4 {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}
.simplex-compliance--dark .section-title span {
    display: inline-block;
    position: relative;
}

.simplex-compliance--dark .section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 42px;
    height: 2px;
    background: #ff2d2d;
}
.simplex-compliance {
    margin-top: -30px;
}
.simplex-compliance .compliance-card {
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.simplex-compliance .compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
/* Spacing fix: Who We Work With */
.simplex-suitable-for {
    padding-bottom: 120px;
}
/* Ensure CTA does not overlap previous section */
.simplex-cta,
.simplex-cta-section,
.simplex-red-cta {
    margin-top: 0 !important;
}
/* Fix CTA overlap on Fire Alarm Systems page */
.fire-alarm-page .mt--170 {
  margin-top: 0 !important;
}
/* Disable negative margin pulling CTA upwards */
.mt--170 {
  margin-top: 0 !important;
}
/* Mobile menu visibility fix */
@media (max-width: 991px) {
  .mobile_nav {
    display: none;
  }

  .mobile_nav.show,
  .mobile_nav.active {
    display: block;
  }
}
@media (max-width: 991px) {
  body.mmenu-active .mobile_nav {
    display: block !important;
  }
}
/* Mobile menu visibility fix */
@media (max-width: 991px) {
  .mobile_nav {
    display: block !important;
  }
}