/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {

    padding: 70px 15px;

    background: #eef5ff;

    font-family: 'Inter', sans-serif;

    color: #17233d;

}


/* =========================================
   HEADING
========================================= */

.contact-heading {

    text-align: center;

    max-width: 800px;

    margin: 0 auto 50px;

}


.contact-tag {

    display: inline-block;

    padding: 7px 16px;

    border-radius: 30px;

    background: #e4f4eb;

    color: #008f47;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 15px;

}


.contact-heading h1 {

    color: #173f70;

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    margin-bottom: 15px;

}


.contact-heading h1 span {

    display: block;

    font-size: 20px;

    color: #607086;

    font-weight: 600;

    margin-top: 7px;

}


.contact-heading p {

    color: #667085;

    font-size: 15px;

    line-height: 1.8;

    margin: 0;

}


/* =========================================
   CONTACT INFO
========================================= */

.contact-info-card,
.contact-form-card {

    background: #ffffff;

    border-radius: 18px;

    padding: 35px;

    height: 100%;

    border: 1px solid #e2eaf3;

    box-shadow:
        0 10px 30px rgba(28, 62, 100, 0.08);

}


.contact-info-card h3,
.contact-form-card h3 {

    color: #173f70;

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;

}


.contact-intro {

    color: #667085;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 28px;

}


/* =========================================
   CONTACT ITEM
========================================= */

.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid #edf1f5;

}


.contact-item:last-child {

    border-bottom: 0;

}


.contact-icon {

    width: 46px;

    height: 46px;

    min-width: 46px;

    border-radius: 12px;

    background: #eaf7f0;

    color: #00a651;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 19px;

}


.contact-item span {

    display: block;

    color: #7a8494;

    font-size: 12px;

    margin-bottom: 4px;

}


.contact-item a {

    color: #173f70;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    word-break: break-word;

}


.contact-item a:hover {

    color: #00a651;

}


.contact-item p {

    margin: 0;

    color: #273142;

    font-size: 14px;

    line-height: 1.6;

}


/* =========================================
   FORM
========================================= */

.form-heading {

    margin-bottom: 25px;

}


.form-heading p {

    color: #667085;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;

}


.form-label {

    color: #273142;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;

}


.form-label span {

    color: #dc3545;

}


.form-control,
.form-select {

    min-height: 48px;

    border: 1px solid #d9e1eb;

    border-radius: 8px;

    font-size: 13px;

    padding: 10px 13px;

}


.form-control:focus,
.form-select:focus {

    border-color: #4d8ed0;

    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);

}


textarea.form-control {

    resize: vertical;

    min-height: 125px;

}


/* =========================================
   SUBMIT
========================================= */

.contact-submit {

    width: 100%;

    min-height: 50px;

    border: 0;

    border-radius: 8px;

    background: #008f47;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;

}


.contact-submit:hover {

    background: #007a3d;

}


.contact-submit i {

    margin-right: 7px;

}


/* =========================================
   NOTICE
========================================= */

.contact-notice {

    margin-top: 35px;

    padding: 20px 25px;

    background: #fff9e6;

    border: 1px solid #f3df9d;

    border-radius: 12px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

}


.notice-icon {

    color: #c28a00;

    font-size: 22px;

}


.contact-notice strong {

    display: block;

    color: #725600;

    font-size: 14px;

    margin-bottom: 5px;

}


.contact-notice p {

    color: #756638;

    font-size: 13px;

    line-height: 1.7;

    margin: 0;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-section {

        padding: 45px 12px;

    }


    .contact-heading {

        margin-bottom: 30px;

    }


    .contact-heading h1 {

        font-size: 28px;

    }


    .contact-heading h1 span {

        font-size: 16px;

    }


    .contact-heading p {

        font-size: 13px;

    }


    .contact-info-card,
    .contact-form-card {

        padding: 24px 20px;

        border-radius: 15px;

    }


    .contact-info-card h3,
    .contact-form-card h3 {

        font-size: 19px;

    }


    .contact-notice {

        padding: 16px;

        gap: 10px;

    }


    .contact-notice p {

        font-size: 12px;

    }

}