/* Contact Popup Styles */
.contact-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.contact-popup.active {
    display: block;
}

.contact-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.contact-popup-header h3 {
    margin: 0;
    color: #333333;
    font-size: 1.2rem;
}

.contact-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666666;
    transition: color 0.3s ease;
}

.contact-popup-close:hover {
    color: #333333;
}

.contact-popup-body {
    padding: 10px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    margin-right: 15px;
    color: #6F9DD7;
    font-size: 20px;
    width: 25px;
    text-align: center;
}
