:root {
    --primary-clr: #AF2032;
    --secondary-clr: #242B3A;
    --text-muted: #656B76;
    --bg-light: #F8F9FA;
    --brand-gradient: linear-gradient(90deg, #AF2032 0%, #E63946 100%);
}

/* Fix nav-tabs-solid hover/active — override the red-to-blue gradient from style.css */
.nav-tabs.nav-tabs-solid li a.active,
.nav-tabs.nav-tabs-solid li a:hover {
    background: var(--brand-gradient) !important;
    border-color: #AF2032 !important;
    color: #fff !important;
}

/* Fix service card images — use contain so tall illustrations are never cropped */
.sc-img-wrap {
    background: #f8f9fa;
    padding-top: 68% !important;
}

.sc-main-img {
    object-fit: contain !important;
    padding: 12px;
}


/* ==========================================================================
   FIXED NAVBAR OFFSET — prevents content from hiding behind the fixed header
   ========================================================================== */
.page-wrapper {
    padding-top: 100px;
}

@media (max-width: 991px) {
    .page-wrapper {
        padding-top: 70px;
    }
}

/* ==========================================================================
   ULTRA-CLEAN HERO HUB (Dynamic)
   ========================================================================== */

.hero-clean-hub {
    position: relative;
    width: 100%;
    min-height: 550px;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: #1a1e26;
    z-index: 20;
}

.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-carousel img {
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay-dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 850px;
    padding: 0 15px;
}


.mascot-img {
    height: 120px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Search Container - Refined Premium Glass Hub (V4.1) */
.hero-search-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 850px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    /* For absolute positioning of suggestions */
}

.hero-search-container:focus-within {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #ffffff;
}

.hero-search-form {
    display: flex;
    width: 100%;
    align-items: center;
}

.search-input-box {
    flex-grow: 1;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-svg-icon {
    color: #94a3b8;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.hero-search-container:focus-within .search-svg-icon {
    color: #AF2032;
}

.search-input-box input {
    width: 100%;
    border: none;
    height: 60px;
    font-size: 1.15rem;
    font-weight: 500;
    color: #1e293b;
    background: transparent;
    letter-spacing: -0.2px;
}

.search-input-box input:focus {
    outline: none;
}

.search-input-box input::placeholder {
    color: #cbd5e1;
    font-weight: 400;
}

.btn-hero-search {
    background: #AF2032;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    padding: 0 50px;
    height: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.25);
    transition: all 0.3s ease;
}

.btn-hero-search:hover {
    background: #9e1c2e;
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(175, 32, 50, 0.35);
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: calc(100% + 15px);
    left: 15px;
    right: 15px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    z-index: 1000;
    display: none;
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.search-suggestions.active {
    display: block;
    animation: slideDownFade 0.3s ease-out forwards;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    text-decoration: none;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #fdf2f3;
}

.suggestion-text {
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

@media (max-width: 767px) {
    .hero-clean-hub {
        height: auto;
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-search-container {
        border-radius: 20px;
        padding: 15px;
        flex-direction: column;
    }

    .hero-search-form {
        flex-direction: column;
    }

    .search-input-box {
        width: 100%;
        padding: 0 5px;
        border-bottom: 1px solid #f1f5f9;
        margin-bottom: 15px;
    }

    .btn-hero-search {
        width: 100%;
        border-radius: 12px;
        font-size: 1.1rem;
    }

    /* Responsive Suggestions */
    .search-suggestions {
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 15px;
        position: absolute;
    }
}

/* Recommended Tags */
.hero-recommended-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.recommended-label {
    font-size: 0.85rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.recommended-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 20px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tag-pill:hover {
    background: #ffffff;
    color: #AF2032;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.text-brand-gradient {
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Social Media Icons Styling */
.social-icon-wrapper {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 10px;
}

.social-link img {
    width: 100%;
    height: 100%;
    transition: filter 0.3s ease;
    filter: grayscale(1) opacity(0.6);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-color: #AF2032;
}

.social-link:hover img {
    filter: none;
    opacity: 1;
}

/* Footer Subscription Card Design */
.footer-widget .card.bg-light-200 {
    background: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #f0f0f0 !important;
    padding: 10px;
}

.btn-brand {
    background: #AF2032 !important;
    border: 1px solid #AF2032 !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 12px 24px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(175, 32, 50, 0.2) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-brand:hover {
    background: #921b2a !important;
    border-color: #921b2a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(175, 32, 50, 0.3) !important;
    color: #fff !important;
}


/* Custom Cursor Styling */
.tx-js-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    visibility: hidden;
}

.xb-cursor-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor--follower {
    position: absolute;
    background-color: #AF2032;
    opacity: 0.25;
    border-radius: 100%;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tx-js-cursor.is-enabled {
    visibility: visible;
}

.tx-js-cursor.is-mouse-down .xb-cursor-wrapper {
    transform: scale(0.8);
}

.tx-js-cursor.is-active .xb-cursor--follower {
    transform: scale(4);
    opacity: 0.1;
    background-color: #AF2032;
}


.more-text {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    height: auto !important;
    overflow: visible !important;
    display: block;
    margin-left: 25px;
}

.more-text h3,
.more-text h4,
.more-text h5 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-top: 25px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 0;
}

.more-text p {
    margin-bottom: 1rem;
    color: #6c757d;
}

.more-text ul {
    list-style: none;
    padding-left: 15px;
    /* Added indentation to align with Service Offered cards */
    margin-bottom: 20px;
}

.more-text ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #495057;
}

.more-text ol {
    margin-bottom: 20px;
    padding-left: 35px;
    /* Added indentation + standard OL padding */
    color: #495057;
}

.more-text ol li {
    margin-bottom: 10px;
}

.more-text ul li::before {
    content: "\f00c";
    /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #AF2032;
    font-size: 14px;
}

/* Pricing Widget & Sidebar */
.card.border-0 {
    border: 1px solid #eee !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.card-body {
    padding: 25px;
}


.fw-bold.text-primary {
    color: #AF2032 !important;
    font-size: 28px;
}

.btn-primary {
    background-color: #AF2032;
    border-color: #AF2032;
    padding: 14px 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(175, 32, 50, 0.3);
}

.btn-primary:hover {
    background-color: #921b2a;
    border-color: #921b2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.4);
}

.btn-outline-light {
    border: 1px solid #dee2e6;
    color: #212529;
    padding: 14px 20px;
    font-weight: 600;
    border-radius: 10px;
    background: #fff;
}

.btn-outline-light:hover {
    background: #f8f9fa;
    color: #AF2032;
    border-color: #AF2032;
}

/* Related Services */
.related-service-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}


.border-bottom {
    border-bottom: 1px dashed #e9ecef !important;
}


/* Stunning View Button Style */
.btn-view {
    background: linear-gradient(135deg, #AF2032 0%, #E63946 100%);
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(175, 32, 50, 0.25);
    text-transform: uppercase;
}

.btn-view:hover {
    background: linear-gradient(135deg, #921b2a 0%, #AF2032 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.4);
    color: #fff !important;
}

.btn-view:active {
    transform: translateY(-1px) scale(0.98);
}

/* ============================================
   CHECKOUT PAGE & ORDER SUMMARY
   ============================================ */
.checkout-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    transition: all 0.3s ease !important;
}

.checkout-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04) !important;
}

.checkout-card .card-header {
    background: transparent;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2.5rem;
}

.checkout-card .card-body {
    padding: 2.5rem;
}

.premium-input {
    background-color: #f9f9fb !important;
    border: 1.5px solid transparent !important;
    border-radius: 12px !important;
    padding: 0.8rem 1.2rem !important;
    font-size: 0.95rem !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.premium-input:focus {
    background-color: #ffffff !important;
    border-color: #AF2032 !important;
    box-shadow: 0 0 0 4px rgba(175, 32, 50, 0.08) !important;
    color: #1a1a1a !important;
}

.date-selector-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
}

.date-btn-modern {
    background: #ffffff !important;
    border: 1.5px solid #edf2f7 !important;
    border-radius: 16px !important;
    padding: 12px 8px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.date-btn-modern.active {
    background: linear-gradient(135deg, #AF2032 0%, #E63946 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.3) !important;
}

.timeslot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.timeslot-btn-premium {
    background: #f7fafc !important;
    border: 1px solid #edf2f7 !important;
    border-radius: 10px !important;
    padding: 12px 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
}

.timeslot-btn-premium.active {
    background: #AF2032 !important;
    color: #ffffff !important;
    border-color: #AF2032 !important;
    box-shadow: 0 4px 12px rgba(175, 32, 50, 0.2) !important;
}

.summary-item-card {
    padding: 15px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.summary-item-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: rgba(175, 32, 50, 0.1);
    background: #ffffff;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #AF2032 0%, #cc2a3d 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(175, 32, 50, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    background: linear-gradient(135deg, #921b2a 0%, #AF2032 100%) !important;
    box-shadow: 0 8px 25px rgba(175, 32, 50, 0.35) !important;
    color: #ffffff !important;
}

.add-to-cart-btn:hover::before {
    left: 100%;
}

.add-to-cart-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
}

.add-to-cart-btn i {
    font-size: 16px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.add-to-cart-btn:hover i {
    transform: rotate(-10deg) scale(1.2);
}

/* Luxury Date Selector Refinement */
.total-payable-card {
    background: linear-gradient(to right, #ffffff, #fdfbfb);
    border-radius: 15px;
    padding: 20px;
    border: 1px dashed rgba(175, 32, 50, 0.2);
}

/* Primary Action Button */
.btn-place-order {
    background: linear-gradient(135deg, #AF2032 0%, #E63946 100%) !important;
    color: #ffffff !important;
    padding: 1.2rem !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(175, 32, 50, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-place-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(175, 32, 50, 0.4) !important;
}

.btn-place-order:active {
    transform: translateY(-1px);
}

/* Promo Code Section */
.promo-input-premium {
    border-radius: 12px 0 0 12px !important;
    border: 1.5px solid #edf2f7 !important;
}

.btn-apply-promo {
    border-radius: 0 12px 12px 0 !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

/* Info Box */
.info-box-premium {
    background: rgba(49, 130, 206, 0.05);
    border: 1px solid rgba(49, 130, 206, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
}


/* Service Details - Quantity Controls */
.service-qty-controls {
    background: rgba(249, 250, 251, 0.8);
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
}

.service-qty-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #374151;
    font-size: 0.85rem;
}

.service-qty-btn:hover {
    background: #AF2032;
    color: #fff;
    transform: scale(1.05);
}

.service-qty-btn:active {
    transform: scale(0.95);
}

.service-qty-display {
    min-width: 32px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
}

/* Header Cart Icon */
.cart-nav {
    position: relative;
}

.cart-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-nav .ti-shopping-cart {
    font-size: 1.5rem;
}

.cart-nav .badge {
    position: absolute;
    top: 0;
    right: 0.25rem;
    background: #AF2032;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.45rem;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-nav .nav-link:hover .ti-shopping-cart {
    color: #AF2032;
}

/* Premium Quantity Controls for Summary */
.summary-qty-wrap {
    background: rgba(249, 250, 251, 0.8);
    border-radius: 8px;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-qty-input {
    width: 32px !important;
    border: none !important;
    background: transparent !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    color: #1f2937 !important;
    padding: 0 !important;
    height: 28px !important;
}

.service-qty-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.remove-item-link {
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 50%;
    color: #dc3545 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.remove-item-link:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.15) rotate(10deg);
}


/* ============================================
   CATEGORY PAGE STYLING
   ============================================ */
.category-section {
    padding: 80px 0;
}

.category-card-wrapper {
    margin-bottom: 30px;
}

.category-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    display: block;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(175, 32, 50, 0.03);
    border-color: rgba(175, 32, 50, 0.1);
}

/* Luxury accent on hover */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-clr);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 2;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card .category-icon-container {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon-container {
    transform: scale(1.1) rotate(5deg);
}

.category-card .category-icon-container img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.category-card:hover .category-icon-container img {
    transform: scale(1.1);
}

.category-card .category-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-clr);
    margin-bottom: 10px;
    transition: color 0.4s;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-name {
    color: var(--primary-clr);
}

.category-card .category-count {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.4s;
}

.category-card:hover .category-count {
    color: var(--primary-clr);
    gap: 12px;
}

/* ==========================================================================
   FOOTER STYLES (Moved from style.css)
   ========================================================================== */

.card .card-footer {
    border-color: #ebeced;
    background: 0 0;
    padding: 1rem 1.25rem 1rem;
}

footer .footer-top {
    background-color: #f6f7f7;
    padding: 40px 0 24px;
}

footer .footer-top .dropdown a img {
    height: 15px;
    border-radius: 2px;
}

footer .footer-bottom {
    background-color: #f6f7f7;
    border-top: 1px solid #ebeced;
    padding: 20px 0 12px;
}

footer .footer-bottom p {
    font-size: 16px;
    color: #242b3a;
}

footer .footer-bottom .menu-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}


footer .form-control {
    height: 44px;
}


.footer {
    background-color: #fff;
    border-top: 1px solid rgba(205, 205, 205, .2);
    text-align: left;
    font-size: 16px;
    margin: 0;
    color: #74788d;
}

.footer .footer-top {
    background-color: #fbfbfb;
    padding: 50px 0;
}

.footer .footer-widget.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    outline: 0;
}


.footer .footer-widget .footer-logo {
    margin-bottom: 30px;
}

.footer .footer-top.footer-top-four {
    padding: 50px 0 30px 0;
}

.footer-logo img {
    max-height: 35px;
}

.footer-widget h5 {
    color: #242B3A;
    font-weight: 700;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px !important;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #AF2032;
    border-radius: 2px;
}

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

.footer-menu li {
    margin-bottom: 14px;
    color: #151519;
}

.footer-menu li a {
    color: #656b76;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-menu li a:hover {
    color: #AF2032;
    padding-left: 8px;
}

.footer-menu li a::before {
    content: '→';
    margin-right: 8px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: -15px;
}

.footer-menu li a:hover::before {
    opacity: 1;
    margin-left: 0;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}


/* Popular Areas Section (Static) */
.section-header-inline {
    margin-bottom: 5px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.section-title-inline {
    font-size: 1.25rem;
    font-weight: 700;
    color: #242B3A;
    margin-bottom: 0;
}

.title-accent {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 80px;
    height: 2px;
    background: #AF2032;
}

.area-links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
    justify-content: flex-start;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid #e9eaeb;
    border-radius: 50px;
    color: #656b76;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.area-tag:hover {
    background: #AF2032;
    border-color: #AF2032;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.15);
}

.info-section {
    padding-bottom: 60px;
}


/* ==========================================================================
   CLIENT CTA SECTION - GORGEOUS SAAS REWRITE
   ========================================================================== */

.cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.cta-card-inner {
    background: #0f1218;
    background: linear-gradient(135deg, #0f1218 0%, #161a22 100%);
    padding: 70px 80px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(175, 32, 50, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 25px;
    border: 1px solid rgba(175, 32, 50, 0.3);
}

.cta-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.cta-description {
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 0;
    font-weight: 400;
}

.btn-cta-pill {
    display: inline-flex;
    align-items: center;
    background: #AF2032;
    color: #ffffff;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(175, 32, 50, 0.35);
    border: none;
    position: relative;
    z-index: 1;
}

.btn-cta-pill:hover {
    background: #c52438;
    color: #ffffff;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(175, 32, 50, 0.5);
}

.btn-cta-pill i {
    font-size: 1.4rem;
}


/* ==========================================================================
   TESTIMONIALS SECTION - MINIMALIST GHOST REWRITE (v2)
   ========================================================================== */

.reviews-minimalist-section {
    padding: 100px 0;
    background: #ffffff;
}

.reviews-minimal-tag {
    display: inline-block;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.reviews-minimal-title {
    font-size: 2.8rem;
    font-weight: 850;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.reviews-minimal-subtitle {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.review-ghost-card {
    background: transparent;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.review-ghost-card:hover {
    border-color: rgba(175, 32, 50, 0.2);
    background: #fafafa;
    transform: translateY(-8px);
}

.ghost-card-accent {
    position: absolute;
    top: 35px;
    left: 0;
    width: 3px;
    height: 30px;
    background: #AF2032;
    border-radius: 0 4px 4px 0;
}

.review-header-v2 {
    margin-bottom: 15px;
}

.review-rating-v2 {
    margin-bottom: 8px;
}

.review-rating-v2 i {
    font-size: 0.8rem;
    margin-right: 1px;
}

.star-filled-red {
    color: #AF2032;
}

.star-muted-grey {
    color: #e2e8f0;
}

.review-headline-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0;
}

.review-comment-v2 {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
    flex-grow: 1;
}

.review-footer-v2 {
    padding-top: 20px;
    border-top: 1px dashed #f1f5f9;
}

.review-author-v2 {
    display: flex;
    align-items: center;
}

.author-icon-circle {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #94a3b8;
    border: 1px solid #f1f5f9;
}

.author-icon-circle svg {
    stroke: currentColor;
}

.author-name-v2 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1px;
}

.review-date-v2 {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.reviews-stats-minimal .stats-text-minimal {
    font-size: 1rem;
    color: #64748b;
}


/* ==========================================================================
   CATEGORIES SECTION - CRYSTAL GRID REWRITE
   ========================================================================== */

.categories-crystal-section {
    padding: 90px 0;
    background: #fafbfc;
    /* More distinct from white featured section */
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.crystal-tag {
    display: inline-block;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
}

.crystal-title {
    font-size: 2.8rem;
    font-weight: 850;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.crystal-subtitle {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.crystal-category-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.crystal-category-card:hover {
    border-color: rgba(175, 32, 50, 0.2);
    box-shadow: 0 20px 40px rgba(175, 32, 50, 0.08);
    transform: translateY(-8px);
    background: #ffffff;
}

.crystal-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crystal-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.crystal-category-card:hover .crystal-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.category-title-v2 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.crystal-category-card:hover .category-title-v2 {
    color: #AF2032;
}

.category-count-v2 {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 500;
}

.crystal-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 28px;
    height: 28px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.crystal-category-card:hover .crystal-card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: #AF2032;
    color: #ffffff;
}

.btn-crystal-view {
    display: inline-flex;
    align-items: center;
    background: #0f172a;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-crystal-view:hover {
    background: #AF2032;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(175, 32, 50, 0.25);
    color: #ffffff;
}


/* Accessibility Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #AF2032;
    outline-offset: 4px;
}

/* ==========================================================================
   INSIGHTS SECTION - MINIMALIST SEMANTIC REWRITE
   ========================================================================== */

.insights-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.insights-section .section-header {
    margin-bottom: 60px;
}

.insights-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1e26;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.text-brand-accent {
    color: #AF2032;
    position: relative;
}

.insights-section .section-subtitle {
    font-size: 1.1rem;
    color: #656b76;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Insight Card */
.insight-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #f5f5f7;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(175, 32, 50, 0.03);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(175, 32, 50, 0.12);
    border-color: rgba(175, 32, 50, 0.15);
}

.insight-card-frame {
    margin: 12px;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    background: #f8f9fa;
    position: relative;
}

.insight-card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.insight-card:hover .insight-card-frame img {
    transform: scale(1.1);
}

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

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

.meta-tag-pill {
    font-size: 0.7rem;
    font-weight: 700;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.06);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-date-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #8c94a3;
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 750;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1a1e26;
}

.insight-title a {
    color: #1a1e26;
    text-decoration: none;
    transition: color 0.3s;
}

.insight-card:hover .insight-title a {
    color: #AF2032;
}

.insight-excerpt {
    font-size: 0.9rem;
    color: #656b76;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
    opacity: 0.85;
}

.insight-footer {
    margin-top: auto;
    padding-top: 15px;
}

.btn-read-more-pill {
    font-weight: 700;
    color: #AF2032;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(175, 32, 50, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-read-more-pill:hover {
    background: #AF2032;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(175, 32, 50, 0.2);
}


/* ==========================================================================
   RESPONSIVE DESIGN CONSOLIDATION
   ========================================================================== */

/* 1400px down (Desktop XL) */
@media (max-width: 1399px) {
    .cta-title {
        font-size: 2.8rem;
    }

    .insights-section .section-title {
        font-size: 2.3rem;
    }
}

/* 1200px down (Desktop LG) */
@media (max-width: 1199px) {
    .cta-card-inner {
        padding: 60px 50px;
        border-radius: 30px;
    }

    .cta-title {
        font-size: 2.4rem;
    }

    .cta-description {
        font-size: 1.15rem;
    }

    .reviews-minimal-title {
        font-size: 2.4rem;
    }

    .crystal-title {
        font-size: 2.4rem;
    }

    .insights-section {
        padding: 80px 0;
    }

    .insight-card-frame {
        height: 160px;
    }
}

/* 992px down (Tablet) */
@media (max-width: 991.98px) {
    .order-summary-float {
        position: static !important;
        margin-top: 30px;
    }

    .footer-widget {
        margin-bottom: 30px;
    }

    .footer .footer-top {
        padding-bottom: 10px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-card-inner {
        text-align: center;
        padding: 60px 30px;
    }

    .cta-description {
        margin: 0 auto;
    }

    .btn-cta-pill {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        margin-top: 30px;
    }

    .reviews-minimalist-section {
        padding: 60px 0;
    }

    .categories-crystal-section {
        padding: 70px 0;
    }

    .insight-card-body {
        padding: 20px;
    }

    .insights-section .section-title {
        font-size: 2rem;
    }

    .insight-card {
        margin-bottom: 24px;
    }

    .insight-title {
        font-size: 1rem;
    }
}

/* 768px down (Mobile LG) */
@media (max-width: 767.98px) {
    .service-card-image {
        aspect-ratio: 4/3;
    }

    .service-card-title a {
        font-size: 0.85rem;
    }

    .footer .footer-bottom .copyright-text p,
    .policy-menu li {
        font-size: 13px;
    }

    .section-title-inline {
        font-size: 1.1rem;
    }

    .area-tag {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

/* 576px down (Mobile SM) */
@media (max-width: 575.98px) {
    .social-icon-wrapper {
        gap: 10px;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .cta-card-inner {
        padding: 50px 20px;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.05rem;
    }

    .btn-cta-pill {
        padding: 18px 30px;
        font-size: 1rem;
    }

    .review-ghost-card {
        padding: 25px;
    }

    .reviews-minimal-title,
    .crystal-title {
        font-size: 1.8rem;
    }

    .crystal-category-card {
        padding: 20px 10px;
    }

    .crystal-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .category-title-v2 {
        font-size: 0.9rem;
    }

    .insights-section {
        padding: 60px 0;
    }

    .insight-card-frame {
        height: 180px;
    }

    .insights-section .section-title {
        font-size: 1.7rem;
    }
}

/* 480px down (Mobile XS) */
@media (max-width: 480px) {
    .insight-card-body {
        padding: 15px;
    }

    .insight-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .meta-date-label {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   HOMEPAGE "SEAMLESS JOURNEY" (V4 - High Fidelity)
   ========================================================================== */
.work-journey-v4 {
    background: #000000;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle Mesh Glows */
.work-journey-v4::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(175, 32, 50, 0.05) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 1;
}

.work-journey-v4 .container {
    position: relative;
    z-index: 10;
}

.work-journey-v4 .section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.work-journey-v4 .section-header p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 17px;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
}

.journey-steps-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    position: relative;
}

/* Connecting Line */
@media (min-width: 992px) {
    .journey-steps-wrap::after {
        content: "";
        position: absolute;
        top: 35px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.1) 20%,
                rgba(255, 255, 255, 0.1) 80%,
                rgba(255, 255, 255, 0) 100%);
        z-index: 1;
    }
}

.journey-step-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

.journey-icon-box {
    width: 72px;
    height: 72px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #AF2032;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 0 0 rgba(175, 32, 50, 0);
}

.journey-step-node:hover .journey-icon-box {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(175, 32, 50, 0.5);
    background: #000;
    box-shadow: 0 10px 30px rgba(175, 32, 50, 0.15);
}

.journey-step-node h5 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.journey-step-node p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4) !important;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.step-count-label {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 24px;
    height: 24px;
    background: #AF2032;
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(175, 32, 50, 0.4);
}

@media (max-width: 991px) {
    .journey-steps-wrap {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        margin-top: 60px;
    }

    .journey-step-node {
        width: 100%;
        max-width: 400px;
    }

    .work-journey-v4 .section-header h2 {
        font-size: 32px !important;
    }
}

/* ==========================================================================
   PREMIUM "PRO SERVICE" HEADER (Grounded & Professional)
   ========================================================================== */

/* Header Root - Solid Full-Width */
.mistri-header-v4 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f0f1f3;
    transition: all 0.4s ease;
    padding: 10px 0;
}

.mistri-header-v4.is-sticky {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

/* Nav Hub - Grounded Geometry */
.mistri-nav-hub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.3s ease;
}

/* Brand Logo - High Visibility */
.mistri-logo-v4 {
    display: flex;
    align-items: center;
}

.mistri-logo-v4 img {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.mistri-header-v4.is-sticky .mistri-logo-v4 img {
    height: 60px;
}

/* Desktop Navigation - Professional Spacing */
.mistri-menu-v4 {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.mistri-menu-v4 li a {
    color: #1a1e26 !important;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 0;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.mistri-menu-v4 li a:hover,
.mistri-menu-v4 li.active a {
    color: #AF2032 !important;
}

.mistri-menu-v4 li a::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #AF2032;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mistri-menu-v4 li.active a::after,
.mistri-menu-v4 li a:hover::after {
    transform: scaleX(1);
}

/* Right Side Actions - Trusted Buttons */
.mistri-actions-v4 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mistri-btn-v4 {
    padding: 10px 24px;
    border-radius: 8px;
    /* Slightly sharper for professional feel */
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mistri-btn-login {
    color: #1a1e26 !important;
    background: transparent;
    border: 1px solid #e2e4e8;
    margin-right: 5px;
}

.mistri-btn-login:hover {
    background: #1a1e26;
    color: #ffffff !important;
    border-color: #1a1e26;
}

.mistri-btn-register {
    background: #AF2032;
    color: #ffffff !important;
    border: 1px solid #AF2032;
    box-shadow: 0 4px 10px rgba(175, 32, 50, 0.1);
}

.mistri-btn-register:hover {
    background: #8b1a28;
    border-color: #8b1a28;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(175, 32, 50, 0.2);
}

/* Cart Icon - Minimalist Utility */
.mistri-cart-hub {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: transparent;
    /* Removed background */
    color: #1a1e26;
    border: none;
    /* Removed border */
    transition: all 0.3s ease;
}

.mistri-cart-hub:hover {
    background: #AF2032;
    color: #fff;
    border-color: #AF2032;
}

.mistri-cart-hub .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 50px;
    border: 2px solid #fff;
}

/* Mobile Toggle */
.mistri-toggle-v4 {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e2e4e8;
}

.mistri-toggle-v4 span {
    width: 24px;
    height: 2px;
    background: #000;
    border-radius: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 1199px) {
    .mistri-menu-v4 li a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .mistri-menu-v4 {
        display: none;
    }

    .mistri-toggle-v4 {
        display: flex;
    }

    .mistri-actions-v4 .mistri-btn-v4 {
        display: none;
    }

    .mistri-logo-v4 img {
        height: 50px;
    }
}

/* Mobile Drawer Sidebar (Matte Black glass) */
.mistri-drawer-v4 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mistri-drawer-v4.is-open {
    right: 0;
}

.mistri-drawer-close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #1a1e26;
    font-size: 28px;
    cursor: pointer;
}

.mistri-drawer-menu {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.mistri-drawer-menu li {
    margin-bottom: 5px;
}

.mistri-drawer-menu li a {
    color: #1a1e26 !important;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f1f3;
}

.mistri-drawer-menu li a:after {
    content: "+";
    color: #AF2032;
    font-weight: 400;
}

.mistri-drawer-footer {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
}

.mistri-drawer-btn {
    display: flex;
    width: 100%;
    background: #AF2032;
    color: #fff !important;
    padding: 18px;
    border-radius: 12px;
    justify-content: center;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(175, 32, 50, 0.2);
}

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


.drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   MOVED FROM STYLE.CSS (MANUAL ADDITIONS)
   ========================================================================== */

.toggle-sidebar .sidebar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    border-bottom: 1px solid #ebeced
}

.toggle-sidebar .sidebar-header h5 {
    font-size: 18px;
    margin-bottom: 0
}

.toggle-sidebar .sidebar-close {
    background: #111827;
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    margin: 0
}

.toggle-sidebar .sidebar-close:hover {
    background: #af2032;
    color: #fff
}

.booking-page {
    background: #e9eaeb
}


.booking-title .dropdown>a {
    font-size: 10px;
    font-weight: 500;
    border-radius: 5px;
    border: 0;
    padding: 5px 8px
}

.search_btn {
    background-color: transparent;
    border: 0;
    line-height: 0
}

.slot-box {
    border-radius: 8px;
    background: #f4f5f5;
    padding: 20px;
    margin-bottom: 30px
}

.slot-box .slot-user h6 {
    margin-bottom: 15px
}

.slot-box .slot-action h6 {
    margin-bottom: 15px
}

.order-title {
    margin-bottom: 24px
}

.service-location {
    margin-bottom: 30px
}

.service-location .slot-address li {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.service-location .slot-address li h6 {
    font-size: 14px
}

.service-location .slot-address li p {
    font-size: 13px;
    margin-bottom: 0
}

.service-location .slot-address li span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    background-color: #ebeced;
    border-radius: 50%;
    margin-right: 10px
}

.service-location .slot-pay {
    display: flex;
    align-items: center
}

.service-location .slot-pay p {
    font-size: 18px;
    color: #242b3a;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 24px
}

.service-location .slot-pay span img {
    background-color: #f7f7ff;
    border-radius: 3px;
    padding: 6px 2px 6px 2px
}

.order-summary {
    margin-bottom: 30px
}

.booking {
    border-top: 1px solid #ebeced;
    padding-top: 30px
}

.user-sidebar .user-sidebar-body ul li a.active {
    color: #af2032
}

.tags {
    padding: 8px;
    border: 1px solid #ebeced
}

.user-title {
    margin-bottom: 20px
}


.general-info {
    margin-bottom: 30px
}

.social-widget {
    margin-bottom: 33px
}


.btn-view {
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.btn-view img {
    margin-left: 8px
}

.btn-view i {
    margin-left: 8px
}

.btn-view:hover img {
    filter: invert(91%) sepia(125%) saturate(7510%) hue-rotate(258deg) brightness(112%) contrast(100%)
}

.service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 10px 10px 0 0
}

.price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 1rem
}

.servicecontent .btn-book {
    padding: 10px 20px
}

.item-img {
    display: block;
    float: right
}

.item-img img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #fff
}

.fav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    font-size: 14px
}

.fav-item .fav-icon {
    width: 31px;
    height: 31px;
    background: #fff;
    color: #111827;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    border-radius: 50%
}

.fav-item .fav-icon:hover {
    background-color: #af2032;
    color: #fff
}

.fav-icon.selected {
    background-color: #af2032;
    color: #fff
}

.btn-sec {
    text-align: center
}

.btn-sec .btn {
    display: inline-flex;
    margin-top: 26px
}


@media (max-width:991.98px) {
    section {
        padding: 60px 0
    }
}

@media (max-width:767.98px) {
    section {
        padding: 40px 0
    }
}




.btn-order-now {
    background: #af2032;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    transition: all .4s;
    text-decoration: none !important;
    box-shadow: 0 3px 6px rgba(175, 32, 50, .15);
    border: none;
    cursor: pointer;
    display: inline-block
}


.btn-order-now:hover {
    background: #242b3a;
    color: #fff !important;
    transform: scale(1.03)
}


/* ==========================================================================
   ADDITIONAL MANUAL STYLES MOVED FROM STYLE.CSS
   ========================================================================== */

.service-tabs.nav-tabs.nav-tabs-solid li {
    margin-right: 8px
}

.service-tabs.nav-tabs.nav-tabs-solid li .nav-link {
    font-size: 14px;
    font-weight: 500;
    background: #ebeced
}

.service-tabs.nav-tabs.nav-tabs-solid li .nav-link.active,
.service-tabs.nav-tabs.nav-tabs-solid li .nav-link:hover {
    background: #af2032
}

.service-tabs.nav-tabs.nav-tabs-solid li:last-child {
    margin-right: 0
}

.more-text {
    overflow: hidden;
    height: 90px;
    transition: height .3s ease
}

.more-text.expanded {
    height: auto
}

.more-btn {
    font-size: 14px;
    margin-top: 16px;
    display: inline-block
}

.slider-wrap {
    position: relative
}

.slider-wrap .view-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 9
}

.card .card-img {
    border-radius: 5px
}

.card .card-img img {
    border-radius: 5px;
    transition: .5s all
}

.login-or {
    text-align: center;
    font-size: 15px;
    color: #4e5561;
    font-weight: 500;
    position: relative
}

.feature-icon span {
    background: #f7f7ff;
    width: 94px;
    height: 94px
}

.category {
    overflow: hidden;
    position: relative
}

.category .overlay {
    overflow: hidden;
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    border-radius: 5px;
    transition: .7s ease-in-out;
    width: 100%;
    background-color: rgba(32, 48, 102, .08);
    box-shadow: 0 4px 8px rgba(32, 48, 102, .08);
    cursor: pointer
}

.category .overlay:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .6);
    border-radius: 5px
}

.category:hover .overlay {
    opacity: 1;
    top: 0
}

.category:hover span {
    z-index: 2
}

.category:hover h5 {
    color: #fff;
    position: relative;
    z-index: 3;
    transition: .9s all
}

.category:hover h5 a {
    color: #fff
}

.category:hover h5 a:hover {
    color: #af2032
}

.category-list {
    position: relative;
    overflow: hidden
}

.category-list .service-img {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 10px;
    border-radius: 8px;
    transition: .5s ease-in-out;
    border: 0 !important
}

.category-list .service-img .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px 0 0 8px;
    padding: 10px;
    transition: .5s ease-in-out
}

.category-list .service-img img {
    filter: blur(0) brightness(100)
}

.category-list:hover .service-img {
    bottom: 0;
    margin: 0;
    border-radius: 0
}

.category-list:hover .service-icon {
    border-radius: 0
}

.rating i.filled {
    color: #ffc107
}

.content-list {
    height: auto
}

#fill-more {
    height: 150px;
    overflow: hidden
}

.img-sec {
    position: relative
}

.page-link:hover {
    color: #af2032
}

.filter-range-amount h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #74788d
}

.user {
    border: 4px solid #f4f5f5
}

.user img {
    border: 2px solid #fff
}

.user-sidebar {
    background: #f4f5f5;
    padding: 24px
}

.user-sidebar .submenu ul {
    display: none
}

.user-sidebar .submenu .menu-arrow {
    display: block;
    font-family: FontAwesome;
    text-rendering: auto;
    line-height: 40px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 16px;
    float: right
}

.user-sidebar .submenu .menu-arrow::before {
    content: "\f105"
}

.user-sidebar .submenu .subdrop .menu-arrow::before {
    content: "\f107"
}

.user-sidebar .user-sidebar-header {
    background: #fff;
    border-radius: 10px
}

.user-sidebar .user-sidebar-body {
    padding: 0
}

.user-sidebar .user-sidebar-body i {
    font-size: 20px
}

.user-sidebar .user-sidebar-body a {
    color: #656b76
}

.user-sidebar .user-sidebar-body a.active,
.user-sidebar .user-sidebar-body a:hover {
    color: #af2032
}

.dash-widget .card-body {
    padding: 15px
}

.dash-widget .card-body .dash-icon {
    width: 35px;
    height: 35px
}

.wallet-icon {
    width: 45px;
    height: 45px
}

.table-responsive {
    margin-bottom: 1.5rem;
    background-color: #fff;
    transition: all .5s ease-in-out;
    position: relative;
    color: inherit
}

.table-responsive .table td {
    color: #656b76
}

.table-responsive .table td P {
    color: #242b3a
}

.table-responsive .table .dash-icon-1 {
    width: 42px;
    height: 42px
}

.table-responsive .table:last-child {
    margin-bottom: 0
}

.table-responsive .table td,
.table-responsive .table th {
    padding: 16px;
    vertical-align: middle;
    white-space: nowrap
}

.value select {
    margin: 0 10px 0;
    border: 2px solid #f5f5f5;
    border-radius: 5px;
    padding: 5px 30px 5px 10px;
    color: #28283c;
    font-weight: 500;
    font-size: 14px
}

.value span {
    color: #242b3a
}

.form-icon {
    position: relative
}

.form-icon .icon-cal {
    position: absolute;
    top: 8px;
    right: 13px
}

.table-thead th {
    background: #e9eaeb !important
}

.toggle-sidebar.sidebar-popup {
    max-width: 400px
}

.form-icon {
    position: relative
}


.btn-pay {
    font-weight: 700;
    padding: 12px 15px
}

.btn-skip {
    font-weight: 700;
    padding: 12px 15px;
    color: #af2032;
    min-width: 94px;
    border-radius: 5px
}

.apply-btn {
    font-weight: 500;
    padding: 8px 15px;
    min-width: 88px;
    min-height: 42px
}

.custom_check {
    display: inline-block;
    position: relative;
    font-size: 14px !important;
    margin-bottom: 15px;
    padding-left: 25px;
    cursor: pointer;
    font-weight: 400 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: 18px
}

.form-focus {
    position: relative
}

.form-focus .col-form-label {
    position: absolute;
    top: -7px;
    left: 10px;
    background: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 0 5px;
    z-index: 1
}

.check-outer {
    width: 14px;
    height: 14px;
    margin: 1px 0 0 0;
    border: 1px solid #ebeced;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

.check-outer i {
    width: 6px;
    height: 6px;
    background-color: transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

.btn-check-label {
    position: relative
}

.btn-check:checked+.btn {
    color: #242b3a
}

.btn-check:checked+.btn .check-outer {
    background: #af2032;
    border-color: #af2032
}

.btn-check:checked+.btn .check-outer i {
    background-color: #fff;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    visibility: visible
}

.available-slot-details .accordion-button::after {
    margin-left: unset;
    position: absolute;
    left: 0
}


.toggle-sidebar {
    width: 400px;
    position: fixed;
    top: 0;
    right: -400px;
    height: 100vh;
    transition: ease all .8s;
    -webkit-transition: ease all .8s;
    -ms-transition: ease all .8s;
    z-index: 1040
}

.toggle-sidebar.sidebar-popup {
    right: 0;
    width: 100%;
    transition: ease all .8s
}

/* ==========================================================================
   CUSTOM NOTIFICATIONS (Library-Free Replacement for SweetAlert)
   ========================================================================== */
.mistri-notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.mistri-notification {
    min-width: 300px;
    max-width: 400px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 5px solid #ccc;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.mistri-notification.show {
    transform: translateX(0);
}

.mistri-notification.hide {
    transform: translateX(120%);
    opacity: 0;
}

.mistri-notification-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mistri-notification-content {
    flex-grow: 1;
}

.mistri-notification-title {
    font-weight: 700;
    margin: 0;
    font-size: 15px;
    text-transform: capitalize;
    color: #1e293b;
}

.mistri-notification-message {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
    margin-top: 2px;
}

/* Types */
.mistri-notification.success {
    border-left-color: #10b981;
}

.mistri-notification.success .mistri-notification-icon::before {
    content: "✓";
    font-weight: 900;
    color: #10b981;
}

.mistri-notification.error {
    border-left-color: #ef4444;
}

.mistri-notification.error .mistri-notification-icon::before {
    content: "✕";
    font-weight: 900;
    color: #ef4444;
}

.mistri-notification.warning {
    border-left-color: #f59e0b;
}

.mistri-notification.warning .mistri-notification-icon::before {
    content: "⚠";
    font-weight: 900;
    color: #f59e0b;
}

.mistri-notification.info {
    border-left-color: #3b82f6;
}

.mistri-notification.info .mistri-notification-icon::before {
    content: "ℹ";
    font-weight: 900;
    color: #3b82f6;
}


/* ── Services Page Header ── */
.services-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f1f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.services-count {
    font-size: 22px;
    font-weight: 700;
    color: #1a1e26;
    margin: 0;
}

.count-number {
    color: #AF2032;
    font-weight: 800;
    font-size: 24px;
}

@media (max-width: 576px) {
    .services-count {
        font-size: 18px;
    }

    .count-number {
        font-size: 20px;
    }
}

/* ── Sidebar ── */
.services-sidebar-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid #edf0f4;
    position: sticky;
    top: 110px;
}

@media (max-width: 991px) {
    .services-sidebar-card {
        position: static;
    }

    .services-sidebar-header {
        cursor: pointer;
        user-select: none;
    }

    .sidebar-toggle-icon {
        transition: transform 0.3s ease;
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 16px;
    }
}

.services-sidebar-header {
    background: linear-gradient(135deg, #AF2032 0%, #c8283e 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-sidebar-header i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.services-sidebar-header h5 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.services-sidebar-body {
    padding: 12px 14px;
}

.category-filter-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.category-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 9px;
    background: transparent;
    text-decoration: none;
    color: #495057;
    transition: all 0.22s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.category-filter-item:hover {
    background: #f8f9fb;
    color: #1a1e26;
    transform: translateX(3px);
    border-left-color: rgba(175, 32, 50, 0.3);
}

.category-filter-item.active {
    background: rgba(175, 32, 50, 0.06);
    border-left-color: #AF2032;
    color: #AF2032;
}

.category-filter-item.active .category-name {
    font-weight: 700;
    color: #AF2032;
}

.category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7px;
    height: 7px;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 7px;
    color: #ced4da;
    transition: color 0.2s ease;
}

.category-filter-item.active .category-icon i,
.category-filter-item:hover .category-icon i {
    color: #AF2032;
}

.category-name {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: #555f6e;
    transition: color 0.2s ease;
}

.category-filter-item:hover .category-name {
    color: #1a1e26;
}

.category-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.category-arrow i {
    font-size: 14px;
    color: #adb5bd;
}

.category-filter-item.active .category-arrow,
.category-filter-item:hover .category-arrow {
    opacity: 1;
}

.category-filter-item.active .category-arrow i {
    color: #AF2032;
}

/* ── Empty State ── */
.empty-state-container {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px dashed #dee2e6;
    margin: 40px 0;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(175, 32, 50, 0.1) 0%, rgba(175, 32, 50, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.empty-state-icon i {
    font-size: 56px;
    color: #AF2032;
    opacity: 0.8;
}

.empty-state-title {
    font-size: 26px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
}

.empty-state-message {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.btn-browse-all {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: #AF2032;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(175, 32, 50, 0.22);
    letter-spacing: 0.2px;
}

.btn-browse-all:hover {
    background: #8B1825;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(175, 32, 50, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .empty-state-container {
        padding: 60px 20px;
    }

    .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .empty-state-icon i {
        font-size: 48px;
    }

    .empty-state-title {
        font-size: 22px;
    }

    .empty-state-message {
        font-size: 14px;
    }

    .btn-browse-all {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ==========================================================================
   SERVICE DETAILS PAGE — sd-* components
   ========================================================================== */

/* Premium Service Card Component */
.sc-premium-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.sc-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #eee;
}

.sc-img-wrap {
    position: relative;
    padding-top: 62.5%;
    /* 16:10 Aspect Ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.sc-main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-premium-card:hover .sc-main-img {
    transform: scale(1.08);
}

.sc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(175, 32, 50, 0.9);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.sc-content {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sc-title {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sc-title a {
    color: #242b3a;
    text-decoration: none;
    transition: color 0.2s;
}

.sc-title a:hover {
    color: #af2032;
}

.sc-footer {
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
}

.sc-price-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.sc-price-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: #af2032;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.sc-old-price {
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 500;
}


/* Service Card Expanded Button (With Text) */
.sc-with-btn-text .sc-btn {
    width: auto;
    padding: 0 18px;
    border-radius: 100px;
    gap: 8px;
    background: #af2032;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(175, 32, 50, 0.2);
}

.sc-with-btn-text .sc-btn:hover {
    background: #921a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.3);
}

.sc-btn-label {
    white-space: nowrap;
}

.sc-btn {
    width: 42px;
    height: 42px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242b3a;
    transition: all 0.2s;
}

.sc-btn:hover {
    background: #af2032;
    color: #fff;
    transform: rotate(-8deg);
}

.sc-btn svg {
    transition: transform 0.2s;
}

.sc-btn:active svg {
    transform: scale(0.9);
}

@media (max-width: 576px) {
    .sc-content {
        padding: 12px;
    }

    .sc-title {
        font-size: 1rem;
    }

    .sc-price-val {
        font-size: 1.1rem;
    }
}

/* ── Base Card ── */
.sd-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #edf0f4;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sd-card-body {
    padding: 28px;
}

/* ── Title Row ── */
.sd-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.sd-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(175, 32, 50, 0.08);
    color: #AF2032;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.sd-category-badge a {
    color: inherit;
}

.sd-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a1e26;
    line-height: 1.3;
}

.sd-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sd-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #1a1e26;
}

.sd-rating i {
    color: #ffc107;
    font-size: 15px;
}

.sd-rating-count {
    color: #9da5b4;
    font-size: 13px;
}

/* ── Action Buttons (heart/share) ── */
.sd-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    padding-top: 4px;
}

.sd-action-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1.5px solid #edf0f4;
    color: #6c757d;
    transition: all 0.25s ease;
    font-size: 18px;
    background: #fff;
}

.sd-action-btn:hover {
    border-color: #AF2032;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.05);
}

/* ── Service Image ── */
.sd-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #f4f5f6;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

/* ── Section Title ── */
.sd-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1e26;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-section-title-accent {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #AF2032;
    border-radius: 3px;
    flex-shrink: 0;
}

.sd-review-count {
    color: #9da5b4;
    font-weight: 600;
}

/* ── Variant Items ── */
.sd-variants-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sd-variant-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    flex-wrap: wrap;
}

.sd-variant-item--bordered {
    border-bottom: 1px solid #f0f1f3;
}

.sd-variant-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.sd-variant-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f5f6;
    flex-shrink: 0;
    border: 1px solid #edf0f4;
}

.sd-variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.sd-variant-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1e26;
    margin-bottom: 3px;
}

.sd-variant-desc {
    font-size: 12.5px;
    color: #9da5b4;
    margin: 0;
    line-height: 1.4;
}

.sd-variant-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.sd-variant-price {
    text-align: right;
}

.sd-price-main {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #AF2032;
    line-height: 1.2;
}

.sd-price-old {
    font-size: 12px;
    color: #adb5bd;
    text-decoration: line-through;
}

.sd-price-unit {
    font-size: 11px;
    color: #9da5b4;
}

/* ── Qty Controls ── */
.sd-variant-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sd-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f4f5f6;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #edf0f4;
}

.sd-qty-btn {
    width: 32px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #495057;
    font-size: 14px;
    transition: background 0.2s;
}

.sd-qty-btn:hover {
    background: #edf0f4;
    color: #AF2032;
}

.sd-qty-display {
    min-width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: #1a1e26;
}

.sd-add-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: #AF2032;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(175, 32, 50, 0.2);
    white-space: nowrap;
}

.sd-add-cart-btn:hover {
    background: #8b1a28;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(175, 32, 50, 0.3);
}

/* ── Overview ── */
.sd-overview-body {
    color: #495057;
    font-size: 14.5px;
    line-height: 1.75;
}

.sd-overview-body h5,
.sd-overview-body h6 {
    font-weight: 700;
    color: #1a1e26;
    margin-top: 16px;
}

.sd-overview-body ul {
    padding-left: 20px;
}

.sd-overview-body ul li {
    margin-bottom: 6px;
}

/* ── Reviews Empty State ── */
.sd-empty-reviews {
    text-align: center;
    padding: 40px 20px;
}

.sd-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #f4f5f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-empty-icon i {
    font-size: 36px;
    color: #ced4da;
}

.sd-empty-text {
    color: #9da5b4;
    font-size: 14px;
    margin: 0;
}

/* ── Sticky Sidebar ── */
.sd-sticky-sidebar {
    position: sticky;
    top: 110px;
}

/* ── Booking Card ── */
.sd-booking-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #edf0f4;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.sd-booking-price-row {
    padding: 22px 24px;
    border-bottom: 1px solid #f0f1f3;
    margin-bottom: 20px;
}

.sd-starts-from {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9da5b4;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.sd-price-display {
    font-size: 1.85rem;
    font-weight: 700;
    color: #AF2032;
    line-height: 1.2;
}

.sd-price-per {
    font-size: 12px;
    color: #9da5b4;
    display: block;
    margin-top: 2px;
}

.sd-booking-card .sd-order-btn,
.sd-booking-card .sd-enquiry-btn {
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100% - 48px) !important;
}

.sd-booking-card .sd-enquiry-btn {
    margin-bottom: 20px;
}

.sd-order-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.sd-enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    border: 1.5px solid #edf0f4;
    background: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sd-enquiry-btn:hover {
    border-color: #AF2032;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.04);
}

/* ── Related Services ── */
.sd-related-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sd-related-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    text-decoration: none;
    transition: background 0.2s ease;
}

.sd-related-item--bordered {
    border-bottom: 1px solid #f0f1f3;
}

.sd-related-img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f5f6;
    flex-shrink: 0;
    border: 1px solid #edf0f4;
}

.sd-related-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.sd-related-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1e26;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.sd-related-item:hover .sd-related-name {
    color: #AF2032;
}

.sd-related-price {
    font-size: 13px;
    font-weight: 700;
    color: #AF2032;
}

.sd-related-old {
    font-size: 11px;
    color: #adb5bd;
    font-weight: 400;
    margin-left: 4px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .sd-sticky-sidebar {
        position: static;
    }

    .sd-image-wrap {
        height: 260px;
    }

    .sd-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 575px) {
    .sd-card-body {
        padding: 18px;
    }

    .sd-variant-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .sd-variant-right {
        width: 100%;
        justify-content: space-between;
    }

    .sd-image-wrap {
        height: 200px;
    }

    .sd-price-display {
        font-size: 1.6rem;
    }

    .sd-booking-card .sd-order-btn,
    .sd-booking-card .sd-enquiry-btn {
        margin-left: 16px;
        margin-right: 16px;
        width: calc(100% - 32px) !important;
    }
}

/* =========================================
   Service Listing Page Specific Styles (Premium Redesign)
   ========================================= */
.service-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Image Framing for Illustrations */
.service-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11;
    background: #f8f9fa;
    /* Subtle background to frame the artwork */
    padding: 24px;
    /* Give the illustration breathing room */
    border-bottom: 1px solid #f1f1f1;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Don't crop illustrations */
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
    /* Ensure white backgrounds blend if any */
}

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

.service-card-body {
    padding: 24px;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #242B3A;
}

.service-card-title a {
    color: #242B3A;
    text-decoration: none;
    transition: color 0.2s;
    background-image: linear-gradient(to right, #AF2032, #AF2032);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.service-card:hover .service-card-title a {
    color: #AF2032;
    background-size: 100% 2px;
}

.service-card-footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: none;
    /* Cleaner look */
}

.service-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.price-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: #242B3A;
}

/* Modern Action Button */
.btn-view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    color: #AF2032;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    font-size: 0;
    /* Hide text, show icon only or just stylized arrow */
    position: relative;
}

.btn-view-details::before {
    content: "→";
    font-size: 20px;
    font-weight: bold;
    font-family: system-ui;
}

.btn-view-details:hover {
    background: #AF2032;
    color: #fff;
    border-color: #AF2032;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(175, 32, 50, 0.2);
}