:root {
    --bg: #f3f6f4;
    --bg-soft: #ffffff;
    --text: #12222f;
    --muted: #5e7482;
    --brand: #0f766e;
    --brand-dark: #115e59;
    --brand-soft: #ccfbf1;
    --accent: #f59e0b;
    --danger: #dc2626;
    --success: #15803d;
    --card-shadow: 0 18px 36px rgba(18, 34, 47, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(circle at 90% 0%, rgba(245, 158, 11, 0.15), transparent 30%), radial-gradient(circle at 0% 100%, rgba(15, 118, 110, 0.14), transparent 35%), var(--bg);
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    letter-spacing: -0.02em;
}

.app-navbar {
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.92) 0%, rgba(17, 75, 95, 0.92) 45%, rgba(15, 118, 110, 0.92) 100%);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.navbar-brand {
    font-weight: 700;
}

.app-logo {
    display: block;
}

.app-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 12px;
    padding: 0.32rem 0.45rem;
    box-shadow: 0 6px 14px rgba(2, 6, 23, 0.25);
}

.app-logo-full {
    width: auto;
    height: 44px;
    max-width: 260px;
    object-fit: contain;
}

.app-brand-stack {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
}

.app-brand-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.app-brand-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 500;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.app-navbar-collapse {
    border-radius: 14px;
}

.app-nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    padding: 0.45rem 0.72rem !important;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.app-nav-link:hover,
.app-nav-link:focus {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.app-nav-link.is-active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
}

.app-nav-actions {
    gap: 0.25rem;
}

.app-nav-link-cta {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.app-main {
    padding-top: 2rem;
    padding-bottom: 2.75rem;
}

.surface {
    background: var(--bg-soft);
    border: 1px solid #e1e8ed;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.surface-sm {
    background: var(--bg-soft);
    border: 1px solid #e1e8ed;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 22px rgba(18, 34, 47, 0.06);
}

.hero-panel {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 70%, #0f766e 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.35);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
}

.stat-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e1e8ed;
    background: #ffffff;
    box-shadow: var(--card-shadow);
    padding: 1rem 1.1rem;
}

.stat-card::after {
    content: "";
    position: absolute;
    right: -30px;
    top: -36px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.15);
}

.stat-label {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-value {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    font-size: 1.5rem;
    margin: 0.3rem 0 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.chip-brand {
    color: #083344;
    background: var(--brand-soft);
}

.chip-warm {
    color: #78350f;
    background: #fef3c7;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #ffffff;
}

.btn-ghost-brand {
    border-color: var(--brand);
    color: var(--brand);
    background: transparent;
}

.btn-ghost-brand:hover,
.btn-ghost-brand:focus {
    background: var(--brand);
    border-color: var(--brand);
    color: #ffffff;
}

.provider-card {
    border: 1px solid #dbe5ea;
    border-radius: 18px;
    padding: 1.2rem;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(18, 34, 47, 0.08);
}

.provider-thumb-card {
    border: 1px solid #dbe5ea;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(18, 34, 47, 0.08);
}

.provider-thumb-image-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #ecfeff;
}

.provider-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-layout {
    align-items: flex-start;
}

.search-filter-col,
.search-results-col {
    width: 100%;
}

.search-load-sentinel {
    height: 1px;
}

.provider-cover-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
}

.provider-gallery-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #dbe5ea;
}

.review-card {
    border: 1px solid #dbe5ea;
    border-radius: 12px;
    padding: 0.85rem;
    background: #ffffff;
}

.slot-radio-group {
    border: 1px solid #dbe5ea;
    border-radius: 12px;
    padding: 0.75rem;
    background: #ffffff;
}

.slot-radio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.slot-radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #dbe5ea;
    border-radius: 10px;
    padding: 0.45rem 0.55rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.slot-radio-item:hover {
    border-color: #0f766e;
}

.slot-radio-active {
    border-color: #0f766e;
    background: #ecfeff;
}

.slot-radio-input {
    accent-color: #0f766e;
}

.provider-meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.progress-modern {
    height: 10px;
    border-radius: 999px;
    background: #e5edf1;
}

.progress-modern .progress-bar {
    border-radius: 999px;
}

.table-modern thead th {
    border-bottom: 0;
    background: #f7fafc;
    color: #3b5261;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-modern tbody td {
    vertical-align: middle;
}

.status-pill {
    text-transform: capitalize;
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.status-pending {
    background: #fef3c7;
    color: #854d0e;
}

.status-accepted {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #dcfce7;
    color: #166534;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

.fade-up {
    animation: fadeUp 0.45s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-footer {
    color: #5f7584;
    font-size: 0.9rem;
}

.maintenance-alert {
    background: #fef3c7;
    border-top: 1px solid #fcd34d;
    border-bottom: 1px solid #fcd34d;
    color: #854d0e;
    text-align: center;
    padding: 0.45rem 0.8rem;
    font-size: 0.86rem;
}

.admin-shell {
    background: linear-gradient(135deg, #0f172a 0%, #134e4a 70%, #0f766e 100%);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.28);
}

.admin-shell-top .small {
    color: rgba(255, 255, 255, 0.83) !important;
}

.admin-tab-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.admin-tab {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.6rem;
    text-align: center;
    transition: all 0.2s ease;
}

.admin-tab:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
}

.admin-tab-active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.75);
    color: #ffffff;
}

.admin-thumb {
    width: 90px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #dbe5ea;
}

.admin-icon-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #dbe5ea;
}

.admin-inline-form {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 0.7rem;
}

.admin-mini-list {
    display: grid;
    gap: 0.35rem;
}

.admin-login-card {
    border-top: 5px solid #0f766e;
}

.settings-preview-logo {
    width: 140px;
    max-width: 100%;
    height: auto;
    border: 1px solid #dbe5ea;
    border-radius: 8px;
    padding: 0.25rem;
    background: #ffffff;
}

.settings-preview-favicon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border: 1px solid #dbe5ea;
    border-radius: 8px;
    padding: 0.2rem;
    background: #ffffff;
}

.home-hero {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.3);
}

.hero-carousel {
    border-radius: 24px;
}

.hero-slide-image {
    height: 420px;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-caption {
    text-align: left;
    left: 5%;
    right: 5%;
    bottom: 2rem;
}

.hero-caption h2 {
    font-size: 2rem;
    color: #ffffff;
}

.hero-caption p {
    color: rgba(255, 255, 255, 0.9);
}

.category-thumb {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #dbe5ea;
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 22px rgba(18, 34, 47, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
}

.category-thumb:hover {
    transform: translateY(-3px);
    border-color: #0f766e;
    box-shadow: 0 14px 26px rgba(15, 118, 110, 0.18);
}

.category-thumb-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: #ecfeff;
    border: 1px solid #c6f6ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
}

.category-thumb-icon-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .app-navbar-collapse {
        margin-top: 0.65rem;
        padding: 0.85rem;
        background: rgba(15, 23, 42, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .app-brand-subtitle {
        max-width: 170px;
    }
    .app-logo-full {
        height: 36px;
        max-width: 180px;
    }
    .hero-panel {
        padding: 1.35rem;
        border-radius: 18px;
    }
    .stat-value {
        font-size: 1.3rem;
    }
    .provider-cover-image {
        height: 220px;
    }
    .slot-radio-grid {
        grid-template-columns: 1fr;
    }
    .hero-slide-image {
        height: 280px;
    }
    .hero-caption h2 {
        font-size: 1.25rem;
    }
}

@media (min-width: 992px) {
    .search-filter-col {
        flex: 0 0 25%;
        max-width: 25%;
        width: 25%;
    }
    .search-results-col {
        flex: 0 0 75%;
        max-width: 75%;
        width: 75%;
    }
}


/* Modern product refresh */

:root {
    --bg: #eef2f7;
    --bg-soft: rgba(255, 255, 255, 0.82);
    --bg-elevated: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --brand: #0f766e;
    --brand-dark: #115e59;
    --brand-soft: #dff7f2;
    --accent: #f97316;
    --accent-soft: #ffedd5;
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(100, 116, 139, 0.22);
    --card-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    --card-shadow-strong: 0 26px 70px rgba(15, 23, 42, 0.14);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--text);
    background: radial-gradient(circle at 10% 15%, rgba(15, 118, 110, 0.18), transparent 28%), radial-gradient(circle at 88% 8%, rgba(249, 115, 22, 0.14), transparent 22%), radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.12), transparent 26%), linear-gradient(180deg, #f8fbff 0%, #edf3f8 45%, #eef2f7 100%);
    font-size: 0.96rem;
    line-height: 1.58;
}

h1 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

h2 {
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

h3 {
    font-size: clamp(1.28rem, 1.7vw, 1.6rem);
}

h4 {
    font-size: 1.1rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.92rem;
}

a {
    color: var(--brand-dark);
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--brand);
}

.container {
    max-width: 1180px;
}

.app-shell {
    position: relative;
    min-height: 100vh;
    overflow-x: visible;
}

.app-shell-orb {
    position: fixed;
    z-index: 0;
    border-radius: 999px;
    filter: blur(8px);
    pointer-events: none;
}

.app-shell-orb-a {
    top: 84px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: rgba(15, 118, 110, 0.13);
}

.app-shell-orb-b {
    top: 140px;
    right: -90px;
    width: 260px;
    height: 260px;
    background: rgba(249, 115, 22, 0.1);
}

.app-shell-orb-c {
    bottom: 80px;
    left: 35%;
    width: 220px;
    height: 220px;
    background: rgba(59, 130, 246, 0.09);
}

.app-page-wrap,
.app-navbar,
.app-footer,
.app-mobile-dock {
    position: relative;
    z-index: 1;
}

.app-navbar {
    margin: 0;
    width: 100%;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(16, 72, 87, 0.88) 54%, rgba(15, 118, 110, 0.86) 100%);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.26);
}

.navbar>.container,
.navbar>.container-fluid {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
}

.app-logo-wrap {
    border-radius: 16px;
    padding: 0.45rem 0.55rem;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.22);
}

.app-brand-title {
    font-size: 1.02rem;
}

.app-brand-subtitle {
    margin-top: 0.18rem;
    font-size: 0.72rem;
}

.app-nav-link {
    position: relative;
    border-radius: 999px;
    padding: 0.56rem 0.92rem !important;
    font-size: 0.92rem;
}

.app-nav-link.is-active {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.app-nav-link-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
}

.app-main {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.route-home .app-main {
    padding-top: 0;
}

.surface,
.surface-sm,
.provider-card,
.provider-thumb-card,
.stat-card,
.review-card,
.slot-radio-group,
.category-thumb,
.admin-inline-form {
    backdrop-filter: blur(16px);
}

.surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-xl);
    box-shadow: var(--card-shadow);
}

.surface-sm,
.provider-card,
.provider-thumb-card,
.review-card,
.slot-radio-group,
.category-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9));
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.surface-sm {
    border-radius: var(--radius-md);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 24%), linear-gradient(140deg, #08111f 0%, #0b2740 34%, #0f766e 100%);
    box-shadow: var(--card-shadow-strong);
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -8% -42% auto;
    width: 220px;
    height: 220px;
    z-index: -1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.stat-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 252, 0.92));
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 1.15rem 1.15rem;
}

.stat-card::after {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.18), rgba(59, 130, 246, 0.1));
}

.stat-value {
    font-size: 1.55rem;
}

.chip {
    min-height: 32px;
    border: 1px solid transparent;
    padding: 0.28rem 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.chip-brand {
    color: #0f4a53;
    background: rgba(223, 247, 242, 0.92);
    border-color: rgba(15, 118, 110, 0.14);
}

.chip-warm {
    color: #9a3412;
    background: rgba(255, 237, 213, 0.94);
    border-color: rgba(249, 115, 22, 0.14);
}

.rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
}

.rating-chip i {
    font-size: 0.78rem;
    color: #f59e0b;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1.1;
    text-align: center;
    vertical-align: middle;
    padding: 0.72rem 1rem;
    box-shadow: none;
}

.btn-sm {
    border-radius: 14px;
    padding: 0.56rem 0.9rem;
}

.btn-brand {
    background: linear-gradient(135deg, #0f766e 0%, #0f766e 45%, #0891b2 100%);
    border: 0;
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(15, 118, 110, 0.28);
}

.btn-ghost-brand {
    border-width: 1px;
    border-color: rgba(15, 118, 110, 0.22);
    background: rgba(255, 255, 255, 0.7);
}

.form-control,
.form-select,
.form-control-sm,
.form-select-sm {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

textarea.form-control {
    min-height: 108px;
}

.form-control:focus,
.form-select:focus,
.form-control-sm:focus,
.form-select-sm:focus {
    border-color: rgba(15, 118, 110, 0.45);
    box-shadow: 0 0 0 0.28rem rgba(15, 118, 110, 0.12);
}

.form-label {
    font-size: 0.84rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.42rem;
}

.table-responsive {
    border-radius: 18px;
}

.table-modern {
    overflow: hidden;
    border-radius: 18px;
}

.table-modern thead th {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, #f8fbfd, #f1f6fb);
    color: #516579;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.table-modern tbody tr {
    border-bottom: 1px solid rgba(226, 232, 240, 0.84);
}

.table-modern tbody tr:hover {
    background: rgba(255, 255, 255, 0.62);
}

.table-modern tbody td {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.provider-thumb-card,
.provider-card,
.category-thumb {
    border-radius: 24px;
}

.provider-thumb-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.provider-thumb-card:hover,
.provider-thumb-card:focus-within,
.provider-card:hover,
.category-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
    border-color: rgba(15, 118, 110, 0.22);
}

.provider-thumb-image-wrap {
    height: 190px;
    background: linear-gradient(135deg, #dcfce7 0%, #dff7f2 42%, #e0f2fe 100%);
}

.provider-thumb-image,
.provider-cover-image,
.provider-gallery-image,
.admin-thumb,
.admin-icon-thumb {
    border-radius: inherit;
}

.provider-cover-image {
    height: 360px;
}

.provider-gallery-image {
    height: 132px;
}

.review-card {
    border-radius: 18px;
}

.modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.24);
}

.modal-header,
.modal-body,
.modal-footer {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
}

.modal-header {
    border-bottom-color: rgba(226, 232, 240, 0.85);
}

.modal-footer {
    border-top-color: rgba(226, 232, 240, 0.85);
}

.app-mobile-drawer {
    --bs-offcanvas-zindex: 99;
    border: 0;
    width: min(88vw, 340px) !important;
    z-index: 99 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
}

.app-mobile-drawer-header {
    padding: 1rem 1rem 0.6rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.app-mobile-drawer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2dd4bf 0%, #0f766e 100%);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 12px 22px rgba(20, 184, 166, 0.22);
}

.app-mobile-drawer-title {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.app-mobile-drawer-subtitle {
    font-size: 0.74rem;
    color: #94a3b8;
}

.app-mobile-drawer-body {
    padding: 0.9rem 0.9rem 1rem;
}

.app-mobile-drawer-user {
    border-radius: 20px;
    padding: 0.9rem;
    margin-bottom: 0.9rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border: 1px solid rgba(167, 243, 208, 0.8);
}

.app-mobile-drawer-user-name {
    font-weight: 700;
    color: #0f172a;
}

.app-mobile-drawer-user-role {
    font-size: 0.74rem;
    color: #0f766e;
    text-transform: capitalize;
}

.app-mobile-drawer-group {
    display: grid;
    gap: 0.55rem;
}

.app-mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-height: 48px;
    padding: 0.78rem 0.85rem;
    border-radius: 18px;
    color: #334155;
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.app-mobile-drawer-link i {
    font-size: 0.96rem;
    color: #14b8a6;
}

.app-mobile-drawer-link:hover,
.app-mobile-drawer-link:focus {
    color: #0f172a;
    background: #ffffff;
}

.app-mobile-drawer-link.is-active {
    color: #0f766e;
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border-color: rgba(45, 212, 191, 0.35);
}

.app-mobile-drawer-link-cta {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 48%, #0f766e 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 14px 26px rgba(20, 184, 166, 0.18);
}

.app-mobile-drawer-link-cta i {
    color: #ffffff;
}

.app-mobile-search-sheet {
    --bs-offcanvas-zindex: 99;
    height: auto !important;
    max-height: min(82vh, 720px) !important;
    border: 0;
    z-index: 99 !important;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
    box-shadow: 0 -18px 48px rgba(15, 23, 42, 0.16);
}

.offcanvas-backdrop {
    --bs-backdrop-zindex: 98;
    z-index: 98 !important;
}

.offcanvas-backdrop.show {
    z-index: 98 !important;
}

.app-mobile-search-sheet-header {
    padding: 0.9rem 1rem 0.55rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.86);
}

.app-mobile-search-sheet-body {
    padding: 0.9rem 1rem 1rem;
    margin-bottom: 80px;
}

.mobile-search-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.app-mobile-dock-button {
    border: 0;
    appearance: none;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.32rem 0.72rem;
}

.home-hero,
.hero-carousel {
    border-radius: 30px;
}

.hero-slide-image {
    height: 460px;
    filter: brightness(0.74) saturate(1.02);
}

.hero-caption {
    bottom: 2.4rem;
}

.hero-caption h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.45rem);
    max-width: 10ch;
}

.hero-caption p {
    max-width: 58ch;
    font-size: 0.94rem;
}

.category-thumb {
    padding: 1.05rem;
}

.category-thumb-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #dff7f2 100%);
}

.alert {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.app-footer {
    padding-bottom: 1.4rem;
    font-size: 0.86rem;
}

.app-footer-surface {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    padding: 1rem 1.15rem;
}

.app-footer-title {
    font-family: "Sora", "Trebuchet MS", sans-serif;
    font-weight: 700;
}

.app-footer-copy {
    color: #6b7280;
}

.app-mobile-dock {
    display: none;
}

.admin-shell {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.2);
}

@media (max-width: 991px) {
    body {
        background: linear-gradient(180deg, #f7fbff 0%, #eef4f8 100%);
    }
    .app-navbar {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }
    .app-navbar-collapse {
        margin-top: 0.75rem;
        padding: 0.9rem;
        border-radius: 18px;
        background: rgba(10, 18, 32, 0.55);
        backdrop-filter: blur(18px);
    }
    .app-main {
        padding-top: 1.2rem;
        padding-bottom: 6.6rem;
    }
    .route-home .app-main {
        padding-top: 0;
    }
    .surface,
    .hero-panel,
    .provider-thumb-card,
    .provider-card,
    .stat-card,
    .category-thumb,
    .admin-shell {
        border-radius: 26px;
    }
    .hero-panel {
        padding: 1.25rem;
    }
    .hero-slide-image {
        height: 300px;
    }
    .hero-caption {
        left: 1.2rem;
        right: 1.2rem;
        bottom: 1.25rem;
    }
    .hero-caption h2 {
        font-size: 1.26rem;
        max-width: 12ch;
    }
    .provider-cover-image {
        height: 240px;
    }
    .provider-thumb-image-wrap {
        height: 170px;
    }
    .table-responsive {
        border-radius: 0;
    }
    .table-modern {
        min-width: 720px;
    }
    .btn,
    .form-control,
    .form-select {
        min-height: 50px;
    }
    .app-footer {
        padding-bottom: 6rem;
    }
    .app-footer-surface {
        border-radius: 22px;
    }
    .app-mobile-dock {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(10px, env(safe-area-inset-bottom));
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 0.7rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        box-shadow: 0 24px 50px rgba(100, 116, 139, 0.18);
        border: 1px solid rgba(226, 232, 240, 0.95);
    }
    .app-mobile-dock-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 16px;
        color: #64748b;
        text-decoration: none;
        font-size: 0.68rem;
        font-weight: 700;
        gap: 0.26rem;
        letter-spacing: 0.01em;
        background: rgba(248, 252, 251, 0.94);
    }
    .app-mobile-dock-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 12px;
        background: rgba(20, 184, 166, 0.08);
        font-size: 0.9rem;
    }
    .app-mobile-dock-label {
        line-height: 1;
    }
    .app-mobile-dock-link:hover,
    .app-mobile-dock-link:focus {
        color: #0f172a;
        background: #f7fcfa;
    }
    .app-mobile-dock-link.is-active {
        color: #0f766e;
        background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
        box-shadow: 0 10px 20px rgba(20, 184, 166, 0.14);
    }
    .app-mobile-dock-link.is-active .app-mobile-dock-icon {
        background: linear-gradient(135deg, #2dd4bf 0%, #0f766e 100%);
        color: #ffffff;
    }
    .app-shell-orb-a,
    .app-shell-orb-b,
    .app-shell-orb-c {
        opacity: 0.65;
    }
}

@media (min-width: 992px) {
    .app-main {
        min-height: calc(100vh - 192px);
    }
}


/* Reference-inspired landing redesign */

.travel-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0f766e;
    margin-bottom: 0.85rem;
}

.travel-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.travel-hero-shell {
    position: relative;
    padding-bottom: 76px;
}

.travel-hero-carousel {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
}

.travel-hero-indicators {
    justify-content: flex-end;
    right: 2rem;
    left: auto;
    margin: 0;
    bottom: 1.5rem;
}

.travel-hero-indicators button {
    width: 9px !important;
    height: 9px !important;
    border-radius: 999px;
    border: 0 !important;
    opacity: 0.55;
}

.travel-hero-indicators .active {
    width: 28px !important;
    opacity: 1;
}

.travel-hero-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.travel-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 17, 31, 0.76) 0%, rgba(8, 17, 31, 0.28) 45%, rgba(8, 17, 31, 0.12) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28));
}

.travel-hero-content {
    position: absolute;
    left: 4.2rem;
    top: 50%;
    transform: translateY(-54%);
    color: #ffffff;
    max-width: 560px;
    z-index: 2;
}

.travel-hero-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.travel-hero-content h1 {
    font-size: clamp(1.85rem, 3.4vw, 3rem);
    line-height: 1.02;
    margin-bottom: 1rem;
    max-width: 12ch;
    color: #ffffff;
}

.travel-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    max-width: 52ch;
    margin-bottom: 1.4rem;
}

.travel-hero-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.travel-hero-actions .btn-light {
    border-radius: 16px;
    padding-inline: 1rem;
}

.travel-search-card {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translate(-50%, 28%);
    width: calc(100% - 88px);
    max-width: 1100px;
    border-radius: 28px;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
    z-index: 3;
}

.travel-search-card-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.travel-search-card-head h4 {
    font-size: 1.08rem;
}

.travel-hero-metrics {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 0.84rem;
}

.travel-hero-metrics strong {
    color: #0f172a;
}

.travel-search-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr)) 170px;
    gap: 0.8rem;
    align-items: end;
}

.travel-search-field {
    border-radius: 20px;
    padding: 0.9rem 0.95rem 0.95rem;
    background: #f8fbfd;
    border: 1px solid rgba(226, 232, 240, 0.95);
}

.travel-search-field .form-control,
.travel-search-field .form-select {
    border: 0;
    background: transparent;
    min-height: 32px;
    padding: 0;
    box-shadow: none;
}

.travel-search-field .form-control:focus,
.travel-search-field .form-select:focus {
    box-shadow: none;
}

.travel-search-action .btn {
    min-height: 64px;
    border-radius: 22px;
}

.home-idea-section {
    padding-top: 1.4rem;
}

.home-idea-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.home-idea-bubble {
    width: 128px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.home-idea-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(223, 247, 242, 0.92));
    border: 1px solid rgba(15, 118, 110, 0.14);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.home-idea-icon img {
    width: 54px;
    height: 54px;
    border-radius: 16px;
}

.home-idea-name {
    display: block;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.3;
}

.home-idea-meta {
    display: block;
    margin-top: 0.24rem;
    font-size: 0.78rem;
    color: #64748b;
}

.home-story-card {
    height: 100%;
    border-radius: 30px;
    padding: 1.7rem;
    color: #ffffff;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%), linear-gradient(145deg, #0f172a 0%, #0a2640 42%, #0f766e 100%);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.2);
}

.home-story-card h3 {
    color: #ffffff;
    font-size: clamp(1.38rem, 1.6vw, 1.82rem);
    line-height: 1.1;
}

.home-story-card p {
    color: rgba(255, 255, 255, 0.82);
}

.home-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.home-service-area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.home-provider-card-horizontal {
    display: grid;
    grid-template-columns: 210px 1fr;
}

.home-provider-card-horizontal .provider-thumb-image-wrap {
    height: 100%;
    min-height: 220px;
}

.home-curated-panels .surface {
    border-radius: 28px;
}

.home-inline-provider {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 0.95rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0.45rem;
    border-radius: 18px;
}

.home-inline-provider:hover {
    background: rgba(248, 250, 252, 0.9);
}

.home-inline-provider img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
}

.home-inline-provider-copy {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.home-inline-provider-copy strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.home-inline-provider-copy span {
    color: #64748b;
    font-size: 0.82rem;
}

.home-testimonial-card {
    border-radius: 24px;
}

@media (max-width: 1199px) {
    .travel-search-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .travel-search-action {
        grid-column: span 3;
    }
}

@media (max-width: 991px) {
    .travel-hero-shell {
        padding-bottom: 0;
    }
    .travel-hero-carousel {
        border-radius: 0;
    }
    .travel-hero-image {
        height: 420px;
    }
    .travel-hero-content {
        left: 1.4rem;
        right: 1.4rem;
        top: 1.6rem;
        transform: none;
        max-width: none;
    }
    .travel-hero-content h1 {
        max-width: 12ch;
        font-size: 1.78rem;
    }
    .travel-search-card {
        position: relative;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: -34px;
        border-radius: 24px;
        padding: 1rem;
    }
    .travel-search-card-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .travel-search-grid {
        grid-template-columns: 1fr 1fr;
    }
    .travel-search-action {
        grid-column: 1 / -1;
    }
    .home-provider-card-horizontal {
        grid-template-columns: 1fr;
    }
    .home-provider-card-horizontal .provider-thumb-image-wrap {
        min-height: 180px;
    }
    .home-idea-strip {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.55rem;
        scrollbar-width: none;
    }
    .home-idea-strip::-webkit-scrollbar {
        display: none;
    }
    .home-idea-bubble {
        flex: 0 0 112px;
    }
}

@media (max-width: 767px) {
    body {
        background: radial-gradient(circle at 12% 8%, rgba(20, 184, 166, 0.14), transparent 28%), radial-gradient(circle at 100% 0%, rgba(45, 212, 191, 0.12), transparent 32%), linear-gradient(180deg, #f4fbf9 0%, #edf8f5 48%, #f8fcfb 100%);
        font-size: 0.88rem;
        line-height: 1.46;
    }
    h1 {
        font-size: 1.34rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    h3 {
        font-size: 1.08rem;
    }
    h4 {
        font-size: 0.98rem;
    }
    h5 {
        font-size: 0.88rem;
    }
    h6 {
        font-size: 0.82rem;
    }
    .small,
    small {
        font-size: 0.72rem !important;
    }
    .chip {
        min-height: 28px;
        padding: 0.22rem 0.62rem;
        font-size: 0.66rem;
    }
    .route-customer-bookings .table-modern td[data-label="Review"] .chip {
        position: absolute;
        right: 0;
    }
    .revv {
        margin-top: 33px;
    }
    .btn {
        font-size: 0.84rem;
    }
    .btn-sm {
        font-size: 0.78rem;
    }
    .form-control,
    .form-select,
    .form-control-sm,
    .form-select-sm {
        font-size: 0.82rem;
    }
    .form-label {
        font-size: 0.74rem;
    }
    .app-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        z-index: 2;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.96);
        border: 0;
        box-shadow: 0 12px 28px rgba(148, 163, 184, 0.14);
        backdrop-filter: blur(18px);
    }
    .app-navbar .container {
        min-height: 66px;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }
    .app-navbar .navbar-brand,
    .app-navbar .navbar-brand.text-white {
        color: #0f172a !important;
    }
    .app-navbar .app-brand-title {
        color: #0f172a;
        font-size: 0.9rem;
    }
    .app-navbar .app-brand-subtitle {
        display: none;
    }
    .app-navbar .app-logo-wrap {
        border-radius: 14px;
        padding: 0.34rem 0.46rem;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(148, 163, 184, 0.2);
    }
    .app-navbar-toggler {
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 14px;
        border-color: rgba(148, 163, 184, 0.28);
        background: rgba(248, 250, 252, 0.98);
    }
    .app-navbar .navbar-toggler-icon {
        filter: invert(15%) sepia(20%) saturate(709%) hue-rotate(177deg) brightness(92%) contrast(92%);
        transform: scale(0.88);
    }
    .app-navbar-collapse {
        margin-top: 0.7rem;
        padding: 0.8rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(226, 232, 240, 0.92);
        box-shadow: 0 18px 40px rgba(148, 163, 184, 0.18);
    }
    .app-nav-link {
        color: #334155 !important;
        justify-content: flex-start;
        padding: 0.62rem 0.82rem !important;
        font-size: 0.82rem;
        background: transparent;
    }
    .app-nav-link:hover,
    .app-nav-link:focus,
    .app-nav-link.is-active {
        color: #0f172a !important;
        background: #f8fbff;
        box-shadow: none;
    }
    .app-nav-link-cta {
        color: #ffffff !important;
        background: linear-gradient(135deg, #14b8a6 0%, #0d9488 48%, #0f766e 100%);
        box-shadow: 0 12px 24px rgba(20, 184, 166, 0.2);
    }
    .app-main {
        width: min(100%, 408px);
        padding: 6rem 0.8rem 6.7rem;
        margin: 0 auto;
    }
    .route-home .app-main {
        padding-top: 6rem;
    }
    .app-footer {
        width: min(100%, 430px);
        margin: 0 auto;
        padding-bottom: 6rem;
        margin-bottom: 72px;
    }
    .surface,
    .surface-sm,
    .hero-panel,
    .provider-card,
    .provider-thumb-card,
    .stat-card,
    .category-thumb,
    .review-card,
    .slot-radio-group,
    .app-footer-surface {
        border-radius: 26px;
        box-shadow: 0 12px 28px rgba(148, 163, 184, 0.12);
    }
    .travel-hero {
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }
    .route-home .travel-search-card {
        display: none;
    }
    .travel-hero-shell {
        padding-bottom: 0;
    }
    .travel-hero-carousel {
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 14px 30px rgba(148, 163, 184, 0.16);
    }
    .travel-hero-overlay {
        background: linear-gradient(135deg, rgba(15, 118, 110, 0.68) 0%, rgba(20, 184, 166, 0.2) 55%, rgba(255, 255, 255, 0.08) 100%);
    }
    .travel-hero-image {
        height: 242px;
    }
    .travel-hero-content {
        left: 0.9rem;
        right: 0.9rem;
        top: 0.9rem;
    }
    .travel-hero-content h1 {
        font-size: 1.18rem;
        max-width: 10ch;
    }
    .travel-hero-content p {
        font-size: 0.76rem;
        margin-bottom: 0.8rem;
        max-width: 26ch;
    }
    .travel-hero-tag {
        min-height: 28px;
        font-size: 0.64rem;
        background: rgba(255, 255, 255, 0.92);
        color: #0f766e;
        border-color: rgba(255, 255, 255, 0.98);
    }
    .travel-hero-actions .btn {
        min-height: 42px;
        border-radius: 14px;
        font-size: 0.78rem;
        padding-inline: 0.9rem;
    }
    .travel-search-card {
        margin-top: -22px;
        border-radius: 28px;
        padding: 0.88rem;
        box-shadow: 0 16px 34px rgba(148, 163, 184, 0.16);
    }
    .travel-search-card::before {
        content: "";
        display: block;
        width: 56px;
        height: 5px;
        margin: 0 auto 0.72rem;
        border-radius: 999px;
        background: linear-gradient(135deg, #5eead4 0%, #0f766e 100%);
    }
    .travel-search-card-head h4 {
        font-size: 0.9rem;
    }
    .travel-hero-metrics {
        gap: 0.55rem;
        font-size: 0.68rem;
    }
    .travel-search-grid {
        grid-template-columns: 1fr;
    }
    .travel-search-field {
        border-radius: 16px;
        padding: 0.72rem 0.8rem 0.8rem;
        background: #f8fcfb;
    }
    .travel-search-action .btn {
        min-height: 46px;
        border-radius: 16px;
    }
    .home-idea-strip {
        gap: 0.6rem;
        padding-left: 0.15rem;
    }
    .home-idea-bubble {
        flex: 0 0 90px;
    }
    .home-idea-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 0.5rem;
        box-shadow: 0 8px 18px rgba(148, 163, 184, 0.16);
    }
    .home-idea-icon img {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }
    .home-idea-name {
        font-size: 0.74rem;
    }
    .home-idea-meta {
        font-size: 0.66rem;
    }
    .home-inline-provider {
        grid-template-columns: 60px 1fr auto;
        gap: 0.7rem;
        padding: 0.56rem;
        background: rgba(255, 255, 255, 0.94);
        border: 1px solid rgba(226, 232, 240, 0.92);
        box-shadow: 0 8px 18px rgba(148, 163, 184, 0.12);
    }
    .home-inline-provider img {
        width: 56px;
        height: 56px;
        border-radius: 15px;
    }
    .home-inline-provider .chip {
        min-height: 28px;
        padding-inline: 0.55rem;
    }
    .home-inline-provider-copy strong {
        font-size: 0.82rem;
    }
    .home-inline-provider-copy span {
        font-size: 0.7rem;
    }
    .home-story-card {
        padding: 1.05rem;
    }
    .home-featured-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -0.2rem;
        margin-left: -0.2rem;
        padding: 0 0.2rem 0.35rem;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }
    .home-featured-slider::-webkit-scrollbar {
        display: none;
    }
    .home-featured-slide {
        flex: 0 0 calc(50% - 0.45rem);
        max-width: calc(50% - 0.45rem);
        scroll-snap-align: start;
    }
    .provider-cover-image {
        height: 206px;
        border-radius: 22px;
    }
    .slot-radio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .slot-radio-item {
        min-height: 42px;
        justify-content: center;
        padding: 0.62rem 0.65rem;
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 6px 14px rgba(148, 163, 184, 0.1);
        font-size: 0.76rem;
    }
    .table-responsive {
        margin-inline: -0.3rem;
        padding-inline: 0.3rem;
    }
    .modal-content {
        border-radius: 32px;
        margin-top: 0.5rem;
    }
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 0.95rem;
        padding-right: 0.95rem;
    }
    .route-search .search-results-col {
        order: 1;
    }
    .route-search .search-filter-col {
        display: none;
    }
    .route-search .hero-panel {
        border-radius: 32px;
        padding: 0.9rem;
        background: linear-gradient(145deg, #0f766e 0%, #14b8a6 48%, #2dd4bf 100%);
        box-shadow: 0 18px 34px rgba(20, 184, 166, 0.2);
    }
    .route-search .hero-panel .chip {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.22);
    }
    .route-search .search-filter-col .surface {
        background: rgba(255, 255, 255, 0.98);
    }
    .route-search #searchResultsGrid {
        row-gap: 0.9rem;
    }
    .route-search .provider-portrait-card {
        min-height: 344px;
    }
    .route-provider-details .row.g-4>.col-lg-5 {
        order: 1;
    }
    .route-provider-details .row.g-4>.col-lg-7 {
        order: 2;
    }
    .route-provider-details .surface {
        border-radius: 30px;
    }
    .route-provider-details .provider-cover-image {
        height: 212px;
    }
    .route-provider-details .btn.w-100,
    .route-provider-details .btn[data-bs-target="#bookingModal"] {
        min-height: 46px;
        border-radius: 16px;
        background: linear-gradient(135deg, #14b8a6 0%, #0d9488 48%, #0f766e 100%);
        box-shadow: 0 12px 22px rgba(20, 184, 166, 0.18);
    }
    .route-provider-details .modal-dialog {
        margin: 0.65rem auto;
        max-width: min(100% - 18px, 408px);
    }
    .route-provider-details .list-group-item {
        background: transparent;
    }
    .route-customer-dashboard .hero-panel,
    .route-provider-dashboard .hero-panel,
    .route-customer-bookings .surface:first-of-type,
    .route-provider-bookings .surface:first-of-type {
        border-radius: 32px;
        box-shadow: 0 22px 46px rgba(100, 116, 139, 0.16);
    }
    .route-customer-dashboard .stat-card,
    .route-provider-dashboard .stat-card {
        min-height: 98px;
        border-radius: 22px;
        background: linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
    }
    .route-customer-dashboard .list-group-item,
    .route-provider-dashboard .list-group-item {
        margin-bottom: 0.7rem;
        padding: 0.9rem 0.1rem 0.1rem;
        border-bottom: 0;
        background: transparent;
    }
    .route-customer-dashboard .list-group-item>div,
    .route-provider-dashboard .list-group-item,
    .route-provider-details .list-group-item {
        border-radius: 20px;
    }
    .route-customer-dashboard .table-modern,
    .route-provider-dashboard .table-modern,
    .route-customer-bookings .table-modern,
    .route-provider-bookings .table-modern {
        min-width: 0;
        border-radius: 0;
        background: transparent;
    }
    .route-customer-dashboard .table-modern thead,
    .route-provider-dashboard .table-modern thead,
    .route-customer-bookings .table-modern thead,
    .route-provider-bookings .table-modern thead {
        display: none;
    }
    .route-customer-dashboard .table-modern tbody,
    .route-provider-dashboard .table-modern tbody,
    .route-customer-bookings .table-modern tbody,
    .route-provider-bookings .table-modern tbody {
        display: grid;
        gap: 0.9rem;
    }
    .route-customer-dashboard .table-modern tr,
    .route-provider-dashboard .table-modern tr,
    .route-customer-bookings .table-modern tr,
    .route-provider-bookings .table-modern tr {
        display: block;
        padding: 0.82rem 0.82rem 0.2rem;
        border: 1px solid rgba(226, 232, 240, 0.94);
        border-radius: 20px;
        background: linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
        box-shadow: 0 10px 20px rgba(148, 163, 184, 0.1);
    }
    .route-customer-dashboard .table-modern td,
    .route-provider-dashboard .table-modern td,
    .route-customer-bookings .table-modern td,
    .route-provider-bookings .table-modern td {
        display: list-item;
        align-items: flex-start;
        width: 100%;
        padding: 0.42rem 0;
        border-bottom: 1px dashed rgba(226, 232, 240, 0.9);
        text-align: right;
        white-space: normal;
        font-size: 0.78rem;
        position: relative;
        list-style: none;
    }
    .route-customer-dashboard .table-modern td:last-child,
    .route-provider-dashboard .table-modern td:last-child,
    .route-customer-bookings .table-modern td:last-child,
    .route-provider-bookings .table-modern td:last-child {
        border-bottom: 0;
    }
    .route-customer-dashboard .table-modern td::before,
    .route-provider-dashboard .table-modern td::before,
    .route-customer-bookings .table-modern td::before,
    .route-provider-bookings .table-modern td::before {
        content: attr(data-label);
        flex: 0 0 42%;
        max-width: 42%;
        color: #94a3b8;
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        text-align: left;
        position: absolute;
        left: 0;
    }
    .route-customer-dashboard .table-modern td[data-label="Review"],
    .route-customer-bookings .table-modern td[data-label="Review"],
    .route-provider-bookings .table-modern td[data-label="Action"] {
        display: block;
        text-align: left;
    }
    .route-customer-dashboard .table-modern td[data-label="Review"]::before,
    .route-customer-bookings .table-modern td[data-label="Review"]::before,
    .route-provider-bookings .table-modern td[data-label="Action"]::before {
        display: block;
        max-width: none;
        margin-bottom: 0.55rem;
    }
    .route-customer-dashboard .table-modern td .status-pill,
    .route-provider-dashboard .table-modern td .status-pill,
    .route-customer-bookings .table-modern td .status-pill,
    .route-provider-bookings .table-modern td .status-pill {
        margin-left: auto;
    }
    .route-provider-bookings .table-modern td[data-label="Action"] .btn,
    .route-customer-dashboard .table-modern td[data-label="Review"] .btn,
    .route-customer-bookings .table-modern td[data-label="Review"] .btn {
        width: 100%;
    }
    .route-provider-bookings .table-modern td[data-label="Action"] form,
    .route-customer-dashboard .table-modern td[data-label="Review"] details,
    .route-customer-bookings .table-modern td[data-label="Review"] details {
        margin-top: 1.2rem;
    }
    .admin-tab-grid {
        display: flex;
        gap: 0.5rem;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.55rem;
        scrollbar-width: none;
    }
    .admin-tab {
        width: auto;
        min-width: 129px;
        text-align: center;
        text-decoration: none;
    }
}


/* Serviceman portrait card */

.provider-portrait-card {
    display: flex;
    flex-direction: column;
    min-height: 358px;
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
}

.provider-portrait-card-link {
    text-decoration: none;
    color: inherit;
}

.provider-portrait-card-link:hover,
.provider-portrait-card-link:focus {
    color: inherit;
}

.provider-portrait-card .provider-thumb-image-wrap {
    position: relative;
    flex: 0 0 40%;
    min-height: 172px;
    max-height: 182px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #eef6f7 100%);
}

.provider-portrait-card .provider-thumb-image {
    border-radius: 22px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.provider-card-corner-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    min-height: 30px;
    padding: 0.28rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f766e;
    font-size: 0.74rem;
    font-weight: 800;
    border: 1px solid rgba(15, 118, 110, 0.12);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.provider-card-corner-badge i {
    font-size: 0.78rem;
    color: #14b8a6;
}

.provider-thumb-body {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 1rem 0.55rem 0.4rem;
}

.provider-thumb-topline {
    display: flex;
    align-items: center;
}

.provider-thumb-eyebrow {
    min-width: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #94a3b8;
}

.provider-thumb-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    min-height: 28px;
    padding: 0.22rem 0.62rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #dff7f2 0%, #f0fdfa 100%);
    color: #0f766e;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(15, 118, 110, 0.12);
}

.provider-thumb-badge i {
    font-size: 0.74rem;
    color: #0d9488;
}

.provider-thumb-rating-badge {
    align-self: flex-start;
    margin-top: 0.05rem;
}

.provider-thumb-name {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
    color: #0f172a;
    word-break: break-word;
}

.provider-thumb-location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.provider-thumb-location i {
    flex: 0 0 auto;
    font-size: 0.84rem;
    color: #14b8a6;
}

.provider-thumb-location span {
    min-width: 0;
}

.provider-thumb-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 0.1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.provider-thumb-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.provider-thumb-stat {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.1;
}

.provider-thumb-stat-head {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
}

.provider-thumb-stat-head i {
    font-size: 0.82rem;
    color: #14b8a6;
}

.provider-thumb-stat strong {
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
}

.provider-thumb-stat small {
    font-size: 0.74rem;
    color: #94a3b8;
}

@media (max-width: 767px) {
    .provider-portrait-card {
        min-height: 339px;
    }
    .provider-portrait-card .provider-thumb-image-wrap {
        flex-basis: 40%;
        min-height: 150px;
        max-height: 160px;
    }
    .provider-thumb-body {
        gap: 0.4rem;
        padding: 0.72rem 0.32rem 0.16rem;
    }
    .provider-thumb-footer {
        align-items: flex-start;
        gap: 0.55rem;
        padding-top: 0.55rem;
    }
    .provider-thumb-stats {
        width: 100%;
        justify-content: space-between;
    }
    .provider-thumb-name {
        font-size: 0.88rem;
    }
    .provider-thumb-eyebrow {
        font-size: 0.62rem;
    }
    .provider-thumb-location {
        font-size: 0.78rem;
    }
    .provider-thumb-badge {
        min-height: 24px;
        padding: 0.18rem 0.55rem;
        font-size: 0.7rem;
    }
    .provider-thumb-stat {
        font-size: 0.68rem;
    }
    .provider-thumb-stat strong {
        font-size: 0.88rem;
    }
    .provider-thumb-stat small {
        font-size: 0.66rem;
    }
}