@charset "utf-8";

/* Request Board Skin Style */

/* Container */
.contact-form-area {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

.contact-form-area h3 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.contact-form-area .form-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Form Layout */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    min-width: 250px;
    /* Responsive wrapping */
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

/* Inputs */
.contact-form-area .frm_input,
.contact-form-area select,
.contact-form-area textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s;
    box-sizing: border-box;
    /* Critical for width 100% */
}

.contact-form-area .frm_input:focus,
.contact-form-area select:focus,
.contact-form-area textarea:focus {
    border-color: #00baa4;
    /* Primary Color */
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 186, 164, 0.1);
}

.contact-form-area textarea.request_textarea {
    min-height: 200px;
    resize: vertical;
}

/* Buttons */
.btn_confirm {
    text-align: center;
    margin-top: 40px;
}

.btn_submit {
    display: inline-block;
    padding: 15px 50px;
    background: #00baa4;
    /* Primary Color */
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn_submit:hover {
    background: #008c7a;
}

.btn_submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Checkbox */
.ct-chk {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.ct-chk input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: #00baa4;
}

/* Privacy Modal link */
.privacy_link {
    color: #00baa4;
    font-weight: 600;
}

/* Privacy Modal */
.privacy_modal_overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.privacy_modal_content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.privacy_modal_title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.privacy_modal_body {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.privacy_modal_close {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.privacy_modal_close:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form-area {
        padding: 20px 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn_submit {
        width: 100%;
        padding: 15px 0;
    }
}