/* ПОПАП КОНТАКТНОЙ ФОРМЫ */
.contact-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

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

.contact-popup {
    background: #2b2b2b;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    color: #fff;
}

.contact-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.contact-close:hover {
    color: #fff;
}

.contact-popup h2 {
    margin: 0 0 25px 0;
    font-size: 20px;
    color: #fff;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B19B0B;
}

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

.contact-submit {
    width: 100%;
    padding: 12px;
    background: #1a9fd8;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-submit:hover {
    background: #1589c0;
}

.contact-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.contact-status.success {
    display: block;
    background: #2d6a2d;
    color: #fff;
}

.contact-status.error {
    display: block;
    background: #8b2e2e;
    color: #fff;
}