:root {
    --ink: #1d2146;
    --muted: #6d7682;
    --line: #dfe8e2;
    --field: #359957;
    --field-dark: #247a43;
    --accent: #56c87d;
    --surface: #ffffff;
    --soft: #f6faf8;
}

body {
    background: var(--soft);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 12%, rgba(86,200,125,.24), transparent 30%),
        radial-gradient(circle at 82% 4%, rgba(53,153,87,.16), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,248,1));
}

.app-nav {
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(16,32,26,.08);
    backdrop-filter: blur(12px);
}

.public-nav-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.public-support-link {
    align-items: center;
    background: rgba(53,153,87,.10);
    border: 1px solid rgba(53,153,87,.18);
    border-radius: 999px;
    color: var(--field-dark);
    display: inline-flex;
    gap: 7px;
    padding: 6px 11px;
    text-decoration: none;
}

.public-support-link span {
    color: #314139;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.public-support-link strong {
    font-size: .9rem;
}

.public-support-link:hover {
    background: rgba(53,153,87,.16);
    color: var(--field-dark);
}

.public-management-btn {
    align-items: center;
    background: linear-gradient(135deg, var(--field), var(--field-dark));
    border: 1px solid rgba(36,122,67,.34);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(36,122,67,.18);
    color: #fff !important;
    display: inline-flex;
    font-size: .86rem;
    font-weight: 650;
    gap: 8px;
    justify-content: center;
    min-height: 38px;
    padding: .48rem .9rem;
}

.public-management-btn::after {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    height: 7px;
    opacity: .9;
    transform: rotate(45deg);
    width: 7px;
}

.public-management-btn:hover,
.public-management-btn:focus {
    background: linear-gradient(135deg, var(--field-dark), #166536);
    border-color: rgba(36,122,67,.48);
    box-shadow: 0 12px 26px rgba(36,122,67,.24);
    color: #fff !important;
}

.public-home-btn {
    align-items: center;
    border-color: rgba(36,122,67,.35);
    border-radius: 999px;
    color: var(--field-dark);
    display: inline-flex;
    font-size: .86rem;
    font-weight: 650;
    justify-content: center;
    min-height: 38px;
    padding: .48rem .9rem;
}

.public-home-btn:hover,
.public-home-btn:focus {
    background: rgba(53,153,87,.10);
    border-color: var(--field-dark);
    color: var(--field-dark);
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--field), var(--accent));
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255,255,255,.8), 0 8px 18px rgba(53,153,87,.22);
}

.brand-wordmark {
    width: 164px;
    max-width: 100%;
    height: auto;
    display: block;
}

.landing-home-logo {
    height: 80px;
    width: auto;
}

.sidebar .brand-wordmark {
    width: 222px;
}

.hero-identity {
    align-items: center;
    display: flex;
    gap: 18px;
    min-width: 0;
}

.hero-identity-copy {
    min-width: 0;
}

.turf-hero-logo {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    flex: 0 0 auto;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255,255,255,.9), 0 14px 30px rgba(53,153,87,.18);
}

.hero-band {
    padding: 48px 0 28px;
}

.hero-title {
    font-size: clamp(1.45rem, 2.4vw, 2.6rem);
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 0;
}

.hero-address {
    color: #247a43;
    font-size: 1.02rem;
    font-weight: 800;
    margin-top: 10px;
}

.hero-copy {
    max-width: 680px;
    color: #46524c;
    font-size: 1.05rem;
}

.landing-hero {
    align-items: flex-end;
    background:
        linear-gradient(135deg, #103d2b 0%, #247a43 62%, #359957 100%);
    border-radius: 8px;
    color: #fff;
    display: flex;
    min-height: 430px;
    margin: 28px 0 22px;
    overflow: hidden;
    padding: 42px;
}

.landing-hero-copy {
    max-width: 820px;
}

.landing-kicker {
    color: #c7f7d6;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.landing-hero h1 {
    font-size: clamp(2rem, 5vw, 4.4rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 16px;
    max-width: 760px;
}

.landing-hero p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
    line-height: 1.55;
    margin: 0;
    max-width: 760px;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.app-download-btn {
    align-items: center;
    display: inline-flex;
    gap: 9px;
}

.play-store-icon {
    align-items: center;
    background: #fff;
    border-radius: 7px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.play-store-icon svg {
    display: block;
    height: 20px;
    width: 20px;
}

.play-store-blue { fill: #00a0ff; }
.play-store-green { fill: #00d084; }
.play-store-yellow { fill: #ffce00; }
.play-store-red { fill: #ff3d00; }

.landing-section {
    padding: 8px 0 42px;
}

.landing-section-muted {
    background: rgba(255,255,255,.54);
    border: 1px solid rgba(53,153,87,.10);
    border-radius: 8px;
    margin-bottom: 42px;
    padding: 28px;
}

.landing-visual-section {
    padding-top: 0;
}

.landing-section-heading {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.landing-section-title {
    font-size: 1.55rem;
    font-weight: 850;
    margin: 0 0 4px;
}

.landing-section-copy {
    color: var(--muted);
    margin: 0;
}

.landing-feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-feature {
    background: #fff;
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(9,45,30,.08);
    padding: 18px;
}

.landing-feature strong {
    color: var(--field-dark);
    display: block;
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.landing-feature span {
    color: var(--muted);
    display: block;
    line-height: 1.45;
}

.landing-steps {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-step {
    background: #fff;
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    padding: 18px;
}

.landing-step span {
    align-items: center;
    background: var(--field-dark);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    margin-bottom: 12px;
    width: 30px;
}

.landing-step strong,
.landing-faq strong {
    color: var(--ink);
    display: block;
    font-size: 1rem;
    margin-bottom: 7px;
}

.landing-step p,
.landing-faq p {
    color: var(--muted);
    line-height: 1.45;
    margin: 0;
}

.landing-split {
    align-items: start;
    background: #fff;
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(9,45,30,.08);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    padding: 24px;
}

.landing-check-list {
    display: grid;
    gap: 10px;
}

.landing-ops-side {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.landing-check-list div {
    background: #f6faf8;
    border: 1px solid rgba(53,153,87,.12);
    border-radius: 8px;
    color: var(--field-dark);
    font-weight: 800;
    padding: 12px 14px;
}

.landing-product-visual {
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(9,45,30,.08);
    display: block;
    height: auto;
    object-fit: contain;
    width: 100%;
}

.landing-faq-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-faq {
    background: #fff;
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    padding: 18px;
}

.landing-contact {
    align-items: center;
    background: linear-gradient(135deg, #103d2b, #247a43);
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 28px;
}

.landing-contact h2 {
    font-size: 1.7rem;
    font-weight: 850;
    margin: 0 0 8px;
}

.landing-contact p {
    color: rgba(255,255,255,.78);
    margin: 0;
}

.landing-contact-actions {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.landing-contact .public-support-link,
.landing-address {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.22);
    color: #fff;
}

.landing-contact .public-support-link {
    align-items: flex-start;
    border-radius: 8px;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
    min-height: 48px;
    padding: 8px 13px;
}

.landing-contact .app-download-link {
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.app-download-copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.landing-contact .public-support-link > span,
.landing-contact .app-download-copy > span,
.landing-address span {
    color: rgba(255,255,255,.82);
}

.landing-address {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
    padding: 8px 13px;
}

.landing-address span {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-address strong,
.landing-contact .public-support-link strong,
.landing-contact .app-download-copy strong {
    color: #fff;
}

.onboarding-shell {
    padding-bottom: 56px;
}

.onboarding-hero {
    align-items: end;
    background: linear-gradient(135deg, #103d2b 0%, #247a43 64%, #359957 100%);
    border-radius: 8px;
    color: #fff;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 28px 0 18px;
    padding: 36px;
}

.onboarding-hero h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 12px;
}

.onboarding-hero p {
    color: rgba(255,255,255,.84);
    font-size: 1.06rem;
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
}

.onboarding-hero-note {
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 8px;
    min-width: 220px;
    padding: 16px;
}

.onboarding-hero-note strong,
.onboarding-hero-note span {
    display: block;
}

.onboarding-hero-note strong {
    font-size: .82rem;
    letter-spacing: .08em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.onboarding-hero-note span {
    color: #dffbe8;
    font-size: 1.08rem;
    font-weight: 850;
}

.onboarding-form-card,
.onboarding-success {
    background: rgba(255,255,255,.97);
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(9,45,30,.10);
}

.onboarding-form-card {
    display: grid;
    gap: 18px;
    padding: 20px;
}

.onboarding-section {
    background: linear-gradient(180deg, #ffffff, #fbfdfb);
    border: 1px solid rgba(16,32,26,.09);
    border-radius: 8px;
    padding: 20px;
}

.onboarding-section-heading {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.onboarding-section-heading > span {
    align-items: center;
    background: var(--field-dark);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.onboarding-section-heading h2 {
    font-size: 1.18rem;
    font-weight: 850;
    margin: 0 0 3px;
}

.onboarding-section-heading p {
    color: var(--muted);
    margin: 0;
}

.onboarding-submit-row {
    align-items: center;
    background: #f6faf8;
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 18px 20px;
}

.onboarding-submit-row strong,
.onboarding-submit-row span {
    display: block;
}

.onboarding-submit-row span {
    color: var(--muted);
    margin-top: 3px;
}

.onboarding-success {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding: 22px;
}

.onboarding-success h2 {
    font-size: 1.3rem;
    font-weight: 850;
    margin: 0 0 6px;
}

.onboarding-success p {
    color: var(--muted);
    margin: 0;
}

.landing-turf-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.landing-turf-card {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(53,153,87,.14);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(9,45,30,.08);
    color: var(--ink);
    display: flex;
    gap: 14px;
    min-height: 110px;
    padding: 16px;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.landing-turf-card:hover {
    border-color: var(--field);
    box-shadow: 0 18px 42px rgba(53,153,87,.16);
    color: var(--ink);
    transform: translateY(-2px);
}

.landing-turf-card img {
    border-radius: 12px;
    flex: 0 0 auto;
    height: 58px;
    object-fit: cover;
    width: 58px;
}

.landing-turf-card h3 {
    font-size: 1.05rem;
    font-weight: 850;
    margin: 0 0 4px;
}

.landing-turf-card p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0;
}

.landing-turf-card span {
    color: var(--field-dark);
    display: inline-block;
    font-size: .88rem;
    font-weight: 800;
    margin-top: 7px;
}

.hero-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-contact-chip {
    background: #fff;
    border: 1px solid rgba(53,153,87,.18);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(53,153,87,.10);
    color: var(--field-dark);
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    line-height: 1.15;
    max-width: 100%;
    min-height: 48px;
    padding: 8px 15px;
    text-decoration: none;
}

.hero-contact-chip span {
    color: var(--muted);
    display: block;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-contact-chip strong {
    display: block;
    overflow-wrap: anywhere;
}

.hero-contact-chip:hover {
    border-color: var(--field);
    color: var(--field-dark);
}

.booking-panel,
.admin-panel,
.toolbar-card {
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(53,153,87,.12);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(9,45,30,.10);
}

.booking-panel {
    padding: 20px;
}

.booking-workspace {
    align-items: start;
}

.booking-toolbar {
    background: linear-gradient(180deg, #fff, #fbfcfa);
    border: 1px solid rgba(16,32,26,.08);
    border-radius: 8px;
    padding: 10px;
    box-shadow: inset 0 -1px 0 rgba(53,153,87,.06);
}

.booking-sidebar {
    display: grid;
    gap: 14px;
}

.toolbar-card {
    padding: 14px;
}

.admin-panel {
    padding: 18px;
}

.dashboard-main {
    min-width: 0;
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
}

.date-stepper {
    --date-control-height: 48px;
    display: grid;
    grid-template-columns: var(--date-control-height) minmax(180px, 1fr) var(--date-control-height);
    gap: 8px;
    align-items: center;
    max-width: 390px;
}

.date-stepper .form-control {
    height: var(--date-control-height);
    min-height: var(--date-control-height);
}

.date-picker-shell {
    height: var(--date-control-height);
    min-height: var(--date-control-height);
    position: relative;
}

.date-picker-shell .native-date-control {
    caret-color: transparent;
    color: transparent;
    cursor: pointer;
    height: 100%;
    min-height: var(--date-control-height);
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.date-picker-shell .native-date-control::-webkit-datetime-edit,
.date-picker-shell .native-date-control::-webkit-datetime-edit-fields-wrapper,
.date-picker-shell .native-date-control::-webkit-datetime-edit-text,
.date-picker-shell .native-date-control::-webkit-datetime-edit-month-field,
.date-picker-shell .native-date-control::-webkit-datetime-edit-day-field,
.date-picker-shell .native-date-control::-webkit-datetime-edit-year-field {
    color: transparent;
}

.date-picker-shell .native-date-control::-webkit-calendar-picker-indicator {
    cursor: pointer;
    height: auto;
    inset: 0;
    opacity: 0;
    position: absolute;
    width: auto;
}

.date-display-text {
    align-items: center;
    color: var(--field-dark);
    display: flex;
    font-weight: 800;
    inset: 0;
    justify-content: center;
    pointer-events: none;
    position: absolute;
    text-align: center;
    z-index: 2;
    padding: .62rem 2rem;
    width: 100%;
}

.date-picker-shell:focus-within .native-date-control {
    background-color: #fff;
    border-color: var(--field);
    box-shadow: 0 0 0 .22rem rgba(53,153,87,.14);
}

.date-stepper .btn {
    align-items: center;
    border-color: #cfdcd4;
    color: var(--field-dark);
    display: inline-flex;
    height: var(--date-control-height);
    justify-content: center;
    min-height: var(--date-control-height);
    padding-left: 0;
    padding-right: 0;
    width: var(--date-control-height);
}

.date-stepper .btn:hover,
.date-stepper .btn:focus {
    background: rgba(53,153,87,.10);
    border-color: var(--field);
    color: var(--field-dark);
}

.date-stepper .btn:disabled {
    background: #eef1ed;
    border-color: #dce5df;
    color: #a2ada6;
    opacity: 1;
    cursor: not-allowed;
}

.date-nav-btn::before {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    display: block;
    height: 11px;
    width: 11px;
}

.date-nav-prev::before {
    transform: rotate(-135deg);
}

.date-nav-next::before {
    transform: rotate(45deg);
}

.slot-card {
    min-height: 110px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    background: #fff;
    text-align: left;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.slot-card:not(:disabled):hover,
.slot-card.active {
    border-color: var(--field);
    box-shadow: 0 10px 24px rgba(53,153,87,.16);
    transform: translateY(-1px);
}

.slot-card:disabled {
    opacity: .55;
    background: #eef1ed;
}

.slot-time {
    font-weight: 800;
    display: block;
}

.slot-price {
    color: var(--field-dark);
    font-weight: 700;
}

.slot-state-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 800;
    margin-top: 10px;
    padding: 5px 10px;
}

.slot-state-available {
    background: rgba(53,153,87,.12);
    border: 1px solid rgba(53,153,87,.22);
    color: var(--field-dark);
}

.slot-state-booked {
    background: #fff3cd;
    border: 1px solid #f3d27a;
    color: #8a6500;
}

.slot-state-otp_pending {
    background: #fff7e8;
    border: 1px solid #f4c36b;
    color: #8a5200;
}

.slot-state-payment_pending {
    background: #e8f1ff;
    border: 1px solid #99bff7;
    color: #0f4f96;
}

.slot-state-blocked {
    background: #f8d7da;
    border: 1px solid #efadb5;
    color: #842029;
}

.booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(112px, 1fr));
    gap: 6px;
    flex: 1 1 540px;
}

.step-pill {
    align-items: center;
    background: #f3f8f5;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #66756e;
    display: flex;
    font-size: .9rem;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    position: relative;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.step-pill span {
    align-items: center;
    background: rgba(109,118,130,.12);
    border-radius: 999px;
    display: inline-flex;
    font-size: .78rem;
    height: 24px;
    justify-content: center;
    min-width: 24px;
}

.step-pill.active {
    background: #fff;
    box-shadow: 0 8px 22px rgba(53,153,87,.14);
    color: var(--field-dark);
    border-color: var(--field);
}

.step-pill.active span {
    background: var(--field);
    color: #fff;
}

.summary-box {
    background: linear-gradient(180deg, #fbfdfb, #f5faf7);
    border: 1px solid rgba(53,153,87,.16);
    border-radius: 8px;
    box-shadow: inset 4px 0 0 rgba(53,153,87,.18);
    padding: 14px 16px;
}

.booking-selection-summary {
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.booking-selection-summary.has-date {
    background: linear-gradient(135deg, #f0fff5, #ffffff);
    border-color: rgba(53,153,87,.42);
    box-shadow: 0 12px 28px rgba(53,153,87,.12), inset 4px 0 0 var(--field);
}

.booking-selection-summary.is-selected {
    background: linear-gradient(135deg, #e7fff0, #ffffff);
    border-color: var(--field);
    box-shadow: 0 16px 34px rgba(53,153,87,.18), inset 4px 0 0 var(--field-dark);
    transform: translateY(-1px);
}

.form-stage {
    background: linear-gradient(180deg, #ffffff, #fbfdfb);
    border: 1px solid rgba(16,32,26,.10);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(9,45,30,.05);
    padding: 18px;
}

.form-stage .row {
    --bs-gutter-x: .9rem;
    --bs-gutter-y: .9rem;
}

.customer-stage {
    opacity: .74;
    transition: border-color .18s ease, box-shadow .18s ease, opacity .18s ease, background-color .18s ease;
}

.customer-stage.is-ready {
    background: linear-gradient(180deg, #ffffff, #f6fff9);
    border-color: rgba(53,153,87,.52);
    box-shadow: 0 14px 34px rgba(53,153,87,.18), inset 4px 0 0 var(--field);
    opacity: 1;
}

.customer-stage.is-ready .form-stage-title {
    color: var(--field-dark);
}

.customer-stage.attention-pulse {
    animation: customerPulse 1.15s ease;
}

.next-step-hint {
    background: #e9f9ee;
    border: 1px solid rgba(53,153,87,.24);
    border-radius: 8px;
    color: #183f2a;
    margin-bottom: 14px;
    padding: 12px 14px;
}

.next-step-kicker {
    color: var(--field-dark);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .05em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.stage-confirmation {
    background: #ecfdf3;
    border: 1px solid rgba(53,153,87,.30);
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(53,153,87,.12);
    padding: 14px 16px;
}

.stage-confirmation-title {
    color: var(--field-dark);
    font-weight: 900;
}

.stage-confirmation-copy {
    color: #334a3d;
    margin-top: 2px;
}

.form-stage-muted {
    background: #fbfcfa;
}

.form-stage-title {
    align-items: center;
    color: var(--field-dark);
    display: flex;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-label {
    color: #26372f;
    font-size: .86rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.form-label-row {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 7px;
    min-height: 22px;
}

.field-inline-help {
    background: #f4f6f5;
    border: 1px solid #dce3df;
    border-radius: 999px;
    color: #63736a;
    display: inline-flex;
    flex: 0 1 auto;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.05;
    max-width: 68%;
    overflow: hidden;
    padding: .25rem .48rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field-inline-help:empty {
    display: none;
}

.form-control,
.form-select {
    background-color: #fbfdfb;
    border-color: #d4e1d9;
    border-radius: 8px;
    border-width: 1px;
    min-height: 44px;
    padding: .62rem .78rem;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.form-control:hover,
.form-select:hover {
    border-color: #b8d5c3;
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: var(--field);
    box-shadow: 0 0 0 .22rem rgba(53,153,87,.14);
}

.form-control::placeholder {
    color: #9aa8a1;
}

textarea.form-control {
    min-height: 104px;
    resize: vertical;
}

.form-text {
    color: #6c7771;
    font-size: .82rem;
    margin-top: 6px;
}

.account-turf-field-required .form-label {
    color: #842029;
}

.account-password-group {
    display: block;
    position: relative;
}

.account-password-group .form-control {
    min-width: 0;
    padding-right: 3rem;
}

.account-password-group .password-generate-btn {
    align-items: center;
    background: rgba(53,153,87,.10);
    border: 1px solid rgba(53,153,87,.20);
    border-radius: 8px;
    color: var(--field-dark);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .16s ease, border-color .16s ease, color .16s ease;
    width: 36px;
}

.account-password-group .password-generate-btn:hover,
.account-password-group .password-generate-btn:focus {
    background: rgba(53,153,87,.18);
    border-color: rgba(53,153,87,.34);
    color: var(--field-dark);
    outline: 0;
}

.account-password-group .password-generate-btn:focus-visible {
    box-shadow: 0 0 0 .18rem rgba(53,153,87,.18);
}

.account-password-group .password-generate-btn svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 18px;
}

.booking-actions {
    display: grid;
    gap: 8px;
}

.booking-actions .btn {
    font-weight: 700;
    min-height: 48px;
}

.booking-success {
    align-items: flex-start;
    background: linear-gradient(135deg, #e9f9ee, #ffffff);
    border: 1px solid rgba(53,153,87,.32);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(53,153,87,.16);
    color: #183f2a;
    display: flex;
    gap: 14px;
    margin-top: 16px;
    padding: 18px;
}

.booking-success.d-none {
    display: none !important;
}

.success-mark {
    align-items: center;
    background: var(--field);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 38px;
    font-size: 1.25rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    line-height: 1;
}

.success-title {
    color: var(--field-dark);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.25;
}

.success-copy {
    color: #334a3d;
    margin-top: 3px;
}

.success-meta {
    color: #607067;
    font-size: .9rem;
    margin-top: 8px;
}

.success-meta-line + .success-meta-line {
    margin-top: 3px;
}

.credit-warning-strip {
    align-items: center;
    background: #fff8e1;
    border: 1px solid #f2d27b;
    border-radius: 8px;
    color: #6b4b00;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px 16px;
}

.metric-label {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}

.metric-help {
    align-items: center;
    background: rgba(53,153,87,.10);
    border: 1px solid rgba(53,153,87,.20);
    border-radius: 999px;
    color: var(--field-dark);
    cursor: help;
    display: inline-flex;
    font-size: .72rem;
    font-weight: 900;
    height: 18px;
    justify-content: center;
    line-height: 1;
    width: 18px;
}

@keyframes customerPulse {
    0% { transform: translateY(0); }
    35% { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(53,153,87,.24), inset 4px 0 0 var(--field); }
    100% { transform: translateY(0); }
}

.admin-panel.row {
    align-items: end;
    margin-left: 0;
    margin-right: 0;
    row-gap: 16px;
}

.admin-panel.row > [class*="col-"] {
    min-width: 0;
}

.admin-panel .row {
    --bs-gutter-x: .95rem;
    --bs-gutter-y: 1rem;
}

.admin-panel .form-label,
.toolbar-card .form-label {
    color: #31463b;
    font-size: .82rem;
    letter-spacing: .01em;
    margin-bottom: 6px;
}

.admin-panel .form-control,
.admin-panel .form-select,
.toolbar-card .form-control,
.toolbar-card .form-select {
    background-color: #fbfdfb;
    width: 100%;
}

.toolbar-card {
    align-items: end !important;
    row-gap: 12px !important;
}

.toolbar-card > div {
    flex: 1 1 190px;
    min-width: min(100%, 190px);
}

.toolbar-card .btn {
    white-space: nowrap;
}

.admin-panel .form-check {
    align-items: center;
    background: #fbfdfb;
    border: 1px solid rgba(16,32,26,.08);
    border-radius: 8px;
    display: flex;
    gap: 8px;
    min-height: 42px;
    padding: 10px 12px;
}

.admin-panel .form-check-input {
    flex: 0 0 auto;
    margin: 0;
}

.admin-panel .form-check-label,
.admin-panel .form-check {
    color: #334a3d;
    font-weight: 700;
}

.form-control[type="file"] {
    padding-bottom: .52rem;
    padding-top: .52rem;
}

.report-actions {
    padding: 16px;
}

.report-account-name {
    overflow-wrap: anywhere;
}

.report-download-btn,
.report-email-btn {
    width: 100%;
    white-space: nowrap;
}

.report-email-form .row {
    --bs-gutter-x: .5rem;
    --bs-gutter-y: .5rem;
}

.report-email-form .form-control {
    min-height: 42px;
}

.payment-bkash-field {
    transition: opacity .16s ease;
}

.admin-panel.table-responsive {
    padding: 12px;
}

.admin-panel.table-responsive .table {
    margin-bottom: 0;
}

.table:not(.slot-admin-table) .form-control,
.table:not(.slot-admin-table) .form-select {
    background-color: #fff;
    min-width: 138px;
}

.table .form-control-sm {
    min-height: 38px;
    padding-bottom: .45rem;
    padding-top: .45rem;
}

.slot-admin-table th,
.slot-admin-table td {
    overflow: visible;
    padding: .55rem .42rem;
    vertical-align: middle;
}

.slot-admin-table {
    table-layout: fixed;
    width: 100%;
}

.slot-col-title { width: 15%; }
.slot-col-time { width: 15%; }
.slot-col-days { width: 19%; }
.slot-col-duration { width: 8%; }
.slot-col-rate { width: 10%; }
.slot-col-minimum { width: 10%; }
.slot-col-status { width: 8%; }
.slot-col-update { width: 15%; }

.slot-admin-table .form-control,
.slot-admin-table .form-select {
    background-color: #fff;
    font-size: .86rem;
    max-width: 100%;
    min-height: 38px;
    padding: .46rem .5rem;
    width: 100%;
}

.slot-admin-table .slot-rate-cell .form-control,
.slot-admin-table .slot-minimum-cell .form-control {
    font-size: .82rem;
    padding-left: .4rem;
    padding-right: .4rem;
}

.slot-admin-table .slot-time-inputs {
    align-items: center;
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr;
}

.slot-time-field {
    display: grid;
    gap: 3px;
    margin: 0;
}

.slot-time-field span {
    color: #607067;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.slot-admin-table .slot-time-separator {
    display: none;
}

.slot-time-separator {
    color: #6d7d74;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.slot-duration-preview,
.slot-duration-value {
    align-items: center;
    background: #f4f8f5;
    border: 1px solid #dce8df;
    border-radius: 8px;
    color: var(--field-dark);
    display: inline-flex;
    font-size: .84rem;
    font-weight: 800;
    min-height: 42px;
    padding: .45rem .65rem;
    white-space: nowrap;
}

.slot-admin-table .slot-duration-value {
    justify-content: center;
    min-height: 38px;
    padding: .42rem .36rem;
    width: 100%;
}

.slot-day-checks {
    align-items: center;
    gap: 4px !important;
}

.admin-panel .slot-day-checks .btn {
    flex: 0 0 auto;
    width: auto;
}

.slot-day-checks .btn {
    align-items: center;
    background: #f4f6f5;
    border-color: #dce3df;
    border-radius: 999px;
    color: #6b7770;
    display: inline-flex;
    font-size: .74rem;
    gap: 4px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-height: 30px;
    padding: .32rem .46rem;
}

.slot-day-checks .btn:hover {
    background: #eef2f0;
    border-color: #c9d4ce;
    color: var(--field-dark);
}

.slot-day-checks .btn-check:checked + .btn {
    background: var(--field);
    border-color: var(--field);
    box-shadow: 0 7px 16px rgba(53,153,87,.22);
    color: #fff;
}

.slot-day-icon {
    align-items: center;
    display: inline-flex;
    font-size: .78rem;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    width: .85rem;
}

.slot-day-icon-on {
    display: none;
}

.slot-day-icon-off {
    color: #9aa5a0;
    display: inline-block;
}

.slot-day-checks .btn-check:checked + .btn .slot-day-icon-on {
    color: #fff;
    display: inline-block;
}

.slot-day-checks .btn-check:checked + .btn .slot-day-icon-off {
    display: none;
}

.slot-day-checks .btn-check:focus + .btn,
.slot-day-checks .btn:focus {
    box-shadow: 0 0 0 .18rem rgba(53,153,87,.18);
}

.slot-row-actions {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-panel .slot-row-actions .btn {
    font-size: .78rem;
    min-height: 34px;
    padding: .36rem .5rem;
    width: 100%;
}

.table td:last-child .btn,
.table td:last-child form {
    margin-bottom: 4px;
}

.table td:last-child .slot-row-actions .btn,
.table td:last-child .slot-row-actions form {
    margin-bottom: 0 !important;
}

.admin-panel .btn,
.toolbar-card .btn {
    font-weight: 700;
    min-height: 42px;
}

.btn-primary {
    --bs-btn-bg: var(--field);
    --bs-btn-border-color: var(--field);
    --bs-btn-hover-bg: var(--field-dark);
    --bs-btn-hover-border-color: var(--field-dark);
}

.btn-warning {
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
}

.table thead th {
    color: #607067;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.status-badge {
    border-radius: 999px;
    padding: .35rem .6rem;
    font-weight: 700;
    font-size: .78rem;
}

.booking-time-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: .74rem;
    font-weight: 900;
    line-height: 1;
    padding: .38rem .58rem;
}

.booking-time-ongoing {
    background: #dcfce7;
    border: 1px solid rgba(36,122,67,.24);
    color: #166534;
}

.booking-time-upcoming {
    background: #e8f1ff;
    border: 1px solid rgba(37,99,235,.22);
    color: #1d4ed8;
}

.booking-row-ongoing > td {
    background: rgba(34,197,94,.08);
}

.booking-row-upcoming > td {
    background: rgba(59,130,246,.06);
}

.booking-row-due > td {
    box-shadow: inset 4px 0 0 #f59e0b;
}

.due-text {
    color: #9a5b00;
    font-weight: 800;
}

.booking-timeline-list {
    display: grid;
    gap: 10px;
}

.booking-timeline-item {
    align-items: center;
    border: 1px solid rgba(16,32,26,.08);
    border-radius: 8px;
    color: inherit;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 14px;
    text-decoration: none;
}

.booking-timeline-item > div:first-child {
    flex: 1 1 360px;
    min-width: 0;
}

.booking-timeline-item:hover {
    border-color: var(--field);
    box-shadow: 0 10px 24px rgba(53,153,87,.12);
}

.booking-timeline-item.booking-row-ongoing {
    background: #effaf2;
    border-color: rgba(36,122,67,.18);
}

.booking-timeline-item.booking-row-upcoming {
    background: #f0f6ff;
    border-color: rgba(37,99,235,.16);
}

.booking-timeline-item.booking-row-due {
    border-color: rgba(245,158,11,.34);
    box-shadow: inset 4px 0 0 #f59e0b;
}

.booking-timeline-date {
    color: #0f64b3;
    font-weight: 800;
    margin-bottom: 8px;
}

.booking-timeline-grid {
    color: #607067;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 12px;
    line-height: 1.35;
}

.booking-timeline-phone {
    color: var(--field-dark);
    font-weight: 800;
}

.booking-timeline-money {
    color: #607067;
    display: grid;
    gap: 4px;
    min-width: 168px;
}

.booking-timeline-money > div {
    align-items: baseline;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.booking-timeline-money span {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.booking-timeline-money strong {
    color: var(--ink);
}

.compact-metric {
    height: 100%;
    padding: 14px 16px;
}

.status-pending_otp { background: #fff3cd; color: #8a6500; }
.status-payment_pending { background: #dff3ff; color: #075985; }
.status-payment_verification { background: #ede9fe; color: #5b21b6; }
.status-confirmed { background: #d8f3dc; color: #166534; }
.status-paid { background: #d8f3dc; color: #166534; }
.status-failed,
.status-rejected,
.status-cancelled { background: #f8d7da; color: #842029; }

.section-title-with-icon {
    align-items: center;
    display: inline-flex;
    gap: .5rem;
}

.section-status-icon {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: .78rem;
    height: 24px;
    justify-content: center;
    line-height: 1;
    width: 24px;
}

.section-status-icon-paid {
    background: #d8f3dc;
    color: #166534;
}

.sidebar {
    background: linear-gradient(180deg, #1d2146, #247a43);
    min-height: 100vh;
}

.sidebar a {
    color: rgba(255,255,255,.76);
    border-radius: 8px;
    display: block;
    padding: 10px 12px;
    text-decoration: none;
}

.sidebar a.active,
.sidebar a:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
}

.sidebar-support {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.82);
    padding: 12px;
}

.sidebar-support-label {
    color: rgba(255,255,255,.56);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.sidebar-support a {
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    padding: 3px 0 0;
}

.login-support {
    color: var(--muted);
}

.login-support a {
    color: var(--field-dark);
    font-weight: 800;
    text-decoration: none;
}

.login-captcha-box {
    align-items: center;
    background: #f6faf8;
    border: 1px solid rgba(53,153,87,.22);
    border-radius: 8px;
    color: var(--field-dark);
    display: flex;
    font-size: 1.12rem;
    font-weight: 900;
    justify-content: center;
    margin-bottom: 8px;
    min-height: 48px;
}

@media (max-width: 767px) {
    .app-nav .container {
        align-items: flex-start;
        gap: 10px;
    }

    .public-nav-actions {
        justify-content: flex-start;
        width: 100%;
    }

    .sidebar {
        min-height: auto;
        position: static;
        top: auto;
        z-index: auto;
        padding: 12px !important;
    }

    .sidebar .mb-4 {
        margin-bottom: 10px !important;
    }

    .sidebar nav {
        display: flex !important;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .sidebar nav a,
    .sidebar nav .small {
        width: auto;
        flex: 0 0 auto;
        max-width: 100%;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 999px;
        background: rgba(255,255,255,.08);
        color: rgba(255,255,255,.86);
        font-size: .86rem;
        font-weight: 700;
        line-height: 1.1;
        padding: 9px 11px;
        white-space: nowrap;
    }

    .sidebar nav a.active,
    .sidebar nav a:hover {
        background: #fff;
        border-color: #fff;
        color: var(--ink);
    }

    .sidebar nav .small {
        color: #d6f8de !important;
        background: rgba(36,122,67,.46);
    }

    .sidebar-support {
        align-items: center;
        display: flex;
        gap: 8px;
        margin-top: 10px !important;
        padding: 9px 11px;
    }

    .sidebar-support-label {
        font-size: .72rem;
    }

    .sidebar-support a {
        padding-top: 0;
        white-space: nowrap;
    }

    .hero-band {
        padding-top: 28px;
    }

    .landing-hero {
        min-height: 390px;
        margin-top: 18px;
        padding: 26px;
    }

    .landing-actions .btn {
        width: 100%;
    }

    .landing-hero .app-download-btn {
        justify-content: center;
        text-align: center;
    }

    .landing-feature-grid {
        grid-template-columns: 1fr;
    }

    .landing-section-muted {
        padding: 18px;
    }

    .landing-section-heading,
    .landing-contact {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .landing-steps,
    .landing-faq-grid,
    .landing-split {
        grid-template-columns: 1fr;
    }

    .onboarding-hero {
        align-items: stretch;
        grid-template-columns: 1fr;
        margin-top: 18px;
        padding: 26px;
    }

    .onboarding-hero-note {
        min-width: 0;
    }

    .onboarding-submit-row,
    .onboarding-success {
        align-items: stretch;
        flex-direction: column;
    }

    .onboarding-submit-row .btn {
        width: 100%;
    }

    .landing-contact-actions {
        justify-content: flex-start;
    }

    .landing-contact-actions > * {
        flex: 1 1 100%;
    }

    .landing-contact,
    .landing-contact .public-support-link,
    .landing-contact .app-download-link,
    .landing-address {
        text-align: left;
    }

    .landing-contact .public-support-link,
    .landing-contact .app-download-link,
    .landing-address {
        justify-content: flex-start;
    }

    .hero-identity {
        align-items: flex-start;
        gap: 12px;
    }

    .turf-hero-logo {
        width: 58px;
        height: 58px;
        border-radius: 12px;
    }

    .dashboard-main {
        padding: 16px !important;
    }

    .admin-panel,
    .toolbar-card {
        padding: 14px;
    }

    .admin-panel.row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 12px;
    }

    .admin-panel.row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .toolbar-card {
        align-items: stretch !important;
    }

    .toolbar-card > div,
    .toolbar-card .btn {
        flex: 1 1 100%;
        width: 100%;
    }

    .admin-panel .btn,
    .toolbar-card .btn {
        width: 100%;
    }

    .report-actions .report-email-form .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .admin-panel .d-flex.align-items-end,
    .admin-panel .d-flex.justify-content-end {
        align-items: stretch !important;
        justify-content: stretch !important;
    }

    .admin-panel .d-flex.gap-1,
    .admin-panel .d-flex.gap-2 {
        flex-wrap: wrap;
    }

    .admin-panel .form-check {
        width: 100%;
    }

    .slot-admin-table,
    .slot-admin-table tbody,
    .slot-admin-table tr,
    .slot-admin-table td {
        display: block;
        width: 100%;
    }

    .slot-admin-table {
        border-collapse: separate;
        border-spacing: 0 12px;
        table-layout: auto;
    }

    .slot-admin-table thead {
        display: none;
    }

    .slot-admin-table tbody tr {
        background: #fff;
        border: 1px solid rgba(53,153,87,.14);
        border-radius: 8px;
        box-shadow: 0 10px 24px rgba(9,45,30,.06);
        margin-bottom: 12px;
        padding: 12px;
    }

    .slot-admin-table tbody td {
        border: 0;
        padding: 8px 0;
    }

    .slot-admin-table tbody td::before {
        color: #607067;
        content: attr(data-label);
        display: block;
        font-size: .72rem;
        font-weight: 900;
        letter-spacing: .05em;
        margin-bottom: 6px;
        text-transform: uppercase;
    }

    .slot-admin-table tbody td:not([data-label])::before {
        display: none;
    }

    .slot-admin-table tbody td:empty {
        display: none;
    }

    .slot-admin-table .slot-time-inputs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .slot-admin-table .slot-duration-value {
        justify-content: flex-start;
        width: auto;
    }

    .slot-admin-table .slot-day-checks {
        gap: 6px !important;
    }

    .slot-admin-table .slot-day-checks .btn {
        min-height: 32px;
        padding: .36rem .58rem;
    }

    .slot-row-actions {
        gap: 8px;
    }

    .credit-warning-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-timeline-item {
        align-items: stretch;
        flex-direction: column;
    }

    .booking-timeline-money {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
        text-align: left !important;
        width: 100%;
    }

    .booking-timeline-money > div {
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .booking-panel {
        padding: 14px;
    }

    .booking-toolbar {
        padding: 12px;
    }

    .date-stepper {
        --date-control-height: 46px;
        grid-template-columns: var(--date-control-height) minmax(0, 1fr) var(--date-control-height);
        max-width: 100%;
    }

    .booking-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .step-pill {
        text-align: center;
        padding: 8px;
    }

    .form-stage {
        padding: 14px;
    }

    .form-label {
        font-size: .84rem;
    }

    .form-control,
    .form-select {
        min-height: 46px;
    }

    .btn-lg {
        --bs-btn-padding-y: .65rem;
        --bs-btn-font-size: 1rem;
    }
}
