/**
 * Transit & Flow Booking Widget — Hoffmann-style layout
 * Brand: navy #0D2545, aqua #0092cd
 * All styles scoped to .tf-booking-modal to avoid theme bleed
 */

/* Import Poppins directly as fallback in case WP enqueue is cached */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   Global Reset — isolate from WordPress theme
   ============================================ */
.tf-booking-modal,
.tf-booking-modal *,
.tf-booking-modal *::before,
.tf-booking-modal *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
    color: #1F2937 !important;
    font-size: 14px !important;
    -webkit-font-smoothing: antialiased !important;
    box-shadow: none !important;
    outline: none !important;
    list-style: none !important;
    text-align: left !important;
}

/* Font Awesome — preserve icon font-family despite global reset */
.tf-booking-modal .fa-solid,
.tf-booking-modal .fa-solid::before,
.tf-booking-modal .fa-regular,
.tf-booking-modal .fa-regular::before {
    font-family: "Font Awesome 6 Free" !important;
    font-style: normal !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: auto !important;
}
.tf-booking-modal .fa-solid,
.tf-booking-modal .fa-solid::before {
    font-weight: 900 !important;
}
.tf-booking-modal .fa-regular,
.tf-booking-modal .fa-regular::before {
    font-weight: 400 !important;
}

/* ============================================
   Overlay
   ============================================ */
.tf-booking-overlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px) !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 16px !important;
}

.tf-booking-overlay.tf-open {
    display: flex !important;
}

/* ============================================
   Modal
   ============================================ */
.tf-booking-modal {
    background: #FFFFFF !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 700px !important;
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
    position: relative !important;
}

/* ============================================
   Header
   ============================================ */
.tf-booking-modal .tf-modal-header {
    background: #0D2545 !important;
    padding: 16px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    position: relative !important;
    border-bottom: 3px solid #0092cd !important;
}

.tf-booking-modal .tf-logo {
    display: flex !important;
    align-items: center !important;
}

.tf-booking-modal .tf-logo-img {
    height: 36px !important;
    width: auto !important;
    display: block !important;
}

.tf-booking-modal .tf-modal-close {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #FFFFFF !important;
    font-size: 28px !important;
    cursor: pointer !important;
    opacity: 0.7 !important;
    transition: opacity 0.2s !important;
    line-height: 1 !important;
}

.tf-booking-modal .tf-modal-close:hover {
    opacity: 1 !important;
}

/* ============================================
   Stepper — Hoffmann style
   ============================================ */
.tf-booking-modal .tf-stepper {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 20px 24px 12px !important;
    flex-shrink: 0 !important;
    border-bottom: 1px solid #E5E7EB !important;
}

.tf-booking-modal .tf-stepper.tf-stepper-hidden {
    display: none !important;
}

.tf-booking-modal .tf-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
}

.tf-booking-modal .tf-step-dot {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    border: 2px solid #D1D5DB !important;
    background: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
    position: relative !important;
}

.tf-booking-modal .tf-step-dot .tf-check-svg {
    width: 12px !important;
    height: 12px !important;
    display: none !important;
}

/* Active step: bullseye */
.tf-booking-modal .tf-step.active .tf-step-dot {
    border-color: #0D2545 !important;
    background: #FFFFFF !important;
    box-shadow: inset 0 0 0 4px #FFFFFF, inset 0 0 0 7px #0D2545 !important;
}

/* Completed step: aqua with checkmark */
.tf-booking-modal .tf-step.completed .tf-step-dot {
    border-color: #0092cd !important;
    background: #0092cd !important;
}

.tf-booking-modal .tf-step.completed .tf-step-dot .tf-check-svg {
    display: block !important;
}

.tf-booking-modal .tf-step-label {
    font-size: 10px !important;
    color: #9CA3AF !important;
    white-space: nowrap !important;
    font-weight: 400 !important;
}

.tf-booking-modal .tf-step.active .tf-step-label {
    color: #0D2545 !important;
    font-weight: 400 !important;
}

.tf-booking-modal .tf-step.completed .tf-step-label {
    color: #0092cd !important;
    font-weight: 400 !important;
}

.tf-booking-modal .tf-step-line {
    flex: 1 !important;
    height: 2px !important;
    background: #E5E7EB !important;
    min-width: 16px !important;
    margin: 10px 4px 0 !important;
    transition: background 0.2s !important;
}

.tf-booking-modal .tf-step-line.completed {
    background: #0092cd !important;
}

/* ============================================
   Screens Container
   ============================================ */
.tf-booking-modal .tf-screens-container {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 20px 28px 16px !important;
}

.tf-booking-modal .tf-screen {
    display: none !important;
}

.tf-booking-modal .tf-screen.tf-screen-active {
    display: block !important;
}

.tf-booking-modal .tf-hidden {
    display: none !important;
}

/* ============================================
   Typography
   ============================================ */
.tf-booking-modal .tf-screen-title {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: #374151 !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}

.tf-booking-modal .tf-screen-subtitle {
    font-size: 16px !important;
    font-weight: 300 !important;
    color: #374151 !important;
    margin: 16px 0 12px !important;
}

.tf-booking-modal .tf-label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #374151 !important;
    margin: 16px 0 6px !important;
}

/* ============================================
   Inputs
   ============================================ */
.tf-booking-modal .tf-input {
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    color: #1F2937 !important;
    background: #FFFFFF !important;
    transition: border-color 0.2s !important;
}

.tf-booking-modal .tf-input-lg {
    padding: 16px 18px !important;
    font-size: 18px !important;
    border-radius: 10px !important;
}

.tf-booking-modal .tf-input:focus {
    border-color: #0092cd !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1) !important;
}

.tf-booking-modal .tf-input.tf-input-error {
    border-color: #E24B4A !important;
}

.tf-booking-modal .tf-input.tf-input-success {
    border-color: #10B981 !important;
}

.tf-booking-modal .tf-input-wrapper {
    position: relative !important;
}

.tf-booking-modal .tf-input-wrapper .tf-input {
    padding-right: 44px !important;
}

.tf-booking-modal .tf-input-icon {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 20px !important;
}

.tf-booking-modal .tf-input-row {
    display: flex !important;
    gap: 12px !important;
}

.tf-booking-modal .tf-input-col {
    flex: 1 !important;
}

.tf-booking-modal .tf-input-col-small {
    flex: 0 0 90px !important;
}

/* ============================================
   Customer Search Results
   ============================================ */
.tf-booking-modal .tf-customer-search-result {
    margin-top: 10px !important;
    min-height: 20px !important;
    font-size: 14px !important;
}

.tf-booking-modal .tf-customer-search-result.tf-search-found {
    color: #10B981 !important;
}

.tf-booking-modal .tf-customer-search-result.tf-search-not-found {
    color: #E24B4A !important;
}

.tf-booking-modal .tf-customer-search-result.tf-search-loading {
    color: #9CA3AF !important;
}

.tf-booking-modal .tf-customer-found-card {
    background: #F0FDF4 !important;
    border: 1px solid #BBF7D0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-top: 10px !important;
    font-size: 14px !important;
    color: #166534 !important;
}

.tf-booking-modal .tf-customer-found-card strong {
    color: #166534 !important;
    font-weight: 500 !important;
}

/* ============================================
   ZIP Validation
   ============================================ */
.tf-booking-modal .tf-zip-message {
    font-size: 14px !important;
    margin-top: 10px !important;
    min-height: 20px !important;
}

.tf-booking-modal .tf-zip-message.tf-zip-valid {
    color: #10B981 !important;
}

.tf-booking-modal .tf-zip-message.tf-zip-invalid {
    color: #E24B4A !important;
}

/* ============================================
   Toggle Pills — Hoffmann large style
   ============================================ */
.tf-booking-modal .tf-toggle-pill {
    display: flex !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.tf-booking-modal .tf-toggle-btn {
    flex: 1 !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    background: #F9FAFB !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    text-align: center !important;
}

.tf-booking-modal .tf-toggle-pill .tf-toggle-btn:first-child {
    border-radius: 8px 0 0 8px !important;
}

.tf-booking-modal .tf-toggle-pill .tf-toggle-btn:last-child {
    border-radius: 0 8px 8px 0 !important;
}

.tf-booking-modal .tf-toggle-btn.tf-toggle-active {
    background: #0D2545 !important;
    border-color: #0D2545 !important;
    color: #FFFFFF !important;
    font-weight: 500 !important;
}

/* ============================================
   Service Tiles — Hoffmann centered card style
   ============================================ */
.tf-booking-modal .tf-service-tiles {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.tf-booking-modal .tf-service-tile {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 20px 16px !important;
    min-height: 100px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    text-align: center !important;
    width: 100% !important;
}

.tf-booking-modal .tf-service-tile:hover {
    border-color: #0092cd !important;
}

.tf-booking-modal .tf-service-tile.tf-tile-selected {
    border-color: #0D2545 !important;
    background: #0D2545 !important;
}

.tf-booking-modal .tf-tile-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.tf-booking-modal .tf-tile-icon i.fa-solid,
.tf-booking-modal .tf-tile-icon i.fa-solid::before {
    font-size: 36px !important;
    color: #0D2545 !important;
    line-height: 1 !important;
}

.tf-booking-modal .tf-service-tile.tf-tile-selected .tf-tile-icon i.fa-solid,
.tf-booking-modal .tf-service-tile.tf-tile-selected .tf-tile-icon i.fa-solid::before {
    color: #FFFFFF !important;
}

.tf-booking-modal .tf-tile-label {
    font-size: 17px !important;
    font-weight: 400 !important;
    color: #0D2545 !important;
}

.tf-booking-modal .tf-service-tile.tf-tile-selected .tf-tile-label {
    color: #FFFFFF !important;
}

/* ============================================
   Radio Cards — Hoffmann style
   ============================================ */
.tf-booking-modal .tf-radio-cards {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.tf-booking-modal .tf-radio-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 16px 18px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    text-align: left !important;
    width: 100% !important;
}

.tf-booking-modal .tf-radio-card:hover {
    border-color: #0D2545 !important;
}

.tf-booking-modal .tf-radio-card.tf-card-selected {
    border-color: #0D2545 !important;
    background: #0D2545 !important;
}

.tf-booking-modal .tf-radio-card strong {
    display: block !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #0D2545 !important;
}

.tf-booking-modal .tf-radio-card.tf-card-selected strong {
    color: #FFFFFF !important;
}

.tf-booking-modal .tf-radio-card span {
    display: block !important;
    font-size: 13px !important;
    color: #6B7280 !important;
}

.tf-booking-modal .tf-radio-card.tf-card-selected span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ============================================
   Chips — Hoffmann pill style
   ============================================ */
.tf-booking-modal .tf-chip-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

.tf-booking-modal .tf-chip {
    padding: 8px 18px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 20px !important;
    background: #FFFFFF !important;
    font-size: 13px !important;
    color: #1F2937 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
}

.tf-booking-modal .tf-chip:hover {
    border-color: #0D2545 !important;
}

.tf-booking-modal .tf-chip.tf-chip-selected {
    background: #0D2545 !important;
    border-color: #0D2545 !important;
    color: #FFFFFF !important;
    font-weight: 400 !important;
}

/* ============================================
   Details Extra (emergency + textarea)
   ============================================ */
.tf-booking-modal .tf-details-extra {
    margin-top: 20px !important;
    padding-top: 16px !important;
    border-top: 1px solid #E5E7EB !important;
}

.tf-booking-modal .tf-inline-radios {
    display: flex !important;
    gap: 24px !important;
    margin-bottom: 8px !important;
}

.tf-booking-modal .tf-inline-radio {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 14px !important;
    color: #1F2937 !important;
    cursor: pointer !important;
}

.tf-booking-modal .tf-inline-radio input[type="radio"] {
    width: 16px !important;
    height: 16px !important;
    accent-color: #0D2545 !important;
    cursor: pointer !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
}

.tf-booking-modal .tf-textarea {
    resize: vertical !important;
    min-height: 120px !important;
    line-height: 1.6 !important;
}

/* ============================================
   Alert Strip
   ============================================ */
.tf-booking-modal .tf-alert-strip {
    background: rgba(0, 180, 216, 0.06) !important;
    border: 1px solid rgba(0, 180, 216, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-top: 16px !important;
    font-size: 13px !important;
    color: #374151 !important;
    text-align: center !important;
}

.tf-booking-modal .tf-alert-strip a {
    color: #0D2545 !important;
    font-weight: 500 !important;
}

/* ============================================
   SMS Notice
   ============================================ */
.tf-booking-modal .tf-sms-notice {
    background: rgba(0, 180, 216, 0.06) !important;
    border: 1px solid rgba(0, 180, 216, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-top: 16px !important;
    font-size: 13px !important;
    color: #374151 !important;
    line-height: 1.6 !important;
}

/* ============================================
   Address Validation
   ============================================ */
.tf-booking-modal .tf-address-validation {
    margin: 12px 0 !important;
    font-size: 14px !important;
    min-height: 20px !important;
}

.tf-booking-modal .tf-address-validation.tf-valid {
    color: #10B981 !important;
}

.tf-booking-modal .tf-address-validation.tf-invalid {
    color: #E24B4A !important;
}

/* ============================================
   Checkboxes
   ============================================ */
.tf-booking-modal .tf-checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin: 16px 0 !important;
    font-size: 13px !important;
    color: #374151 !important;
    line-height: 1.6 !important;
    cursor: pointer !important;
}

.tf-booking-modal .tf-checkbox-label input[type="checkbox"] {
    margin-top: 3px !important;
    flex-shrink: 0 !important;
    accent-color: #0D2545 !important;
    width: 16px !important;
    height: 16px !important;
    border: 1px solid #D1D5DB !important;
    cursor: pointer !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
}

.tf-booking-modal .tf-checkbox-label a {
    color: #0092cd !important;
    text-decoration: underline !important;
}

.tf-booking-modal .tf-checkbox-error {
    color: #E24B4A !important;
    font-size: 12px !important;
    margin-top: -8px !important;
    margin-bottom: 8px !important;
}

/* ============================================
   Calendar — Hoffmann style
   ============================================ */
.tf-booking-modal .tf-calendar-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 16px !important;
}

.tf-booking-modal .tf-calendar-month-select {
    padding: 8px 12px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    -webkit-appearance: auto !important;
    appearance: auto !important;
}

.tf-booking-modal .tf-calendar-header-right {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.tf-booking-modal .tf-calendar-today-btn {
    padding: 8px 16px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #1F2937 !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.tf-booking-modal .tf-calendar-today-btn:hover {
    border-color: #0D2545 !important;
}

.tf-booking-modal .tf-calendar-nav {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 6px !important;
    font-size: 18px !important;
    color: #6B7280 !important;
    background: #FFFFFF !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.tf-booking-modal .tf-calendar-nav:hover {
    border-color: #0D2545 !important;
    color: #0D2545 !important;
}

.tf-booking-modal .tf-calendar-weekdays {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    text-align: center !important;
    margin-bottom: 8px !important;
}

.tf-booking-modal .tf-calendar-weekdays span {
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #9CA3AF !important;
    text-align: center !important;
}

.tf-booking-modal .tf-calendar-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 2px !important;
    text-align: center !important;
}

.tf-booking-modal .tf-calendar-day {
    width: 38px !important;
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.15s !important;
    color: #1F2937 !important;
}

.tf-booking-modal .tf-calendar-day:hover:not(.tf-day-disabled):not(.tf-day-sunday) {
    background: rgba(0, 180, 216, 0.1) !important;
}

.tf-booking-modal .tf-calendar-day.tf-day-today {
    border: 2px solid #0092cd !important;
}

.tf-booking-modal .tf-calendar-day.tf-day-selected {
    background: #0D2545 !important;
    color: #FFFFFF !important;
}

.tf-booking-modal .tf-calendar-day.tf-day-disabled,
.tf-booking-modal .tf-calendar-day.tf-day-sunday {
    color: #D1D5DB !important;
    cursor: not-allowed !important;
}

.tf-booking-modal .tf-selected-date-display {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #0D2545 !important;
    margin: 16px 0 12px !important;
    padding-top: 16px !important;
    border-top: 1px solid #E5E7EB !important;
}

/* ============================================
   Time Chips
   ============================================ */
.tf-booking-modal .tf-time-slots {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.tf-booking-modal .tf-time-chip {
    padding: 10px 18px !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    font-size: 13px !important;
    color: #1F2937 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.tf-booking-modal .tf-time-chip:hover {
    border-color: #0092cd !important;
}

.tf-booking-modal .tf-time-chip.tf-time-selected {
    background: #0D2545 !important;
    border-color: #0D2545 !important;
    color: #FFFFFF !important;
}

.tf-booking-modal .tf-timezone-note {
    font-size: 12px !important;
    color: #9CA3AF !important;
    text-align: center !important;
    margin-bottom: 12px !important;
}

.tf-booking-modal .tf-schedule-notice {
    background: rgba(0, 180, 216, 0.06) !important;
    border: 1px solid rgba(0, 180, 216, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    color: #374151 !important;
    text-align: center !important;
    margin-top: 12px !important;
}

.tf-booking-modal .tf-schedule-notice a {
    color: #0D2545 !important;
    font-weight: 400 !important;
}

/* ============================================
   Summary Banner (Screen 6) — Hoffmann style
   ============================================ */
.tf-booking-modal .tf-summary-banner {
    background: #0D2545 !important;
    border-radius: 10px !important;
    padding: 18px 20px !important;
    margin-bottom: 16px !important;
}

.tf-booking-modal .tf-summary-service {
    font-size: 17px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    margin-bottom: 12px !important;
}

.tf-booking-modal .tf-summary-banner .tf-summary-row,
.tf-booking-modal .tf-summary-banner .tf-summary-row * {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13px !important;
    color: #FFFFFF !important;
    margin: 6px 0 !important;
}

.tf-booking-modal .tf-summary-banner .tf-summary-row i,
.tf-booking-modal .tf-summary-banner .tf-summary-row i::before {
    font-size: 14px !important;
    color: #FFFFFF !important;
    width: 16px !important;
    text-align: center !important;
}

.tf-booking-modal .tf-summary-banner .tf-summary-row a {
    color: #FFFFFF !important;
}

.tf-booking-modal .tf-estimate-notice {
    background: rgba(0, 180, 216, 0.06) !important;
    border: 1px solid rgba(0, 180, 216, 0.15) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    color: #374151 !important;
    margin-bottom: 16px !important;
    line-height: 1.6 !important;
}

/* ============================================
   Success Screen (Screen 7)
   ============================================ */
.tf-booking-modal .tf-success-icon {
    text-align: center !important;
    margin: 24px 0 16px !important;
}

.tf-booking-modal .tf-success-title {
    text-align: center !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    color: #0092cd !important;
    margin-bottom: 8px !important;
}

.tf-booking-modal .tf-success-subtitle {
    text-align: center !important;
    font-size: 14px !important;
    color: #6B7280 !important;
    margin-bottom: 8px !important;
}

.tf-booking-modal .tf-booking-ref {
    text-align: center !important;
    font-size: 14px !important;
    color: #1F2937 !important;
    margin-bottom: 20px !important;
}

.tf-booking-modal .tf-booking-ref strong {
    color: #0D2545 !important;
    font-weight: 500 !important;
}

.tf-booking-modal .tf-appointment-card {
    background: #F3F4F6 !important;
    border-radius: 10px !important;
    padding: 18px 20px !important;
    margin-bottom: 16px !important;
}

.tf-booking-modal .tf-appointment-card h3 {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #0D2545 !important;
    margin-bottom: 12px !important;
}

.tf-booking-modal .tf-detail-row {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 13px !important;
    margin: 6px 0 !important;
}

.tf-booking-modal .tf-detail-label {
    color: #6B7280 !important;
    font-weight: 400 !important;
}

.tf-booking-modal .tf-detail-value {
    color: #0D2545 !important;
    font-weight: 400 !important;
    text-align: right !important;
}

.tf-booking-modal .tf-email-sent-notice {
    text-align: center !important;
    font-size: 13px !important;
    color: #6B7280 !important;
    font-style: italic !important;
}

/* ============================================
   Footer Navigation — Hoffmann style
   ============================================ */
.tf-booking-modal .tf-modal-footer {
    display: flex !important;
    align-items: center !important;
    padding: 14px 28px !important;
    border-top: 1px solid #E5E7EB !important;
    flex-shrink: 0 !important;
    background: #FFFFFF !important;
}

.tf-booking-modal .tf-footer-spacer {
    flex: 1 !important;
}

.tf-booking-modal .tf-enter-hint {
    font-size: 12px !important;
    color: #9CA3AF !important;
    margin-right: 12px !important;
}

.tf-booking-modal .tf-btn {
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.tf-booking-modal .tf-btn-back {
    padding: 10px 24px !important;
    background: #FFFFFF !important;
    color: #1F2937 !important;
    border: 1px solid #D1D5DB !important;
}

.tf-booking-modal .tf-btn-back:hover {
    background: #F3F4F6 !important;
}

.tf-booking-modal .tf-btn-next {
    padding: 10px 28px !important;
    background: #0D2545 !important;
    color: #FFFFFF !important;
    border: 1px solid #0D2545 !important;
}

.tf-booking-modal .tf-btn-next:hover {
    background: #0a1d38 !important;
}

.tf-booking-modal .tf-btn-next:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
}

.tf-booking-modal .tf-btn-next.tf-btn-submit {
    background: #0D2545 !important;
    color: #FFFFFF !important;
}

/* ============================================
   Contact Strip
   ============================================ */
.tf-booking-modal .tf-contact-strip {
    text-align: center !important;
    padding: 10px 24px 14px !important;
    font-size: 12px !important;
    color: #6B7280 !important;
}

.tf-booking-modal .tf-contact-strip a {
    color: #0092cd !important;
}

.tf-booking-modal .tf-contact-sep {
    margin: 0 6px !important;
    color: #9CA3AF !important;
}

/* ============================================
   "Book Online" Trigger Button
   ============================================ */
button.tf-book-now {
    background: #0092cd !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    letter-spacing: 0.3px !important;
}

button.tf-book-now:hover {
    background: #009bb8 !important;
}

/* ============================================
   Google Places Autocomplete dropdown
   ============================================ */
.tf-booking-modal .tf-search-address,
.tf-booking-modal .tf-screen[data-screen="4b"] {
    position: relative !important;
}

.tf-booking-modal .tf-places-dropdown {
    position: absolute !important;
    z-index: 100 !important;
    left: 0 !important;
    right: 0 !important;
    background: #FFFFFF !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    margin-top: 4px !important;
    max-height: 220px !important;
    overflow-y: auto !important;
}

.tf-booking-modal .tf-places-item {
    padding: 10px 14px !important;
    font-size: 13px !important;
    color: #1F2937 !important;
    cursor: pointer !important;
    border-bottom: 1px solid #F3F4F6 !important;
    line-height: 1.4 !important;
}

.tf-booking-modal .tf-places-item:last-child {
    border-bottom: none !important;
}

.tf-booking-modal .tf-places-item:hover {
    background: #f0f9ff !important;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 480px) {
    .tf-booking-overlay {
        padding: 0 !important;
    }

    .tf-booking-modal {
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        height: 100vh !important;
    }

    .tf-booking-modal .tf-stepper {
        padding: 12px 12px 10px !important;
    }

    .tf-booking-modal .tf-step-label {
        font-size: 8px !important;
    }

    .tf-booking-modal .tf-screens-container {
        padding: 16px 16px 16px !important;
    }

    .tf-booking-modal .tf-modal-footer {
        padding: 12px 16px !important;
    }
}
