.open-form-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}
.button__event{
	
}

.open-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.open-form-btn:active {
    transform: translateY(-1px);
}

.open-form-btn i {
    font-size: 20px;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(45deg, #EC691F, #c94800);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.close-btn {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-btn:hover {
    transform: scale(1.2);
}

/* Форма */
.contact-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

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

.submit-btn {
    background: linear-gradient(45deg, #2ecc71, #3498db);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(45deg, #27ae60, #2980b9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Сообщения */
.message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.message.success {
    
    color: #155724;
    
    display: block;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.message.sending {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
    display: block;
}

/* Адаптивность */
@media (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
}

.detail__info-item--button{
	justify-content: end;
}
@media (max-width: 1325px) {
    .detail__info-item--button{
	justify-content: start;
}
}

.cta{
	background: #000;
	color: #fff;
	padding: 2rem;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 40px;
}
.cta__container{
	display: flex;
	gap: 2rem;
	align-items: center;
	
}
@media (max-width: 768px) {
	.cta__container{
	display: block;
	gap: 2rem;
	align-items: center;
	margin-top: 20px;
	
}
}

.cta__button{
	color: #fff;
	background: #EC691F;
    padding: 10px 65px;
    border-radius: 20px;
	border: none;
	font-size: 20px;
	cursor: pointer;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
}
.cta__button:hover{
	background: #cf540e;
}

.form__button{
	color: #fff;
	background: #EC691F;
    padding: 10px 65px;
    border-radius: 20px;
	border: none;
	font-size: 20px;
	cursor: pointer;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
.cta__button-wrapper{
	margin-top: 20px;
}
}
.form__download-btn{
	color: #fff;
	background: #EC691F;
    padding: 10px 65px;
    border-radius: 20px;
	border: none;
	font-size: 20px;
	cursor: pointer;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	margin-top: 20px;
    display: inline-block;
	text-decoration: none;
}
.form__download-btn:hover{
	color: #fff;
	background: #cb5a1a;
}