.cta {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible;
    margin-bottom: 150px;
}

.cta-image {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.booking-container {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 10;
}

.cta-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    color: #fff;
    z-index: 5;
}

.cta-content h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 15px;
}

.cta-content p {
    color: #fff;
    margin-bottom: 40px;
    font-size: 18px;
}

.booking-form {
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 28px;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}

.form-group {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.guest-input {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 15px;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0d6efd;
}

.btn-search {
    min-width: 170px;
    height: 55px;
    border: none;
    background: #0d6efd;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.btn-search:hover {
    background: #084db5;
}


.guest-group {
    position: relative;
}

.guest-select {
    height: 55px;
    border: 1px solid #ddd;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    background: #fff;
}

.guest-select:hover {
    border-color: #0d6efd;
}

.guest-select span {
    font-size: 15px;
    color: #333;
}

.guest-select i {
    font-size: 22px;
    color: #555;
}

.guest-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    padding: 20px;
    display: none;
    z-index: 99999;
}

.guest-menu.show {
    display: block;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.guest-row small {
    color: #888;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-counter button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #0d6efd;
    background: #fff;
    color: #0d6efd;
    cursor: pointer;
    font-size: 20px;

}
.guest-counter button:hover {
    background: #0d6efd;
    color: #fff;

}

.guest-counter span {
    width: 24px;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.guest-btn {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 8px;
    background: #0d6efd;
    color: #fff;
    font-weight: 600;
    cursor: pointer;

}

.guest-btn:hover {
    background: #084db5;
}


@media(max-width:992px) {
    .cta {
        height: 55vh;
        margin-bottom: 300px;
    }

    .cta-content h1 {
        font-size: 38px;
    }

    .booking-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .btn-search {
        width: 100%;
    }

}