/* Contact popup modal */
.contact-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.contact-popup-overlay.active {
    display: flex;
}

.contact-popup {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.popup-close:hover {
    opacity: 0.7;
}

.contact-popup h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

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

.contact-popup label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-popup input,
.contact-popup textarea {
    width: 100%;
    padding: 12px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s;
}

.contact-popup input:focus,
.contact-popup textarea:focus {
    outline: none;
    border-color: #0d6efd;
}

.contact-popup textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-popup .btn-submit {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.contact-popup .btn-submit:hover {
    background: #0b5ed7;
}

.contact-popup .btn-submit:disabled {
    background: #666;
    cursor: not-allowed;
}

.popup-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.popup-message.success {
    background: #198754;
    color: #fff;
}

.popup-message.error {
    background: #dc3545;
    color: #fff;
}

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