.request-form {
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(44, 43, 43, 0.7);
    padding: 24px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.request-form-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-step1 {
  z-index: 9;
  max-width: 456px;
  margin-left: auto;
  display: flex;
  flex-flow: column;
  gap: 4px;
  transition: transform 0.3s ease;
  will-change: transform;
}
.sticky {
  position: sticky;
}
.booking-step1.sticky {
    top: 150px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(44, 43, 43, 0.7);
    box-shadow: 0px 4px 20px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 24px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.request-form .form-row, .request-form-2 .form-row {
    display: flex;
    flex-direction: column;
}

.request-form .form-row:nth-child(1), .request-form .form-row:nth-child(2), .request-form-2 .form-row:nth-child(1), .request-form-2 .form-row:nth-child(2) {
    flex-direction: row;
    gap: 20px;
}

.request-form label, .request-form-2 label {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 8px;
}

.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form textarea, .request-form-2 input[type="text"], .request-form-2 input[type="email"], .request-form-2 input[type="tel"] {
    border: 1px solid #393939;
    border-radius: 2px;
    color: #fff;
    height: 44px;
    padding: 8px 12px;
    background-color: transparent;
    width: 100%;
    font-size: 14px;
}

.request-form textarea {
    padding: 12px 16px;
    resize: none;
    color: #FFF;
    height: 56px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

#request-info-btn {
    border-radius: 6px;
    background: #0057FF;
    padding: 12px 24px;
    color: #FFF;
    width: 100%;
    font-size: 16px;
    font-style: normal;
    justify-content: center;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
}

.prefer-call a {
    color: #FFF;
    width: 100%;
    border: 1px solid #68686D;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
}
.booking-step2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.booking-step2 h2 {
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
}

.tour-type {
    display: flex;
    gap: 20px;
}

.tour-type label {
    border: 1px solid #393939;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
    position: relative;
}

.tour-type input[type="radio"] {
    display: none;
}

.tour-type strong {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 4px;
}

.tour-type span {
    color: #C1C1C1;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}

/* Контейнеры календаря и тайм-слотов */
.calendar-and-times {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.calendar-column {
    flex: 1;
    min-width: 240px;
}

.time-slots-column {
    flex: 1;
    min-width: 240px;
}

.time-slots-column h3 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}

/* Слоты времени */
#time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 256px;
}

.time-slot {
    border-radius: 6px;
    padding: 12px;
    width: 124px;
    border: 1px solid #FFF;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
}

.time-slot.disabled {
    border: 1px solid #393939;
    color: #393939;
    text-decoration-line: line-through;
    cursor: not-allowed;
    background: transparent;
}

.time-slot.selected {
    background: #0057FF;
    color: #FFF;
    border: none;
}

.form-actions {
    display: flex;
    margin-top: 24px;
    justify-content: space-between;
    padding: 16px 24px;
    margin-left: -32px;
    margin-right: -32px;
    margin-bottom: -32px;
    border-top: 2px solid #393939;
}

.form-actions button {
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
}

#submit-request {
    background: #0057FF;
    color: #FFF;
    border: none;
}

.cancel-btn {
    background: transparent;
    color: #FFF;
    border: 1px solid #FFF!important;
}

.earliest-slot-row {
    display: flex;
    align-items: center;
}

.earliest-label {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.earliest-value {
    margin-left: auto;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.schedule-tour-btn {
    border: 1px solid #68686D;
    border-radius: 6px;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    background: transparent;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.pika-single {
    color: #fff;
    border: none;
    background: transparent;
}
.pika-label {
    background: transparent;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.pika-table th {
    color: #C1C1C1;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    text-transform: capitalize;
}

.is-disabled .pika-button {
    opacity: 1;
    color: #393939;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
    text-decoration-line: line-through;
}
.pika-button {
    text-align: center;
    background: transparent;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    transition: background 0.2s;
}
.pika-button:hover, .time-slot:hover {
    background: #74A4FF;
}

.is-today .pika-button {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    border-radius: 6px;
    background: #0057FF;
}

.listing-book-modal {
    padding: 32px!important;
}

.is-disabled .pika-button, .is-inrange .pika-button {
    background: transparent;
}

.pika-prev, .pika-next {
    width: 24px;
    height: 24px;
    background-size: 100%;
    opacity: 1;
    margin-top: 4px;
}
.pika-next {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.78 12.7218C15.9207 12.5813 15.9998 12.3907 16 12.1918V11.8118C15.9977 11.6134 15.9189 11.4235 15.78 11.2818L10.64 6.15181C10.5461 6.05715 10.4183 6.00391 10.285 6.00391C10.1517 6.00391 10.0239 6.05715 9.93 6.15181L9.22 6.86181C9.12594 6.95397 9.07293 7.08012 9.07293 7.21181C9.07293 7.3435 9.12594 7.46964 9.22 7.56181L13.67 12.0018L9.22 16.4418C9.12534 16.5357 9.0721 16.6635 9.0721 16.7968C9.0721 16.9301 9.12534 17.0579 9.22 17.1518L9.93 17.8518C10.0239 17.9465 10.1517 17.9997 10.285 17.9997C10.4183 17.9997 10.5461 17.9465 10.64 17.8518L15.78 12.7218Z' fill='white'/%3E%3C/svg%3E");
}

.pika-prev {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.78 12.7218C15.9207 12.5813 15.9998 12.3907 16 12.1918V11.8118C15.9977 11.6134 15.9189 11.4235 15.78 11.2818L10.64 6.15181C10.5461 6.05715 10.4183 6.00391 10.285 6.00391C10.1517 6.00391 10.0239 6.05715 9.93 6.15181L9.22 6.86181C9.12594 6.95397 9.07293 7.08012 9.07293 7.21181C9.07293 7.3435 9.12594 7.46964 9.22 7.56181L13.67 12.0018L9.22 16.4418C9.12534 16.5357 9.0721 16.6635 9.0721 16.7968C9.0721 16.9301 9.12534 17.0579 9.22 17.1518L9.93 17.8518C10.0239 17.9465 10.1517 17.9997 10.285 17.9997C10.4183 17.9997 10.5461 17.9465 10.64 17.8518L15.78 12.7218Z' fill='white'/%3E%3C/svg%3E");
}

.tour-type .custom-radio {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 1px solid #FFF;
    box-sizing: border-box;
}

.tour-type input[type="radio"]:checked + .custom-radio {
    border: 1px solid #0057FF;
}

.tour-type input[type="radio"]:checked + .custom-radio::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0057FF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}