/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    background: white;
    min-height: 600px;
}


/* =========================================
   PAGE HEADING
========================================= */

.contact-heading {
    display: flex;
    align-items: center;
    gap: 15px;

    padding-bottom: 18px;
    margin-bottom: 25px;

    border-bottom: 1px solid #ddd;
}

.contact-heading-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf4ec;
    color: #287a3e;

    border-radius: 6px;

    font-size: 21px;
}

.contact-heading h1 {
    margin: 0 0 4px;

    color: #236b36;

    font-size: 26px;
    font-weight: 600;
}

.contact-heading p {
    margin: 0;

    color: #777;

    font-size: 13px;
}


/* =========================================
   CONTACT LIST
========================================= */

.contact-list {
    display: flex;
    flex-direction: column;
}


/* =========================================
   CONTACT PERSON
========================================= */

.contact-person {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 22px 10px;

    border-bottom: 1px solid #e5e5e5;

    transition: background 0.2s ease;
}

.contact-person:hover {
    background: #fafcfa;
}


/* =========================================
   PERSON ICON
========================================= */

.person-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf5ee;
    color: #287a3e;

    border-radius: 50%;

    font-size: 21px;
}


/* =========================================
   PERSON INFORMATION
========================================= */

.person-info {
    flex: 1;
}

.person-info h2 {
    margin: 0 0 3px;

    color: #333;

    font-size: 17px;
    font-weight: 600;
}


/* =========================================
   DESIGNATION
========================================= */

.person-designation {
    margin-bottom: 12px;

    color: #777;

    font-size: 13px;
}


/* =========================================
   EMAIL + PHONE
========================================= */

.person-contact {
    display: flex;
    align-items: center;

    gap: 35px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #555;

    font-size: 13px;
}

.contact-item i {
    width: 18px;

    color: #287a3e;

    text-align: center;
}

.contact-item span {
    word-break: break-word;
}


/* =========================================
   CONTACT NOTE
========================================= */

.contact-note {

    display: flex;
    display: none;
    align-items: flex-start;

    gap: 14px;

    margin-top: 25px;
    padding: 18px 20px;

    background: #f5f8f5;

    border: 1px solid #dfe8e0;
    border-left: 4px solid #287a3e;

    border-radius: 5px;
}

.contact-note>i {
    color: #287a3e;

    font-size: 19px;

    margin-top: 2px;
}

.contact-note strong {
    display: block;

    margin-bottom: 5px;

    color: #236b36;

    font-size: 14px;
}

.contact-note p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-page {
        margin: 20px auto;
        padding: 0 15px;
    }


    .contact-heading {
        gap: 12px;
    }

    .contact-heading-icon {
        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .contact-heading h1 {
        font-size: 21px;
    }

    .contact-heading p {
        font-size: 11px;
        line-height: 1.5;
    }


    .contact-person {
        align-items: flex-start;

        gap: 13px;

        padding: 18px 5px;
    }


    .person-icon {
        width: 43px;
        height: 43px;

        font-size: 17px;
    }


    .person-info h2 {
        font-size: 15px;
    }


    .person-designation {
        font-size: 12px;

        margin-bottom: 9px;
    }


    .person-contact {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }


    .contact-item {
        font-size: 12px;
    }


    .contact-note {
        padding: 15px;
    }

}