/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi/
Template: Divi
Author: Elegant Themes
Author URI: http://www.elegantthemes.com
Description: Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
Text domain: Divi-child
Version: 4.27.1.1754465177
Updated: 2025-08-06 09:26:17

*/

.property-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.property-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.property-modal__content {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.property-modal.active .property-modal__content {
    transform: translateY(0);
}

.property-modal__close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.property-modal__close:hover {
    background: #f5f5f5;
}

.property-modal__header {
    margin-bottom: 25px;
    text-align: center;
}

.property-modal__title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.property-modal__subtitle {
    margin: 0;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.property-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group .required {
	color: #a00;	
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #926F34;
    box-shadow: 0 0 0 3px rgba(146, 111, 52, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.form-group--checkbox label {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
}

.form-actions {
    margin-top: 25px;
}

.btn {
    border-width: 1px;
    border-radius: 0px;
    letter-spacing: 0.06em;
    font-size: 18px;
    font-family: 'Jost Light', Helvetica, Arial, Lucida, sans-serif !important;
    text-transform: uppercase;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
	width: 100%;
	cursor: pointer;
}

.btn--primary {
	color: #000000;
    border-color: #000000;
    background-color: #F5F5F5;
}

.btn--primary:hover {
	color: #926F34;
    border-color: #926F34;
    background-color: #FFFFFF;
}

.btn--primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn--loading {
    position: relative;
    color: transparent;
}

.btn--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-messages {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 6px;
    display: none;
}

.form-messages.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .property-modal__content {
        padding: 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .property-modal__title {
        font-size: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}

.propery_request_btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.propery_request_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}