/* Beratungstermin-Buchung auf der Kontaktseite */

/* Tab-Buttons in der Contact-Card */
.contact-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-tab {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--ztc-bg-bg-3);
    background: transparent;
    color: var(--ztc-text-text-4);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 70px;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-tab:hover {
    background: color-mix(in srgb, var(--ztc-bg-bg-3) 8%, transparent);
}

.contact-tab.active {
    background: var(--ztc-bg-bg-3);
    color: #fff;
}

.contact-tab-panel {
    display: none;
}

.contact-tab-panel.active {
    display: block;
}

.appointment-booking-section {
    padding: 40px 0 20px;
}

.appointment-hero {
    margin-bottom: 28px;
}

.appointment-hero-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #eef2f7;
}

.appointment-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.appointment-hero-tag {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(17, 26, 44, .72);
    color: #fff;
    font-size: 10.5px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.appointment-hero-copy h2 {
    font-size: 22px;
    margin-bottom: 12px;
}

.appointment-hero-copy p {
    margin: 0 0 10px;
    font-size: 14px;
}

.appointment-eyebrow {
    display: block;
    font-size: 11px;
    color: var(--ztc-text-text-4);
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 10px;
    font-weight: 500;
}

.appointment-signoff {
    color: #5c6577;
    font-size: 12.5px;
    margin-top: 14px;
}

.appointment-hours-box {
    border-top: 1px solid #e1e6ed;
    border-bottom: 1px solid #e1e6ed;
    margin-bottom: 24px;
}

.appointment-hours-item {
    padding: 12px 18px 12px 0;
    border-right: 1px solid #e1e6ed;
}

.appointment-hours-item:last-child {
    border-right: none;
}

.appointment-hours-item b {
    display: block;
    color: #5c6577;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
    margin-bottom: 4px;
}

.appointment-hours-item span {
    font-size: 13.5px;
}

.appointment-monday-picker {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.appointment-monday-chip {
    border: 1px solid #e1e6ed;
    background: #fff;
    padding: 9px 14px;
    border-radius: 70px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all .15s;
}

.appointment-monday-chip:hover {
    border-color: var(--ztc-bg-bg-3);
}

.appointment-monday-chip.selected {
    background: var(--ztc-bg-bg-3);
    border-color: var(--ztc-bg-bg-3);
    color: #fff;
}

.appointment-monday-chip .count {
    display: inline-block;
    margin-left: 7px;
    opacity: .7;
    font-size: 11.5px;
}

.appointment-slot-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 8px;
}

.appointment-slot-grid.active {
    display: grid;
}

.appointment-slot {
    border: 1px solid #e1e6ed;
    border-radius: 70px;
    padding: 11px 6px;
    text-align: center;
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    background: #fff;
    transition: all .12s;
    font-variant-numeric: tabular-nums;
}

.appointment-slot:hover {
    border-color: var(--ztc-bg-bg-3);
    background: color-mix(in srgb, var(--ztc-bg-bg-3) 8%, transparent);
}

.appointment-slot.selected {
    background: var(--ztc-bg-bg-3);
    border-color: var(--ztc-bg-bg-3);
    color: #fff;
}

.appointment-legend {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #5c6577;
}

.appointment-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.appointment-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.appointment-dot.free {
    background: #fff;
    border: 1.5px solid #c7cedb;
}

.appointment-dot.taken {
    background: #c7cedb;
}

.appointment-form-panel {
    border-top: 1px solid #e1e6ed;
    margin-top: 22px;
    padding-top: 22px;
}

.appointment-selected-slot-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    background: color-mix(in srgb, var(--ztc-bg-bg-3) 10%, transparent);
    border-radius: 70px;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ztc-text-text-4);
}

.appointment-selected-slot-banner button {
    background: none;
    border: none;
    color: var(--ztc-text-text-4);
    text-decoration: underline;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.appointment-form-panel label {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    color: #5c6577;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.appointment-confirm-box {
    text-align: center;
    padding: 38px 20px;
}

.appointment-confirm-box .appointment-check {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e6f5ee;
    color: #1f8a5c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.appointment-confirm-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.appointment-confirm-box p {
    color: #5c6577;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13.5px;
}

.appointment-empty-state {
    text-align: center;
    color: #5c6577;
    padding: 44px 10px;
    font-size: 13.5px;
}
