.reserve {
    background: var(--foter-dark-accent);
    padding: 80px 20px;
    color: white;
    width: calc(100% - 40px);
}

.reserve-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 1000px) {
    .reserve-container {
        flex-direction: column;
	    align-items: center;
    }
}

.reserve-info {
    flex: 1;
}

.reserve-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.reserve-info p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.reserve-contact {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}
.reserve-contact div,
.reserve-contact a {
    text-decoration: none;
    color: #cfcfcf;
    display: flex;
    gap: 1rem;
    align-items: center;
}
.reserve-contact a {
    transition: color .2s;
}
.reserve-contact a:hover {
    color: white;
    text-decoration: underline;
}

.reserve-form {
    flex: 1;
    background: #f5f5f5;
    padding: 40px;
    border-radius: 24px;
    color: #111;
}
@media (max-width: 768px) {
    .reserve-form {
        padding: 30px;
	    width: calc(100% - 60px);
    }
}

.row {
    display: flex;
    column-gap: 20px;
}


.field {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 20px;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
}

input,
textarea {
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 1rem;
    background: #e2e9f1;
    outline: none;
    font-family: "Jakarta";
}

textarea {
    border-radius: 20px;
    resize: none;
}

input:focus,
textarea:focus {
    background: #dde3ea;
}

.error {
    color: #d33;
    font-size: 12px;
    height: 14px;
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-family: "Jakarta";
    border: none;
    border-radius: 999px;
    background: #1f56d6;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease;
}

.submit-btn:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-loader,
.btn-success {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-success {
    font-size: 16px;
}

.loading .btn-text {
    opacity: 0;
}

.loading .btn-loader {
    left: calc(50% - 9px);
    opacity: 1;
}

.success {
    background: #22a86b;
}

.success .btn-loader {
    display: none;
}

.success .btn-success {
    opacity: 1;
    left: calc(50% - 20px);
}

.success .btn-text {
    opacity: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */

@media (max-width: 900px) {
    .reserve-container {
        flex-direction: column;
    }

}


@media (max-width: 500px) {
	.reserve-form {
		padding: 20px;
		width: calc(100% - 30px);
	}
    .row {
        flex-direction: column;
    }

    .field {
        margin-bottom: 0;
    }
    textarea {
        margin-bottom: 20px;
    }
}