.booking1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1rem;
    background-color: var(--blue);
    gap: 3rem;
}

.booking1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    p {
        color: white;
        margin: 0;
    }
    span {
        color: var(--orange);
    }
}

.btn-wrapper1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    gap: 0.5rem;
    z-index: 5;
}

.booking1-btn {
    display: flex;
    flex-direction: row;
    border-radius: 100px;
    overflow: hidden;
    background-color: var(--orange);
    position: relative; 
}

.booking1-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 2%;              
    width: 52%;
    height: 100%;
    background-color: white;
    border-radius: 100px;
    transition: left 0.35s ease;
    z-index: 0;
}

.booking1-btn[data-active="left"]::before { left: 0%; }
.booking1-btn[data-active="right"]::before { left: 52%; }

.booking1-btn[data-active="left"] .btn4 { color: white; }
.booking1-btn[data-active="left"] .btn3 { color: var(--orange); }

.booking1-btn[data-active="right"] .btn4 { color: var(--orange); }
.booking1-btn[data-active="right"] .btn3 { color: white; }

.btn3 {
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    padding: 1rem 2rem;
}

.btn4 {
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 100px;
}

.booking1-btn a {
    text-align: center;
    position: relative;
    color: white;
    z-index: 1;
    transition: color 0.35s ease;
}

.booking3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    background-color: var(--blue);
    gap: 2rem;
}

.booking3-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    p {
        color: white;
        margin: 0;
    }
    span {
        color: var(--orange);
    }
}

.btn-wrapper3 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    gap: 0.5rem;
    z-index: 5;
}

.booking3-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    z-index: 5;
}

.booking3-btn .btn5 {
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    color: var(--orange);
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    transition: all 0.2s ease-in-out;
}
.booking3-btn .btn5:hover {
    color: white;
    background-color: var(--orange);
}


@media (max-width: 940px) {
    .booking1-btn .btn3,.booking1-btn .btn4 {
        font-size: 20px;
        text-align: center;
    }
    .booking3 {
        gap: 1rem;
    }
    .booking3-text {
        gap: 1rem;
    }
    .booking3-btn .btn5 {
        font-size: 20px;
        text-align: center;
    }
}

@media (max-width: 546px) {
    .booking1-btn .btn3,.booking1-btn .btn4 {
        text-align: center;
        font-size: 16px;
        padding: 0.5rem;
    }

    .booking3-btn .btn5 {
        text-align: center;
        font-size: 16px;
        padding: 0.5rem 1rem;
    }
    .booking3 {
        padding: 2rem 1rem;
        gap: 1rem;
    }
    .booking3-text {
        gap: 1rem;
    }
}