/* Extracted from contact.php */

/* SECTION WIDTH */
    .contact-us__area {
        padding: 70px 0;
        background: #fff;
    }

    .contact-container {
        max-width: 1320px;
    }

    /* CONTACT LIST */
    .contact-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact-item {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    /* ICON */
    .contact-item .icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        background: #0164b4;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    /* TEXT */
    .contact-item .content {
        max-width: 460px;
    }

    .contact-item span {
        display: block;
        font-size: 16px;
        color: #000;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .contact-item p,
    .contact-item a {
        font-size: 16px;
        color: #222;
        line-height: 1.6;
        text-decoration: none;
    }

    /* FORM */
    .contact-form-box {
        background: #fafafa;
        padding: 40px;
        border-radius: 12px;
    }

    .contact-form-box h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-form-box input,
    .contact-form-box textarea {
        width: 100%;
        padding: 14px 18px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    .contact-form-box textarea {
        height: 160px;
    }

    .contact-form-box button {
        background: #0164b4;
        color: #fff;
        padding: 14px 40px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
    }

    .ajax-response {
        font-size: 15px;
        line-height: 1.5;
    }

    .ajax-response.success {
        color: #198754;
    }

    .ajax-response.error {
        color: #dc3545;
    }

    /* MOBILE FIX */
    @media (max-width: 768px) {
        .contact-form-box {
            margin-top: 40px;
        }
    }
