/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: -60px;
    right: -40px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-8px);
}

.floating-contact-btn img {
    width: 450px;
    height: auto;
    display: block;
}

/* Mobile: Ушки в правом углу */
@media (max-width: 768px) {
    .floating-contact-btn {
        right: -80px !important;
        bottom: -10px !important;
    }
    
    .floating-contact-btn img {
        width: 450px !important;
    }
}

/* Contact Form Modal */
.contact-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.contact-form-modal.active {
    display: flex;
}

.contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.contact-form-container {
    position: relative;
    background: #0a0a0a;
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
}

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

.contact-form-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

.contact-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #ff8c00;
    margin: 0 0 8px;
}

.contact-form-subtitle {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.contact-form {
    padding: 32px;
}
