@import url('https://fonts.googleapis.com/css2?family=Alef:wght@400;700&display=swap');

body {
    font-family: "Alef", sans-serif;
    margin: 0;
    padding: 0;
}

.top-header {
    width: 100%;
    background-color: rgb(0, 0, 0);
}

.text-white {
    color: #ffffff;
}

.text-center {
    text-align: center;
}

.container {
    display: flex;
    width: 100%;
}

.left-column {
    flex: 60%;
    padding: 50px;
}

.right-column {
    flex: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading {
    font-size: 46px;
    font-weight: bold;
}

.subtext {
    font-size: 16px;
    margin: 0;
}

.subtext a {
    color: rgb(251, 251, 251);
    font-weight: bold;
    text-decoration: underline;
}

.logo img {
    width: 100%;
    max-width: 300px;
}

.input-c {
    display: flex;
    direction: rtl;
    justify-content: space-between;
}

.rtl {
    direction: rtl;
}

.mt-5 {
    margin-top: 25px;
}

.m-0 {
    margin: 0;
}

.m-inputStyle {
    margin-left: 10px;
}

.fw-bold {
    font-weight: 600;
}


.booking-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.container2 {
    display: flex;
    width: 100%;
}

.column {
    padding: 10px;
}

.contact-info {
    width: 25%;
    color: #8B6F32;
    font-size: 20px;
    text-align: center;
}

.booking-form {
    width: 45%;
}

/* .booking-form .inputD {
    display: block;
    width: 200px;
    margin-bottom: 10px;
    padding: 8px;
    color: gray;
    border: 1px solid gray;
} */
.inputD {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    /* Moves the default icon to the left */
    padding-left: 40px;
    /* Space for text */
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    height: 40px;
    width: 145px;
    outline: none;
    appearance: none;
    /* Hides default styling on some browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
}

.btn-container {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 116px
}

.custom-btn {
    font-size: 18px;
    color: #967b36;
    background: transparent;
    border: 2px solid #967b36;
    padding: 10px 20px;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.custom-btn:hover {
    border: 2px solid #000000;
}

/* For WebKit browsers (Chrome, Safari) */
.inputD::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 10px;
    right: auto;
    cursor: pointer;
    transform: translateY(-50%);
    top: 50%;
}


.situation p {
    font-weight: bold;
}

.situation {
    direction: rtl;
}

.image {
    width: 30%;
    text-align: right;
}

.image img {
    width: 90%;
    border-radius: 2px;
}




.containerDyna {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 30px;
}

.option--style {
    flex: 1 1 calc(25% - 10px);
    min-width: 100px;
    /* text-align: center; */
}

.labels--style {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.select--dropdown {
    padding: 5px;
    font-size: 16px;
    width: 60px;
}

.in_out {
    display: flex;
}

.booking--container {
    display: none;
    /* Default hidden */
    margin-top: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* direction: rtl; */
    text-align: end;
    font-family: Arial, sans-serif;
    width: 100%;
    margin: auto;
}

.booking--row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.booking--column {
    flex: 1;
    padding: 0 10px;
    /* min-width: 150px; */
}

.booking--price {
    font-size: 20px;
    font-weight: bold;
}

.booking--price--green {
    color: green;
}

.booking--button {
    background-color: #ffce29;
    padding: 20px;
    font-size: 18px;
    /* font-weight: bold; */
    border: 2px solid black;
    cursor: pointer;
    min-width: 150px;
    text-align: center;
    margin: 0 26px;
    direction: rtl;
}

/* Tooltip Container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    border-bottom: 1px dotted black;
    padding-bottom: 4px;
}

/* Tooltip Text */
.tooltip--text {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    /* Dark Gray */
    color: #fff;
    text-align: start;
    padding: 10px;
    border-radius: 5px;
    position: absolute;
    z-index: 1;
    left: 110%;
    /* Shift to right side */
    top: 50%;
    transform: translateY(-50%);
    /* Center align vertically */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 12px;
    line-height: 1.5;
    white-space: normal;
    direction: rtl;
}

/* Show Tooltip on Hover */
.tooltip:hover .tooltip--text {
    visibility: visible;
    opacity: 1;
}

/* Tooltip Arrow (Right Side) */
.tooltip--text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    /* Move arrow to the left side */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #333 transparent transparent;
}

.booking--dropdown {
    padding: 5px;
    font-size: 16px;
    width: 100%;
    direction: rtl;
}

.question-icon {
    width: 18px;
}

.text-green{
    color: green;
}

.text-right {
    text-align: right;
}

.mb-3 {
    margin-bottom: 10px;
}

.my-3 {
    margin-top: 10px;
    margin-bottom: 10px;

}

/* Responsive for small screens */
@media screen and (max-width: 768px) {
    .booking--row {
        flex-direction: column;
    }

    .booking--column {
        width: 94%;
        text-align: end;
    }

    .tooltip--text {
        visibility: hidden;
        width: 250px;
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px;
        border-radius: 5px;
        position: absolute;
        z-index: 1;
        right: 110%;
        left: -190%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0;
        transition: opacity 0.3sease-in-out;
        font-size: 12px;
        line-height: 1.5;
        white-space: normal;
    }

    .tooltip--text::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 100%;
        margin-top: -5px;
        border-width: 5px;
        border-style: solid;
        border-color: transparent #333 transparent transparent;
    }

    .booking--button {
        background-color: #ffce29;
        padding: 20px;
        font-size: 18px;
        border: 2px solid black;
        cursor: pointer;
        width: 150px;
        text-align: center;
        margin-left: auto;
        margin-right: 0;

        direction: rtl;
    }
}

@media (max-width: 1200px) {

    .booking-form .inputD {
        width: 144px;
        height: 30px;
        margin-bottom: 10px;
        padding: 4px;
    }

}

@media (max-width: 1000px) {

    .container2 {
        display: block;

    }

    .contact-info {
        width: 100%;
        color: #8B6F32;
        font-size: 16px;
        text-align: center;
    }

    .booking-form {
        width: 96%;
    }

    .image {
        width: 96%;
        text-align: right;
    }

    .image img {
        width: 60%;
    }

}

@media (max-width: 800px) {
    .option--style {
        flex: 1 1 calc(50% - 10px);
    }
}


@media (max-width: 768px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .left-column,
    .right-column {
        flex: 100%;
        padding: 20px;
    }

    .heading {
        font-size: 32px;
        font-weight: bold;
        margin: 10px;
    }

    .logo img {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 500px) {
    .option--style {
        flex: 1 1 100%;
    }

    .input-c {
        display: block;
    }
}

@media (max-width: 400px) {

    .in_out {
        display: block;
    }


}