 /* ==========================================
       CONTACT INTRO
    ========================================== */

    .contact-main-title {
        font-size: 22px;
        font-weight: 700;
        color: #222;
        margin: 0;
    }

    .contact-main-description {
        font-size: 15px;
        font-weight: 500;
        color: #555;
        line-height: 1.7;
    }


    /* ==========================================
       FORM FIELDS
    ========================================== */

    .contact-field {
        width: 100%;
    }

    .contact-label {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #222;
        margin-bottom: 5px;
        text-transform: none;
    }

    .contact-help-text {
        display: block;
        font-size: 14px;
        color: #777;
        line-height: 1.5;
    }

    .contact-select {
        width: 100%;
        height: 54px;
        min-height: 54px;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 0 15px;
        font-size: 15px;
        color: #333;
        background-color: #fff;
        box-shadow: none !important;
    }

    .contact-select:focus {
        border-color: #28878b;
        box-shadow: 0 0 0 0.15rem rgba(40, 135, 139, 0.08) !important;
    }


    /* ==========================================
       DIVIDER
    ========================================== */

    .contact-divider {
        border: 0;
        border-top: 1px solid #e5e5e5;
        margin: 35px 0;
        opacity: 1;
    }


    /* ==========================================
       CONTACT OPTIONS
    ========================================== */

    .contact-section-title {
        font-size: 20px;
        font-weight: 700;
        color: #222;
        margin: 0;
    }

    .contact-action-btn {
        width: 100%;
        min-height: 50px;
        padding: 12px 20px;
        border: 1px solid #28878b;
        border-radius: 4px;
        background: #28878b;
        color: #fff;
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .contact-action-btn:hover {
        background: #fff;
        color: #28878b;
        border-color: #28878b;
    }


    /* ==========================================
       MOBILE
    ========================================== */

    @media (max-width: 767px) {

        .category-main-block .card-body {
            padding: 25px 20px !important;
        }

        .contact-main-title {
            font-size: 20px;
        }

        .contact-main-description {
            font-size: 14px;
        }

        .contact-label {
            font-size: 15px;
        }

        .contact-help-text {
            font-size: 13px;
        }

        .contact-select {
            height: 52px;
            min-height: 52px;
        }

        .contact-section-title {
            font-size: 19px;
        }

    }
