/* =========================================================
    INDEX CSS
========================================================= */

.protective-hero {
    background: var(--primary);
    color: var(--white);
    padding: 30px 0 80px;
    overflow: hidden;
}

.protective-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 45px;
    font-size: 14px;
}

.protective-breadcrumb a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
}

.protective-breadcrumb span:last-child {
    color: #f5c400;
}

.protective-badge {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.protective-hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 800;
    margin-bottom: 28px;
    color: #fff;
}

.protective-hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.9);
}

.protective-hero-image {
    position: relative;
    text-align: center;
}

.protective-hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}


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

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--heading);
    margin-bottom: 22px;
}

.section-title span {
    color: var(--primary);
}

.section-heading p {
    color: var(--text);
    max-width: 700px;
}


/* =========================================================
   INTRO
========================================================= */

.protective-intro {
    background: #fff;
}

.protective-intro p,
.protective-feature p,
.protective-application p {
    color: var(--text);
    line-height: 1.8;
}

.protective-intro-image img,
.protective-feature-image img,
.protective-application-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.protective-links {
    background: #f8f9fa;
}

.protective-link-card {
    display: block;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    transition: .3s ease;
}

.protective-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.protective-link-image {
    height: 190px;
    overflow: hidden;
}

.protective-link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease;
}

.protective-link-card:hover .protective-link-image img {
    transform: scale(1.05);
}

.protective-link-content {
    padding: 22px;
}

.protective-link-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--heading);
}

.protective-link-content p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.protective-link-content span {
    color: var(--primary);
    font-weight: 600;
}

.protective-link-content span i {
    margin-left: 5px;
}


/* =========================================================
   FEATURE
========================================================= */

.protective-feature {
    background: #fff;
}


/* =========================================================
   PRODUCTS
========================================================= */

.protective-products {
    background: #f8f9fa;
}

.protective-product-card {
    height: 100%;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .3s ease;
}

.protective-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.protective-product-image {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 25px;
}

.protective-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.protective-product-info {
    padding: 22px;
    border-top: 1px solid var(--border);
}

.protective-product-info h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.protective-product-info p {
    color: var(--text);
    font-size: 14px;
    margin-bottom: 14px;
}

.protective-product-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.protective-product-info a i {
    margin-left: 5px;
}


/* =========================================================
   APPLICATION
========================================================= */

.protective-application {
    background: #fff;
}

.protective-application-alt {
    background: #f8f9fa;
}


/* =========================================================
   SUPPORT
========================================================= */

.protective-support {
    background: #f8f9fa;
}

.protective-support-box {
    background: var(--primary);
    border-radius: 24px;
    padding: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.protective-support-box .section-label {
    color: rgba(255,255,255,.75);
}

.protective-support-box h2 {
    color: #fff;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 15px;
}

.protective-support-box p {
    color: rgba(255,255,255,.85);
    max-width: 650px;
    margin-bottom: 0;
    line-height: 1.7;
}

.protective-support-box .btn-light {
    color: var(--primary);
    font-weight: 600;
}

.protective-support-box .btn-outline-light {
    font-weight: 600;
}


/* =========================================================
   ACCREDITATIONS
========================================================= */

.protective-accreditations {
    background: #fff;
}

.protective-accreditations img {
    max-height: 80px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(10%);
}


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

@media (max-width: 991px) {

    .protective-hero {
        padding-bottom: 60px;
    }

    .protective-hero h1 {
        font-size: 48px;
    }

    .protective-hero-image {
        margin-top: 40px;
    }

    .protective-support-box {
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 767px) {

    .protective-hero {
        padding: 20px 0 50px;
    }

    .protective-breadcrumb {
        margin-bottom: 30px;
    }

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

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

    .protective-link-image {
        height: 220px;
    }

    .protective-product-image {
        height: 260px;
    }

    .protective-support-box {
        padding: 30px 25px;
    }

    .protective-support-box h2 {
        font-size: 28px;
    }

}


/* =========================================================
    COATINGS CSS
========================================================= */

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

.protective-inner-hero {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
}

.protective-inner-hero .protective-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
    font-size: 14px;
}

.protective-inner-hero .protective-breadcrumb a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: .2s ease;
}

.protective-inner-hero .protective-breadcrumb a:hover {
    color: #fff;
}

.protective-inner-hero .protective-breadcrumb .active {
    color: #f5c400;
}

.protective-inner-hero h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 800;
    margin-bottom: 25px;
}

.protective-inner-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.9);
    font-size: 18px;
    line-height: 1.8;
}

.protective-inner-hero-image {
    width: 100%;
    text-align: center;
}

.protective-inner-hero-image img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}


/* =========================================================
   CONTENT
========================================================= */

.protective-section p {
    color: var(--text);
    line-height: 1.8;
}

.protective-content-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 22px;
}


/* =========================================================
   BENEFITS
========================================================= */

.protective-benefits {
    background: #f8f9fa;
}

.protective-section-description {
    max-width: 700px;
    line-height: 1.7;
}

.protective-benefit-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0,0,0,.05);
    transition: .3s ease;
}

.protective-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.09);
}

.protective-benefit-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0,96,175,.08);
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.protective-benefit-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.protective-benefit-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* =========================================================
   APPLICATIONS
========================================================= */

.protective-applications {
    background: #fff;
}

.protective-application-card {
    height: 100%;
    display: flex;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s ease;
}

.protective-application-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,96,175,.25);
    box-shadow: 0 12px 35px rgba(0,0,0,.07);
}

.protective-application-icon {
    flex: 0 0 55px;
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(0,96,175,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.protective-application-card h5 {
    margin-bottom: 8px;
    font-weight: 700;
}

.protective-application-card p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   COATING SYSTEM
========================================================= */

.protective-system {
    background: #f8f9fa;
}

.protective-system p {
    color: var(--text);
    line-height: 1.8;
}

.protective-system-list {
    margin-top: 25px;
    display: grid;
    gap: 13px;
}

.protective-system-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.protective-system-list i {
    color: var(--primary);
    font-size: 18px;
}

.protective-system-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 22px;
}


/* =========================================================
   PRODUCT RANGE
========================================================= */

.protective-product-range {
    background: #fff;
}

.protective-product-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: .3s ease;
}

.protective-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.protective-product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #fff;
}

.protective-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.protective-product-placeholder {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f6f8;
    color: #aaa;
    font-size: 38px;
}

.protective-product-info {
    padding: 24px;
    border-top: 1px solid var(--border);
}

.protective-product-info .product-category {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.protective-product-info h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.protective-product-info p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.protective-product-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.protective-empty-products {
    text-align: center;
    padding: 70px 30px;
    border: 1px dashed var(--border);
    border-radius: 18px;
}

.protective-empty-products > i {
    display: block;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 50px;
}

.protective-empty-products p {
    color: var(--text);
}


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

.protective-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

.protective-cta-box {
    padding: 55px;
    border-radius: 24px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.protective-cta-label {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.protective-cta h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.protective-cta p {
    max-width: 650px;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin: 0;
}

.protective-cta .btn-light {
    color: var(--primary);
    font-weight: 600;
}

.protective-cta .btn-outline-light {
    font-weight: 600;
}


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

@media (max-width: 991px) {

    .protective-inner-hero {
        padding-bottom: 60px;
    }

    .protective-inner-hero-image {
        margin-top: 20px;
    }

    .protective-content-image img,
    .protective-system-image img {
        height: 420px;
    }

    .protective-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }
}


@media (max-width: 767px) {

    .protective-inner-hero {
        padding: 20px 0 50px;
    }

    .protective-inner-hero .protective-breadcrumb {
        margin-bottom: 30px;
        font-size: 13px;
    }

    .protective-inner-hero h1 {
        font-size: 40px;
    }

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

    .protective-content-image img,
    .protective-system-image img {
        height: 300px;
    }

    .protective-application-card {
        padding: 22px;
    }

    .protective-product-image {
        height: 250px;
    }

    .protective-cta {
        padding: 50px 0;
    }

    .protective-cta-box {
        padding: 30px 25px;
    }

    .protective-cta h2 {
        font-size: 29px;
    }
}

