/* Popup Contact Form - bcf10bc3 */

.pcf-trigger-btn-bcf10bc3 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99998;
    background: linear-gradient(135deg, #6B8E7B, #4A7C6F);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(74, 124, 111, 0.4);
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.pcf-trigger-btn-bcf10bc3:hover {
    background: linear-gradient(135deg, #4A7C6F, #3A6B5E);
    box-shadow: 0 6px 28px rgba(74, 124, 111, 0.55);
    transform: translateY(-2px);
}

/* Overlay */
.pcf-overlay-bcf10bc3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.pcf-overlay-bcf10bc3.pcf-active-bcf10bc3 {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.pcf-modal-bcf10bc3 {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.pcf-overlay-bcf10bc3.pcf-active-bcf10bc3 .pcf-modal-bcf10bc3 {
    transform: translateY(0);
}

/* Close button */
.pcf-close-btn-bcf10bc3 {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s ease;
}

.pcf-close-btn-bcf10bc3:hover {
    color: #333;
}

/* Title & Subtitle */
.pcf-title-bcf10bc3 {
    font-size: 26px;
    font-weight: 700;
    color: #2C3E50;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.pcf-subtitle-bcf10bc3 {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

/* Form Fields */
.pcf-field-bcf10bc3 {
    margin-bottom: 20px;
}

.pcf-field-bcf10bc3 label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 6px;
}

.pcf-required-bcf10bc3 {
    color: #e74c3c;
}

.pcf-field-bcf10bc3 input,
.pcf-field-bcf10bc3 textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
    outline: none;
}

.pcf-field-bcf10bc3 input:focus,
.pcf-field-bcf10bc3 textarea:focus {
    border-color: #4A7C6F;
    background: #ffffff;
}

.pcf-field-bcf10bc3 textarea {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.pcf-submit-btn-bcf10bc3 {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6B8E7B, #4A7C6F);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.pcf-submit-btn-bcf10bc3:hover {
    background: linear-gradient(135deg, #4A7C6F, #3A6B5E);
    box-shadow: 0 4px 16px rgba(74, 124, 111, 0.4);
}

.pcf-submit-btn-bcf10bc3:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Message Area */
.pcf-message-area-bcf10bc3 {
    margin-bottom: 12px;
    padding: 0;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.pcf-message-area-bcf10bc3.pcf-success-bcf10bc3 {
    display: block;
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border: 1px solid #c3e6cb;
}

.pcf-message-area-bcf10bc3.pcf-error-bcf10bc3 {
    display: block;
    background: #f8d7da;
    color: #721c24;
    padding: 12px 16px;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 600px) {
    .pcf-modal-bcf10bc3 {
        padding: 28px 20px;
    }

    .pcf-title-bcf10bc3 {
        font-size: 22px;
    }

    .pcf-trigger-btn-bcf10bc3 {
        bottom: 20px;
        right: 20px;
        padding: 12px 22px;
        font-size: 14px;
    }
}
