.box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    min-height: 100vh;
}

.form-title {
    text-align: center;
    font-size: 28px;
    color: var(--background-nav);
    margin: 15px 0 30px;
    animation: pulse 2s infinite;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.booking-container {
    display: flex;
    gap: 20px;
    border: 4px solid var(--background-nav);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 1100px;
    margin: 30px auto;
}

.form-wrapper,
.image-wrapper {
    flex: 1;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    padding: 40px;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    padding-bottom: 50px;
    border-radius: 10px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select {
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--background-nav);
    background-color: #ffffff;
    font-size: 16px;
    color: var(--background-nav);
    appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.booking-form input::placeholder {
    color: var(--background-nav);
}

.booking-form select option {
    background-color: #ffffff;
    color: #003c3c;
}

.booking-form input:hover,
.booking-form select:hover {
    border-color: var(--background-nav);
    box-shadow: 0 0 10px var(--background-nav);
    background-color: rgba(240, 248, 248, 0.9);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--background-nav);
    box-shadow: 0 0 8px var(--background-nav);
}

.booking-form select {
    height: 42px;
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.booking-form select::-ms-expand {
    display: none;
}

.row {
    display: flex;
    gap: 12px;
}

.field.half {
    flex: 1;
}

.booking-form input[type="submit"] {
    color: whitesmoke;
    background-color: var(--background-nav);
}

.submit {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: #000000 2px solid;
    cursor: pointer;
}

.submit:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: rgb(0, 0, 0) !important;
    background-color: var(--hover-nav-buttons) !important;
}

@media (max-width: 800px) {
    .booking-container {
        flex-direction: column;
        max-width: 90%;
    }

    .row {
        flex-direction: column;
    }
}