/* =========================
   Messages Section
========================= */

.messages-section {
    width: 100%;
    padding: 0 30px 40px;
    box-sizing: border-box;
}

.messages-title {
    margin-bottom: 38px;
}

.messages-title h2 {
    margin: 0;
    color: #0d3265;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.messages-title span {
    display: block;
    width: 90px;
    height: 4px;
    margin-top: 22px;
    background: #84b241;
}


/* =========================
   Message Card
========================= */

.message-card {
    width: 100%;
    min-height: 370px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 44px;
    box-sizing: border-box;

    background: #fff;
    border-radius: 22px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}


/* =========================
   Profile
========================= */

.message-profile {
    flex: 0 0 315px;
    width: 315px;
}

.profile-image {
    width: 100%;
    height: 215px;
    overflow: hidden;

    border: 4px solid #84b241;
    border-radius: 17px;
    box-sizing: border-box;
}

.profile-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.profile-name {
    margin-top: 11px;
    padding: 7px 10px 9px;

    text-align: center;
    background: #84b241;
    border-radius: 16px;

    color: #1b1b1b;
    font-size: 20px;
    line-height: 1.3;
}

.profile-name strong {
    display: block;
    margin-top: 4px;

    color: #fff;
    font-size: 20px;
    font-weight: 700;
}


/* =========================
   Message Content
========================= */

.message-content {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 0 5px;
}

.message-content p {
    margin: 0 0 35px;

    color: #294b7a;
    font-size: 19px;
    line-height: 1.9;
    font-weight: 400;
}

.quote {
    position: absolute;

    color: #84b241;
    font-family: Georgia, serif;
    font-size: 75px;
    font-weight: 700;
    line-height: 0.7;
}

.quote-left {
    top: -10px;
    left: 0;
}

.quote-right {
    right: 0;
    bottom: -8px;
}


/* =========================
   Read More Button
========================= */

.read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    min-width: 188px;
    height: 60px;
    padding: 0 25px;

    box-sizing: border-box;

    border: 2px solid #84b241;
    border-radius: 32px;

    color: #84b241;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.read-more span {
    font-size: 27px;
    line-height: 1;
}

.read-more:hover {
    background: #84b241;
    color: #fff;
}


/* =========================
   Tablet
========================= */

@media (max-width: 992px) {

    .messages-section {
        padding: 0 20px 35px;
    }

    .messages-title h2 {
        font-size: 40px;
    }

    .message-card {
        padding: 30px;
        gap: 30px;
    }

    .message-profile {
        flex: 0 0 260px;
        width: 260px;
    }

    .profile-image {
        height: 190px;
    }

    .profile-name {
        font-size: 18px;
    }

    .profile-name strong {
        font-size: 18px;
    }

    .message-content p {
        font-size: 17px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .quote {
        font-size: 65px;
    }
}


/* =========================
   Mobile
========================= */

@media (max-width: 767px) {

    .messages-section {
        padding: 0 15px 30px;
    }

    .messages-title {
        margin-bottom: 25px;
    }

    .messages-title h2 {
        font-size: 32px;
    }

    .messages-title span {
        width: 65px;
        height: 3px;
        margin-top: 14px;
    }

    .message-card {
        min-height: auto;
        padding: 22px 18px 28px;

        flex-direction: column;
        align-items: stretch;
        gap: 25px;

        border-radius: 16px;
    }

    /* Profile becomes full width */
    .message-profile {
        flex: none;
        width: 100%;
    }

    .profile-image {
        width: 100%;
        height: 230px;
        border-radius: 14px;
    }

    .profile-name {
        margin-top: 8px;
        padding: 7px 10px 9px;
        border-radius: 13px;

        font-size: 18px;
    }

    .profile-name strong {
        font-size: 17px;
    }

    /* Message */
    .message-content {
        width: 100%;
        padding: 10px 4px 0;
    }

    .message-content p {
        margin: 0 0 25px;

        font-size: 16px;
        line-height: 1.75;
        text-align: left;
    }

    .quote {
        font-size: 55px;
    }

    .quote-left {
        top: -5px;
        left: -2px;
    }

    .quote-right {
        right: -2px;
        bottom: -5px;
    }

    /* Button */
    .read-more {
        min-width: 160px;
        width: auto;
        height: 50px;
        padding: 0 20px;

        font-size: 15px;
    }

    .read-more span {
        font-size: 22px;
    }
}


/* =========================
   Small Mobile
========================= */

@media (max-width: 480px) {

    .messages-title h2 {
        font-size: 28px;
    }

    .message-card {
        padding: 16px 14px 24px;
        gap: 20px;
    }

    .profile-image {
        height: 200px;
    }

    .profile-name {
        font-size: 16px;
    }

    .profile-name strong {
        font-size: 16px;
    }

    .message-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .quote {
        font-size: 48px;
    }

    .read-more {
        width: 100%;
    }
}


/* =====================================
   DIRECTOR MESSAGE SECTION
===================================== */

.director-section {
    width: 100%;
    padding: 80px 30px;
    background: #f7faf9;
    box-sizing: border-box;
}

.director-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 70px;
    align-items: center;
}


/* =====================================
   DIRECTOR IMAGE
===================================== */

.director-image {
    width: 100%;
}

.image-frame {
    width: 100%;
    height: 420px;

    padding: 8px;
    background: #84b241;
    border-radius: 25px;

    box-sizing: border-box;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;

    border-radius: 19px;
}

.director-info {
    width: 90%;
    margin: -5px auto 0;
    padding: 13px 15px;

    position: relative;

    text-align: center;
    background: #84b241;

    border-radius: 15px;
    box-sizing: border-box;
}

.director-info h3 {
    margin: 0;

    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.director-info p {
    margin: 4px 0 0;

    color: #ffffff;
    font-size: 14px;
}


/* =====================================
   CONTENT
===================================== */

.director-content {
    position: relative;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 10px;

    color: #84b241;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-content h2 {
    max-width: 700px;
    margin: 0;

    color: #0d3265;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.title-line {
    width: 75px;
    height: 4px;

    margin: 20px 0 28px;

    background: #84b241;
    border-radius: 10px;
}

.director-content p {
    margin: 0 0 18px;

    color: #294b7a;
    font-size: 17px;
    line-height: 1.8;
}

.director-closing {
    margin-top: 25px !important;
    color: #0d3265 !important;
}

.director-closing strong {
    color: #84b241;
}


/* =====================================
   SIGNATURE
===================================== */

.director-signature {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
}

.director-signature strong {
    color: #0d3265;
    font-size: 20px;
}

.director-signature span {
    margin-top: 4px;

    color: #777;
    font-size: 14px;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 992px) {

    .director-section {
        padding: 60px 25px;
    }

    .director-container {
        grid-template-columns: 290px 1fr;
        gap: 40px;
    }

    .image-frame {
        height: 360px;
    }

    .director-content h2 {
        font-size: 34px;
    }

    .director-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .director-section {
        padding: 45px 15px;
    }

    .director-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .director-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .image-frame {
        height: 360px;
        border-radius: 20px;
    }

    .director-info {
        width: 92%;
    }

    .director-content h2 {
        font-size: 30px;
        line-height: 1.25;
    }

    .title-line {
        margin: 16px 0 22px;
    }

    .director-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .section-subtitle {
        font-size: 14px;
    }
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .director-section {
        padding: 35px 12px;
    }

    .image-frame {
        height: 310px;
        padding: 6px;
    }

    .director-info h3 {
        font-size: 19px;
    }

    .director-info p {
        font-size: 13px;
    }

    .director-content h2 {
        font-size: 26px;
    }

    .director-content p {
        font-size: 14px;
    }
}