.bookingService-Section .bookingService-Map {
    height: 300px;
    width: 100%;
    margin-top: 1rem;
}

.bookingService-Section .bookingService-Info {
    margin-top: 0.5rem;
    color: var(text-clr-2);
}

.bookingService-Section .bookingService-Error {
    color: #ef4444;
    position: absolute;
    opacity: 0;
    bottom: 0;
    opacity: 1;
    scale: 1;
    transition: opacity 0.35s ease-in-out, scale 0.35s ease-in-out;
}

.bookingService-Section .bookingService-Error.is-hidden {
    opacity: 0;
    scale: 0.6;
}

.pac-container {
    z-index: 10000;
}

.bookingService-PAC {
  background: var(--bg-clr-2);
  border: 1px solid var(--bg-clr);
  border-radius: 1rem;
  box-shadow: 0 12px 28px rgba(2,6,23,0.14), 0 6px 12px rgba(2,6,23,0.10);
  overflow: hidden;

  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 10000;
  max-height: 320px;
  min-width: 350px !important;
  width: 100% !important;
  max-width: 500px;
  overscroll-behavior: contain;
  margin-top: 5px;
}

.bookingService-PAC.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.bookingService-PAC .pac-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;

  cursor: pointer;
  border-top: 1px solid var(--bg-clr);
  color: var(--text-clr-2);
}
.bookingService-PAC .pac-item:first-child { border-top: none; }

.bookingService-PAC .pac-item:hover,
.bookingService-PAC .pac-item.pac-item-selected {
  background: #f8fafc;
}

.bookingService-PAC .pac-icon {
  width: 18px;
  height: 18px;
  background-size: contain !important;
  opacity: .9;
}

.bookingService-PAC .pac-matched {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
}

.bookingService-PAC .pac-item-query {
  color: var(--text-clr-2);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
}

.bookingService-PAC .pac-logo {
  background: #fff;
  padding: 8px 12px;
  border-top: 1px solid #e2e8f0;
}

.bookingService-PAC::-webkit-scrollbar { width: 10px; }
.bookingService-PAC::-webkit-scrollbar-thumb {
  background: #e5e7eb; border-radius: 999px; border: 2px solid #fff;
}




.pac-container,
.pac-container.bookingService-PAC {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(2,6,23,0.14), 0 6px 12px rgba(2,6,23,0.10);
  overflow: hidden;
  z-index: 10000;
  max-height: 320px;
  overscroll-behavior: contain;

  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.pac-container.is-open,
.pac-container.bookingService-PAC.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.pac-container .pac-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  padding: 5px 8px;
  cursor: pointer;
  border-top: 1px solid #f1f5f9;
  color: var(--text-clr-2);
}
.pac-container .pac-item:first-child { border-top: none; }

.pac-container .pac-item:hover,
.pac-container .pac-item.pac-item-selected {
  background: #f8fafc;
}

.pac-container .pac-icon {
  width: 26px;
  height: 26px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 24px 24px !important;
  opacity: 1;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='none'/%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M11.262 22.134S4 16.018 4 10a8 8 0 1 1 16 0c0 6.018-7.262 12.134-7.262 12.134c-.404.372-1.069.368-1.476 0M12 13.5a3.5 3.5 0 1 0 0-7a3.5 3.5 0 0 0 0 7'/%3E%3C/svg%3E") !important;
}

.pac-container .pac-item-query { color: var(--text-clr); font-weight: 700; }
.pac-container .pac-matched { color: var(--text-clr); }

.pac-container .pac-logo {
  background: #fff;
  padding: 8px 12px;
  border-top: 1px solid #e2e8f0;
}

.pac-container::-webkit-scrollbar { width: 10px; }
.pac-container::-webkit-scrollbar-thumb {
  background: #e5e7eb; border-radius: 999px; border: 2px solid #fff;
}



.bookingService-Section {
    padding: 1.5rem 0;
    user-select: none;
    position: relative;
}

.bookingService-Container {
    margin: 0 auto;
    padding: 0 1rem;
}

.bookingService-TitleBtns {
    background: var(--bg-clr-2);
    display: flex;
    width: fit-content;
    border-radius: 1rem 1rem 0 0;
    padding: 0.5rem;
    padding-bottom: 3rem;
    position: relative;
    opacity: 0;
    translate: 0 100px;
    animation: bookingServiceTitleBtnsAnim 0.8s forwards ease-in-out;
    animation-delay: 0.2s;
}

@keyframes bookingServiceTitleBtnsAnim {
    0% {
        opacity: 0;
        translate: 0 100px;
    }
    100% {
        opacity: 1;
        translate: 0 3rem;
    }
}

.bookingService-TitleBtns::after {
    content: '';
    position: absolute;
    bottom: 3rem;
    right: -2rem;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border-radius: 50%;
    box-shadow: -10px 10px 0 var(--bg-clr-2);
}

.bookingService-TitleBtns .line {
    position: absolute;
    bottom: 3rem;
    transform: translateX(-49%);
    width: 150px;
    height: 2px;
    border-radius: 1rem;
    background: black;
    transition: 0.3s left;
}

.bookingService-TitleBtns.transferFormActive .line {
    left: 25%;
}

.bookingService-TitleBtns.tourFormActive .line {
    left: 73%;
}

.bookingService-TitleBtn {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    padding: 0.6rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-clr);
    background: transparent;
}

.bookingService-FormList {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 125px;
    background-color: var(--bg-clr-2);
    border-radius: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    opacity: 0;
    scale: 0.6;
    animation: bookingServiceFormAnim 0.6s forwards ease-in-out;
    transition: 0.3s width;
}

.bookingService-FormList.transferFormActive #bookingService-Form-Transfer {
    translate: 0 0;
}

.bookingService-FormList.tourFormActive #bookingService-Form-Tour,
.bookingService-FormList.tourFormActive #bookingService-Form-Transfer {
    translate: 0 -125px;
}

.bookingService-Form {
    width: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.4rem;
    transition: 0.3s translate;
}

@keyframes bookingServiceFormAnim {
    0% {
        opacity: 0;
        scale: 0.6;
    }
    70% {
        scale: 1.2;
    }
    100% {
        opacity: 1;
        scale: 1;
    }
}

.bookingService-FormContainer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bookingService-FormRow {
    display: flex;
    align-items: center;
}

.bookingService-FormRow.FromWhereInputs {
    gap: 0.6rem;
}

.bookingService-FormRow.FromWhereInputs .bookingService-Label {
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
    font-weight: bolder;
    transition: 0.18s ease-in-out;
}

.bookingService-FormRow.FromWhereInputs .bookingService-Input:focus ~ .bookingService-Label,
.bookingService-FormRow.FromWhereInputs .bookingService-Input:not(:placeholder-shown) ~ .bookingService-Label {
    font-weight: normal;
    top: 15px;
    left: 50px;
    font-size: 0.75rem;
}

.bookingService-FormGroup {
    position: relative;
}

.bookingService-Label,
.bookingService-CheckboxLabel p {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-clr-2);
    margin-bottom: 0.25rem;
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
}

.bookingService-CheckboxLabel p {
    top: -30px;
}

.bookingService-Input {
    height: 80px;
    padding: 1.2rem 0.8rem;
    border: 2px solid var(--bg-clr);
    border-radius: 1rem;
    font-size: 1.1rem;
    background-color: transparent;
    transition: box-shadow 0.2s ease;
}

.bookingService-Input:focus {
    box-shadow: 0 0 10px 2px var(--bg-clr);
}

.bookingService-Input[type="datetime-local"] {
    cursor: pointer;
}

.bookingService-Input[id="pickup"],
.bookingService-Input[id="departure"] {
    min-width: 300px;
    background-repeat: no-repeat;
    background-size: 28px 38px;
}

.bookingService-Input[id="pickup"] {
    padding-left: 3rem;
    background-position: center left 10px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 30'%3E%3Cg id='katman_2' data-name='katman 2'%3E%3Cg id='Layer_1' data-name='Layer 1'%3E%3Cg%3E%3Cpath d='M20.31,14.65A10,10,0,1,0,4.92,18.93a11.82,11.82,0,0,1,4.46,8.51,1.66,1.66,0,0,0,1,1.43,1.64,1.64,0,0,0,2.28-1.37l0-.56a11,11,0,0,1,2.51-6.11' style='fill: none;stroke: %23000;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px'/%3E%3Ccircle cx='11' cy='11' r='5.5' style='fill: %2350cc00'/%3E%3Cline x1='21' y1='21' x2='12.5' y2='12.5' style='fill: none;stroke: %2350cc00;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.bookingService-Input[id="departure"] {
    padding-left: 3.2rem;
    background-position: center left 12px;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 30'%3E%3Cg id='katman_2' data-name='katman 2'%3E%3Cg id='Layer_1' data-name='Layer 1'%3E%3Cg%3E%3Cpath d='M20.31,14.65A10,10,0,1,0,4.92,18.93a11.82,11.82,0,0,1,4.46,8.51,1.66,1.66,0,0,0,1,1.43,1.64,1.64,0,0,0,2.28-1.37l0-.56a11,11,0,0,1,2.51-6.11' style='fill: none;stroke: %23000;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px'/%3E%3Ccircle cx='11' cy='11' r='5.5' style='fill: %232196f3'/%3E%3Cline x1='21' y1='21' x2='13' y2='13' style='fill: none;stroke: %232196f3;stroke-linecap: round;stroke-linejoin: round;stroke-width: 2px'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

#switchRoute {
    border: 2px solid var(--bg-clr);
    border-radius: 50%;
    margin: 0 -1.2rem;
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    padding: 0.8rem;
    position: relative;
    background: var(--bg-clr-2);
    z-index: 10;
}

.bookingService-CheckboxGroup {
    display: flex;
    align-items: center;
    height: 80px;
    border-radius: 1rem;
    border: 2px solid var(--bg-clr);
    padding: 0.6rem 2.4rem;
    padding-top: 2rem;
    cursor: pointer;
}

.bookingService-Checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: #3b82f6;
}

.bookingService-CheckboxLabel {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-clr-2);
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
    font-size: 0.875rem;
    position: relative;
    display: inline-block;
    width: 3.5em;
    height: 100%;
    display: flex;
    align-items: center;
}

.bookingService-CheckboxLabel input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    height: 2em;
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #cececeff;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider:before {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2em;
    width: 2em;
    inset: 0;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bookingService-CheckboxLabel input:checked + .slider {
    background: var(--magic-clr);
}

.bookingService-CheckboxLabel input:focus + .slider {
    box-shadow: 0 0 1px var(--magic-clr);
}

.bookingService-CheckboxLabel input:checked + .slider:before {
    transform: translateX(1.6em);
}

#return-date-group {
    width: 0;
    opacity: 0;
    scale: 0;
    margin-right: 0;
    overflow: hidden;
    transition: 0.4s opacity, 0.4s scale;
}

#return-date-group.active {
    width: 100%;
    scale: 1;
    opacity: 1;
    margin-right: 0.5rem;
}

.bookingService-FormRow .bookingService-FormElementSpace:first-child {
    margin-right: 0.5rem;
}

.bookingService-SubmitBtn {
    position: absolute;
    bottom: -17px;
    right: 135px;
    padding: 0.8rem 1.6rem;
    font-size: 1.15rem;
    background-color: var(--magic-clr);
    color: var(--bg-clr);
    font-weight: bold;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background-color 0.25s, scale 0.25s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.65rem;

    opacity: 0;
    animation: bookingServiceSubmitBtnAnim 0.7s forwards ease-in-out;
    animation-delay: 0.6s;
}

@keyframes bookingServiceSubmitBtnAnim {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.bookingService-SubmitBtn:hover {
    background-color: #21ad7f;
}

.bookingService-SubmitBtn:active {
    scale: 0.9;
}

.bookingDetails {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s opacity, 0.3s transform;
    backdrop-filter: blur(10px);
    background-color: rgb(0,0,0,0.3);
    animation: bookingDetailsAnim 0.3s forwards ease-in-out;
    z-index: 10000;
}

.bookingDetails.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.bookingDetailsContainer {
    width: 900px;
    height: 90svh;
    overflow: auto;
    background-color: var(--bg-clr);
    border: 2px solid var(--text-clr-2);
    scale: 0;
    transition: 0.3s scale;
}

.bookingDetails.active .bookingDetailsContainer {
    scale: 1;
}
