/* =========================================================
   BOOKING PAGE
   ========================================================= */

   .booking-page {
    display: grid;
    gap: 20px;
    padding-bottom: 32px;
}

.main-grid--booking {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 22px;
    align-items: start;
}

.form-card,
.trust-card,
.booking-steps,
.reviews-strip {
    padding: 24px;
}

.trust-card {
    position: sticky;
    top: 20px;
}

.form-intro,
.step p,
.trust-item span,
.hint {
    color: var(--muted);
    line-height: 1.55;
}

/* =========================================================
   HERO
   ========================================================= */

.booking-hero {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    background-image: url('/images/top.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-bottom: 14px;
}

.booking-hero__overlay {
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0.7;
    z-index: 1;
}

.booking-hero::after {
    display: none;
}

.booking-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 220px;
    padding-top: 12px;
    padding-bottom: 14px;
}

.booking-hero__topbar {
    position: relative;
    min-height: 76px;
}

.booking-hero__brand img {
    height: 100px;
    width: auto;
    display: block;
}

.lang-switch--booking {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    gap: 8px;
}

.lang-switch--booking a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--brand-line);
    background: rgba(252, 251, 249, 0.92);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
}

.lang-switch--booking a:hover,
.lang-switch--booking a.is-active {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.booking-hero__content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.booking-hero__title {
    margin: 0 0 8px;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--brand);
}

.booking-hero__text {
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.5;
    color: #565d67;
}

/* =========================================================
   PROCESS / TRUST
   ========================================================= */

.steps {
    display: grid;
    gap: 14px;
}

.booking-steps .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step,
.trust-item,
.company-box {
    border: 1px solid rgba(31, 36, 48, 0.08);
    border-radius: 14px;
    background: var(--surface-2);
    box-shadow: 0 6px 16px rgba(31, 36, 48, 0.04);
}

.step {
    display: flex;
    gap: 14px;
    padding: 14px;
    height: 100%;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.trust-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
}

.trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 700;
}

.company-box {
    padding: 16px;
}

/* =========================================================
   FORM
   ========================================================= */

.section-title {
    margin: 24px 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-dark);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 16px;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 700;
}

input,
textarea,
select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d8d1c8;
    border-radius: 12px;
    background: #fdfcfb;
    color: var(--text);
    font-size: 15px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.08);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.submit-wrap {
    margin-top: 10px;
}

.submit-btn {
    width: 100%;
}

.form-heading,
.step-title,
.trust-title {
    margin: 0;
}

.form-heading {
    margin-bottom: 10px;
}

.step-title {
    margin: 0 0 6px;
}

.trust-title {
    margin-bottom: 12px;
}

.hint--spaced {
    margin-top: 12px;
}

.calendar-hint {
    margin-bottom: 14px;
}

.terms-check-label a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-check-label a:hover {
    opacity: .88;
}

/* =========================================================
   CALENDAR
   ========================================================= */

#calendar-container {
    position: relative;
    transition: opacity .2s ease;
}

#calendar-container.is-loading {
    opacity: 0.55;
}

.calendar-shell {
    padding: 18px;
    border: 1px solid rgba(31, 36, 48, 0.08);
    border-radius: 16px;
    background: #fbfaf8;
    box-shadow: 0 8px 20px rgba(31, 36, 48, 0.05);
}

.calendar-head {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.calendar-month {
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--brand-line);
    border-radius: 10px;
    background: #f5efea;
    color: var(--brand-dark);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.calendar-nav-btn:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
}

.calendar-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-grid--weekdays {
    margin-bottom: 8px;
}

.calendar-weekday {
    padding-bottom: 4px;
    font-size: 12px;
    text-align: center;
    color: var(--muted);
}

.calendar-day {
    min-height: 78px;
    padding: 10px;
    border: 1px solid #e3dcd4;
    border-radius: 10px;
    background: #f4efe8;
    cursor: pointer;
}

.calendar-day:hover {
    border-color: #cdb8b8;
}

.calendar-num {
    font-size: 15px;
    font-weight: 700;
}

.calendar-note {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.35;
    color: var(--muted);
}

.calendar-legend {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.calendar-summary {
    margin-top: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #f5efea;
    border: 1px solid var(--brand-line);
}

.calendar-summary__count {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.calendar-summary__range {
    font-size: 13px;
    color: var(--text);
}

/* =========================================================
   CALENDAR STATES
   ========================================================= */

.calendar-day.is-open {
    background: rgba(47, 125, 74, 0.10);
    border-color: rgba(47, 125, 74, 0.24);
}

.calendar-day.is-booked,
.calendar-day.is-blocked {
    background: #e9e4dc;
    color: #888;
}

.calendar-day.is-sunday {
    background: #ece5dd;
    color: #7c0a0a;
}

.calendar-day.is-holiday {
    background: rgba(185, 74, 72, 0.08);
    border-color: rgba(185, 74, 72, 0.18);
    color: #8f4b4b;
}

.calendar-day.is-past {
    background: #ebe5de;
    border-color: #ddd5cb;
    color: #aaa39a;
    cursor: default !important;
}

.calendar-day.is-past .calendar-note {
    display: none;
}

.calendar-day.is-other {
    opacity: 0.26;
}

.calendar-day.is-disabled {
    cursor: default !important;
    opacity: 0.72;
}

.calendar-day.is-disabled:hover,
.calendar-day.is-past:hover {
    border-color: inherit;
}

.calendar-day.range-selected {
    background: rgba(155, 44, 44, 0.10) !important;
    border-color: rgba(155, 44, 44, 0.34) !important;
    box-shadow: inset 0 0 0 1px rgba(125, 31, 31, 0.10);
}

.calendar-day.is-today {
    box-shadow: inset 0 0 0 2px var(--success);
}

.calendar-day.is-today .calendar-num {
    color: var(--brand-dark);
}

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-strip--googlelike {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(31, 36, 48, 0.08);
    background: var(--surface-2);
    box-shadow: 0 8px 20px rgba(31, 36, 48, 0.05);
    overflow: hidden;
}

.reviews-google-badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.reviews-google-top {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.google-wordmark {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: Arial, Helvetica, sans-serif;
}

.g-blue { color: #4285F4; }
.g-red { color: #DB4437; }
.g-yellow { color: #F4B400; }
.g-green { color: #0F9D58; }

.reviews-google-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.reviews-stars {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1px;
    color: #fbbc04;
}

.reviews-score-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviews-score-row strong {
    font-size: 30px;
    line-height: 1;
    color: #202124;
}

.reviews-score-row span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.reviews-strip__ticker {
    overflow: hidden;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.reviews-track {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    animation: reviews-marquee 36s linear infinite;
    color: #3c4043;
    font-size: 14px;
    font-weight: 500;
}

.reviews-track span {
    position: relative;
    padding-left: 16px;
}

.reviews-track span::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #5f6368;
    opacity: 0.7;
}

.reviews-track strong {
    color: #202124;
    font-weight: 700;
}

@keyframes reviews-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-42%); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
    .main-grid--booking {
        grid-template-columns: 1fr;
    }

    .trust-card {
        position: static;
    }
}

@media (max-width: 980px) {
    .reviews-strip--googlelike,
    .booking-steps .steps,
    .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .form-card,
    .trust-card,
    .booking-steps,
    .reviews-strip {
        padding: 16px;
    }

    .booking-hero {
        min-height: 200px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .booking-hero__inner {
        min-height: 200px;
        padding-top: 10px;
        padding-bottom: 14px;
    }

    .booking-hero__topbar {
        min-height: 56px;
    }

    .booking-hero__brand img {
        height: 64px;
    }

    .lang-switch--booking {
        gap: 6px;
    }

    .lang-switch--booking a {
        min-width: 36px;
        height: 28px;
        padding: 0 8px;
        font-size: 11px;
    }

    .booking-hero__title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .booking-hero__text {
        font-size: 14px;
        line-height: 1.45;
    }

    .calendar-shell {
        padding: 10px;
    }

    .calendar-head {
        grid-template-columns: 36px 1fr 36px;
        gap: 8px;
        margin-bottom: 12px;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .calendar-month {
        font-size: 17px;
    }

    .calendar-grid {
        gap: 4px;
    }

    .calendar-weekday {
        font-size: 10px;
    }

    .calendar-day {
        min-height: 50px;
        padding: 4px;
        border-radius: 8px;
    }

    .calendar-num {
        font-size: 12px;
    }

    .calendar-note {
        display: none;
    }

    .btn {
        min-height: 40px;
        padding: 10px 14px;
        font-size: 14px;
    }

    .google-wordmark {
        font-size: 22px;
    }

    .reviews-score-row strong {
        font-size: 26px;
    }
}

.booking-hero__brand-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.booking-hero__brand a {
    display: inline-flex;
    align-items: center;
}

.booking-hero__brand img {
    display: block;
    max-height: 72px;
    width: auto;
}

.booking-hero__brand-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.booking-hero__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    background: rgba(255,255,255,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
}

.booking-hero__brand-name {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
}

.booking-hero__subline {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255,255,255,0.82);
}

.booking-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.booking-hero__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.booking-hero__contact a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.booking-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.booking-hero--pl .booking-hero__cta {
    color: #111111;
}

.booking-hero--de .booking-hero__cta {
    color: #7b1e2b;
}

@media (max-width: 980px) {
    .booking-hero__topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .booking-hero__actions {
        width: 100%;
        justify-content: flex-start;
    }

    .booking-hero__contact {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .booking-hero__brand-wrap {
        align-items: flex-start;
    }

    .booking-hero__brand img {
        max-height: 56px;
    }

    .booking-hero__brand-name {
        font-size: 16px;
    }

    .booking-hero__subline {
        font-size: 12px;
    }

    .booking-hero__actions {
        gap: 10px;
    }

    .booking-hero__cta {
        min-height: 38px;
        padding: 0 14px;
        font-size: 13px;
    }
}