/* Popup Tư vấn mua nhà */
.consultation-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.consultation-popup-overlay.show {
    display: flex;
}

.consultation-popup {
    background: #ffffff;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.consultation-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    transition: all 0.2s ease;
}

.consultation-popup-close:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

.consultation-popup-content {
    padding: 30px;
}

.consultation-popup-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.consultation-popup-features {
    margin-bottom: 25px;
}

.consultation-popup-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.consultation-popup-feature:last-child {
    margin-bottom: 0;
}

.consultation-popup-checkmark {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.consultation-popup-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.consultation-popup-form {
    margin-bottom: 20px;
}

.consultation-popup-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.consultation-popup-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.consultation-popup-input::placeholder {
    color: #999;
}

.consultation-popup-disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
}

.consultation-popup-button {
    width: 100%;
    background-color: #1e40af;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.consultation-popup-button:hover {
    background-color: #1e3a8a;
}

.consultation-popup-button:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 768px) {
    .consultation-popup-overlay {
        padding: 10px;
    }
    
    .consultation-popup {
        max-width: 100%;
    }
    
    .consultation-popup-content {
        padding: 20px;
    }
    
    .consultation-popup-title {
        font-size: 20px;
    }
    
    .consultation-popup-section-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .consultation-popup-content {
        padding: 15px;
    }
    
    .consultation-popup-title {
        font-size: 18px;
    }
}
