/* ==========================================================================
   FIBLOC — 2026 Design System & Mockup Layouts
   Matches client design mockups with pixel accuracy & mobile responsiveness
   ========================================================================== */

:root {
    --fb-bg: #07080a;
    --fb-card-bg: #0f1115;
    --fb-card-border: #1b1e26;
    --fb-card-border-hover: #2d3340;
    --fb-red: #e63946;
    --fb-red-bright: #ff3344;
    --fb-red-glow: rgba(230, 57, 70, 0.35);
    --fb-text-main: #ffffff;
    --fb-text-sub: #cbd2dc;
    --fb-text-muted: #838d9d;
    --fb-border-divider: #1d212b;
}

/* Base Mockup Page Container */
.fb-page-wrapper {
    background-color: var(--fb-bg);
    color: var(--fb-text-main);
    min-height: calc(100vh - 72px);
    padding-top: 100px; /* offset fixed header */
    padding-bottom: 50px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    box-sizing: border-box;
}

.fb-page-wrapper *,
.fb-page-wrapper *::before,
.fb-page-wrapper *::after {
    box-sizing: border-box;
}

.fb-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Page Headers */
.fb-page-title {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--fb-text-main);
    margin-bottom: 14px;
    line-height: 1.18;
}

.fb-page-subtitle {
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    color: var(--fb-text-sub);
    line-height: 1.55;
    max-width: 820px;
    margin-bottom: 34px;
    font-weight: 400;
}

/* Primary Solid Red Button */
.fb-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--fb-red);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.fb-btn-primary:hover {
    background-color: #f72c3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.45);
    color: #ffffff !important;
}

.fb-btn-primary:active {
    transform: translateY(0);
}

/* ==========================================================================
   1. FIRE DOORS PAGE (Matches Image 1 & 5)
   ========================================================================== */
.fb-firedoors-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: start;
    margin-top: 10px;
}

.fb-bullets-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
    margin-bottom: 40px;
}

.fb-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #e5eaf2;
    line-height: 1.4;
}

.fb-bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--fb-red);
    flex-shrink: 0;
    box-shadow: 0 0 6px var(--fb-red);
}

/* "How we deliver" Section */
.fb-deliver-heading {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
}

.fb-delivery-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 38px;
    border-top: 1px solid var(--fb-border-divider);
    padding-top: 24px;
}

.fb-step-col {
    position: relative;
}

.fb-step-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -10px;
    height: 80%;
    width: 1px;
    background-color: var(--fb-border-divider);
}

.fb-step-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.fb-step-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--fb-red);
}

.fb-step-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.fb-step-desc {
    font-size: 0.92rem;
    color: var(--fb-text-muted);
    line-height: 1.45;
    margin: 0;
}

/* Compact Delivery Step Cards with Arrows (Used in Fire Stopping & Fire Doors) */
.fb-steps-clean-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 28px;
    border-top: 1px solid var(--fb-border-divider);
    padding-top: 24px;
}

.fb-step-clean-card {
    background: linear-gradient(145deg, #151821 0%, #0b0d12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 22px 12px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 146px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.fb-step-clean-card:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 30, 47, 0.55);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 16px rgba(224, 30, 47, 0.2);
}

.fb-step-clean-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(224, 30, 47, 0.16) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(224, 30, 47, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-red);
    font-size: 1.95rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 12px;
}

.fb-step-clean-card:hover .fb-step-clean-icon {
    background: linear-gradient(135deg, rgba(224, 30, 47, 0.32) 0%, rgba(224, 30, 47, 0.12) 100%);
    border-color: rgba(224, 30, 47, 0.75);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(224, 30, 47, 0.45);
}

.fb-step-clean-title {
    font-size: 0.96rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Step Flow Arrow */
.fb-step-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-red);
    font-size: 1.55rem;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(224, 30, 47, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.fb-step-clean-card:hover + .fb-step-flow-arrow {
    transform: translateX(3px);
    filter: drop-shadow(0 0 12px rgba(224, 30, 47, 0.8));
}

/* Callout Bar below delivery steps */
.fb-firestop-callout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.fb-firestop-callout-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    color: var(--fb-text-muted);
    line-height: 1.35;
}

.fb-firestop-callout-box strong {
    color: #ffffff;
}

/* Visual Column Right Side */
.fb-firedoor-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    background: radial-gradient(circle at center, #151820 0%, #08090c 75%);
    border: 1px solid var(--fb-card-border);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.fb-firedoor-img {
    max-height: 460px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 6px;
    filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.8));
    transition: transform 0.3s ease;
}

.fb-firedoor-visual:hover .fb-firedoor-img {
    transform: scale(1.02);
}

/* Image switch toggles for Fire Doors */
.fb-visual-toggle {
    margin-top: 14px;
    display: inline-flex;
    background: #111317;
    border: 1px solid var(--fb-card-border);
    border-radius: 20px;
    padding: 3px;
}

.fb-toggle-btn {
    background: transparent;
    border: none;
    color: var(--fb-text-muted);
    padding: 4px 14px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fb-toggle-btn.active {
    background: var(--fb-red);
    color: #ffffff;
}

/* ==========================================================================
   2. CONTACT / REQUEST A SURVEY PAGE (Matches Image 2)
   ========================================================================== */
.fb-contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
    margin-top: 10px;
}

.fb-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 28px;
}

.fb-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.fb-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.12);
    border: 1px solid rgba(230, 57, 70, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.fb-contact-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.fb-contact-value {
    font-size: 0.98rem;
    color: var(--fb-text-sub);
    line-height: 1.45;
}

.fb-contact-value a {
    color: var(--fb-text-sub);
    text-decoration: none;
    transition: color 0.2s;
}

.fb-contact-value a:hover {
    color: #ffffff;
}

.fb-areas-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.96rem;
    color: var(--fb-text-sub);
    line-height: 1.45;
}

/* Request a Survey Card */
.fb-survey-card {
    background-color: #0b0d11;
    border: 1px solid #1c202a;
    border-radius: 12px;
    padding: 38px 42px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.fb-survey-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.fb-survey-card-sub {
    font-size: 0.95rem;
    color: var(--fb-text-muted);
    margin-bottom: 26px;
}

.fb-form-group {
    margin-bottom: 18px;
}

.fb-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 7px;
}

.fb-form-label .req {
    color: var(--fb-red);
    margin-left: 2px;
}

.fb-form-input,
.fb-form-select,
.fb-form-textarea {
    width: 100%;
    background-color: #12141a;
    border: 1px solid #232734;
    border-radius: 6px;
    color: #ffffff;
    padding: 12px 14px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.fb-form-input:focus,
.fb-form-select:focus,
.fb-form-textarea:focus {
    border-color: var(--fb-red);
    box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.2);
}

.fb-form-input::placeholder,
.fb-form-textarea::placeholder {
    color: #555e6d;
}

.fb-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23838d9d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    appearance: none;
}

/* Cloud Dropzone */
.fb-dropzone {
    border: 1px dashed #2d3342;
    background: #0f1116;
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.fb-dropzone:hover {
    border-color: var(--fb-red);
    background: #14171e;
}

.fb-dropzone-icon {
    font-size: 2rem;
    color: var(--fb-red);
    margin-bottom: 6px;
}

.fb-dropzone-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.fb-dropzone-subtitle {
    font-size: 0.8rem;
    color: var(--fb-text-muted);
}

.fb-dropzone-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.fb-form-submit-btn {
    width: 100%;
    margin-top: 14px;
    padding: 15px;
    font-size: 1.05rem;
}

/* ==========================================================================
   3. BUILDING MAINTENANCE SUPPORT (Matches Image 3)
   ========================================================================== */
.fb-bm-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 10px;
}

.fb-bm-subtitle,
.fb-bm-left .fb-page-subtitle {
    font-size: clamp(1.22rem, 1.55vw, 1.42rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.48;
    letter-spacing: -0.01em;
}

.fb-bm-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.fb-bm-card {
    background: #0c0e12;
    border: 1px solid #1c202a;
    border-radius: 8px;
    padding: 14px 6px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 132px;
    transition: all 0.25s ease;
    text-decoration: none;
    cursor: pointer;
}

.fb-bm-card:hover {
    border-color: var(--fb-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.2);
}

/* Highlighted / Active Card matching Image 3 (Strip-outs) */
.fb-bm-card.active-glow {
    border: 2px solid #ff5533 !important;
    background: #151012 !important;
    box-shadow: 0 0 20px rgba(255, 85, 51, 0.45), inset 0 0 16px rgba(255, 85, 51, 0.2) !important;
}

.fb-bm-icon {
    font-size: 2.1rem;
    color: var(--fb-red);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.4));
}

.fb-bm-card.active-glow .fb-bm-icon {
    color: #ff5533;
    filter: drop-shadow(0 0 12px rgba(255, 85, 51, 0.8));
}

.fb-bm-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #f1f5f9;
    line-height: 1.25;
    margin: 0;
}

.fb-bm-visual-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fb-bm-visual-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    max-height: 560px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--fb-card-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   4. SURVEYS & INSPECTIONS (Matches Image 4)
   ========================================================================== */
.fb-inspections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 24px;
    border-top: 1px solid var(--fb-border-divider);
    padding-top: 32px;
}

.fb-insp-col {
    position: relative;
}

.fb-insp-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -16px;
    height: 100%;
    width: 1px;
    background-color: var(--fb-border-divider);
}

.fb-insp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.28rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.fb-insp-header i {
    color: var(--fb-red);
    font-size: 1.4rem;
}

.fb-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: #e2e8f0;
}

/* Numbered work steps with dividers */
.fb-work-step {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--fb-border-divider);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.fb-work-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.fb-work-step-num {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--fb-red);
    line-height: 1;
}

.fb-work-step-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Callout badge on inspections */
.fb-callout-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--fb-border-divider);
}

.fb-callout-icon {
    font-size: 1.5rem;
    color: var(--fb-red);
    flex-shrink: 0;
}

.fb-callout-text {
    font-size: 0.94rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.fb-insp-areas {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--fb-border-divider);
}

.fb-insp-areas-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.fb-insp-areas-title i {
    color: var(--fb-red);
}

.fb-insp-areas-list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.92rem;
    color: var(--fb-text-sub);
    line-height: 1.45;
}

.fb-insp-img-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--fb-card-border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.fb-insp-img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   GLOBAL MOCKUP FOOTER STRIP
   ========================================================================== */
.fb-mockup-footer {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid var(--fb-border-divider);
    font-size: 0.92rem;
    color: var(--fb-text-sub);
}

.fb-mockup-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.fb-mockup-footer-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fb-text-sub);
    text-decoration: none;
}

.fb-mockup-footer-item i {
    color: var(--fb-red);
}

.fb-mockup-footer-item a {
    color: var(--fb-text-sub);
    text-decoration: none;
    transition: color 0.2s;
}

.fb-mockup-footer-item a:hover {
    color: #ffffff;
}

.fb-mockup-copyright {
    text-align: center;
    font-size: 0.84rem;
    color: var(--fb-text-muted);
    margin-top: 10px;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================================================== */
@media (max-width: 1200px) {
    .fb-inspections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    .fb-insp-col:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .fb-page-wrapper {
        padding-top: 80px;
    }

    .fb-firedoors-grid,
    .fb-contact-grid,
    .fb-bm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fb-delivery-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .fb-firestop-callout-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fb-step-col:not(:last-child)::after {
        display: none;
    }

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

    .fb-bm-visual-img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .fb-bullets-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fb-delivery-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fb-steps-clean-grid {
        flex-direction: column;
        gap: 8px;
    }

    .fb-step-clean-card {
        width: 100%;
        min-height: auto;
        padding: 16px 20px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 18px;
        text-align: left;
    }

    .fb-step-clean-icon {
        width: 54px;
        height: 54px;
        font-size: 1.75rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .fb-step-clean-title {
        text-align: left;
        font-size: 1.05rem;
    }

    .fb-step-flow-arrow {
        transform: rotate(90deg);
        margin: 2px 0;
        font-size: 1.35rem;
    }

    .fb-step-clean-card:hover + .fb-step-flow-arrow {
        transform: translateY(3px) rotate(90deg);
    }

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

    .fb-inspections-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .fb-survey-card {
        padding: 26px 20px;
    }

    .fb-mockup-footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fb-bm-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .fb-bm-card {
        padding: 14px 8px;
        min-height: 110px;
    }
    .fb-bm-icon {
        font-size: 1.8rem;
    }
    .fb-bm-title {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   HOMEPAGE MOCKUP LAYOUT (Matches media_1788943002801.jpg)
   ========================================================================== */
.fb-home-wrapper {
    background-color: var(--fb-bg);
    color: var(--fb-text-main);
    padding-top: 72px; /* navbar offset */
    padding-bottom: 40px;
    min-height: 100vh;
}

.fb-home-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(to right, #07080a 0%, #07080a 38%, rgba(7, 8, 10, 0.85) 55%, rgba(7, 8, 10, 0.2) 75%, rgba(7, 8, 10, 0.1) 100%),
        url('../images/hero-london-corridor.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    border-bottom: 1px solid var(--fb-border-divider);
}

.fb-home-hero-content {
    max-width: 620px;
    padding: 70px 0;
    z-index: 2;
}

.fb-home-title {
    font-size: clamp(2.6rem, 4.8vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 20px;
}

.fb-home-subtitle {
    font-size: clamp(1.08rem, 1.4vw, 1.25rem);
    color: #cbd5e1;
    line-height: 1.55;
    margin-bottom: 34px;
    max-width: 520px;
    font-weight: 400;
}

.fb-home-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fb-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid #3a4252;
    font-weight: 600;
    font-size: 1.02rem;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fb-btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
}

/* 3 Core Services Row */
.fb-home-cards-section {
    padding-top: 48px;
    padding-bottom: 20px;
}

.fb-home-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.fb-home-card {
    background-color: #0b0d11;
    border: 1px solid #1c202a;
    border-radius: 10px;
    padding: 34px 30px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fb-home-card:hover {
    border-color: var(--fb-red);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.22);
}

.fb-home-card-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--fb-red);
    margin-bottom: 20px;
    line-height: 1;
}

.fb-home-card-icon {
    margin-bottom: 24px;
    color: var(--fb-red);
    display: flex;
    align-items: center;
}

.fb-home-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.fb-home-card-desc {
    font-size: 0.96rem;
    color: var(--fb-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Full Width Bottom Banner */
.fb-home-banner {
    background-color: #0b0d11;
    border: 1px solid #1c202a;
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.fb-home-banner:hover {
    border-color: var(--fb-red);
    background-color: #0f1217;
}

.fb-home-banner-icon {
    font-size: 1.45rem;
    color: var(--fb-red);
    flex-shrink: 0;
}

.fb-home-banner-text {
    font-size: 0.98rem;
    font-weight: 500;
    color: #cbd5e1;
    margin: 0;
}

/* ==========================================================================
   MINIMALIST SLEEK FOOTER
   ========================================================================== */
.site-footer-sleek {
    background-color: #050608;
    border-top: 1px solid #151820;
    padding: 26px 0 20px;
    font-size: 0.92rem;
    color: #94a3b8;
    text-align: center;
}

.footer-sleek-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-bottom: 10px;
}

.footer-sleek-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.93rem;
}

.footer-sleek-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-sleek-item a:hover {
    color: #ffffff;
}

.footer-sleek-sep {
    color: #3f4756;
    font-size: 0.85rem;
}

.footer-sleek-bottom {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 6px;
}

.footer-sleek-legal {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-sleek-legal:hover {
    color: #94a3b8;
}

@media (max-width: 992px) {
    .fb-home-hero {
        background-position: right -60px center;
    }
    .fb-home-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .fb-home-hero {
        background-image: linear-gradient(to bottom, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.98)), url('../images/hero-london-corridor.jpg');
        background-size: cover;
        background-position: center;
    }
    .fb-home-hero-content {
        padding: 50px 0 40px;
    }
    .fb-home-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .fb-home-actions .fb-btn-primary,
    .fb-home-actions .fb-btn-secondary {
        width: 100%;
    }
    .footer-sleek-inner {
        flex-direction: column;
        gap: 10px;
    }
    .footer-sleek-sep {
        display: none;
    }
}

/* ==========================================================================
   HOMEPAGE EXACT SCREENSHOT DESIGN (media_1789742614839.jpg)
   ========================================================================== */
.fb-home-v2 {
    background-color: var(--fb-bg);
    color: var(--fb-text-main);
    padding-top: 72px;
    padding-bottom: 30px;
    min-height: 100vh;
}

.fb-hero-v2 {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(to right, #07080a 0%, #07080a 45%, rgba(7, 8, 10, 0.75) 60%, rgba(7, 8, 10, 0.2) 80%, rgba(7, 8, 10, 0.05) 100%),
        url('../images/home-hero-corridor.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
}

.fb-hero-v2-content {
    max-width: 660px;
    padding: 60px 0 50px;
    z-index: 2;
}

.fb-hero-v2-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 18px;
}

.fb-hero-v2-title .text-red {
    color: var(--fb-red);
}

.fb-hero-v2-sub {
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 560px;
}

.fb-hero-v2-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fb-btn-red-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--fb-red);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
}

.fb-btn-red-arrow:hover {
    background-color: #f72c3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(230, 57, 70, 0.5);
}

.fb-btn-outline-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fb-btn-outline-arrow:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* 3 Core Featured Cards with Red Outline */
.fb-core-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0 44px;
}

.fb-core-card-v2 {
    background-color: #090b0e;
    border: 1.5px solid rgba(230, 57, 70, 0.7);
    border-radius: 12px;
    padding: 24px 20px 22px 22px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.fb-core-card-v2:hover {
    border-color: #ff3344;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(230, 57, 70, 0.35);
}

.fb-core-badge-v2 {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--fb-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
}

.fb-core-icon-v2 {
    margin-top: 18px;
    color: var(--fb-red);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-core-body-v2 {
    margin-top: 8px;
}

.fb-core-title-v2 {
    font-size: 1.22rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.fb-core-desc-v2 {
    font-size: 0.88rem;
    color: #9aa2af;
    line-height: 1.48;
    margin: 0;
}

/* Building Maintenance Section (2 rows of 6 cols) */
.fb-bm-section-title {
    font-size: 1.95rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 22px;
}

.fb-bm-grid-12 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}

.fb-bm-tile-v2 {
    background-color: #0b0d11;
    border: 1px solid #1a1e27;
    border-radius: 8px;
    padding: 14px 6px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 126px;
    text-decoration: none !important;
    transition: all 0.22s ease;
}

.fb-bm-tile-v2:hover {
    border-color: var(--fb-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(230, 57, 70, 0.25);
    background-color: #0f1217;
}

.fb-bm-tile-icon-v2 {
    color: var(--fb-red);
    font-size: 1.8rem;
    margin-bottom: 8px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 6px rgba(230, 57, 70, 0.35));
}

.fb-bm-tile-title-v2 {
    color: #e2e8f0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
}

/* Responsive adjustments for Home Page v2 */
@media (max-width: 1200px) {
    .fb-bm-grid-12 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .fb-hero-v2 {
        background-position: right -70px center;
    }
    .fb-core-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .fb-bm-grid-12 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fb-hero-v2 {
        background-image: linear-gradient(to bottom, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.98)), url('../images/home-hero-corridor.jpg');
        background-size: cover;
    }
    .fb-hero-v2-content {
        padding: 40px 0 30px;
    }
    .fb-hero-v2-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .fb-btn-red-arrow,
    .fb-btn-outline-arrow {
        width: 100%;
        justify-content: center;
    }
    .fb-bm-grid-12 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ==========================================================================
   7. ABOUT PAGE (Matches about-mockup.jpg exactly)
   ========================================================================== */
.fb-about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
    margin-top: 10px;
}

.fb-about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.fb-about-lead {
    font-size: 1.12rem;
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 20px;
}

.fb-red-divider {
    width: 44px;
    height: 3px;
    background-color: var(--fb-red);
    margin-bottom: 24px;
}

.fb-about-section-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.fb-about-text {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}

.fb-about-tagline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 6px;
}

.fb-about-subtag {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 24px;
}

/* 4 Delivery Pillars Row */
.fb-about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.fb-about-pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 6px;
}

.fb-about-pillar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 6px;
    right: -6px;
    height: 80%;
    width: 1px;
    background-color: var(--fb-border-divider);
}

.fb-about-pillar-icon {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.fb-about-pillar-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
    line-height: 1.35;
}

/* Right Column Cards */
.fb-about-corridor-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
    border: 1px solid #1a202c;
    margin-bottom: 18px;
}

.fb-about-corridor-box img {
    width: 100%;
    height: auto;
    max-height: 190px;
    object-fit: cover;
    display: block;
}

.fb-about-card {
    background: #0b0e14;
    border: 1px solid #1a222e;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 18px;
}

.fb-about-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.fb-about-liability-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.02rem;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.fb-about-liability-val {
    color: #ffffff;
    font-weight: 600;
}

.fb-about-card-desc {
    font-size: 1.02rem;
    color: #94a3b8;
    margin-bottom: 14px;
    line-height: 1.4;
}

.fb-btn-red-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--fb-red);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-top: 10px;
}

.fb-btn-red-action:hover {
    background-color: #f72c3d;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
    color: #ffffff !important;
}

/* Accreditations Dashed Grid */
.fb-accred-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.fb-accred-box {
    border: 1px dashed #2d3748;
    border-radius: 6px;
    padding: 16px 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
}

.fb-accred-box-text {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.35;
    margin: 0;
}

/* Industries We Serve Section (Matches image cards) */
.fb-about-industries {
    margin-top: 24px;
}

.fb-industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.fb-industry-card {
    background: #000000;
    border: 1px solid #1a222e;
    border-radius: 8px;
    padding: 20px 8px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
    min-height: 156px;
    position: relative;
}

.fb-industry-card:hover {
    border-color: var(--fb-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 30, 47, 0.35);
}

.fb-industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fb-red, #e01e2f);
    margin-bottom: 14px;
    transition: transform 0.25s ease;
}

.fb-industry-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.fb-industry-card:hover .fb-industry-icon {
    transform: scale(1.08);
}

.fb-industry-title {
    font-size: 0.84rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-top: auto;
    letter-spacing: -0.2px;
}

.fb-industry-underline {
    width: 32px;
    height: 2px;
    background-color: var(--fb-red, #e01e2f);
    margin-top: 6px;
    border-radius: 1px;
}

/* Responsive adjustments for About Page */
@media (max-width: 992px) {
    .fb-about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .fb-about-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .fb-about-pillar-item::after {
        display: none;
    }
    .fb-industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .fb-about-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .fb-accred-boxes {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .fb-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .fb-industry-card:last-child {
        grid-column: span 2;
        max-width: 220px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ==========================================================================
   8. MOBILE DRAWER SCROLL FIX (Prevents menu freeze on mobile devices)
   ========================================================================== */
.mobile-menu {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    overscroll-behavior-y: contain;
}

body.mobile-menu-open,
html.mobile-menu-open {
    overflow: hidden !important;
}


