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

/* ── Global: prevent horizontal overflow on mobile ── */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* ── Popular section nav-tabs: scroll horizontally on mobile ── */
@media (max-width: 767.98px) {
    .popular-section .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        padding-bottom: 6px;
        gap: 6px;
    }

    .popular-section .nav-tabs::-webkit-scrollbar {
        height: 3px;
    }

    .popular-section .nav-tabs::-webkit-scrollbar-thumb {
        background: rgba(175, 32, 50, 0.3);
        border-radius: 3px;
    }

    .popular-section .nav-item {
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }
}

/* 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% + 5px);
    left: 0px;
    right: -1px;
    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: 250px;
    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;
}

/* ==========================================================================
   PREMIUM FOOTER — Mistri Vai  (.mf-* namespace)
   ========================================================================== */

/* Keep .service-card-footer (unrelated, used elsewhere) */
.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

/* ── Base ── */
.mf-footer {
    background: #F4F4F5;
    color: #4B5563;
    padding: 46px 0 0;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    /* No top border — pa-section merges seamlessly into this */
}

/* Ambient glow blobs */
.mf-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.08;
}

.mf-blob-1 {
    width: 500px;
    height: 500px;
    background: #AF2032;
    top: -160px;
    left: -120px;
}

.mf-blob-2 {
    width: 420px;
    height: 420px;
    background: #F5A623;
    bottom: 60px;
    right: -100px;
}

/* ── Columns: full-width at the top ── */
.mf-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

/* Brand block — inside nl-strip */
.mf-brand-block {
    flex: 0 0 240px;
    max-width: 240px;
    padding-right: 28px;
    border-right: 1px solid #EDE8E4;
}

.mf-logo-link {
    display: inline-block;
    margin-bottom: 10px;
}

.mf-logo-img {
    height: 115px;
    width: auto;
    filter: none;
    opacity: 0.92;
    transition: opacity 0.3s;
}

.mf-logo-img:hover {
    opacity: 1;
}

.mf-tagline {
    color: #6B7280;
    font-size: 0.84rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

/* Social icons */
.mf-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mf-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #E5E7EB;
    color: #6B7280;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.mf-social-btn:hover {
    background: #AF2032;
    border-color: #AF2032;
    color: #ffffff;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(175, 32, 50, 0.35);
}

/* ── Newsletter strip: brand left + newsletter right ── */
.mf-nl-strip {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border: 1.5px solid #EDE8E4;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.mf-nl-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #AF2032 0%, #E8472A 55%, #F5A623 100%);
}

/* ── 3 column parts ── */
.mf-nl-col {
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Divider between parts */
.mf-nl-col+.mf-nl-col {
    border-left: 1.5px solid #F0EBE8;
}

/* ── Part 1: Logo + Stats ── */
.mf-nl-col--logo {
    flex: 0 0 20%;
    width: 20%;
    align-items: center;
    text-align: center;
    background: #EBEBEC;
    justify-content: center;
    gap: 16px;
}

.mf-logo-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.mf-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mf-stat-num {
    color: #AF2032;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mf-stat-label {
    color: #9CA3AF;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.mf-stat-divider {
    width: 1px;
    height: 28px;
    background: #E5E7EB;
}

/* ── Part 2: Brand ── */
.mf-nl-col--brand {
    flex: 0 0 30%;
    width: 30%;
    justify-content: center;
    gap: 10px;
}

.mf-brand-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #AF2032;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mf-brand-headline {
    color: #1E2A3A;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0;
}

.mf-nl-col--brand .mf-tagline {
    color: #6B7280;
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0 0 12px;
}

/* ── Part 3: Subscribe ── */
.mf-nl-col--subscribe {
    flex: 0 0 50%;
    width: 50%;
    padding: 20px 28px;
}

.mf-subscribe-inner {
    background: #EBEBEC;
    border: 1.5px solid #E4E4E7;
    border-radius: 14px;
    padding: 22px 24px;
    position: relative;
    overflow: hidden;
}

.mf-subscribe-inner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.mf-subscribe-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.12);
    border: 1px solid rgba(175, 32, 50, 0.25);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.mf-subscribe-header {
    margin-bottom: 14px;
}

.mf-nl-strip-title {
    color: #1E2A3A;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 4px 0 4px;
    letter-spacing: -0.02em;
}

.mf-nl-strip-sub {
    color: #6B7280;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.5;
}

.mf-subscribe-note {
    margin-top: 10px;
    font-size: 0.72rem;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 0;
}

.mf-nl-strip-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mf-nl-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mf-nl-input {
    padding: 9px 16px;
    border-radius: 50px;
    border: 1.5px solid #D1D5DB;
    background: #ffffff;
    color: #1E2A3A;
    font-size: 0.85rem;
    outline: none;
    width: 240px;
    transition: all 0.3s ease;
}

.mf-nl-input::placeholder {
    color: #9CA3AF;
}

.mf-nl-input:focus {
    border-color: #AF2032;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(175, 32, 50, 0.1);
}

.mf-nl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #AF2032;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 5px 14px rgba(175, 32, 50, 0.28);
}

.mf-nl-btn:hover {
    background: #c52438;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(175, 32, 50, 0.4);
}

.mf-nl-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.mf-nl-msg {
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.mf-nl-msg.text-success {
    color: #16a34a;
}

.mf-nl-msg.text-danger {
    color: #dc2626;
}

/* Loader spin */
@keyframes mf-spin {
    to {
        transform: rotate(360deg);
    }
}

.mf-spin {
    display: inline-block;
    animation: mf-spin 0.7s linear infinite;
}

/* ── Divider (between top-strip and columns area) ── */
.mf-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #E5E7EB 30%, #E5E7EB 70%, transparent);
    margin-bottom: 24px;
}

/* ── Link columns (inside top-strip, flex:1) ── */
.mf-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.mf-col-title {
    color: #1E2A3A;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.mf-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: #AF2032;
    border-radius: 2px;
}

.mf-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mf-link-list li {
    margin-bottom: 8px;
}

.mf-link-list li a {
    color: #6B7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: all 0.25s ease;
}

.mf-link-list li a::before {
    content: '→';
    font-size: 11px;
    opacity: 0;
    margin-right: 0;
    transition: all 0.25s ease;
    color: #AF2032;
}

.mf-link-list li a:hover {
    color: #AF2032;
    padding-left: 6px;
}

.mf-link-list li a:hover::before {
    opacity: 1;
    margin-right: 6px;
}

/* Contact list */
.mf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mf-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #6B7280;
    font-size: 0.84rem;
    line-height: 1.4;
}

.mf-contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(175, 32, 50, 0.08);
    border: 1px solid rgba(175, 32, 50, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AF2032;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.mf-contact-list li a {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.25s;
}

.mf-contact-list li a:hover {
    color: #AF2032;
}

/* ── Bottom bar ── */
.mf-bottom-bar {
    border-top: 1px solid #E4E4E7;
    margin-top: 24px;
    padding: 14px 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.mf-copyright {
    color: #9CA3AF;
    font-size: 0.85rem;
    margin: 0;
}

.mf-copyright strong {
    color: #374151;
    font-weight: 700;
}

.mf-heart {
    color: #AF2032;
    font-size: 0.8rem;
}

.mf-bottom-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mf-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    transition: color 0.25s;
}

.mf-bottom-links a:hover {
    color: #AF2032;
}

.mf-dot {
    width: 3px;
    height: 3px;
    background: #D1D5DB;
    border-radius: 50%;
    display: inline-block;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .mf-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mf-nl-strip {
        flex-direction: column;
    }

    /* Reset % widths so cols fill full width when stacked */
    .mf-nl-col--logo,
    .mf-nl-col--brand,
    .mf-nl-col--subscribe {
        flex: 1 1 100%;
        width: 100%;
        text-align: center;
    }

    .mf-nl-col+.mf-nl-col {
        border-left: none;
        border-top: 1.5px solid #F0EBE8;
    }

    .mf-socials {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mf-brand-eyebrow {
        justify-content: center;
    }

    .mf-nl-col--logo {
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 20px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mf-logo-img {
        height: 50px;
    }

    .mf-logo-link {
        margin-bottom: 0px !important;
    }

    .mf-nl-col--logo .mf-logo-link {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .mf-nl-col--logo .mf-logo-stats {
        margin-top: 0;
        flex-shrink: 0;
    }

    .mf-nl-input {
        width: 100%;
        flex: 1;
    }

    .mf-nl-input-row {
        width: 100%;
    }
}



@media (max-width: 767.98px) {
    .mf-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mf-nl-col {
        padding: 20px 18px;
    }

    .mf-nl-col--subscribe {
        padding: 16px 18px;
    }

    .mf-subscribe-inner {
        padding: 18px 16px;
    }
}

@media (max-width: 575.98px) {
    .mf-footer {
        padding: 32px 0 0;
    }

    .mf-nl-input-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .mf-nl-btn {
        justify-content: center;
        border-radius: 12px;
        width: 100%;
    }

    .mf-nl-input {
        border-radius: 12px;
        width: 100%;
    }

    .mf-columns {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .mf-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .mf-col {
        padding: 0;
    }
}

@media (max-width: 400px) {
    .mf-columns {
        grid-template-columns: 1fr;
    }
}




/* ==========================================================================
   POPULAR AREAS — Light pre-footer band  (.pa-* namespace)
   ========================================================================== */

/* ── Section shell ── */
.pa-section {
    background: #F4F4F5;
    padding: 52px 0 48px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E4E4E7;
    /* No bottom border — flows directly into mf-footer below */
}

/* Light bridge (no longer needed but kept for structural compat) */
.pa-fade-bridge {
    display: none;
}

/* ── Header row ── */
.pa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
}

.pa-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 2px;
    background: #AF2032;
    border-radius: 2px;
}

.pa-title-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pa-eyebrow {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #AF2032;
}

.pa-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1E2A3A;
    margin: 0;
    letter-spacing: -0.01em;
}

/* ── Search ── */
.pa-search-wrap {
    flex-shrink: 0;
}

.pa-search-group {
    position: relative;
    display: flex;
    align-items: center;
}

.pa-search-icon {
    position: absolute;
    left: 13px;
    color: #9CA3AF;
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.25s;
    z-index: 1;
}

.pa-search-input {
    padding: 9px 18px 9px 36px;
    border: 1.5px solid #D1D5DB;
    border-radius: 50px;
    background: #ffffff;
    color: #1E2A3A;
    font-size: 0.875rem;
    outline: none;
    width: 210px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.pa-search-input::placeholder {
    color: #9CA3AF;
}

.pa-search-input:focus {
    border-color: #AF2032;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(175, 32, 50, 0.1);
    width: 250px;
}

.pa-search-group:focus-within .pa-search-icon {
    color: #AF2032;
}

/* ── Tags wrapper ── */
.pa-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 4px 0 24px;
}

/* ── Individual tag ── */
.pa-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #ffffff;
    border: 1.5px solid #E5E7EB;
    border-radius: 50px;
    color: #4B5563;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

/* Hidden state */
.pa-tag--hidden {
    display: none !important;
}

/* ── See more button ── */
.pa-more-wrap {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.pa-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 26px;
    background: #ffffff;
    border: 1.5px solid #D1D5DB;
    border-radius: 50px;
    color: #6B7280;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.pa-more-btn:hover,
.pa-more-btn--open {
    border-color: #AF2032;
    color: #AF2032;
    background: rgba(175, 32, 50, 0.05);
    box-shadow: 0 6px 18px rgba(175, 32, 50, 0.15);
}

.pa-more-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.pa-more-btn--open i {
    transform: rotate(180deg);
}

/* Count pill inside the button */
.pa-count-pill {
    display: inline-flex;
    align-items: center;
    padding: 1px 8px;
    background: rgba(175, 32, 50, 0.1);
    color: #AF2032;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    margin-left: 2px;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
    .pa-section {
        padding: 44px 0 48px;
    }

    .pa-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pa-search-wrap {
        width: 100%;
    }

    .pa-search-input {
        width: 100% !important;
        border-radius: 12px;
    }

    .pa-search-group {
        width: 100%;
    }

    .pa-search-group input {
        width: 100% !important;
    }
}

@media (max-width: 400px) {
    .pa-tag {
        font-size: 0.82rem;
        padding: 7px 14px;
    }
}

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




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

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

.cta-card-inner {
    background: linear-gradient(135deg,
            #1a0a10 0%,
            #2d0e1a 18%,
            #AF2032 45%,
            #C9541A 68%,
            #E8832A 85%,
            #F5A623 100%);
    padding: 70px 80px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 50px 100px rgba(175, 32, 50, 0.35),
        0 0 0 1.5px rgba(255, 255, 255, 0.08) inset;
}

.cta-card-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

/* Subtle noise texture overlay for depth */
.cta-card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
    border-radius: 40px;
}

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

.cta-tag {
    display: inline-block;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    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(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.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: rgba(255, 255, 255, 0.82);
    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: #ffffff;
    color: #AF2032;
    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(0, 0, 0, 0.25);
    border: none;
    position: relative;
    z-index: 1;
}

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

.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;
    }

    .section-header-inline.d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .areas-search-wrapper {
        width: 100%;
    }

    .areas-search-input {
        width: 100% !important;
    }
}

/* 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;
    }
}

@media (max-width: 767.98px) {
    .work-journey-v4 {
        padding: 60px 0;
    }

    .journey-steps-wrap {
        gap: 30px;
        margin-top: 40px;
    }

    .journey-icon-box {
        width: 56px;
        height: 56px;
        margin-bottom: 15px;
    }

    .journey-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .journey-step-node h5 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .work-journey-v4 .section-header h2 {
        font-size: 26px !important;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   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);
}

/* ==========================================================================
   HERO — Clean Hub Style  (.hch-* namespace)
   ========================================================================== */

/* ── Entrance keyframes ── */
@keyframes hch-fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

@keyframes hch-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes hch-slideRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

@keyframes hch-floatY {

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

    50% {
        transform: translateY(0px);
    }
}

@keyframes hch-floatBadge {

    0%,
    100% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-8px) rotate(-2deg);
    }
}

@keyframes hch-rotateSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes hch-pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.1);
    }
}

/* ── Section shell ── */
.hch-section {
    background: linear-gradient(135deg, #f0ecff 0%, #faf9ff 45%, #eef2ff 100%);
    min-height: 640px;
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: stretch;
}

/* Decorative ambient blobs */
.hch-section::before {
    content: '';
    position: absolute;
    top: -140px;
    left: -140px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: hch-floatY 8s ease-in-out infinite;
}

.hch-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 260px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: hch-floatY 10s ease-in-out infinite reverse;
}

/* ── Booking badge (top right) ── */
.hch-booking-badge {
    position: absolute;
    top: 28px;
    right: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 50px;
    padding: 7px 16px 7px 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    z-index: 10;
    animation: hch-fadeIn 0.6s ease 0.2s both;
}

.hch-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: hch-pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

/* ── Container: 2-column ── */
.hch-container {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 64px;
    padding-bottom: 0;
    min-height: 640px;
}

/* ── LEFT PANEL ── */
.hch-left {
    flex: 0 0 52%;
    max-width: 52%;
    padding-right: 48px;
    /* padding-bottom: 64px; */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Staggered entrance animations for left panel children */
.hch-headline {
    animation: hch-fadeUp 0.7s ease 0.1s both;
}

.hch-subline {
    animation: hch-fadeUp 0.7s ease 0.22s both;
}

.hch-search-card {
    animation: hch-fadeUp 0.7s ease 0.34s both;
}

.hch-popular {
    animation: hch-fadeUp 0.6s ease 0.46s both;
}

.hch-stats {
    animation: hch-fadeUp 0.6s ease 0.56s both;
}

/* Headline */
.hch-headline {
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0;
}

.hch-typing-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
}

.hch-typed {
    background: linear-gradient(135deg, #AF2032 0%, #E8472A 50%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: #AF2032;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    min-width: 4px;
}

.hch-cursor {
    color: #AF2032;
    font-weight: 300;
    -webkit-text-fill-color: #AF2032;
    animation: hch-blink 0.9s step-end infinite;
}

@keyframes hch-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* Subline */
.hch-subline {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Search card ── */
.hch-search-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
    overflow: visible;
    position: relative;
    z-index: 50;
    transition: box-shadow 0.3s ease;
}

.hch-search-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.hch-search-form {
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 0;
}

.hch-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
}

.hch-input-icon {
    color: #9ca3af;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.hch-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    color: #374151;
    padding: 12px 0;
}

.hch-input::placeholder {
    color: #9ca3af;
}



.hch-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #AF2032 0%, #8a1828 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 16px rgba(175, 32, 50, 0.38);
    margin: 0 4px;
}

.hch-search-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 28px rgba(175, 32, 50, 0.48);
}

.hch-search-btn:active {
    transform: scale(0.98);
}

/* ── Popular searches ── */
.hch-popular {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hch-popular-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
}

.hch-popular-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.79rem;
    color: #4b5563;
    text-decoration: none;
    background: #fff;
    transition: all 0.25s ease;
}

.hch-popular-tag:hover {
    background: #f3e8ff;
    border-color: #9c27b0;
    color: #9c27b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(156, 39, 176, 0.15);
}

/* ── Stats ── */
.hch-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 15px;
}

.hch-stat {
    display: flex;
    align-items: center;
    gap: 11px;
    transition: transform 0.2s ease;
}

.hch-stat:hover {
    transform: translateY(-2px);
}

.hch-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, #f3e8ff, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9c27b0;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.15);
}

.hch-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.1;
}

.hch-stat-label {
    display: block;
    font-size: 0.80rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 2px;
}

/* ── RIGHT PANEL ── */
.hch-right {
    flex: 0 0 48%;
    max-width: 48%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 580px;
    animation: hch-slideRight 0.8s ease 0.3s both;
}

/* Workers image wrap (now absolute at bottom right) */
.hch-workers-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    /* Matches former right panel width */
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    /* Let clicks pass through empty areas */
}

/* Logo watermark — static, big, bottom-centered */
.hch-logo-watermark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    max-width: 560px;
    opacity: .3;
    /* filter: brightness(0) invert(1); */
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hch-workers-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    animation: hch-floatY 6s ease-in-out infinite;
    filter: drop-shadow(0 24px 48px rgba(100, 60, 200, 0.18));
}

/* ── Rating badge ── */
.hch-rating-badge {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    animation: hch-floatBadge 5s ease-in-out infinite;
}

.hch-rating-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.hch-rating-num {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
}

.hch-rating-sub {
    display: block;
    font-size: 0.68rem;
    color: #6b7280;
    margin-top: 2px;
}

/* ── Responsive ── */

/* ---- Tablet (≤991px): stack content on top, image below ---- */
@media (max-width: 991.98px) {
    .hch-section {
        min-height: auto;
    }

    .hch-container {
        flex-direction: column;
        gap: 0;
        padding-top: 100px;
        padding-bottom: 0;
        min-height: auto;
    }

    .hch-left {
        flex: none;
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 32px;
        gap: 20px;
    }

    .hch-workers-wrap {
        position: relative;
        width: 100%;
        height: 300px;
        min-height: unset;
    }

    .hch-workers-img {
        max-height: 300px;
    }

    .hch-logo-watermark {
        width: 85%;
    }

    .hch-booking-badge {
        top: 14px;
        right: 16px;
        font-size: 0.72rem;
        padding: 5px 12px 5px 8px;
    }

    .hch-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hch-rating-badge {
        top: 12px;
        left: auto;
        right: 12px;
    }
}

/* ---- Small Tablet (≤767px): full-width, hide image, refine stats ---- */
@media (max-width: 767.98px) {
    .hch-section {
        min-height: auto;
    }

    .hch-container {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hch-left {
        padding-bottom: 0;
        gap: 18px;
    }

    /* Hide the decorative workers image on small tablets to avoid wasted space */
    .hch-workers-wrap {
        display: none;
    }

    .hch-headline {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .hch-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
        align-items: center;
    }

    .hch-stat {
        gap: 8px;
        flex: 1 1 0;
        min-width: 0;
    }

    .hch-stat-icon {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
        flex-shrink: 0;
    }

    .hch-stat-num {
        font-size: 1.1rem;
    }

    .hch-stat-label {
        font-size: 0.72rem;
    }

    .hch-booking-badge {
        top: 10px;
        right: 12px;
        font-size: 0.70rem;
        padding: 4px 10px 4px 8px;
    }

    .hch-popular {
        gap: 6px;
    }
}

/* ---- Mobile (≤575px): compact layout, search stacks, single column stats ---- */
@media (max-width: 575.98px) {
    .hch-section {
        min-height: auto;
    }

    .hch-container {
        padding-top: 80px;
        padding-bottom: 36px;
    }

    .hch-left {
        gap: 16px;
        padding-bottom: 0;
    }

    /* Workers image already hidden by ≤767px rule */
    .hch-workers-wrap {
        display: none;
    }

    .hch-headline {
        font-size: clamp(1.6rem, 7.5vw, 2rem);
        line-height: 1.18;
    }

    .hch-subline {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    /* Search form stacks button below input */
    .hch-search-card {
        border-radius: 14px;
    }

    .hch-search-form {
        flex-wrap: wrap;
        padding: 8px;
        gap: 6px;
    }

    .hch-input-group {
        padding: 4px 12px;
        width: 100%;
    }

    .hch-input {
        font-size: 0.88rem;
        padding: 10px 0;
    }

    .hch-search-btn {
        width: calc(100% - 0px);
        margin: 0;
        justify-content: center;
        border-radius: 10px;
        padding: 12px 20px;
    }

    /* Popular searches */
    .hch-popular {
        gap: 6px;
    }

    .hch-popular-label {
        width: 100%;
        margin-bottom: 2px;
    }

    .hch-popular-tag {
        font-size: 0.76rem;
        padding: 4px 12px;
    }

    /* Stats: single row, compact */
    .hch-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
        padding-top: 4px;
    }

    .hch-stat {
        gap: 7px;
        flex: 1 1 0;
        min-width: 0;
    }

    .hch-stat-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .hch-stat-num {
        font-size: 0.95rem;
        white-space: nowrap;
    }

    .hch-stat-label {
        font-size: 0.68rem;
        white-space: nowrap;
    }

    /* Booking badge: keep visible but smaller */
    .hch-booking-badge {
        top: 8px;
        right: 10px;
        font-size: 0.68rem;
        padding: 4px 10px 4px 7px;
        gap: 5px;
    }

    .hch-badge-dot {
        width: 7px;
        height: 7px;
    }
}