/* =========================================================
   BBSR SERVICES
   INDUSTRIAL BUILDING PLANNING
========================================================= */

.industrial-building-page {
    width: 100%;
    padding: 30px 0 60px;
    background: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
}

.industrial-building-container {
    width: 1120px;
    max-width: 94%;
    margin: 0 auto;
}


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

.industrial-building-hero {
    position: relative;
    overflow: hidden;

    margin-bottom: 42px;
    padding: 60px 45px;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #233b55 0%,
            #356b8c 50%,
            #172b40 100%
        );

    box-shadow:
        0 10px 30px rgba(35,59,85,.20);
}

.industrial-building-hero:before {
    content: "";

    position: absolute;

    width: 470px;
    height: 470px;

    right: -220px;
    top: -270px;

    border: 65px solid rgba(255,255,255,.05);

    border-radius: 50%;
}

.industrial-building-hero:after {
    content: "";

    position: absolute;

    width: 310px;
    height: 310px;

    right: 90px;
    bottom: -220px;

    background: rgba(255,255,255,.035);

    border-radius: 50%;
}

.industrial-building-hero-content {
    position: relative;
    z-index: 2;

    max-width: 930px;
}

.industrial-building-label {
    display: inline-block;

    margin-bottom: 15px;
    padding: 7px 15px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px;

    background: rgba(255,255,255,.08);

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.industrial-building-hero h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.25;
    font-weight: 700;
}

.industrial-building-hero-text {
    max-width: 900px;

    margin: 0 0 14px;

    color: rgba(255,255,255,.95);

    font-size: 16px;
    line-height: 29px;
}


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

.industrial-building-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 23px;
}

.industrial-building-btn {
    display: inline-block;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    transition: all .25s ease;
}

.industrial-building-btn i {
    margin-right: 6px;
}

.industrial-building-btn-apply {
    background: #d49a38;
    color: #ffffff !important;
}

.industrial-building-btn-apply:hover {
    background: #b77c26;
}

.industrial-building-btn-consult,
.industrial-building-btn-call {
    background: #ffffff;
    color: #233b55 !important;
}

.industrial-building-btn-consult:hover,
.industrial-building-btn-call:hover {
    background: #eeeeee;
}

.industrial-building-btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
}

.industrial-building-btn-whatsapp:hover {
    background: #1ca951;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.industrial-building-section {
    margin-bottom: 44px;
}

.industrial-building-section h2 {
    margin: 0 0 17px;

    padding-bottom: 10px;

    border-bottom: 1px solid #dce4eb;

    color: #233b55;

    font-size: 27px;
    line-height: 36px;

    font-weight: 600;
}

.industrial-building-section h3 {
    color: #356b8c;

    font-size: 17px;
    line-height: 25px;

    font-weight: 600;
}

.industrial-building-section p {
    margin: 0 0 15px;

    color: #555555;

    font-size: 15px;
    line-height: 29px;

    text-align: justify;
}


/* =========================================================
   HIGHLIGHT
========================================================= */

.industrial-building-highlight {
    margin: 25px 0;

    padding: 23px 25px;

    background: #f1f6fa;

    border-left: 4px solid #356b8c;

    border-radius: 6px;
}

.industrial-building-highlight h3 {
    margin-top: 0;
    margin-bottom: 9px;
}

.industrial-building-highlight p {
    margin-bottom: 0;
}


/* =========================================================
   FOUR GRID
========================================================= */

.industrial-building-four-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 16px;

    margin-top: 25px;
}

.industrial-building-four-grid > div {
    min-height: 170px;

    padding: 21px;

    background: #f5f8fb;

    border: 1px solid #dce5ed;

    border-radius: 7px;
}

.industrial-building-four-grid span {
    color: #d09232;

    font-size: 11px;

    font-weight: 700;
}

.industrial-building-four-grid h3 {
    margin: 7px 0 8px;
}

.industrial-building-four-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 23px;
}


/* =========================================================
   CARD GRID
========================================================= */

.industrial-building-card-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.industrial-building-card {
    min-height: 160px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #dfe6ec;

    border-radius: 7px;

    transition: all .25s ease;
}

.industrial-building-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 7px 18px rgba(35,59,85,.08);
}

.industrial-building-card span {
    color: #d09232;

    font-size: 11px;

    font-weight: 700;
}

.industrial-building-card h3 {
    margin: 7px 0 9px;
}

.industrial-building-card p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   PLANNING COMPONENTS
========================================================= */

.planning-component-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.planning-component-grid > div {
    padding: 22px;

    background: #f8fafc;

    border: 1px solid #dfe6ec;

    border-radius: 7px;
}

.planning-component-grid h3 {
    margin-top: 0;
}

.planning-component-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   PRODUCTION FLOW
========================================================= */

.production-flow {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.production-flow-step {
    padding: 23px;

    background: #ffffff;

    border: 1px solid #dfe6ec;

    border-radius: 7px;
}

.production-flow-step span {
    display: block;

    margin-bottom: 6px;

    color: #d09232;

    font-size: 11px;

    font-weight: 700;
}

.production-flow-step h3 {
    margin: 0 0 8px;
}

.production-flow-step p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   MACHINERY
========================================================= */

.machinery-integration-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.machinery-integration-grid > div {
    padding: 22px;

    background: #f7fafc;

    border: 1px solid #dfe6ec;

    border-radius: 7px;
}

.machinery-integration-grid h3 {
    margin-top: 0;
}

.machinery-integration-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   SAFETY
========================================================= */

.safety-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.safety-grid > div {
    padding: 22px;

    background: #fffaf2;

    border: 1px solid #eadfc9;

    border-radius: 7px;
}

.safety-grid h3 {
    margin-top: 0;

    color: #765824;
}

.safety-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   APPROVAL
========================================================= */

.industrial-building-approval {
    padding: 32px;

    background: #f4f8fb;

    border: 1px solid #dce5ed;

    border-radius: 10px;
}

.industrial-building-inline-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 5px;

    padding: 10px 15px;

    background: #eaf2f7;

    border: 1px solid #d2e0e8;

    border-radius: 5px;

    color: #233b55 !important;

    font-weight: 600;

    text-decoration: none !important;
}

.industrial-building-inline-link:hover {
    background: #356b8c;

    color: #ffffff !important;
}


/* =========================================================
   BUILDING APPROVAL GRID
========================================================= */

.approval-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.approval-grid > div {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #dfe6ec;

    border-radius: 7px;
}

.approval-grid h3 {
    margin-top: 0;
}

.approval-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.document-grid {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 17px;

    margin-top: 25px;
}

.document-grid > div {
    padding: 22px;

    background: #f8fafc;

    border: 1px solid #dfe6ec;

    border-radius: 7px;
}

.document-grid span {
    color: #d09232;

    font-size: 11px;

    font-weight: 700;
}

.document-grid h3 {
    margin: 7px 0 8px;
}

.document-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 24px;
}


/* =========================================================
   INDUSTRY EXAMPLES
========================================================= */

.industry-example-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 16px;

    margin-top: 25px;
}

.industry-example-grid > div {
    padding: 20px;

    background: #ffffff;

    border: 1px solid #dfe6ec;

    border-radius: 7px;
}

.industry-example-grid h3 {
    margin-top: 0;
}

.industry-example-grid p {
    margin: 0;

    font-size: 13px;

    line-height: 23px;
}


/* =========================================================
   CASE STUDY
========================================================= */

.industrial-building-case-study {
    margin: 42px 0 32px;

    padding: 40px 30px;

    background: #f1f6fa;

    border: 1px solid #dce5ed;

    border-radius: 10px;

    text-align: center;
}

.industrial-building-case-inner {
    max-width: 850px;

    margin: 0 auto;
}

.industrial-building-case-study span {
    display: inline-block;

    margin-bottom: 9px;

    color: #356b8c;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.industrial-building-case-study h2 {
    margin: 0 0 13px;

    color: #233b55;

    font-size: 28px;

    line-height: 36px;
}

.industrial-building-case-study p {
    margin: 0 0 21px;

    color: #555555;

    font-size: 14px;

    line-height: 26px;
}

.industrial-building-case-btn {
    display: inline-block;

    padding: 12px 23px;

    background: #233b55;

    border-radius: 5px;

    color: #ffffff !important;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none !important;
}

.industrial-building-case-btn:hover {
    background: #356b8c;
}

.industrial-building-case-btn i {
    margin-right: 6px;
}


/* =========================================================
   RELATED SERVICES
========================================================= */

.industrial-building-related {
    margin: 42px 0 35px;

    padding: 32px;

    background: #f7fafc;

    border: 1px solid #dfe6ec;

    border-radius: 10px;
}

.industrial-building-related h2 {
    margin: 0 0 12px;

    color: #233b55;

    font-size: 26px;

    line-height: 35px;

    font-weight: 600;
}

.industrial-building-related > p {
    margin: 0 0 24px;

    color: #555555;

    font-size: 14px;

    line-height: 26px;
}

.industrial-building-related-grid {
    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 12px 16px;
}

.industrial-building-related-link {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 52px;

    padding: 13px 17px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dfe6ec;

    border-radius: 6px;

    color: #233b55 !important;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none !important;

    transition: all .25s ease;
}

.industrial-building-related-link span {
    padding-right: 12px;
}

.industrial-building-related-link i {
    flex-shrink: 0;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #edf3f7;

    border-radius: 50%;

    color: #356b8c;

    font-size: 13px;

    transition: all .25s ease;
}

.industrial-building-related-link:hover {
    background: #f0f6fa;

    border-color: #356b8c;

    color: #356b8c !important;

    transform: translateY(-2px);

    box-shadow:
        0 5px 15px rgba(35,59,85,.08);
}

.industrial-building-related-link:hover i {
    background: #356b8c;

    color: #ffffff;

    transform: translateX(3px);
}


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

.industrial-building-faq {
    margin-bottom: 14px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid #dfe6ec;

    border-radius: 6px;
}

.industrial-building-faq h3 {
    margin: 0 0 8px;
}

.industrial-building-faq p {
    margin: 0;

    font-size: 14px;

    line-height: 26px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.industrial-building-final-cta {
    margin: 40px 0;

    padding: 43px 30px;

    background:
        linear-gradient(
            135deg,
            #233b55,
            #356b8c
        );

    border-radius: 10px;

    text-align: center;
}

.industrial-building-final-cta h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: 29px;

    line-height: 38px;
}

.industrial-building-final-cta p {
    max-width: 850px;

    margin: 0 auto 22px;

    color: rgba(255,255,255,.94);

    font-size: 15px;

    line-height: 28px;

    text-align: center;
}


/* =========================================================
   ALL SERVICES + BACK TO TOP
========================================================= */

.service-page-navigation {
    display: flex;

    justify-content: center;

    align-items: stretch;

    flex-wrap: wrap;

    gap: 16px;

    margin: 38px 0 30px;
}

.service-nav-btn {
    position: relative;

    display: flex;

    align-items: center;

    width: 230px;

    min-height: 58px;

    padding: 0 14px;

    box-sizing: border-box;

    border-radius: 8px;

    text-decoration: none !important;

    overflow: hidden;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.service-nav-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-right: 12px;

    border-radius: 7px;

    flex-shrink: 0;
}

.service-nav-text {
    flex: 1;

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    text-align: left;
}

.service-nav-arrow {
    width: 27px;
    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    flex-shrink: 0;

    transition: all .25s ease;
}


/* ALL SERVICES */

.service-all-btn {
    background: #233b55;

    border: 1px solid #233b55;

    color: #ffffff !important;

    box-shadow:
        0 5px 15px rgba(35,59,85,.10);
}

.service-all-btn .service-nav-icon {
    background: rgba(255,255,255,.12);
}

.service-all-btn .service-nav-arrow {
    background: rgba(255,255,255,.10);
}

.service-all-btn:hover {
    background: #356b8c;

    border-color: #356b8c;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 9px 22px rgba(35,59,85,.18);
}

.service-all-btn:hover .service-nav-arrow {
    background: #ffffff;

    color: #356b8c;

    transform: translateX(3px);
}


/* BACK TO TOP */

.service-top-btn {
    background: #ffffff;

    border: 1px solid #d7e0e6;

    color: #233b55 !important;

    box-shadow:
        0 4px 13px rgba(35,59,85,.06);
}

.service-top-btn .service-nav-icon,
.service-top-btn .service-nav-arrow {
    background: #edf3f7;

    color: #356b8c;
}

.service-top-btn:hover {
    background: #f5fafc;

    border-color: #356b8c;

    color: #356b8c !important;

    transform: translateY(-3px);

    box-shadow:
        0 9px 22px rgba(35,59,85,.12);
}

.service-top-btn:hover .service-nav-icon,
.service-top-btn:hover .service-nav-arrow {
    background: #356b8c;

    color: #ffffff;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.industrial-building-disclaimer {
    margin: 28px 0;

    padding: 19px 21px;

    background: #fafafa;

    border: 1px solid #e2e2e2;

    border-radius: 6px;
}

.industrial-building-disclaimer strong {
    color: #333333;

    font-size: 14px;
}

.industrial-building-disclaimer p {
    margin: 7px 0 0;

    color: #666666;

    font-size: 12px;

    line-height: 22px;
}


/* =========================================================
   MOBILE
========================================================= */

@media only screen and (max-width: 767px) {

    .industrial-building-page {
        padding: 20px 8px 40px;
    }

    .industrial-building-container {
        max-width: 100%;
    }

    .industrial-building-hero {
        padding: 33px 20px;

        border-radius: 8px;
    }

    .industrial-building-hero h1 {
        font-size: 28px;

        line-height: 37px;
    }

    .industrial-building-hero-text {
        font-size: 14px;

        line-height: 25px;

        text-align: justify;
    }

    .industrial-building-buttons {
        display: block;
    }

    .industrial-building-btn {
        display: block;

        width: 100%;

        margin-bottom: 9px;

        box-sizing: border-box;

        text-align: center;
    }

    .industrial-building-four-grid,
    .industrial-building-card-grid,
    .planning-component-grid,
    .production-flow,
    .machinery-integration-grid,
    .safety-grid,
    .approval-grid,
    .document-grid,
    .industry-example-grid {
        display: block;
    }

    .industrial-building-four-grid > div,
    .industrial-building-card,
    .planning-component-grid > div,
    .production-flow-step,
    .machinery-integration-grid > div,
    .safety-grid > div,
    .approval-grid > div,
    .document-grid > div,
    .industry-example-grid > div {
        margin-bottom: 14px;
    }

    .industrial-building-section h2 {
        font-size: 22px;

        line-height: 31px;
    }

    .industrial-building-section p {
        font-size: 14px;

        line-height: 26px;
    }

    .industrial-building-approval,
    .industrial-building-related {
        padding: 24px 18px;
    }

    .industrial-building-related-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .service-page-navigation {
        display: flex;

        flex-direction: column;

        gap: 10px;

        margin: 30px 0 25px;
    }

    .service-nav-btn {
        width: 100%;

        min-height: 56px;
    }

    .service-nav-text {
        font-size: 13px;
    }

    .industrial-building-case-study {
        padding: 30px 18px;
    }

    .industrial-building-case-study h2 {
        font-size: 23px;

        line-height: 31px;
    }

    .industrial-building-final-cta {
        padding: 30px 18px;
    }

    .industrial-building-final-cta h2 {
        font-size: 23px;

        line-height: 31px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media only screen
       and (min-width: 768px)
       and (max-width: 991px) {

    .industrial-building-container {
        width: 95%;

        max-width: 95%;
    }

    .industrial-building-hero {
        padding: 44px 30px;
    }

    .industrial-building-hero h1 {
        font-size: 34px;
    }

    .industrial-building-four-grid,
    .industrial-building-card-grid,
    .planning-component-grid,
    .production-flow,
    .machinery-integration-grid,
    .safety-grid,
    .approval-grid,
    .document-grid,
    .industry-example-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media only screen and (min-width: 1200px) {

    .industrial-building-container {
        width: 1120px;
    }

}