@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bm-primary: #D35400; /* More vibrant orange */
    --bm-primary-glow: rgba(211, 84, 0, 0.4);
    --bm-accent: #E9965B;
    --bm-dark: #0e1035;
    --bm-text: #5e6282;
    --bm-font: 'Inter', sans-serif;
    --bm-heading-font: 'Outfit', sans-serif; /* Modern, premium feel */
    --bm-accent-font: 'Outfit', sans-serif;
    --bm-green-accent: #27ae60;
    --bm-blue: #C04F18; 
    --bm-yellow: #F39C12; /* Vibrant yellow */
    --bm-navy: #0A2540; 
    --bm-beige: #FAF8F5; 
    --bm-bg-gradient: linear-gradient(135deg, #FFF9F4 0%, #FFFFFF 100%);
}

body {
    font-family: var(--bm-font);
    background-color: #fff;
    color: var(--bm-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--bm-heading-font);
    color: var(--bm-dark);
    font-weight: 800;
    letter-spacing: normal;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 { font-size: 42px !important; }
    h2 { font-size: 32px !important; }
    h3 { font-size: 24px !important; }
    h4 { font-size: 20px !important; }
}

/* Homepage Loader */
.homepage-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.homepage-loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.loader-content {
    text-align: center;
}

.loader-logo img {
    height: 60px;
    width: auto;
    animation: pulse 2s infinite ease-in-out;
}

.loader-spinner {
    width: 50px;
    height: 3px;
    background: #f0f0f0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.loader-spinner::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bm-primary);
    animation: loading-bar 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes loading-bar {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

.bm-accent-text {
    font-family: var(--bm-accent-font);
    color: var(--bm-blue);
}

/* Common Buttons */
.btn-bm-yellow {
    background-color: var(--bm-yellow);
    color: #fff;
    border-radius: 100px;
    padding: 12px 35px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-bm-yellow:hover {
    background-color: var(--bm-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Topbar Styles */
.bm-topbar {
    background-color: #fff;
    padding: 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.bm-topbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.bm-topbar li {
    margin-right: 25px !important;
    display: flex !important;
    align-items: center !important;
    color: var(--bm-text) !important;
    padding: 12px 0 !important;
}

.bm-topbar li i {
    color: var(--bm-yellow) !important;
    margin-right: 8px !important;
}

.bm-topbar a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.bm-topbar a:hover {
    color: var(--bm-yellow);
}

@media (max-width: 991px) {
    .bm-topbar {
        padding: 8px 0;
    }
    .bm-topbar ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    .bm-topbar ul::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome, Safari and Opera */
    }
    .bm-topbar li {
        white-space: nowrap;
        margin-right: 25px !important;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .bm-topbar li i {
        color: var(--bm-yellow);
        font-size: 14px;
    }
    .bm-topbar .col-md-4 {
        display: none; /* Hide social icons on mobile topbar for space */
    }
}

/* Navbar Styles */
.bm-navbar {
    padding: 12px 0;
    background-color: #fff;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    height: 80px;
    display: flex;
    align-items: center;
}

/* Drawer Guest Buttons */
.btn-drawer-signin, .btn-drawer-register {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-drawer-signin {
    background: #f8f9fa;
    color: var(--bm-navy);
    border: 1px solid #eee;
}

.btn-drawer-register {
    background: var(--bm-yellow);
    color: var(--bm-navy);
}

.btn-drawer-signin:hover {
    background: #eee;
}

.btn-drawer-register:hover {
    background: var(--bm-primary);
    color: #fff;
}

.bm-navbar .nav-link {
    color: #2d3748 !important;
    font-weight: 500;
    margin: 0 18px !important;
    font-size: 15px !important;
    transition: color 0.3s;
    letter-spacing: -0.2px;
}

.bm-navbar .nav-link:hover {
    color: var(--bm-primary) !important;
}

/* Offcanvas Mobile Menu Drawer */
@media (max-width: 991px) {
    .bm-navbar-drawer {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 9999 !important; /* Extremely high to stay top */
        backdrop-filter: none !important; /* Ensure content is crisp */
        padding: 30px;
        box-shadow: 10px 0 40px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
        display: block !important;
    }

    body.show-menu .bm-navbar-drawer {
        left: 0;
    }

    .bm-navbar-drawer .navbar-nav {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .bm-navbar-drawer .nav-link {
        margin: 0 !important;
        padding: 12px 0 !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        border-bottom: 1px solid #f8f9fa;
        width: 100%;
    }

    .mobile-menu-close {
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }

    .btn-close-menu {
        background: transparent;
        border: none;
        color: var(--bm-navy);
        font-weight: 700;
        font-size: 16px;
        display: flex;
        align-items: center;
        padding: 0;
    }

    .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 37, 64, 0.4);
        backdrop-filter: blur(4px);
        z-index: 9998 !important; 
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    body.show-menu .navbar-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* Dashboard Sidebar Mobile Styles */
    .dashboard-sidebar-premium {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        z-index: 9999 !important; /* Same as menu drawer */
        border-radius: 0;
        overflow-y: auto;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        background: #fff;
        padding: 30px;
        box-shadow: 10px 0 40px rgba(0,0,0,0.1);
    }

    body.show-sidebar .dashboard-sidebar-premium {
        left: 0;
    }

    .dashboard-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(10, 37, 64, 0.4);
        backdrop-filter: blur(4px);
        z-index: 9998 !important; /* Just below drawer */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    body.show-sidebar .dashboard-sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }

    .mobile-sidebar-close {
        margin-bottom: 25px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
    }

    /* Floating Toggle Button */
    .dashboard-sidebar-floating-toggle {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2000;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    body.show-sidebar .dashboard-sidebar-floating-toggle {
        left: -60px;
        opacity: 0;
        visibility: hidden;
    }

    .btn-sidebar-float {
        background: var(--bm-yellow);
        color: var(--bm-navy);
        border: none;
        width: 35px;
        height: 60px;
        border-radius: 0 12px 12px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 4px 0 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
        padding: 0;
    }

    .btn-sidebar-float:hover {
        width: 45px;
        background: var(--bm-primary);
        color: #fff;
    }
}

@media (min-width: 992px) {
    .navbar-overlay, .dashboard-sidebar-overlay, .bm-navbar-drawer, .dashboard-sidebar-floating-toggle {
        display: none !important;
    }
}

.navbar-brand img {
    height: 38px !important;
    width: auto !important;
}

@media (max-width: 991px) {
    .bm-navbar .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }
    .bm-navbar .navbar-brand {
        margin-right: 15px;
    }
    .bm-navbar .nav-avatar {
        width: 30px !important;
        height: 30px !important;
    }
    .bm-navbar .nav-icon-link {
        font-size: 18px;
    }
}

/* Auth & Social Icons */
.nav-icon-link {
    font-size: 20px;
    color: #4a5568;
    text-decoration: none !important;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    position: relative; /* Fixed for badges */
}

.nav-icon-link:hover {
    color: var(--bm-primary);
}

.wishlist-badge {
    position: absolute;
    top: -17px;
    right: -16px;
    background-color: var(--bm-primary);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    border: 2px solid #fff;
    font-weight: 700;
}

.dot-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #f6ad55; /* Orange dot */
    border-radius: 50%;
    border: 2px solid #fff;
}

.nav-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #edf2f7;
}

.nav-profile-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.nav-profile-link:hover {
    transform: scale(1.05);
}

.nav-profile-link.dropdown-toggle::after {
    display: none;
}

.bm-dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 15px !important;
    min-width: 220px;
    animation: fadeIn 0.3s ease;
}

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

.bm-dropdown-menu .dropdown-item {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s;
    font-size: 14px;
}

.bm-dropdown-menu .dropdown-item:hover {
    background-color: #f7fafc;
    color: var(--bm-primary);
    transform: translateX(5px);
}

.bm-dropdown-menu .dropdown-item i {
    width: 20px;
}

/* Guest Buttons */
.btn-nav-signin {
    color: #2d3748;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 15px;
    transition: color 0.3s;
}

.btn-nav-signin:hover {
    color: var(--bm-primary);
}

.btn-nav-register {
    background-color: var(--bm-primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(192, 79, 24, 0.15);
}

.btn-nav-register:hover {
    background-color: var(--bm-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(192, 79, 24, 0.25);
}

/* Hero Section */
.hero-section {
    padding: 110px 0 160px;
    background: radial-gradient(circle at center, #f5f0ff 0%, #fff9f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--bm-dark);
}

.hero-text p {
    font-size: 19px;
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.6;
    color: #555;
}

/* Modern Search Box with Glassmorphism */
.search-box-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 10;
}

.search-box-wrapper:hover, .search-box-wrapper:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(211, 84, 0, 0.15);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--bm-primary);
}

.search-icon-fixed {
    color: var(--bm-blue);
    font-size: 18px;
    margin-left: 20px;
    opacity: 0.5;
}

.search-input {
    border: none !important;
    padding: 12px 15px !important;
    flex-grow: 1;
    outline: none !important;
    font-size: 16px;
    color: var(--bm-blue);
    font-weight: 500;
    background: transparent !important;
}

.btn-find-service {
    background-color: var(--bm-blue);
    color: #fff;
    border-radius: 100px;
    padding: 14px 40px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(22, 22, 77, 0.2);
}

.btn-find-service:hover {
    background-color: var(--bm-yellow);
    color: #fff !important;
    transform: scale(1.02);
}

/* Trending Chips */
.hero-trending {
    margin-top: 25px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 15px;
}

.trending-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--bm-blue);
    opacity: 0.6;
    margin-right: 5px;
}

.trending-chip {
    font-size: 12px;
    padding: 6px 15px;
    background: #fff;
    border-radius: 50px;
    color: var(--bm-text);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.trending-chip:hover {
    background: var(--bm-yellow);
    color: var(--bm-blue);
    border-color: var(--bm-yellow);
    transform: translateY(-2px);
}

/* Hero Visuals */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-soft-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff0e0 100%);
    border-radius: 50%;
    right: -10%;
    z-index: 1;
    filter: blur(80px);
    animation: blobify 20s infinite alternate;
}

@keyframes blobify {
    0% { transform: translate(0, 0) scale(1); border-radius: 50%; }
    33% { transform: translate(30px, -50px) scale(1.1); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    66% { transform: translate(-20px, 20px) scale(0.9); border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
    100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
}

.hero-main-img {
    position: relative;
    z-index: 2;
    max-width: 85%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1));
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-badge img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.badge-top-right { top: 10%; right: 10%; }
.badge-bottom-left { bottom: 25%; left: 15%; width: 55px; height: 55px; }

.hero-badge-premium {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    z-index: 10;
    bottom: 60px;
    right: 5%;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.badge-header .count {
    font-size: 24px;
    font-weight: 900;
    color: var(--bm-blue);
    margin: 0;
}

.badge-header .heart-icon {
    width: 28px;
    height: 28px;
    background: var(--bm-yellow);
    color: var(--bm-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.badge-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--bm-text);
    margin-bottom: 15px;
    display: block;
}

/* Customer Grid (2x2) */
.customer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.customer-grid img {
    width: 45px !important;
    height: 45px !important;
    border-radius: 12px; 
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Category Marquee */
.brands-section {
    background-color: var(--bm-yellow);
    padding: 30px 0;
    overflow: hidden;
}

.category-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: scroll 40s linear infinite;
    gap: 50px;
}

.category-item {
    font-size: 16px;
    font-weight: 700;
    color: var(--bm-blue);
    cursor: pointer;
    transition: all 0.4s;
    opacity: 0.8;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-item:hover {
    opacity: 1;
    transform: scale(1.08) translateY(-2px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.category-item i {
    margin-right: 8px;
    font-size: 20px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Features Grid (New) */
.features-grid-section {
    padding: 100px 0 60px;
    background-color: #fff;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper i {
    font-size: 32px;
    color: var(--bm-blue);
    position: relative;
    z-index: 2;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    top: -5px;
    right: -5px;
    z-index: 1;
    opacity: 0.8;
}

/* Specific Blob Colors */
.feature-item.orange .feature-icon-wrapper::before { background-color: #fff4e5; }
.feature-item.purple .feature-icon-wrapper::before { background-color: #f3e5ff; }
.feature-item.green .feature-icon-wrapper::before { background-color: #e5fff0; }
.feature-item.lime .feature-icon-wrapper::before { background-color: #f9ffe5; }

.feature-item h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--bm-blue);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.hierarchical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
}

.grid-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.grid-item-top img {
    height: 240px;
}

.grid-item-wide {
    grid-column: 1 / span 2;
}

.grid-item-wide img {
    height: 200px !important;
}

.why-content {
    padding-left: 50px;
    position: relative;
    z-index: 2;
}

/* Background blob */
.why-content::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--bm-cream);
    border-radius: 50%;
    right: -300px;
    top: -150px;
    z-index: -1;
    opacity: 0.6;
}

.why-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bm-dark);
    margin-bottom: 30px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.why-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.why-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--bm-blue);
}

.why-check-list li i {
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--bm-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
}

.btn-join-now {
    background-color: var(--bm-yellow);
    color: #fff;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 800;
    display: inline-block;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}

.btn-join-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
}

/* Services */
.services-section { 
    padding: 100px 0; 
    background: #fff; 
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bm-dark);
    margin-bottom: 20px;
}

.services-header p {
    color: #666;
    max-width: 500px;
}

.btn-view-all {
    border: 1px solid #ddd;
    padding: 12px 30px;
    border-radius: 12px;
    color: var(--bm-blue);
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: var(--bm-blue);
    color: #fff;
    border-color: var(--bm-blue);
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}

.service-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 40px 80px rgba(211, 84, 0, 0.12); 
    border-color: var(--bm-primary);
}

.service-img-wrapper { 
    height: 260px; 
    overflow: hidden; 
    position: relative; 
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bm-yellow);
    color: var(--bm-blue);
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.service-card:hover .service-img-wrapper img { 
    transform: scale(1.08); 
}

.service-content { 
    padding: 25px; 
}

.provider-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.provider-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    object-fit: cover;
}

.provider-name {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.service-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #888;
}

.service-rating i {
    color: var(--bm-yellow);
    font-size: 11px;
}

.service-title { 
    font-size: 20px; 
    font-weight: 800;
    color: var(--bm-dark);
    margin-bottom: 12px; 
    height: auto;
    line-height: 1.3;
}

.service-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.price-box small {
    display: block;
    color: #aaa;
    font-size: 12px;
}

.price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--bm-blue);
}

.btn-book-now {
    background: var(--bm-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 8px 16px var(--bm-primary-glow);
}

.btn-book-now:hover {
    background: var(--bm-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 16, 53, 0.2);
}

/* Testimonials */
.testimonial-section { padding: 100px 0; }
.testimonial-img { border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.quote-icon { font-size: 70px; color: var(--bm-yellow); opacity: 0.2; margin-bottom: 20px; }

/* Newsletter */
.newsletter-section {
    padding: 80px 40px;
    background: var(--bm-dark);
    border-radius: 50px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-section h2 { color: #fff !important; }
.newsletter-section p { color: rgba(255,255,255,0.7); }
.newsletter-box {
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    max-width: 550px;
    margin: 40px auto 0;
}
.newsletter-input { 
    border: none !important; 
    padding: 10px 30px !important; 
    flex-grow: 1; 
    outline: none !important;
    background: transparent !important;
}

/* Footer Styles */
.bm-footer { padding: 80px 0 40px; border-top: 1px solid #eee; }
.footer-logo { height: 45px; margin-bottom: 30px; }
.bm-footer h4 { margin-bottom: 30px; font-weight: 800; }
.bm-footer ul { list-style: none; padding: 0; }
.bm-footer ul li { margin-bottom: 15px; }
.bm-footer ul li a { color: var(--bm-text); text-decoration: none; transition: 0.3s; }
.bm-footer ul li a:hover { color: var(--bm-yellow); padding-left: 5px; }

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0 100px;
        text-align: center;
    }
    .hero-text h1 { font-size: 56px; }
    .hero-text p { margin: 0 auto 40px; }
    .search-box-wrapper { margin: 0 auto; }
    .hero-trending { justify-content: center; padding-left: 0; }
    .hero-image-wrapper { justify-content: center; margin-top: 60px; }
    .hero-soft-bg { width: 350px; height: 350px; left: 50%; transform: translateX(-50%); }
    .hero-badge-premium { left: auto; right: 5%; bottom: 40px; }
    .floating-badge { display: none; }
    
    .img-grid { margin-bottom: 50px; }
    .brands-section .d-flex { justify-content: center !important; }
    .brand-item { margin: 15px; }
}

@media (max-width: 767px) {
    .hero-text h1 { font-size: 42px; letter-spacing: -1px; }
    .hero-text p { font-size: 16px; }
    .btn-find-service { padding: 12px 25px; font-size: 14px; }
    
    .feature-card { margin-bottom: 30px; }
    .img-large { height: 350px; }
    .img-small { height: 180px; }
    
    .newsletter-section { padding: 50px 20px; border-radius: 30px; }
    .newsletter-box { 
        flex-direction: column; 
        border-radius: 20px; 
        background: transparent; 
        box-shadow: none;
    }
    .newsletter-input { 
        background: #fff; 
        border-radius: 50px !important; 
        margin-bottom: 15px; 
        width: 100%;
        padding: 15px 25px !important;
    }
    .newsletter-box .btn { width: 100%; }
    
    .bm-footer { text-align: center; padding: 60px 0 30px; }
    .footer-logo { margin: 0 auto 30px; }
    .bm-footer ul { margin-bottom: 40px; }
}

/* --- Working Process Section --- */
.working-process-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header .subtitle {
    color: var(--bm-yellow);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.process-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--bm-dark);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step .icon-box {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: var(--bm-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .icon-box {
    background: var(--bm-yellow);
    transform: translateY(-5px);
}
.process-step:hover .icon-box i {
    color: #fff;
}

.process-step .step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: var(--bm-yellow);
    color: var(--bm-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    border: 3px solid #fff;
    z-index: 3;
}

.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--bm-blue);
}

.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: var(--bm-blue);
    position: relative;
    overflow: hidden;
}

.statistics-section .subtitle {
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.statistics-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

/* Seller Join Banner */
.seller-banner-section {
    padding: 80px 0;
}

.seller-banner-card {
    background: linear-gradient(135deg, var(--bm-blue) 0%, #1a1a4d 100%);
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.seller-banner-card .content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.seller-banner-card h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff !important;
}

.seller-banner-card p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.seller-banner-card .btn-join-seller {
    background: var(--bm-yellow);
    color: var(--bm-blue);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(246, 178, 2, 0.2);
}

.seller-banner-card.premium-glow {
    background: linear-gradient(135deg, #0f0f3d 0%, #1a1a4d 100%);
    box-shadow: 0 20px 50px rgba(15, 15, 61, 0.2);
    border: 1px solid rgba(255,255,255,0.05);
}

.seller-banner-card .banner-img-side {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
}

.seller-banner-card:hover .banner-img-side {
    transform: translateY(-10px) scale(1.05);
}

.banner-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(246, 178, 2, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
}

.shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    bottom: -50px;
    left: 20%;
    border-radius: 50%;
}

/* Slick Dots Styling */
.testimonial-slider .slick-dots {
    bottom: -60px;
    list-style: none;
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.testimonial-slider .slick-dots li {
    margin: 0 5px;
}

.testimonial-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    padding: 0;
    font-size: 0;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-dots li.slick-active button {
    background: var(--bm-yellow);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .seller-banner-card {
        padding: 60px 40px;
        text-align: center;
    }
    .seller-banner-card .content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .seller-banner-card .banner-provider-img,
    .seller-banner-card .banner-img-side {
        max-height: 400px;
        margin-top: 20px;
    }
}

.testimonial-new-section {
    padding: 120px 0;
    background: #fff;
    scroll-margin-top: 100px;
}

.testimonial-new-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-new-header .subtitle {
    color: var(--bm-yellow);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.testimonial-new-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--bm-blue);
}

.testimonial-box {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
    margin-top: 8px;
}

.testimonial-box:hover {
    border-color: var(--bm-yellow);
}

.testimonial-box .stars {
    margin-bottom: 20px;
    color: var(--bm-yellow);
}

.testimonial-box .text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-box .client-info {
    display: flex;
    align-items: center;
}

.testimonial-box .client-info img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid #fcfcfc;
}

.testimonial-box .client-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--bm-blue);
}

.testimonial-box .client-info span {
    font-size: 14px;
    color: #888;
}

/* --- Download Section (Updated Light Theme) --- */
.app-download-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Soft corner glow like reference */
.app-download-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.app-download-section .container {
    position: relative;
    z-index: 2;
}

.app-download-content h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--bm-dark);
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.app-download-content h2 span {
    color: var(--bm-primary);
    display: block;
    font-size: 60px;
    font-weight: 800;
}

.app-download-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 550px;
}

.app-store-btns {
    display: flex;
    gap: 20px;
}

.app-store-btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.app-store-btn:hover {
    transform: translateY(-8px);
}

.app-store-btn img {
    height: 55px !important;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* Right Side - Phone & Floating Elements */
.app-display-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Patterned Background Blob */
.pattern-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background-image: radial-gradient(#eee 20%, transparent 20%),
                      radial-gradient(#eee 20%, transparent 20%);
    background-position: 0 0, 10px 10px;
    background-size: 20px 20px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.4;
    z-index: 1;
    animation: blobMorph 20s infinite alternate;
}

@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.phone-mockup-img {
    position: relative;
    z-index: 3;
    max-height: 520px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

/* Floating Elements */
.floating-ui-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.ui-card-1 {
    top: 50px;
    left: -20px;
    animation-delay: 0s;
}

.ui-card-2 {
    bottom: 120px;
    right: -40px;
    background: var(--bm-primary);
    color: #fff;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.ui-card-1 i { color: var(--bm-primary); margin-bottom: 8px; font-size: 20px; display: block; }
.ui-card-1 h5 { font-size: 14px; font-weight: 800; margin: 0; color: var(--bm-dark); }
.ui-card-1 span { font-size: 12px; color: #888; }

.ui-card-2 .progress-circle {
    width: 32px;
    height: 32px;
    border: 3px solid var(--bm-yellow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 10px;
    font-weight: 800;
}

.ui-card-2 h5 { font-size: 14px; font-weight: 700; margin: 0; display: inline-block; }

@media (max-width: 991px) {
    .app-download-section { padding: 80px 0; text-align: center; }
    .app-download-content h2 { font-size: 48px; }
    .app-download-content p { margin: 0 auto 40px; }
    .app-store-btns { justify-content: center; margin-bottom: 60px; }
    .app-display-wrapper { margin-top: 40px; }
    .pattern-bg { width: 400px; height: 400px; }
}

/* --- Blog Section --- */
.blog-new-section {
    padding: 120px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--bm-yellow);
}

.blog-img-wrapper {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 2;
}

.blog-date-badge .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--bm-dark);
    line-height: 1;
}

.blog-date-badge .month {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
}

.blog-meta i {
    color: var(--bm-primary);
}

.blog-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--bm-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
    text-decoration: none !important;
    display: block;
}

.blog-title:hover {
    color: var(--bm-yellow);
}

.blog-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.btn-read-more {
    font-weight: 700;
    color: var(--bm-blue);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}


.btn-read-more:hover {
    gap: 12px;
    color: var(--bm-yellow);
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

.about-page-hero {
    background-color: var(--bm-beige);
    padding: 100px 0;
    text-align: center;
}

.about-page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 56px;
    margin: 0;
    color: var(--bm-navy);
}

.section-about-who {
    padding: 120px 0;
}

.subtitle-accent {
    color: var(--bm-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.serif-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--bm-navy);
    line-height: 1.2;
}

.about-who-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* Why Choose Us & Collage */
.collage-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.collage-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.collage-item.main-item {
    grid-row: span 2;
}

.choose-feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.choose-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

.choose-feature-list li i {
    color: var(--bm-yellow);
    margin-right: 12px;
    font-size: 20px;
}

/* Features Grid Vertical */
.feature-item-vertical {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    color: var(--bm-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--bm-navy);
}

.about-vertical-banner-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-vertical-banner-wrap img {
    width: 100%;
    height: auto;
}

.floating-label-block {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: rotate(-5deg);
}

/* Achievement Counters */
.pt_120 { padding-top: 120px; }
.pb_120 { padding-bottom: 120px; }
.pb_150 { padding-bottom: 150px; }
.mb_120 { margin-bottom: 120px; }

.counter-row {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.counter-row .counter {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--bm-navy);
    line-height: 1;
}

.counter-row p {
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}

/* Icon Box Row */
.about-icon-row {
    padding: 100px 0;
}

.icon-box-item {
    text-align: center;
    padding: 40px 20px;
}

.icon-box-item i {
    font-size: 48px;
    color: var(--bm-yellow);
    margin-bottom: 25px;
    display: block;
}

.icon-box-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bm-navy);
    margin-bottom: 10px;
}

.icon-box-item p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Testimonial Montage */
.section-testimonial-montage {
    padding-top: 120px;
}

.montage-visual-wrap {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.montage-circle {
    position: absolute;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 50%;
}

.circle-lg { width: 450px; height: 450px; }
.circle-md { width: 300px; height: 300px; }

.montage-avatar {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.montage-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.av-1 { width: 140px; height: 140px; top: 0; left: 10%; }
.av-2 { width: 100px; height: 100px; top: 10%; right: 5%; }
.av-3 { width: 180px; height: 180px; bottom: 10%; right: 10%; }
.av-4 { width: 120px; height: 120px; bottom: 5%; left: 5%; }

.deco-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.dot-yellow { background: var(--bm-yellow); top: 30%; left: 5%; }
.dot-purple { background: #9b59b6; top: 15%; right: 20%; }
.dot-green { background: #2ecc71; bottom: 20%; left: 40%; }

.quote-icon-large {
    font-size: 60px;
    color: var(--bm-yellow);
    opacity: 0.2;
    margin-bottom: 20px;
    display: block;
}

.testi-author-small {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.testi-author-small img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    margin-right: 15px;
}

.testi-author-info h5 {
    margin: 0;
    font-weight: 700;
}

.testi-author-info span {
    font-size: 14px;
    color: #999;
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

.services-page-hero {
    background-color: var(--bm-beige);
    padding: 82px 0 60px;
    text-align: center;
    position: relative;
}

/* Glowing Heartbeat Animation */
.services-page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233,150,91,0.4) 0%, rgba(233,150,91,0) 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.services-page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233,150,91,0.2) 0%, rgba(233,150,91,0) 70%);
    transform: translate(-50%, -50%);
    animation: heroGlow 3s ease-in-out infinite 0.5s;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.services-page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin: 0 0 10px;
    color: var(--bm-navy);
    position: relative;
    z-index: 1;
}

.services-page-hero .lead {
    font-size: 18px;
    color: #666;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Filter Section */
.services-filter-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.services-search-wrapper {
    margin-bottom: 25px;
}

.services-search-input {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 15px 25px;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.services-search-input:focus-within {
    border-color: var(--bm-yellow);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.services-search-input i {
    color: #999;
    font-size: 18px;
    margin-right: 15px;
}

.services-search-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    outline: none;
}

/* Filter Pills */
.filter-pills-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-pill {
    position: relative;
}

.filter-pill label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding-left: 5px;
}

.filter-pill label i {
    color: var(--bm-yellow);
    font-size: 12px;
}

.filter-select {
    display: none; /* Hide native select, Select2 will replace it */
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--bm-yellow);
    outline: none;
}

.btn-reset-filters {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    background: #fee7e6;
    color: #e74c3c;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 18px;
}

.btn-reset-filters:hover {
    background: #e74c3c;
    color: #fff;
}

/* Select2 Custom Styling for Service Filters */
.filter-pill .select2-container {
    min-width: 160px;
}

.filter-pill .select2-container--default .select2-selection--single {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    height: 46px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.filter-pill .select2-container--default .select2-selection--single:hover {
    border-color: var(--bm-yellow);
}

.filter-pill .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--bm-yellow);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.filter-pill .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bm-navy);
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    padding-left: 0;
}

.filter-pill .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 15px;
    z-index: 1; /* Ensure arrow is above background */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.filter-pill .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 6px 5px 0 5px;
    margin: 0;
    top: auto;
    left: auto;
}

.filter-pill .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 5px 6px 5px;
}

/* Select2 Dropdown Styles */
.bm-select2-dropdown {
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
    margin-top: 8px !important;
    overflow: hidden;
}

.bm-select2-dropdown .select2-results__options {
    padding: 8px;
    max-height: 280px;
}

.bm-select2-dropdown .select2-results__option {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.bm-select2-dropdown .select2-results__option:hover {
    background: var(--bm-beige);
    color: var(--bm-navy);
}

.bm-select2-dropdown .select2-results__option--highlighted {
    background: var(--bm-beige) !important;
    color: var(--bm-navy) !important;
}

.bm-select2-dropdown .select2-results__option--selected {
    background: var(--bm-yellow) !important;
    color: var(--bm-navy) !important;
    font-weight: 600;
}

.bm-select2-dropdown .select2-results__option--selected::after {
    content: '✓';
    float: right;
    font-weight: 700;
}

/* Services Grid */
.services-grid-section {
    padding: 60px 0 100px;
    background: #f8f9fa;
}

/* Premium Service Card */
.service-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bm-yellow);
    color: var(--bm-navy);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-card-image .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.service-card-image .wishlist-btn i {
    color: #999;
    font-size: 16px;
    transition: color 0.3s;
}

.service-card-image .wishlist-btn:hover i,
.service-card-image .wishlist-btn.active i {
    color: #e74c3c;
}

.service-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--bm-yellow);
    text-decoration: none;
}

.service-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--bm-navy);
}

.service-provider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.service-provider img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50%;
    object-fit: cover;
}

.service-provider span {
    font-size: 14px;
    color: #666;
}

.service-rating {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 3px;
}

.service-rating i {
    font-size: 12px;
    color: var(--bm-yellow);
}

.rating-count {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-grow: 1;
}

.service-title a {
    color: var(--bm-navy);
    text-decoration: none;
    transition: color 0.3s;
}

.service-title a:hover {
    color: var(--bm-yellow);
}

.btn-book-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bm-yellow);
    color: var(--bm-navy);
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-book-service:hover {
        background: var(--bm-navy);
    color: #e9965b;
    border: 0.1rem solid #e9965b;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 20px;
}

.empty-state i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--bm-navy);
    margin-bottom: 10px;
}

.empty-state p {
    color: #888;
    margin-bottom: 20px;
}

/* Custom Premium Pagination */
.bm-pagination {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pagination-info {
    font-size: 14px;
    color: #888;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    color: var(--bm-navy);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.page-btn:hover {
    background: var(--bm-yellow);
    border-color: var(--bm-yellow);
    color: var(--bm-navy);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 30px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.page-num {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    color: var(--bm-navy);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-num:hover {
    background: var(--bm-beige);
}

.page-num.active {
    background: var(--bm-yellow);
    color: var(--bm-navy);
}

.page-dots {
    padding: 0 5px;
    color: #999;
}


@media (max-width: 991px) {
    .app-download-card {
        padding: 60px 40px;
        text-align: center;
    }
    .app-download-card h2 { font-size: 36px; }
    .app-download-card p { margin-left: auto; margin-right: auto; }
    .app-buttons { justify-content: center; }
    .blog-new-section { padding: 80px 0; }
    .app-mockup-wrapper { margin-top: 50px; text-align: center; }
    .app-mockup { max-height: 400px; transform: rotate(0); }
}

/* Base Mobile Styles (576px and below) */
@media (max-width: 576px) {
    .hero-text h1 { 
        font-size: 32px !important; 
        letter-spacing: -0.5px; 
    }
    
    .app-download-content h2, 
    .app-download-content h2 span { 
        font-size: 32px !important; 
        line-height: 1.2;
    }
    
    .service-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .btn-book-now {
        text-align: center;
        width: 100%;
    }
    
    .seller-banner-card {
        padding: 40px 20px;
    }
    
    .seller-banner-card h2 {
        font-size: 28px !important;
    }

    .blog-new-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .statistics-section {
        padding: 60px 0;
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
}

/* ==========================================================================
   Service Details Page Styles
   ========================================================================== */

.service-details-hero {
    background-color: var(--bm-beige);
    padding: 60px 0;
    text-align: center;
}

.service-details-hero .breadcrumb {
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
}

.service-details-hero .breadcrumb-item a {
    color: var(--bm-navy);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.service-details-hero .breadcrumb-item.active {
    color: #6c757d !important;
    font-size: 14px !important;
}

.service-details-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--bm-navy);
    font-size: 36px;
    margin: 0;
}

/* Service Main Image */
.service-main-image img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

/* Tabs */
.service-tabs-wrapper {
    background: transparent;
}

.premium-tabs {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

.premium-tabs .nav-link {
    background: transparent;
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 15px 25px;
    font-family: 'Inter', sans-serif;
    position: relative;
    border-radius: 0;
    transition: all 0.3s ease;
}

.premium-tabs .nav-link.active {
    color: var(--bm-navy);
    background: transparent;
}

.premium-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--bm-yellow);
}

/* Premium Card */
.premium-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.premium-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--bm-navy);
}

.premium-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--bm-navy);
}

.service-description {
    line-height: 1.7;
    font-size: 15px;
}

/* Feature List */
.feature-list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-list-check li {
    font-size: 15px;
    color: #4a4a4a;
    display: flex;
    align-items: flex-start;
}

.feature-list-check li i {
    margin-top: 4px;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.schedule-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.schedule-item .day {
    display: block;
    font-weight: 600;
    color: var(--bm-navy);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.schedule-item .time {
    color: var(--bm-yellow);
    font-weight: 700;
    font-size: 14px;
}

/* Review Card */
.review-card {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
}

.review-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    object-fit: cover !important;
}

.review-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--bm-navy);
    margin-bottom: 8px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Sidebar Components */
.sidebar-sticky {
    z-index: 99;
}

.sidebar-card {
    padding: 30px;
}

.provider-avatar-lg {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 0;
    background: #28a745;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid #fff;
}

.provider-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.provider-name {
    font-weight: 700;
    color: var(--bm-navy);
}

.stat-item strong {
    font-size: 18px;
    color: var(--bm-navy);
}

.wishlist-btn {
    border-radius: 50px;
    padding: 10px 20px;
}

.wishlist-btn.active i {
    color: #e74c3c;
}

.responsive-map-container iframe {
    border-radius: 15px;
    width: 100%;
}

@media (max-width: 991px) {
    .feature-list-check {
        grid-template-columns: 1fr;
    }
}

/* Service Image Overlay Styles */
.service-main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px; /* Fixed Height as requested */
}

.service-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.service-image-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-overlay-category {
    align-self: flex-start;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 30px;
    color: var(--bm-navy);
    background-color: var(--bm-yellow) !important;
}

.service-overlay-bottom {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.service-overlay-rating,
.service-overlay-location {
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 30px;
    color: var(--bm-navy) !important;
    background-color: #fff !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .service-main-image {
        height: 300px;
    }
}

.service-overlay-location .location-text {
    white-space: normal;
    text-align: left;
    max-width: 300px;
    line-height: 1.4;
}

/* ==========================================================================
   Premium Booking Pages Styles
   ========================================================================== */

/* Booking Hero */
.booking-hero-premium {
    background-color: var(--bm-beige);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-hero-premium h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--bm-navy) !important;
    margin-bottom: 10px;
}
.breadcrumb-item.active {
    color: var(--bs-breadcrumb-item-active-color) !important;
}

.booking-hero-premium .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
}

.booking-hero-premium .breadcrumb-item a {
    color: var(--bm-navy) !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* Progress Steps */
.booking-progress-container {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.booking-step-item {
    position: relative;
}

.booking-step-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.booking-step-link.active {
    background: var(--bm-navy);
    color: #fff;
    border-color: var(--bm-navy);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.2);
}

.booking-step-link.completed {
    background: #e9ecef;
    color: var(--bm-navy);
    border-color: #dee2e6;
}

.step-number {
    width: 24px;
    height: 24px;
    background: #e9ecef;
    color: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.booking-step-link.active .step-number {
    background: var(--bm-yellow);
    color: var(--bm-navy);
}

.booking-step-link.completed .step-number {
    background: #28a745;
    color: #fff;
}

/* Booking Content Layout */
.booking-content-wrapper {
    padding: 40px 0 80px;
}

/* Premium Form Styles */
.premium-booking-form label {
    font-weight: 600;
    color: var(--bm-navy);
    margin-bottom: 8px;
    font-size: 14px;
}

.premium-booking-form input,
.premium-booking-form select,
.premium-booking-form textarea {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fdfdfd;
}

.premium-booking-form input:focus,
.premium-booking-form select:focus,
.premium-booking-form textarea:focus {
    border-color: var(--bm-yellow);
    box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.1);
    background: #fff;
}

/* Extras Card */
.extra-service-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.extra-service-card:hover {
    border-color: var(--bm-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.extra-img-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.extra-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.extra-details {
    flex-grow: 1;
}

.extra-details h5 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--bm-navy);
}

.extra-details .price {
    font-weight: 700;
    color: var(--bm-yellow);
    font-size: 14px;
}

.extra-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn-group {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2px;
}

.qty-btn-group button {
    border: none;
    background: none;
    width: 28px;
    height: 28px;
    font-weight: 700;
    color: var(--bm-navy);
    cursor: pointer;
}

.qty-btn-group input {
    width: 30px;
    text-align: center;
    border: none;
    background: none;
    font-weight: 600;
    font-size: 14px;
    color: var(--bm-navy);
}

/* Booking Summary Sidebar */
.booking-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.03);
}

.booking-summary-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6c757d;
}

.summary-list li strong {
    color: var(--bm-navy);
}

.summary-total {
    background: var(--bm-navy);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.summary-total .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.summary-total .sub-row {
     display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}
.summary-total .sub-row span{
    color: #fff;
}
/* Date Time Picker Overrides for Premium Look */
.modern-booking-picker {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.date-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 10px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.date-item:hover, .date-item.selected {
    border-color: var(--bm-yellow);
    background: #fff9e6;
}

.date-item.selected {
    background: var(--bm-navy);
    color: #fff;
    border-color: var(--bm-navy);
}
.date-item.selected .day-name, .date-item.selected .month-name{
    color: rgba(255,255,255,0.7);
}


.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover, .time-slot.selected {
    background: var(--bm-navy);
    color: #fff;
    border-color: var(--bm-navy);
}

/* Payment Method Cards */
.payment-method-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
    position: relative;
    background: #fff;
}

.payment-method-card:hover {
    border-color: var(--bm-yellow);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-method-card.active {
    border-color: var(--bm-navy);
    background: #fdfdfd;
}

.payment-method-card.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--bm-navy);
    font-size: 18px;
    display: none;
}

.payment-method-content {
    text-align: center;
}

.payment-method-image {
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
}

.payment-method-card i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .booking-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-step-link {
        width: 100%;
        justify-content: center;
    }
    
    .date-grid {
        gap: 5px;
    }
    
    .date-item {
        padding: 5px 2px;
    }
    .date-number {
        font-size: 14px;
    }
}

/* ==========================================================================
   Premium Blog Styles
   ========================================================================== */

.blog_page_premium,
.blog_details_premium,
.contact_us_premium {
    background-color: #f9f9f9;
}

.blog-card-premium {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.blog-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-premium:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bm-yellow);
    color: var(--bm-navy);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--bm-yellow);
    margin-right: 5px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--bm-navy);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--bm-yellow);
}

.blog-card-desc {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-btn {
    color: var(--bm-navy);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: auto;
}

.read-more-btn i {
    transition: transform 0.2s;
}

.read-more-btn:hover {
    color: var(--bm-yellow);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Premium Sidebar */
.sidebar-premium {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.sidebar-widget-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--bm-navy);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--bm-yellow);
    border-radius: 3px;
}

/* Search Widget */
.premium-search-form {
    position: relative;
}

.premium-search-form input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    background: #fdfdfd;
    transition: all 0.3s;
}

.premium-search-form input:focus {
    border-color: var(--bm-navy);
    background: #fff;
    outline: none;
}

.premium-search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    background: var(--bm-navy);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.premium-search-form button:hover {
    background: var(--bm-yellow);
    color: var(--bm-navy);
}

/* Categories Widget */
.premium-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-category-list li {
    margin-bottom: 12px;
}

.premium-category-list li:last-child {
    margin-bottom: 0;
}

.premium-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.premium-category-list a:hover,
.premium-category-list a.active {
    background: var(--bm-navy);
    color: #fff;
}

.premium-category-list a span {
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.premium-category-list a:hover span,
.premium-category-list a.active span {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Popular Posts Widget */
.premium-popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.popular-post-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-info h6 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.popular-post-info h6 a {
    color: var(--bm-navy);
    text-decoration: none;
    transition: color 0.2s;
}

.popular-post-info h6 a:hover {
    color: var(--bm-yellow);
}

.popular-post-info span {
    font-size: 12px;
    color: #adb5bd;
}

/* Pagination */
.premium-pagination .pagination {
    justify-content: center;
    gap: 10px;
}

.premium-pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    color: var(--bm-navy);
    font-weight: 600;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    margin: 0;
}

.premium-pagination .page-item.active .page-link {
    background: var(--bm-navy);
    color: #fff;
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.2);
}

.premium-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Blog Details Styles
   ========================================================================== */

.blog-details-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.blog-detail-img {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-detail-header h2 {
    font-size: 32px;
    color: var(--bm-navy);
    margin-bottom: 20px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.blog-detail-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.blog-detail-meta li i {
    color: var(--bm-yellow);
}

.blog-detail-text {
    font-size: 16px;
    color: var(--bm-text);
    line-height: 1.8;
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-text blockquote {
    background: #f9f9f9;
    border-left: 4px solid var(--bm-yellow);
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--bm-navy);
    border-radius: 0 10px 10px 0;
}

/* Comments */
.comments-area-premium {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.comments-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--bm-navy);
    margin-bottom: 30px;
}

.single-comment-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.single-comment-premium:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-avatar {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    flex-shrink: 0;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 700;
    color: var(--bm-navy);
    font-size: 16px;
}

.comment-date {
    font-size: 13px;
    color: #adb5bd;
}

.comment-text {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   Contact Us Styles
   ========================================================================== */

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bm-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--bm-navy);
    font-size: 32px;
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: var(--bm-navy);
    color: var(--bm-yellow);
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bm-navy);
    margin-bottom: 15px;
}

.contact-info-card p, .contact-info-card a {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
    text-decoration: none;
    line-height: 1.6;
}

.contact-info-card a:hover {
    color: var(--bm-navy);
}

.contact-form-premium {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-map-premium {
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
} 

.contact-map-premium iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Auth Pages Styles (Login, Register, Forgot Password)
   ========================================================================== */

.auth_page_area {
    background-color: #fff; /* or keep transparent if using section bg */
    position: relative;
    overflow: hidden;
}

.auth-card-premium {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 10;
}

.auth-card-premium h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--bm-navy);
    margin-bottom: 10px;
}

.auth-card-premium .sub-heading {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 35px;
}

.auth-card-premium .form-label {
    font-weight: 700;
    color: var(--bm-navy);
    margin-bottom: 10px;
    margin-left: 10px;
    font-size: 14px;
}

.auth-card-premium .form-control {
    background-color: var(--bm-beige);
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 14px 25px;
    font-size: 15px;
    transition: all 0.3s;
}

.auth-card-premium .form-control:focus {
    background-color: #fff;
    border-color: var(--bm-yellow);
    box-shadow: 0 4px 15px rgba(255, 172, 0, 0.1);
}

.password-input-group {
    position: relative;
}

.password-input-group .show-password-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #adb5bd;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 16px;
    z-index: 5;
}

.password-input-group .show-password-btn:hover {
    color: var(--bm-navy);
}

.auth-links {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.auth-links .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-color: #dee2e6;
}

.auth-links .form-check-input:checked {
    background-color: var(--bm-yellow);
    border-color: var(--bm-yellow);
}

.auth-links a {
    color: var(--bm-navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.auth-links a:hover {
    color: var(--bm-yellow);
}

.auth_footer_text {
    text-align: center;
    margin-top: 30px;
    color: #6c757d;
    font-size: 15px;
}

.auth_footer_text a {
    color: var(--bm-navy);
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s;
}

/* ==========================================================================
   Static Pages Styles (FAQ, Terms, Privacy)
   ========================================================================== */

/* Static Page Content Wrapper */
.static-page-content-wrapper {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    color: #6c757d;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 60px;
    border: 1px solid rgba(0,0,0,0.02);
}

.static-page-content-wrapper h1,
.static-page-content-wrapper h2, 
.static-page-content-wrapper h3, 
.static-page-content-wrapper h4, 
.static-page-content-wrapper h5, 
.static-page-content-wrapper h6 {
    color: var(--bm-navy);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.static-page-content-wrapper h1:first-child,
.static-page-content-wrapper h2:first-child {
    margin-top: 0;
}

.static-page-content-wrapper p {
    margin-bottom: 20px;
}

.static-page-content-wrapper ul,
.static-page-content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.static-page-content-wrapper li {
    margin-bottom: 10px;
}

/* Premium Accordion */
.premium-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.premium-accordion .accordion-header {
    margin-bottom: 0;
}

.premium-accordion .accordion-button {
    background: #fff;
    color: var(--bm-navy);
    font-weight: 700;
    font-size: 18px;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    border-radius: 15px !important;
    transition: all 0.3s;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background: var(--bm-navy);
    color: #fff;
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.2);
    border-radius: 15px 15px 0 0 !important;
}

.premium-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2540'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1.25rem;
    transition: transform 0.3s;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.premium-accordion .accordion-collapse {
    border: none;
}

.premium-accordion .accordion-body {
    background: #fff;
    padding: 30px;
    border-radius: 0 0 15px 15px;
    color: #6c757d;
    line-height: 1.7;
    font-size: 16px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq_premium_img {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}

.auth_footer_text a:hover {
    color: var(--bm-yellow);
}

/* =========================================
   DASHBOARD STYLES
   ========================================= */

/* Dashboard Sidebar */
.dashboard-sidebar-premium {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}



.dashboard-user-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.dashboard-user-avatar {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bm-yellow);
    padding: 3px;
    margin-bottom: 15px;
}

.dashboard-user-name {
    color: var(--bm-navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dashboard-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu-item {
    display: block;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-menu-item i {
    width: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dashboard-menu-item:hover,
.dashboard-menu-item.active {
    background: rgba(10, 37, 64, 0.05);
    color: var(--bm-navy);
}

.dashboard-menu-item.active {
    background: var(--bm-navy);
    color: #fff;
    box-shadow: 0 5px 15px rgba(10, 37, 64, 0.2);
}

.dashboard-menu-item.active i {
    color: var(--bm-yellow);
}

.dashboard-menu-item.logout-link {
    color: #dc3545;
    margin-top: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    border-radius: 0;
}

.dashboard-menu-item.logout-link:hover {
    background: #fff0f1;
}

/* Dashboard Content */
.dashboard-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    transition: transform 0.3s ease;
}

.dashboard-card-premium:hover {
    transform: translateY(-5px);
}

.dashboard-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(10, 37, 64, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--bm-navy);
    margin-bottom: 20px;
}

.dashboard-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--bm-navy);
    margin-bottom: 5px;
    line-height: 1;
}

.dashboard-stat-label {
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

/* Dashboard Section Header */
.dashboard-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--bm-navy);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Premium Table */
.table-premium-container {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.table-premium thead th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    font-weight: 600;
    border: none;
    padding: 0 20px 15px;
}

.table-premium tbody tr {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.2s;
}

.table-premium tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.table-premium td {
    padding: 20px;
    vertical-align: middle;
    border-top: 1px solid #f8f9fa;
    border-bottom: 1px solid #f8f9fa;
}

.table-premium td:first-child {
    border-left: 1px solid #f8f9fa;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.table-premium td:last-child {
    border-right: 1px solid #f8f9fa;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.status-badge.success { background: #d4edda; color: #155724; }
.status-badge.pending { background: #fff3cd; color: #856404; }
.status-badge.danger { background: #f8d7da; color: #721c24; }
.status-badge.primary { background: #cce5ff; color: #004085; }

/* Dashboard Content Wrapper */
.dashboard-content-premium {
    padding: 0;
}

@media (min-width: 992px) {
    .dashboard-content-premium {
        padding-left: 20px;
    }
}

/* Hover Utils */
.group-hover-scalr .transition-transform {
    transition: transform 0.5s ease;
}

.group-hover-scalr:hover .transition-transform {
    transform: scale(1.05);
}

/* Color Utils */
.text-navy { color: var(--bm-navy) !important; }
.bg-navy { background-color: var(--bm-navy) !important; }
.btn-outline-navy {
    color: var(--bm-navy);
    border-color: var(--bm-navy);
}
.btn-outline-navy:hover {
    background-color: var(--bm-navy);
    color: #fff;
}

/* Utilities */
.z-index-10 { z-index: 10; }
.z-index-20 { z-index: 20; }
.object-fit-cover { object-fit: cover; }
.rounded-3 { border-radius: 12px !important; }
.rounded-circle { border-radius: 50% !important; }

.custom-card-title a {
    color: var(--bm-navy);
    transition: color 0.3s;
}
.custom-card-title a:hover {
    color: var(--bm-yellow);
}

/* Card Utilities */
.text-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.group-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

.hover-scale {
    transition: transform 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
}

.fw-extrabold {
    font-weight: 800;
}

.bg-gradient-to-t {
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.hover-shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Premium Booking Form Styles */
.premium-booking-form label {
    font-size: 14px;
    font-weight: 700;
    color: var(--bm-navy);
    margin-bottom: 8px;
    display: block;
}

.premium-booking-form input:not([type="radio"]):not([type="checkbox"]), 
.premium-booking-form textarea,
.premium-booking-form select {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    font-size: 15px;
    color: var(--bm-navy);
    background-color: #fff;
    outline: none;
}

.premium-booking-form input:focus, 
.premium-booking-form textarea:focus,
.premium-booking-form select:focus {
    border-color: var(--bm-yellow);
    box-shadow: 0 0 0 4px rgba(233, 150, 91, 0.1);
    transform: translateY(-1px);
}

.premium-booking-form input.rounded-pill {
    padding-left: 25px;
    padding-right: 25px;
}

/* Stylish Address Type Selection */
.address-type-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.address-type-item {
    position: relative;
}

.address-type-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.address-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
}

.address-type-label i {
    font-size: 20px;
    color: #94a3b8;
    transition: all 0.3s;
}

.address-type-label span {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s;
}

.address-type-input:checked + .address-type-label {
    background: #fff;
    border-color: var(--bm-yellow);
    box-shadow: 0 10px 15px -3px rgba(233, 150, 91, 0.1);
    transform: translateY(-2px);
}

.address-type-input:checked + .address-type-label i {
    color: var(--bm-yellow);
    transform: scale(1.1);
}

.address-type-input:checked + .address-type-label span {
    color: var(--bm-navy);
}

.address-type-label:hover {
    background: #f1f5f9;
}

@media (max-width: 576px) {
    .address-type-group {
        grid-template-columns: 1fr;
    }
}

/* Top Categories Section Styles */
.top-categories-section {
    padding: 100px 0;
    background: radial-gradient(circle, hsl(311deg 74% 87% / 25%) 0%, hsla(275, 19%, 88%, 1) 98%);
}

.category-pre-title {
    color: var(--bm-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-pre-title .dots {
    display: inline-flex;
    gap: 4px;
}

.category-pre-title .dots::before {
    content: '>>>';
    color:  var(--bm-accent);
}

.section-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #0e1035;
    line-height: 1.2;
}

.section-desc {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.category-card-premium {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.category-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.category-card-premium .card-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #0e1035;
}

.category-card-premium .card-text p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 0;
}

.card-icon-wrapper {
    width: 82px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 24px;
    z-index: 1;
}

/* Ribon / Arrow Shape using clip-path */
.card-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 100% 100%, 0% 100%, 25% 50%);
}

/* Colors for ribbons */
.purple-ribbon::before { background-color: #f3f0ff; }
.purple-ribbon i { color: #8a70ff; }

.cyan-ribbon::before { background-color: #e6fffa; }
.cyan-ribbon i { color: #38b2ac; }

.orange-ribbon::before { background-color: #fffaf0; }
.orange-ribbon i { color: #ed8936; }

.green-ribbon::before { background-color: #f0fff4; }
.green-ribbon i { color: #48bb78; }

.yellow-ribbon::before { background-color: #fffff0; }
.yellow-ribbon i { color: #ecc94b; }

.blue-ribbon::before { background-color: #ebf8ff; }
.blue-ribbon i { color: #4299e1; }

/* Flip ribbons for left column if needed, but in design they all point inwards or are the same. 
   Actually, looking at design, the right column flags point to the left too. 
   Let's adjust for left and right columns. */

.col-lg-4:first-of-type .card-icon-wrapper::before {
    clip-path: polygon(0% 0%, 100% 0%, 75% 50%, 100% 100%, 0% 100%);
}

.col-lg-4:last-of-type .card-icon-wrapper::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 25% 50%);
}

/* Center Column CTA */
.center-cta-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-get-started {
    background-color: var(--bm-accent);
    color: #fff;
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-get-started:hover {
    background-color: var(--bm-blue);
    color: #fff;
    transform: translateY(-2px);
}

.center-image-wrapper img {
    border-radius: 0;
    width: 100%;
    max-width: 380px;
    background: transparent;
    box-shadow: none;
    filter: none;
}

/* Responsive */
@media (max-width: 991px) {
    .section-main-title { font-size: 36px; }
    .top-categories-section { padding: 60px 0; }
    .category-column { margin-bottom: 30px; }
    .center-cta-box { margin-top: 20px; }
    
    .col-lg-4:first-of-type .card-icon-wrapper::before,
    .col-lg-4:last-of-type .card-icon-wrapper::before {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 25% 50%);    
    }
}

.service-card-horizontal {
    background: #fff;
    border-radius: 32px;
    padding: 20px;
    padding-bottom: 0;
    display: flex;
    gap: 35px;
    margin-bottom: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.service-card-horizontal:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.service-img-container {
    position: relative;
    width: 250px;
    height: 220px;
    flex-shrink: 0;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.provider-pill-overlay {
    position: absolute;
    bottom: -22px; 
    left: 50%;
    transform: translateX(-50%);
    background: var(--bm-accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 12px;
    width: 125%;
    max-width: 220px;
    box-shadow: 0 15px 30px rgba(94, 118, 255, 0.4);
    z-index: 2;
    min-height: 58px;
}

.provider-pill-overlay.dark-variant {
    background: #0e1035;
    box-shadow: 0 15px 30px rgba(14, 16, 53, 0.4);
}

.provider-pill-overlay .provider-thumb {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    object-fit: cover;
}

.provider-pill-overlay .provider-name {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    letter-spacing: -0.3px;
}

.card-details-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
    flex-grow: 1;
}

.rating-stars {
    color: #FFB340;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-stars i {
    text-shadow: 0 2px 4px rgba(255, 179, 64, 0.2);
}

.rating-count {
    color: #0e1035;
    font-size: 15px;
    font-weight: 700;
    margin-left: 4px;
}

.service-card-horizontal h3 {
    font-size: 24px; 
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
    color: #0e1035;
    letter-spacing: -0.8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-tag {
    display: inline-flex;
    padding: 8px 20px;
    background: #F1F4FF;
    color: var(--bm-accent);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}

.service-stats {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out bookings and price */
    color: #667085;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.service-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-stats i {
    color: #FFB340;
}

.price-stat {
    font-size: 22px;
    font-weight: 800;
    color: var(--bm-accent);
}

@media (max-width: 991px) {
    .service-card-horizontal {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    .service-img-container {
        width: 100%;
        height: 240px;
    }
    .provider-pill-overlay {
        width: 180px;
    }
}

.btn-view-all-premium {
    padding: 12px 30px;
    background: var(--bm-accent);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-view-all-premium:hover {
    background: #0e1035;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(94, 118, 255, 0.2);
}

/* Mobile App Download Section Premium */
.app-download-section-premium {
    padding: 100px 0 0;
    background: radial-gradient(circle at center, #f5f0ff 0%, #fff9f0 100%);
    position: relative;
    overflow: hidden;
}

.app-download-content-center {
    position: relative;
    z-index: 2;
}

.badge-pill-premium {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    background: #fff;
    color: var(--bm-blue);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.app-download-content-center h2 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--bm-dark);
    font-weight: 800;
}

.app-download-content-center p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.app-mockup-wrapper-center {
    margin-top: -30px;
    position: relative;
    z-index: 1;
}

.app-mockup-wrapper-center img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}


@media (max-width: 768px) {
    .app-download-content-center h2 {
        font-size: 32px;
    }
    
    .app-download-section-premium {
        padding: 60px 0 0;
    }
}

/* Become a Partner Navigation Button */
.btn-nav-partner {
    /* background: linear-gradient(135deg, var(--bm-dark) 0%, #3498db 100%); */
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* box-shadow: 0 4px 15px rgba(14, 16, 53, 0.2); */
    display: flex;
    align-items: center;
    border: none;
}

.btn-nav-partner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 16, 53, 0.3);
    background: linear-gradient(135deg, #3498db 0%, var(--bm-dark) 100%);
    color: #fff !important;
}

/* Mobile Drawer Partner Button */
.btn-drawer-partner {
    background: linear-gradient(135deg, var(--bm-dark) 0%, #3498db 100%);
    color: #fff !important;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 4px 12px rgba(14, 16, 53, 0.15);
    margin-bottom: 12px;
}

.btn-drawer-partner:hover {
    background: var(--bm-navy);
    transform: translateY(-1px);
    color: #fff !important;
}

/* Meet Our Experts Section */
.experts-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.experts-header {
    text-align: center;
    margin-bottom: 60px;
}

.experts-header .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--bm-primary);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.experts-header h2 {
    font-size: 48px;
    color: var(--bm-dark);
    font-weight: 800;
}

.expert-card-wrapper {
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.expert-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 320px;
    background-color: #f3f6ff;
    border-radius: 80px 80px 40px 40px;
    z-index: 1;
    transition: all 0.4s ease;
    clip-path: polygon(10% 0, 90% 0, 100% 15%, 100% 85%, 90% 100%, 10% 100%, 0 85%, 0 15%);
}

.expert-card-wrapper.highlighted .expert-bg-shape {
    background-color: #0e1035;
}

.expert-image {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.expert-image img {
    width: 220px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.expert-info {
    position: relative;
    z-index: 3;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -90px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.4s ease;
}

.expert-card-wrapper.highlighted .expert-info {
    background: #fff;
}

.expert-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #0e1035;
    font-weight: 800;
}

.expert-info span {
    font-size: 14px;
    color: #3498db;
    font-weight: 600;
}

.expert-card-wrapper.highlighted .expert-info h4 {
    color: #0e1035;
}

.expert-card-wrapper.highlighted .expert-info span {
    color: #3498db;
}

.expert-card-wrapper:hover {
    transform: translateY(-10px);
}

.expert-card-wrapper:hover .expert-bg-shape {
    transform: translate(-50%, -55%) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Providers List Page Styles */
.providers-list-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.filter-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Custom Pagination Style */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.custom-pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    border: none;
    background: #fff;
    color: var(--bm-dark);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.custom-pagination .page-item.active .page-link {
    background: var(--bm-primary);
    color: #fff;
    box-shadow: 0 6px 15px rgba(211, 84, 0, 0.3);
}

.custom-pagination .page-link:hover {
    background: var(--bm-dark);
    color: #fff;
}

/* Expert Stats */
.expert-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.expert-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.expert-stats .stat-item i {
    color: var(--bm-primary);
    font-size: 14px;
}

.expert-card-wrapper:hover .expert-stats .stat-item i {
    color: #3498db;
}

/* --- Meet Our Experts Section (Premium Slider) --- */
.experts-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.experts-header {
    margin-bottom: 50px;
}

.experts-header .subtitle {
    display: block;
    color: var(--bm-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.experts-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--bm-dark);
}

/* Expert Card Styling */
.expert-slider-container {
    margin: 0 -15px;
}

.expert-card-premium {
    padding: 15px;
    outline: none !important;
}

.expert-card-inner {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.expert-card-inner:hover {
    transform: translateY(-8px);
}

.expert-image-box {
    position: relative;
    aspect-ratio: 4/3.8;
    overflow: hidden;
    border-radius: 24px;
}

.expert-image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expert-card-inner:hover .expert-image-box img {
    transform: scale(1.05);
}

.expert-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
}

.expert-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #444;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.expert-details {
    padding: 20px 0 10px;
}

.expert-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.expert-name-row h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--bm-dark);
}

.expert-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    color: #4A5568;
}

.expert-rating i {
    color: #6366F1; /* Bluish star from design */
}

.expert-location {
    font-size: 14px;
    color: #718096;
    margin-bottom: 12px;
    display: block;
}

.expert-reviews-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--bm-dark);
}

/* Slider Controls at Bottom */
.expert-slider-bottom {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.expert-progress-container {
    flex-grow: 1;
    height: 6px;
    background: #E2E8F0;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
}

.expert-progress-bar {
    position: absolute;
    height: 100%;
    background: #4F46E5; /* Blue progress bar */
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 100px;
}

.expert-slider-nav {
    display: flex;
    gap: 15px;
}

.expert-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 18px;
}

.expert-prev {
    background: #94A3B8;
    color: #fff;
}

.expert-next {
    background: #4F46E5;
    color: #fff;
}

.expert-nav-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .expert-slider-bottom {
        flex-direction: column;
        gap: 30px;
    }
    .expert-progress-container {
        width: 100%;
    }
}

/* --- Expert Card Mini Stats (For Listing Page) --- */
.expert-stats-mini {
    display: flex;
    font-size: 13px;
    color: #718096;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.expert-stats-mini i {
    font-size: 12px;
}

.btn-view-all-premium {
    display: inline-block;
    padding: 12px 30px;
    background: var(--bm-dark);
    color: #fff !important;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-view-all-premium:hover {
    background: var(--bm-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
}
