/* Стили для завершающего блока "Сотрудничайте с MUL" */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 40px;
    padding: 60px 20px;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1a3c5e;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.cta-form,
.cta-info {
    flex: 1 1 300px;
    min-width: 300px;
    background-color: rgba(46, 90, 138, 0.9);
    padding: 30px;
    border-radius: 10px;
}

.cta-form h3,
.cta-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.cta-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: #fff;
    color: #0d1b2a;
}

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

.primary-btn {
    background: linear-gradient(45deg, #f25c05, #ff8c33);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    line-height: 1.5;
    min-height: 40px;
    font-size: 1rem;
    white-space: nowrap;
    opacity: 0.6;
    pointer-events: none;
    width: auto;
}

.primary-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.primary-btn.active:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #d94a00, #ff8c33);
    animation: pulse 0.5s infinite;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    position: relative;
}

.form-checkbox input[type="checkbox"] {
    opacity: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #fff;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.form-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background: #fff;
    transition: all 0.3s ease;
}

.form-checkbox label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 12px;
    border: solid #f25c05;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-checkbox input[type="checkbox"]:checked + label::before {
    border-color: #f25c05;
    background: #fff;
}

.form-checkbox input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

.form-checkbox a {
    color: #ff6e00;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.form-checkbox a:hover {
    color: #d94a00;
}

.disclaimer {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 10px;
}

.disclaimer a {
    color: #ff6e00;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.disclaimer a:hover {
    color: #d94a00;
}

.cta-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

.cta-info-list {
    margin-left: 20px;
    list-style: disc;
    margin: 10px 0 15px;
    color: #fff;
}

.cta-info-list-item {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: #ff6e00;
}

.contact-item span {
    font-size: 1rem;
    color: #fff;
}

.cta-info a {
    color: #ff6e00;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-info a:hover {
    color: #d94a00;
}

/* Стили для всплывающего окна */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup.show {
    opacity: 1;
}

.popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    position: relative;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #0d1b2a;
    font-size: 1.1rem;
    font-weight: 500;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #f25c05;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #d94a00;
}

@media screen and (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-form,
    .cta-info {
        padding: 20px;
    }

    .cta-form h3,
    .cta-info h3 {
        font-size: 1.5rem;
    }

    .primary-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 36px;
        width: auto;
    }
}

/* Эффект пульсации для кнопки */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    }
}