﻿/* ========================================================= PIHM MESSAGE PAGE Fully isolated from Kingster / GDLR Core CSS ========================================================= */

.pihm-message-page {
    width: 100%;
    overflow: hidden;
}
/* ========================================================= HERO / MESSAGE HEADER ========================================================= */

.pihm-message-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient( 135deg, #192f59 0%, #233f70 55%, #17294b 100% );
}
    /* ========================================================= DECORATIVE CIRCLES ========================================================= */

    .pihm-message-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(239, 127, 27, 0.10);
        top: -180px;
        right: -100px;
        pointer-events: none;
    }

    .pihm-message-hero::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        bottom: -170px;
        left: -80px;
        pointer-events: none;
    }
/* ========================================================= HERO INNER ========================================================= */

.pihm-message-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 75px 30px;
    text-align: center;
}
/* ========================================================= EYEBROW ========================================================= */

.pihm-message-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #ef7f1b;
    font-family: Poppins, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* ========================================================= MAIN HEADING ========================================================= */

.pihm-message-hero h1 {
    margin: 0 0 18px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: "Playfair Display", serif !important;
    font-size: clamp(38px, 5vw, 68px) !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    letter-spacing: normal;
    text-transform: none !important;
}
    /* ========================================================= ORANGE HEADING PART ========================================================= */

    .pihm-message-hero h1 span {
        color: #ef7f1b !important;
        font-family: "Playfair Display", serif !important;
    }
/* ========================================================= DESCRIPTION ========================================================= */

.pihm-message-hero-description {
    max-width: 760px;
    margin: 0 auto 35px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    font-family: Poppins, sans-serif;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-weight: 400;
    font-style: normal;
}
/* ========================================================= MESSAGE HIGHLIGHTS ========================================================= */

.pihm-message-highlights {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}
/* ========================================================= HIGHLIGHT PILL ========================================================= */

.pihm-message-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 500;
}
    /* ========================================================= HIGHLIGHT ICON ========================================================= */

    .pihm-message-highlight i {
        color: #ef7f1b;
    }
/* ========================================================= MESSAGE CONTENT SECTION ========================================================= */

.pihm-message-content {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 30px;
}
/* ========================================================= MESSAGE CARD ========================================================= */

.pihm-message-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    border: 1px solid #edf0f5;
}
    /* ========================================================= MESSAGE TITLE ========================================================= */

    .pihm-message-card h2 {
        margin: 0 0 20px !important;
        color: #192f59 !important;
        font-family: "Playfair Display", serif !important;
        font-size: 34px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
    }
    /* ========================================================= MESSAGE TEXT ========================================================= */

    .pihm-message-card p {
        margin: 0 0 18px !important;
        color: #666666 !important;
        font-family: Poppins, sans-serif;
        font-size: 15px !important;
        line-height: 1.8 !important;
    }
/* ========================================================= TABLET ========================================================= */

@media (max-width: 991px) {
    .pihm-message-hero {
        min-height: 390px;
    }

    .pihm-message-hero-inner {
        padding: 65px 25px;
    }

    .pihm-message-hero h1 {
        font-size: 46px !important;
    }

    .pihm-message-hero-description {
        max-width: 680px;
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .pihm-message-content {
        padding: 55px 25px;
    }

    .pihm-message-card {
        padding: 35px;
    }
}
/* ========================================================= MOBILE ========================================================= */

@media (max-width: 767px) {
    .pihm-message-hero {
        min-height: auto;
    }

    .pihm-message-hero-inner {
        padding: 60px 18px 55px;
    }

    .pihm-message-eyebrow {
        margin-bottom: 15px;
        padding: 7px 14px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .pihm-message-hero h1 {
        margin-bottom: 16px !important;
        font-size: 36px !important;
        line-height: 1.18 !important;
        letter-spacing: normal;
    }

    .pihm-message-hero-description {
        margin-bottom: 25px !important;
        padding: 0 5px;
        font-size: 14px !important;
        line-height: 1.7 !important;
    }
    /* Message Highlights */

    .pihm-message-highlights {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-top: 28px;
    }

    .pihm-message-highlight {
        width: 100%;
        max-width: 290px;
        justify-content: center;
        min-height: 45px;
        padding: 9px 14px;
        font-size: 13px;
    }
    /* Message Content */

    .pihm-message-content {
        padding: 40px 15px;
    }

    .pihm-message-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

        .pihm-message-card h2 {
            font-size: 28px !important;
            line-height: 1.3 !important;
        }

        .pihm-message-card p {
            font-size: 14px !important;
            line-height: 1.75 !important;
        }
}
/* ========================================================= SMALL MOBILE ========================================================= */

@media (max-width: 480px) {
    .pihm-message-hero-inner {
        padding: 50px 15px 45px;
    }

    .pihm-message-hero h1 {
        font-size: 31px !important;
    }

    .pihm-message-hero-description {
        font-size: 13.5px !important;
    }

    .pihm-message-highlight {
        max-width: 270px;
        font-size: 12.5px;
    }

    .pihm-message-content {
        padding: 30px 12px;
    }

    .pihm-message-card {
        padding: 25px 17px;
    }

        .pihm-message-card h2 {
            font-size: 25px !important;
        }

        .pihm-message-card p {
            font-size: 13.5px !important;
        }
}
/* ========================================================= EXTRA SMALL DEVICES ========================================================= */

@media (max-width: 360px) {
    .pihm-message-hero h1 {
        font-size: 28px !important;
    }

    .pihm-message-card {
        padding: 22px 15px;
    }

        .pihm-message-card h2 {
            font-size: 23px !important;
        }
}
