html {
    height: auto
}

body {
    font-family: var(--font-body, 'Inter', sans-serif);
    color: var(--color-text-main, #0f172a);
    background-color: var(--color-bg-body, #f8fafc);
    width: 100%;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --primary-color: var(--color-primary, #2563eb);
    --primary-hover: var(--color-primary-dark, #1d4ed8);
    --primary-light: var(--color-primary-light, #eff6ff);
    --primary-glow: var(--color-primary-glow, rgba(37, 99, 235, 0.25));
    --secondary-color: var(--color-gray-600, #475569);
    --text-main: var(--color-text-main, #0f172a);
    --text-muted: var(--color-text-muted, #64748b);
    --border-color: var(--color-border, #e2e8f0);
    --border: var(--color-border, #e2e8f0);
    --bg-light: var(--color-bg-body, #f8fafc);
    --bg-dark: var(--dark-bg, #060c1a);
    --bg-dark-2: var(--dark-surface, #0d1b3e);
    --transition: var(--transition, all 0.3s cubic-bezier(0.16, 1, 0.3, 1));
    --radius: var(--radius-md, 3px);
    --radius-card: var(--radius-md, 3px);
    --radius-pill: var(--radius-md, 3px);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
    --header-height: var(--header-h, 80px);
}

.card-premium {
    background-color: #fff;
    padding: 2.5rem 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    border-radius: 3px;
    margin-bottom: 2rem;
    transition: var(--transition)
}

.card-premium:hover {
    box-shadow: var(--shadow-md)
}

.btn-premium-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .875rem 2rem;
    font-weight: 600;
    border-radius: 3px;
    background: var(--primary-color);
    color: #fff !important;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none
}

.btn-premium-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff !important
}

.input-premium {
    padding: .75rem 1.25rem !important;
    border-radius: 3px !important;
    border: 1px solid var(--border) !important;
    background: #fff !important;
    transition: var(--transition) !important
}

.input-premium:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px var(--primary-glow) !important;
    outline: 0 !important
}

.modal {
    z-index: 1060
}

.logo-img {
    object-fit: contain
}

@media screen and (max-width:548px) {
    .display-3 {
        font-size: 2.25rem !important;
        line-height: 1.5
    }

    .display-6 {
        font-size: 1.75rem !important
    }

    .lead {
        font-size: 1rem !important
    }

    .h3,
    h3 {
        font-size: 1.25rem !important
    }
}

/* Button styles moved to portal_ui.css and modern_core.css */


.floating-animation {
    animation: 6s ease-in-out infinite floating-ui
}

@keyframes floating-ui {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, .1))
}

.hero-title {
    font-weight: 800
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6
}

@media (max-width:991px) {
    .hero-title {
        font-size: 3rem
    }
}

.feature-icon-wrapper {
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center
}

.step-card-dark,
.step-card-light,
.step-card-white {
    padding: 3rem;
    height: 100%;
    transition: var(--transition);
    border-radius: 3px !important
}

/* Outline buttons moved to portal_ui.css */


section.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
}

.portal-main {
    padding-top: var(--header-height);
    display: block
}

@media screen and (max-width:1024px) {
    .hero-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100% !important;
        max-width: 100% !important
    }

    img {
        max-width: 100%
    }

    .footer {
        padding: 2rem 1rem !important;
        text-align: center
    }

    .d-flex.gap-3,
    .d-flex.gap-4 {
        flex-wrap: wrap;
        justify-content: center
    }
}

/* Navigation and mobile menu consolidated in portal_ui.css */


.custom-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(6, 12, 26, .95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2060 !important;
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 2rem 1rem !important;
    align-items: flex-start !important;
    justify-content: center !important
}

.custom-modal.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important
}

@media screen and (max-width:548px) {
    .custom-modal {
        padding: 1rem .5rem !important
    }

    .custom-modal .glass-card,
    .custom-modal .modal-content {
        padding: 2rem 1.5rem !important;
        width: 100% !important;
        margin: auto 0 !important
    }
}

.review-modal-content {
    max-width: 500px !important
}

.textarea-no-resize {
    resize: none !important
}

.modal-input-rounded {
    border-radius: 3px !important
}

.review-count {
    font-size: .95rem;
    color: var(--text-muted)
}

.btn-booking {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto
}

.service-card {
    background: #fff;
    border-radius: 3px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid var(--border-color, #e2e8f0);
    transition: var(--transition, all .3s ease);
    display: flex;
    flex-direction: column;
    height: 100%
}

.service-card:hover {
    box-shadow: var(--shadow-premium, 0 10px 30px rgba(0, 0, 0, .1));
    border-color: var(--primary-light, #1d4ed8)
}

.service-img-wrapper {
    height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    margin: -1.5rem -1.5rem 1.5rem
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.05)
}

.service-content h4 {
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--text-main, #1e293b)
}

.service-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color, #e2e8f0)
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem
}

.review-card {
    background: #fff;
    border-radius: 3px;
    padding: 2rem;
    border: 1px solid var(--border-color, #e2e8f0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, .1));
    transition: var(--transition, all .3s ease);
    position: relative;
    margin-bottom: 2rem
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium, 0 10px 30px rgba(0, 0, 0, .1))
}

.review-rating {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-light, rgba(29, 78, 216, .1));
    color: var(--primary-color, #1d4ed8);
    font-weight: 800;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 1.1rem
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.hours-list li:last-child {
    border-bottom: none
}

.hours-list span:first-child {
    font-weight: 600;
    color: var(--text-main, #1e293b)
}

.hours-list .time {
    color: var(--text-muted, #64748b);
    font-weight: 500
}

.newsletter-input:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, .1) !important;
    border: 1px solid var(--primary-color, #1d4ed8) !important
}

.custom-modal .glass-card,
.custom-modal .modal-content {
    background: #fff;
    border-radius: 3px;
    padding: 3rem;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, .15);
    border: none;
    transform: translateY(20px);
    opacity: 0;
    transition: .5s cubic-bezier(.16, 1, .3, 1)
}

.custom-modal .modal-content h1,
.custom-modal .modal-content h2,
.custom-modal .modal-content h3,
.custom-modal .modal-content h4,
.custom-modal .modal-content h5,
.custom-modal .modal-content h6 {
    color: #0f172a !important;
    font-weight: 800 !important
}

.custom-modal .modal-content .form-label,
.custom-modal .modal-content label {
    color: #475569 !important;
    font-weight: 600 !important
}

.custom-modal .modal-content .catalog-modal-subtitle,
.custom-modal .modal-content .text-muted,
.custom-modal .modal-content p,
.custom-modal .modal-content span:not(.fa):not([class*=fa-]) {
    color: #64748b !important
}

.custom-modal .modal-content a {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600
}

.custom-modal .modal-content a:hover {
    color: var(--primary-hover) !important;
    text-decoration: underline
}

.custom-modal .modal-content .form-control::placeholder {
    color: #94a3b8
}

.custom-modal.active {
    display: flex !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(15, 23, 42, .8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important
}

.custom-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1
}

.close-btn {
    background: #f8fafc !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8 !important;
    border: 1px solid #e2e8f0
}

.close-btn:hover {
    background: #fff !important;
    color: #0f172a !important;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05)
}

.auth-card {
    text-align: left
}

.auth-card img {
    margin: 0 auto
}

.nav-pills-custom {
    background: rgba(255, 255, 255, .05);
    padding: .35rem;
    border-radius: 3px !important;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: center;
    gap: 5px
}

.nav-pills-custom .nav-link {
    border-radius: 3px;
    color: #94a3b8 !important;
    transition: var(--transition);
    border: none;
    background: rgba(255, 255, 255, .05);
    width: 100%
}

.nav-pills-custom .nav-link.active {
    background-color: var(--primary-color) !important;
    box-shadow: var(--shadow-sm);
    font-weight: 600
}

.nav-pills-custom .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, .1);
    color: #fff !important
}

.field {
    margin-bottom: 1.25rem;
    width: 100%
}

.field label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: .5rem;
    display: block
}

.form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 3px;
    width: 100%;
    font-family: inherit;
    font-size: .95rem;
    color: var(--text-main);
    transition: .25s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .01)
}

.form-control:focus {
    background-color: #fff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .03);
    outline: 0
}

.footer a {
    color: #94a3b8;
    transition: var(--transition)
}

.footer a:hover {
    color: #fff
}

.footer {
    background: linear-gradient(180deg, #0f172a 0, #020617 100%);
    color: #e2e8f0;
    padding: 6rem 0 3rem;
    font-family: inherit;
    position: relative;
    border-top: 1px solid rgba(226, 232, 240, .05);
    box-shadow: 0 -10px 40px rgba(2, 6, 23, .5)
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .2), transparent)
}

.doc-page-wrapper {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height, 70px) + 4rem);
    padding-bottom: 4rem;
    background: var(--bg-light, #f8fafc)
}

.doc-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(13, 71, 214, .05), rgba(0, 0, 0, 0));
    z-index: 0
}

.doc-container {
    position: relative;
    z-index: 1
}

.doc-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 71, 214, .1);
    border-radius: 3px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .05)
}

.doc-badge {
    background: #eff6ff;
    color: var(--primary-color, #1d4ed8);
    padding: .5rem 1rem;
    border-radius: 3px;
    font-size: .85rem;
    font-weight: 700
}

.doc-title {
    color: #0c1b40;
    font-size: 2.5rem
}

.doc-content {
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem
}

.doc-heading {
    color: #0c1b40;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem
}

.doc-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center
}

.btn-inline-flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto
}

.catalog-page-wrapper {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}


.catalog-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    padding-bottom: 4rem
}

.cm-card {
    background: #fff;
    border-radius: 3px;
    overflow-x: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .8);
    text-decoration: none;
    color: inherit;
    height: 100%
}

.cm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, .12);
    border-color: rgba(29, 78, 216, .2)
}

.cm-img-wrapper {
    position: relative;
    height: 180px;
    overflow-x: hidden;
    background: #e2e8f0
}

.cm-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.cm-card:hover .cm-img-wrapper img {
    transform: scale(1.05)
}

.cm-city-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    padding: .4rem 1rem;
    border-radius: 3px;
    font-size: .8rem;
    font-weight: 700;
    color: #1d4ed8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.cm-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.cm-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 .5rem;
    color: #0c1b40
}

.cm-desc {
    font-size: .9rem;
    color: #4a5672;
    margin: 0 0 1.5rem;
    line-height: 1.6;
    flex: 1
}

.cm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #cdd9ef;
    margin-top: auto
}

.cm-subdomain {
    font-size: .8rem;
    color: #9ca3af;
    background: #f3f4f6;
    padding: .2rem .6rem;
    border-radius: 3px
}

.cm-view {
    font-weight: 600;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: gap .3s
}

.cm-card:hover .cm-view {
    gap: .75rem
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    margin-bottom: 4rem
}

.empty-state i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem
}

.search-container input {
    box-shadow: none !important;
    border: none
}

@media (max-width:1024px) {
    .d-flex.gap-3 {
        justify-content: center
    }
}

.catalog-modal-content {
    border-radius: 3px;
    border: none;
    background: #fff;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, .15)
}

.catalog-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0, #1d4ed8 100%);
    padding: 4rem 2rem 5rem;
    color: #fff;
    border-radius: 3px;
    border-bottom: none
}

.catalog-modal-close-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10
}

.catalog-modal-close-btn {
    background: rgba(255, 255, 255, .1) !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    border-radius: 3px !important;
    padding: .75rem !important;
    transition: .3s !important
}

.catalog-modal-close-btn:hover {
    background: rgba(255, 255, 255, .2) !important;
    transform: rotate(90deg)
}

.catalog-modal-title-container {
    max-width: 700px;
    margin: 0 auto
}

.catalog-modal-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.catalog-modal-subtitle {
    font-size: 1.25rem;
    opacity: .9;
    font-weight: 400;
    margin: 0
}

.catalog-modal-overlay {
    position: absolute;
    inset: 0;
    background: url('/assets/images/hero_bg.png') center/cover;
    opacity: .05;
    mix-blend-mode: overlay;
    pointer-events: none;
    border-radius: 3px
}

.catalog-modal-body-container {
    margin-top: -3rem;
    position: relative;
    z-index: 5
}

.catalog-modal-inner {
    padding: 0 3rem 3rem
}

.b2b-hero {
    overflow: hidden;
    position: relative;
    max-width: 100%
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 0, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 600px
}

.hero-image {
    position: relative
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #2563eb 0, #0dcaf0 100%);
    border-radius: 3px;
    z-index: -1;
    opacity: .2
}

.hero-image img {
    border-radius: 3px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .8);
    transition: transform .3s
}

.hero-image img:hover {
    transform: translateY(-5px)
}

.section-label {
    color: var(--primary-color);
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-label::before {
    content: '';
    height: 2px;
    width: 35px;
    background: var(--primary-color);
    display: block;
    border-radius: 3px
}

.steps-indicator {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
    z-index: 2;
    display: flex;
    justify-content: space-between
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border-color);
    z-index: -1;
    transform: translateY(-50%);
    border-radius: 3px
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: var(--glass-bg);
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-sm)
}

.step-dot.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, .2)
}

.step-dot.completed {
    background: var(--success);
    color: #fff;
    border-color: var(--success)
}

.summary-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: rgba(29, 78, 216, .1);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0
}

.slot-btn {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: .75rem 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    transition: var(--transition);
    cursor: pointer;
    flex: 1 1 calc(33.333% - 10px);
    min-width: 100px
}

.slot-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color)
}

.slot-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.glass-panel {
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, .07)
}

.hover-scale-up {
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s
}

.hover-scale-up:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1);
    z-index: 10
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeRight {
    0% {
        opacity: 0;
        transform: translateX(-30px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.animate-fade-up {
    animation: .8s cubic-bezier(.16, 1, .3, 1) forwards fadeUp;
    opacity: 0
}

.animate-delay-400 {
    animation-delay: .4s
}

.form-control-premium {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(226, 232, 240, .8);
    transition: .3s
}

.form-control-premium:focus {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(29, 78, 216, .15), 0 4px 12px rgba(0, 0, 0, .05);
    border-color: var(--bs-primary);
    transform: translateY(-1px)
}

body.js-enabled #header {
    animation: .8s cubic-bezier(.16, 1, .3, 1) forwards headerSlideDown;
    transform: translateY(-100%);
    opacity: 0
}

@keyframes headerSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.hero-bg-accent {
    opacity: .25
}

.hero-title {
    letter-spacing: -1.5px
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-hover), var(--info));
    -webkit-text-fill-color: transparent
}

.dropdown-menu {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, .05) !important;
    border-radius: 3px !important;
    padding: .75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1) !important;
    animation: .2s ease-out dropdownFadeIn
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.dropdown-item {
    border-radius: 3px;
    padding: .7rem 1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: .2s;
    display: flex;
    align-items: center;
    gap: .75rem
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
    color: var(--secondary-color);
    opacity: .7
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(4px)
}

.dropdown-item:hover i {
    color: var(--primary-color);
    opacity: 1
}

.dropdown-item.text-danger:hover {
    background: #fff1f2;
    color: #e11d48
}

.dropdown-divider {
    margin: .5rem 0;
    opacity: .05
}

@media (max-width:548px) {
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important
    }

    .btn-primary-custom {
        padding: 10px 20px !important;
        font-size: 1rem !important;
        border-radius: 3px !important
    }
}

.ai-generate-btn {
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .25);
    transition: .3s;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff
}

.ai-generate-btn:hover {
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
    background-color: var(--primary-hover);
    transform: translateY(-2px)
}

.inspiration-chip {
    font-size: .9rem;
    padding: 8px 18px;
    border-color: #dee2e6;
    color: #6c757d;
    background: #fff;
    transition: .2s
}

.inspiration-chip:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-color: var(--primary-color)
}

.feature-card,
.section-card,
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    border-radius: 3px;
    transition: var(--transition)
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    box-shadow: var(--shadow-sm);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition)
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md)
}

.btn-outline-custom {
    background: 0 0;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition)
}

.btn-outline-custom:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color)
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg)
    }
}

body.page-transitioning .main-content,
body.page-transitioning main {
    opacity: 0;
    transform: translateY(10px) !important
}

.main-content,
main {
    transition: opacity .4s, transform .4s;
    opacity: 1;
    transform: none
}

.step-card-light {
    background: #f1f5f9;
    border: 1px solid #e2e8f0
}

.step-card-white {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.step-card-dark {
    background: linear-gradient(135deg, #060c1a 0, #0d1b3e 100%);
    border: 1px solid rgba(37, 99, 235, .2);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .15)
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.light-text {
    color: #0d6efd !important
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: 1.5s infinite skeleton-loading;
    border-radius: 3px
}

.skeleton-text {
    height: 1rem;
    margin-bottom: .5rem
}

.skeleton-image {
    height: 180px;
    width: 100%
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

.reveal {
    opacity: 1;
    transform: none;
    transition: .8s cubic-bezier(.16, 1, .3, 1)
}

body.js-enabled .reveal:not(.active) {
    opacity: 0;
    transform: translateY(30px)
}

body.js-enabled .reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important
}

.reveal-left,
.reveal-right {
    transform: none
}

body.js-enabled .reveal-left:not(.active) {
    transform: translateX(-30px);
    opacity: 0
}

body.js-enabled .reveal-right:not(.active) {
    transform: translateX(30px);
    opacity: 0
}

body.js-enabled .reveal-left.active,
body.js-enabled .reveal-right.active {
    opacity: 1 !important;
    transform: translateX(0) !important
}

.magnetic-target {
    display: inline-block;
    transition: transform .2s cubic-bezier(.23, 1, .32, 1)
}

.floating-bg-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light-alpha) 0, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: 20s linear infinite float-slow;
    max-width: 100%;
    overflow: hidden
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    33% {
        transform: translate(30px, 50px) rotate(120deg)
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg)
    }

    100% {
        transform: translate(0, 0) rotate(360deg)
    }
}

::-webkit-scrollbar {
    height: 10px
}

::-webkit-scrollbar-track {
    background: #7d7d7d
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
    border: 3px solid var(--bg-light)
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Outfit, sans-serif;
    font-weight: 700;
    color: var(--text-main)
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

.alert,
.badge,
.btn,
.card,
.dropdown-menu,
.form-control,
.modal-content,
.nav-link,
.rounded,
.rounded-1,
.rounded-3,
.rounded-4,
.rounded-5,
.rounded-pill {
    border-radius: 3px !important
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 3px;
    box-shadow: var(--shadow-md);
    transition: var(--transition)
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-glow)
}

.container {
    width: 96% !important;
    margin: 0 auto;
    padding: 0 20px;
    color: #ffffff;
}

section {
    position: relative;
    padding: 80px 0
}

@media (max-width:991px) {
    .main-content {
        margin-left: 0
    }

    #lavdin-nav-menu .nav__link {
        color: var(--text-main) !important
    }

    #lavdin-nav-menu .logo-img {
        filter: none !important
    }
}

body .custom-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(15, 23, 42, .9) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    opacity: 0;
    transition: opacity .4s cubic-bezier(.16, 1, .3, 1);
    overflow-y: auto;
    outline: 0 !important
}

body .custom-modal.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important
}

.auth-card {
    max-width: 480px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--border-color);
    margin: auto
}

@media (max-width:768px) {
    .auth-card {
        padding: 2.5rem 1.5rem
    }
}

.custom-modal .auth-card {
    transform: translateY(20px);
    opacity: 0;
    transition: .5s cubic-bezier(.16, 1, .3, 1)
}

.custom-modal.active .auth-card {
    transform: translateY(0);
    opacity: 1
}

.auth-card h4,
.auth-card h5 {
    font-family: Outfit, sans-serif;
    font-weight: 700
}

.auth-pill-container {
    background: #f8fafc;
    padding: 6px;
    border-radius: 3px;
    border: 1px solid #e2e8f0
}

.auth-pill-container .nav-link {
    border: none !important;
    background: 0 0 !important;
    color: #64748b !important;
    border-radius: 3px !important;
    padding: .875rem 1rem !important;
    font-size: .95rem !important;
    transition: .3s cubic-bezier(.16, 1, .3, 1) !important
}

.auth-pill-container .nav-link.active {
    background: #fff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06) !important
}

.auth-card .form-control {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    padding: .875rem 1.25rem !important;
    border-radius: 3px !important;
    font-size: .95rem !important;
    transition: .2s !important;
    color: #1e293b !important
}

.auth-card .form-control:focus {
    background-color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .08) !important
}

.auth-card .nav-pills-custom .nav-link {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: .75rem;
    border-radius: 3px;
    font-size: .9rem;
    transition: .3s
}

.auth-card .nav-pills-custom .nav-link.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .2)
}

.auth-card .btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0, #1d4ed8 100%);
    border: none;
    padding: 1.15rem;
    border-radius: 3px;
    font-weight: 700;
    font-family: Outfit, sans-serif;
    font-size: 1.1rem;
    letter-spacing: .3px;
    box-shadow: 0 12px 25px -5px rgba(37, 99, 235, .3);
    transition: .4s cubic-bezier(.16, 1, .3, 1)
}

.auth-card .btn-primary-custom:hover {
    box-shadow: 0 15px 35px -5px rgba(37, 99, 235, .4);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, .4);
    filter: brightness(1.1)
}

.close-btn {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: .2s;
    z-index: 10
}

.close-btn:hover {
    transform: rotate(90deg)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-up {
    opacity: 1;
    transform: none
}

body.js-enabled .animate-fade-up {
    animation: .6s cubic-bezier(.16, 1, .3, 1) forwards fadeInUp;
    opacity: 0
}

.animate-delay-100 {
    animation-delay: .1s
}

.animate-delay-200 {
    animation-delay: .2s
}

.animate-delay-300 {
    animation-delay: .3s
}

.header {
    height: var(--header-height);
    background: 0 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000 !important;
    display: flex;
    align-items: center;
    transition: var(--transition)
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.header.sticky .nav__link {
    color: var(--text-main);
    color: var(--text-main) !important
}

.logo-img {
    filter: invert(1);
    transition: var(--transition);
    max-height: 35px !important;
    width: auto !important;
    object-fit: contain
}

.nav__list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center
}

.nav__link {
    font-weight: 600;
    color: #b3b3b3;
    font-family: Outfit, sans-serif;
    letter-spacing: .5px;
    font-size: .95rem;
    padding: 10px 15px;
    height: 44px;
    display: flex;
    align-items: center;
    position: relative
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform .3s
}

.nav__link:hover::after {
    transform: scaleX(1)
}

.nav__link.active-link,
.nav__link:hover {
    color: var(--primary-color)
}

.nav__link.active-link::after {
    transform: scaleX(1)
}

.header.sticky .light-text,
.header.sticky .nav__toggle {
    color: var(--text-main) !important
}

.header.sticky {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, .98) !important;
    backdrop-filter: blur(16px)
}

.header.sticky .logo-img {
    filter: none !important
}

.header .btn-primary-custom {
    padding: 10px 24px;
    height: 44px;
    font-size: .95rem
}

.header-btn-link {
    padding: 10px 15px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-family: Outfit, sans-serif;
    font-size: .95rem
}

.nav-pills-custom .nav-link {
    border-radius: 3px;
    padding: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-color)
}

.nav-pills-custom .nav-link.active {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color)
}

@media (max-width:991px) {
    #lavdin-nav-menu {
        position: fixed !important;
        top: -100% !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        background-color: #fff;
        padding: 80px 40px 40px;
        box-shadow: var(--shadow-lg);
        transition: top .4s cubic-bezier(.16, 1, .3, 1), opacity .4s, transform .4s;
        z-index: 10000 !important;
        overflow-y: auto;
        max-height: 100vh;
        display: none !important;
        transform: translateY(-20px) !important
    }

    #lavdin-nav-menu.show-menu {
        top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important
    }

    #lavdin-nav-menu .nav__list {
        display: flex !important;
        flex-direction: column;
        gap: 1.25rem
    }

    .nav__link {
        color: var(--text-main);
        font-size: 1.1rem
    }

    .nav__toggle {
        display: block !important
    }
}

@media (min-width:992px) {
    .nav__toggle {
        display: none !important
    }
}

#b2b-hero {
    background: #0f172a !important;
    min-height: 95vh;
    padding-top: 120px;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    overflow-y: clip
}

#b2b-hero h1,
#b2b-hero h2,
#b2b-hero h3,
#b2b-hero p {
    color: #fff !important
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -2px
}

.text-gradient {
    background: linear-gradient(135deg, #2563eb 0, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.dashboard-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
    box-shadow: var(--shadow-sm)
}

.dashboard-mobile-header.glass-card {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px)
}

.dashboard-mobile-brand {
    font-family: Outfit, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px
}

.hero-badge {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: rgb(255 255 255 / 10%);
    padding: 6px 12px;
    border-radius: 3px
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--primary-light-alpha);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px
}

.contact-card {
    background: var(--bg-white)
}

.tenant-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center
}

.tenant-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .6)
}

.feature-card,
.section-card,
.service-card {
    background: var(--bg-white);
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition)
}

.feature-card:hover,
.section-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color)
}

.dashboard-sidebar .nav-link {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    border-radius: 3px;
    transition: var(--transition)
}

@media (max-width:991px) {
    .hero-title {
        font-size: 2.5rem
    }
}

.data-card {
    background: var(--bg-white);
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%
}

.data-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color)
}

.status-badge {
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center
}

.status-pending {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #ffedd5
}

.status-confirmed {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #dcfce7
}

.status-cancelled {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fee2e2
}

.stat-widget {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light-alpha);
    color: var(--primary-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.5
}

.stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500
}

@media (max-width:991px) {
    .dashboard-mobile-header {
        display: flex;
        padding: 12px 20px
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
        width: var(--sidebar-width)
    }

    .dashboard-sidebar.dashboard-sidebar-show,
    .dashboard-sidebar.show {
        transform: translateX(0)
    }

    .sidebar-close-btn {
        display: block
    }

    .main-content {
        margin-left: 0;
        padding-top: calc(var(--dashboard-mobile-header-height, 65px) + 30px)
    }
}

body.loader-active,
body.modal-open,
body.page-transitioning {
    overflow: hidden
}

.hero-bg-accent {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, .15) 0, rgba(37, 99, 235, 0) 70%);
    border-radius: 3px;
    ;
    filter: blur(80px);
    z-index: 1
}

.featured-salon-card {
    transition: var(--transition)
}

.featured-salon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium) !important
}

.step-item {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.btn-next {
    color: rgb(255, 255, 255) !important;
}

/* Fix for dashboard header logo contrast on mobile */
.header-dashboard .logo-img {
    filter: none !important;
}

.dark-theme .header-dashboard .logo-img {
    filter: invert(1) !important;
}