/* Custom Styles for Daily */

/* Mobile Burger Menu - Yellow Lines */
.navbar-toggler,
.pbmit-mobile-toggle,
.navbar-toggler .pbmit-base-icon-menu-1::before,
.navbar-toggler .pbmit-base-icon-menu-1::after {
    color: var(--pbmit-global-color) !important;
}

.navbar-toggler i {
    color: var(--pbmit-global-color) !important;
}

/* Hide Scroll to Top Button */
.pbmit-progress-wrap {
    display: none !important;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.3s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--pbmit-global-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lazy load images - fade in effect */
img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Sticky Header - Works on All Pages */
.site-header {
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Sticky Header when scrolling */
.site-header.sticky-header,
.site-header.sticky-active {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-in-out;
}

.site-header.sticky-header .pbmit-header-overlay,
.site-header.sticky-active .pbmit-header-overlay {
    background: #ffffff !important;
}

/* Sticky Menu Text Colors - Black text, Yellow active */
.site-header.sticky-header .site-navigation ul.navigation > li > a,
.site-header.sticky-active .site-navigation ul.navigation > li > a {
    color: #000000 !important;
}

.site-header.sticky-header .site-navigation ul.navigation > li.active > a,
.site-header.sticky-active .site-navigation ul.navigation > li.active > a {
    color: var(--pbmit-global-color) !important;
}

/* Sticky Header Phone Number - Black */
.site-header.sticky-header .pbmit-header-button a,
.site-header.sticky-active .pbmit-header-button a {
    color: #000000 !important;
}

.site-header.sticky-header .pbmit-header-button-text-1,
.site-header.sticky-header .pbmit-header-button-text-2,
.site-header.sticky-active .pbmit-header-button-text-1,
.site-header.sticky-active .pbmit-header-button-text-2 {
    color: #000000 !important;
}

/* Banner should not be affected by sticky */
.pbmit-slider-area {
    position: relative;
    z-index: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Header Request Quote Button - Sleek Design */
.pbmit-button-box-second .pbmit-btn {
    padding: 10px 25px !important;
    min-height: auto !important;
    height: auto !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}

.pbmit-button-box-second .pbmit-btn .pbmit-button-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.pbmit-button-box-second .pbmit-btn .pbmit-button-icon-wrapper {
    margin-left: 8px !important;
}

.pbmit-button-box-second .pbmit-btn .pbmit-button-icon {
    width: 16px !important;
    height: 16px !important;
    font-size: 12px !important;
}

.pbmit-button-box-second .pbmit-sticky-corner {
    display: none !important;
}

/* Banner Button - Match Header Quote Button Style */
.pbmit-slider-area .pbmit-slider-content .pbmit-button .pbmit-btn {
    padding: 10px 25px !important;
    min-height: auto !important;
    height: auto !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}

.pbmit-slider-area .pbmit-slider-content .pbmit-button .pbmit-btn .pbmit-button-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

.pbmit-slider-area .pbmit-slider-content .pbmit-button .pbmit-btn .pbmit-button-icon-wrapper {
    margin-left: 8px !important;
}

.pbmit-slider-area .pbmit-slider-content .pbmit-button .pbmit-btn .pbmit-button-icon {
    width: 16px !important;
    height: 16px !important;
    font-size: 12px !important;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    background: #128C7E;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn i {
    line-height: 1;
}

/* Animation for floating button */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.floating-whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp-btn:hover {
    animation: none;
}

/* Responsive adjustment for floating button */
@media (max-width: 767px) {
    .floating-whatsapp-btn {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* About Us Page - Desktop Header Styles */
@media (min-width: 1200px) {
    /* Force black text for ALL menu items on desktop, then override for active */
    html body.about-us-page .site-navigation ul.navigation > li > a,
    body.about-us-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    /* Active menu item - yellow */
    html body.about-us-page .site-navigation ul.navigation > li.active > a,
    body.about-us-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Sticky header menu items */
    html body.about-us-page .sticky-header .site-navigation ul.navigation > li > a,
    body.about-us-page .sticky-header .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.about-us-page .sticky-header .site-navigation ul.navigation > li.active > a,
    body.about-us-page .sticky-header .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Header phone number */
    html body.about-us-page .pbmit-header-button a,
    body.about-us-page .pbmit-header-button a {
        color: #000000 !important;
    }

    html body.about-us-page .pbmit-header-button-text-1,
    html body.about-us-page .pbmit-header-button-text-2,
    body.about-us-page .pbmit-header-button-text-1,
    body.about-us-page .pbmit-header-button-text-2 {
        color: #000000 !important;
    }
}

/* About Us Page - Mobile Menu Visibility */
@media (max-width: 1199px) {
    body .about-us-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    body .about-us-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Mobile dropdown submenu */
    body .about-us-page .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    body .about-us-page .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #000000 !important;
    }

    body .about-us-page .site-navigation ul.navigation > li.dropdown > ul > li.active > a,
    body .about-us-page .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
    }
}

/* Brands Page - Desktop Header Styles */
@media (min-width: 1200px) {
    /* Force black text for ALL menu items on desktop, then override for active */
    html body.brands-page .site-navigation ul.navigation > li > a,
    body.brands-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    /* Active menu item - yellow */
    html body.brands-page .site-navigation ul.navigation > li.active > a,
    body.brands-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Sticky header menu items */
    html body.brands-page .sticky-header .site-navigation ul.navigation > li > a,
    body.brands-page .sticky-header .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.brands-page .sticky-header .site-navigation ul.navigation > li.active > a,
    body.brands-page .sticky-header .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    html body.brands-page .pbmit-header-button a,
    body.brands-page .pbmit-header-button a {
        color: #000000 !important;
    }

    html body.brands-page .pbmit-header-button-text-1,
    html body.brands-page .pbmit-header-button-text-2,
    body.brands-page .pbmit-header-button-text-1,
    body.brands-page .pbmit-header-button-text-2 {
        color: #000000 !important;
    }
}

/* Brands Page - Mobile Menu Visibility */
@media (max-width: 1199px) {
    /* Main menu items - black for inactive, yellow for active */
    body .brands-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    body .brands-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Dropdown background */
    body .brands-page .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    /* Dropdown submenu items */
    body .brands-page .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #000000 !important;
    }

    body .brands-page .site-navigation ul.navigation > li.dropdown > ul > li.active > a,
    body .brands-page .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
    }
}

/* Brands Page - Title section padding adjustments */
.brands-page .section-md:first-of-type {
    padding-top: 120px !important;
    padding-bottom: 30px !important;
}

/* Brands Page - Tab section padding adjustment */
.brands-page .section-md:nth-of-type(2) {
    padding-top: 5px !important;
}

/* Brand Logo Showcase */
.brands-showcase-area {
    margin-top: 40px;
}

.brand-logo-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-box:hover {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 5px 20px rgba(244, 195, 75, 0.2);
    transform: translateY(-5px);
}

.brand-logo-box img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Brand Placeholder Text */
.brand-placeholder {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
}

/* Brand Tabs */
.pbmit-brand-tabs {
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 30px;
}

.pbmit-brand-tabs .nav-link {
    border: none;
    background: transparent;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
}

.pbmit-brand-tabs .nav-link:hover {
    color: var(--pbmit-global-color);
}

.pbmit-brand-tabs .nav-link.active {
    color: var(--pbmit-global-color);
    background: transparent;
}

.pbmit-brand-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--pbmit-global-color);
}

/* Mobile Floating Category Button */
.mobile-category-filter-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--pbmit-global-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(244, 195, 75, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-category-filter-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mobile-category-filter-btn i {
    font-size: 16px;
}

/* Mobile Category Modal */
.mobile-category-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-category-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-category-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.mobile-category-modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-category-modal.active .mobile-category-modal-content {
    transform: translateY(0);
}

.mobile-category-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #e5e5e5;
}

.mobile-category-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.mobile-category-close-btn {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.mobile-category-close-btn:hover {
    background: #e5e5e5;
    color: #333;
}

.mobile-category-modal-body {
    padding: 20px 25px;
    overflow-y: auto;
    max-height: calc(70vh - 80px);
}

.mobile-category-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-category-item:hover {
    background: rgba(244, 195, 75, 0.1);
    border-color: var(--pbmit-global-color);
    color: var(--pbmit-global-color);
}

.mobile-category-item.active {
    background: var(--pbmit-global-color);
    border-color: var(--pbmit-global-color);
    color: #fff;
}

/* Hide category tabs on mobile, show floating button */
@media (max-width: 991px) {
    .pbmit-brand-tabs {
        display: none;
    }
}

/* Products Page Styles */
.products-page .section-md:first-of-type {
    padding-top: 120px !important;
    padding-bottom: 30px !important;
}

.products-page .section-md:nth-of-type(2) {
    padding-top: 0 !important;
}

.products-page .pbmit-heading-subheading {
    margin-bottom: 20px;
}

/* Products Page - Desktop Header Styles */
@media (min-width: 1200px) {
    /* Force black text for ALL menu items on desktop, then override for active */
    html body.products-page .site-navigation ul.navigation > li > a,
    body.products-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    /* Active menu item - yellow */
    html body.products-page .site-navigation ul.navigation > li.active > a,
    body.products-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Sticky header menu items */
    html body.products-page .sticky-header .site-navigation ul.navigation > li > a,
    body.products-page .sticky-header .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.products-page .sticky-header .site-navigation ul.navigation > li.active > a,
    body.products-page .sticky-header .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    html body.products-page .pbmit-header-button a,
    html body.products-page .pbmit-header-button-text-1,
    html body.products-page .pbmit-header-button-text-2,
    body.products-page .pbmit-header-button a,
    body.products-page .pbmit-header-button-text-1,
    body.products-page .pbmit-header-button-text-2 {
        color: #000000 !important;
    }
}

/* Products Page - Mobile Menu Visibility */
@media (max-width: 1199px) {
    body .products-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    body .products-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    body .products-page .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    body .products-page .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #000000 !important;
    }

    body .products-page .site-navigation ul.navigation > li.dropdown > ul > li.active > a,
    body .products-page .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
    }
}

/* Product Filters Sidebar */
.product-filters-sidebar {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px;
}

.filter-widget {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.filter-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.search-box {
    position: relative;
}

.search-box .form-control {
    padding-right: 45px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    height: 45px;
}

.search-box .search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pbmit-global-color);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box .search-btn:hover {
    background: #333;
}

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

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

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.filter-checkbox .checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover input ~ .checkmark {
    border-color: var(--pbmit-global-color);
}

.filter-checkbox input:checked ~ .checkmark {
    background-color: var(--pbmit-global-color);
    border-color: var(--pbmit-global-color);
}

.filter-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.filter-label {
    font-size: 14px;
    color: #666;
    transition: color 0.3s ease;
}

.filter-checkbox:hover .filter-label {
    color: var(--pbmit-global-color);
}

.filter-count {
    margin-left: auto;
    font-size: 13px;
    color: #999;
}

/* Products Header */
.products-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
}

.showing-results {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.sort-by .form-select {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 14px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 5px 20px rgba(244, 195, 75, 0.2);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    background: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder {
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--pbmit-global-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.sale {
    background: #e74c3c;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--pbmit-global-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-brand {
    font-size: 13px;
    color: #999;
    margin-bottom: 0;
}

/* Pagination */
.pagination-wrapper .pagination .page-link {
    color: #333;
    border: 1px solid #e5e5e5;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 5px;
}

.pagination-wrapper .pagination .page-item.active .page-link {
    background: var(--pbmit-global-color);
    border-color: var(--pbmit-global-color);
    color: #fff;
}

.pagination-wrapper .pagination .page-link:hover {
    background: #f8f9fa;
    border-color: var(--pbmit-global-color);
    color: var(--pbmit-global-color);
}

/* Contact Us Page Styles */
.contact-us-page .section-md:first-of-type {
    padding-top: 120px !important;
    padding-bottom: 30px !important;
}

.contact-us-page .pbmit-heading-subheading {
    margin-bottom: 20px;
}

/* Contact Us Page - Desktop Header Styles */
@media (min-width: 1200px) {
    /* Force black text for ALL menu items on desktop, then override for active */
    html body.contact-us-page .site-navigation ul.navigation > li > a,
    body.contact-us-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    /* Active menu item - yellow */
    html body.contact-us-page .site-navigation ul.navigation > li.active > a,
    body.contact-us-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Sticky header menu items */
    html body.contact-us-page .sticky-header .site-navigation ul.navigation > li > a,
    body.contact-us-page .sticky-header .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.contact-us-page .sticky-header .site-navigation ul.navigation > li.active > a,
    body.contact-us-page .sticky-header .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    html body.contact-us-page .pbmit-header-button a,
    html body.contact-us-page .pbmit-header-button-text-1,
    html body.contact-us-page .pbmit-header-button-text-2,
    body.contact-us-page .pbmit-header-button a,
    body.contact-us-page .pbmit-header-button-text-1,
    body.contact-us-page .pbmit-header-button-text-2 {
        color: #000000 !important;
    }
}

/* Contact Us Page - Mobile Menu Visibility */
@media (max-width: 1199px) {
    body .contact-us-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    body .contact-us-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    body .contact-us-page .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    body .contact-us-page .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #000000 !important;
    }

    body .contact-us-page .site-navigation ul.navigation > li.dropdown > ul > li.active > a,
    body .contact-us-page .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
    }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 40px;
}

.contact-form-wrapper .form-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-wrapper .form-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form label .required {
    color: #e74c3c;
}

.contact-form .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 0 0 3px rgba(244, 195, 75, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-submit {
    background: var(--pbmit-global-color);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Information Sidebar */
.contact-info-wrapper {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 30px;
}

.contact-info-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.contact-info-box:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(244, 195, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pbmit-global-color);
    font-size: 24px;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.contact-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--pbmit-global-color);
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .product-filters-sidebar {
        margin-bottom: 30px;
    }

    .contact-info-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .brand-logo-box {
        height: 120px;
        padding: 20px 15px;
    }

    .brand-logo-box img {
        max-height: 80px;
    }

    .pbmit-brand-tabs .nav-link {
        font-size: 14px;
        padding: 12px 15px;
        margin: 0 5px;
    }

    .products-header {
        flex-direction: column;
    }

    .products-header .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .sort-by .form-select {
        width: 100%;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-form-wrapper .form-title {
        font-size: 24px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-title {
        font-size: 16px;
    }
}

/* Request Quote Page Styles */
.request-quote-page .section-md:first-of-type {
    padding-top: 120px !important;
    padding-bottom: 30px !important;
}

.request-quote-page .section-xl {
    padding-top: 30px !important;
}

.request-quote-page .pbmit-heading-subheading {
    margin-bottom: 20px;
}

/* Request Quote Page - Desktop Header Styles */
@media (min-width: 1200px) {
    /* Force ALL menu items to black, then override active items */
    html body.request-quote-page .site-navigation ul.navigation > li > a,
    body.request-quote-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.request-quote-page .site-navigation ul.navigation > li.active > a,
    body.request-quote-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Sticky header */
    html body.request-quote-page .sticky-header .site-navigation ul.navigation > li > a,
    body.request-quote-page .sticky-header .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.request-quote-page .sticky-header .site-navigation ul.navigation > li.active > a,
    body.request-quote-page .sticky-header .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Header phone button */
    html body.request-quote-page .pbmit-header-button a,
    html body.request-quote-page .pbmit-header-button-text-1,
    html body.request-quote-page .pbmit-header-button-text-2,
    body.request-quote-page .pbmit-header-button a,
    body.request-quote-page .pbmit-header-button-text-1,
    body.request-quote-page .pbmit-header-button-text-2 {
        color: #000000 !important;
    }
}

/* Request Quote Page - Mobile Menu Visibility */
@media (max-width: 1199px) {
    body .request-quote-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    body .request-quote-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    body .request-quote-page .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    body .request-quote-page .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #000000 !important;
    }

    body .request-quote-page .site-navigation ul.navigation > li.dropdown > ul > li.active > a,
    body .request-quote-page .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
    }
}

/* Quote Form Wrapper - Sleek Design */
.quote-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Floating Label Form Groups */
.form-floating-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-floating-group .form-control {
    width: 100%;
    padding: 12px 15px 4px 15px;
    font-size: 14px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    outline: none;
    height: 38px;
    min-height: 38px;
}

.form-floating-group .form-control:focus {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 0 0 4px rgba(244, 195, 75, 0.1);
}

.form-floating-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #ffffff;
    padding: 0 5px;
    font-weight: 500;
}

.form-floating-group textarea ~ label {
    top: 20px;
    transform: translateY(0);
}

/* Label moves up when focused or has value */
.form-floating-group.focused label,
.form-floating-group.has-value label,
.form-floating-group .form-control:focus ~ label,
.form-floating-group .form-control:not(:placeholder-shown) ~ label {
    top: -2px;
    transform: translateY(0);
    font-size: 11px;
    color: var(--pbmit-global-color);
    font-weight: 600;
}

.form-floating-group label .required {
    color: #e74c3c;
}

/* Select specific styles */
.form-floating-group select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    height: 38px;
    min-height: 38px;
}

/* Textarea specific styles */
.form-floating-group textarea.form-control {
    resize: vertical;
    min-height: 70px;
    height: 70px;
    padding-top: 18px;
}

/* International Phone Input Integration */
.form-floating-group .iti {
    width: 100%;
}

.form-floating-group .iti__input {
    width: 100%;
    padding: 9px 15px 9px 70px !important;
    font-size: 14px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    height: 38px;
    min-height: 38px;
    line-height: 18px !important;
}

/* Phone input without label - show placeholder and center text */
.form-floating-group .iti__input::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* Phone input without floating label - center content vertically */
#phone {
    padding: 9px 15px 9px 70px !important;
    line-height: 18px !important;
}

.form-floating-group .iti__input:focus {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 0 0 4px rgba(244, 195, 75, 0.1);
}

.form-floating-group .iti__selected-dial-code {
    font-size: 14px;
}

.btn-submit-quote {
    background: var(--pbmit-global-color);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 195, 75, 0.3);
}

.btn-submit-quote i {
    font-size: 16px;
}

.btn-submit-quote:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.form-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Quote Benefits Section */
.quote-benefits-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 50px 30px;
}

.benefits-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.benefit-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-box:hover {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 5px 20px rgba(244, 195, 75, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(244, 195, 75, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--pbmit-global-color);
    font-size: 36px;
    transition: all 0.3s ease;
}

.benefit-box:hover .benefit-icon {
    background: var(--pbmit-global-color);
    color: #fff;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for quote page */
@media (max-width: 991px) {
    .quote-form-wrapper {
        padding: 50px 40px;
    }

    .benefits-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .quote-form-wrapper {
        padding: 40px 25px;
    }

    /* Remove column padding and spacing on mobile */
    .quote-form-wrapper .row {
        margin: 0 !important;
    }

    .quote-form-wrapper [class*="col-"] {
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Reset margin for form groups on mobile */
    .form-floating-group {
        margin-bottom: 1rem !important;
    }

    /* Reduce input text size on mobile */
    .form-floating-group .form-control,
    .form-floating-group .iti__input {
        font-size: 13px !important;
    }

    /* Reduce label size on mobile */
    .form-floating-group label {
        font-size: 12px !important;
    }

    /* Smaller submit button on mobile */
    .btn-submit-quote {
        padding: 10px 24px !important;
        font-size: 14px !important;
        width: auto;
        max-width: 200px;
        justify-content: center;
    }

    .btn-submit-quote i {
        font-size: 14px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .benefit-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .quote-benefits-section {
        padding: 40px 20px;
    }
}

/* Logo Switching - Hide/Show on Scroll */
.site-branding {
    position: relative;
}

.site-branding .site-title a {
    display: block;
    position: relative;
}

.site-branding .logo-img {
    max-height: 73px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Default logo - visible by default */
.site-branding .logo-default {
    display: block !important;
    visibility: visible !important;
    opacity: 1;
}

/* Sticky logo - hidden by default */
.site-branding .logo-sticky {
    display: none !important;
    visibility: hidden !important;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

/* When sticky header is active, swap logos */
.site-header.sticky-header .logo-default,
.site-header.sticky-active .logo-default {
    display: none !important;
    visibility: hidden !important;
    opacity: 0;
}

.site-header.sticky-header .logo-sticky,
.site-header.sticky-active .logo-sticky {
    display: block !important;
    visibility: visible !important;
    opacity: 1;
    position: static;
}

/* Logo Max Height - PC View */
@media (min-width: 768px) {
    .site-header .site-branding img {
        max-height: 73px;
        width: auto;
    }
}

/* Services Dropdown Menu */
.site-navigation ul.navigation > li.dropdown {
    position: relative;
}

.site-navigation ul.navigation > li.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

.site-navigation ul.navigation > li.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.site-navigation ul.navigation > li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
    margin-top: 10px;
    list-style: none;
}

.site-navigation ul.navigation > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-navigation ul.navigation > li.dropdown > ul > li {
    display: block;
    padding: 0;
    margin: 0;
}

.site-navigation ul.navigation > li.dropdown > ul > li > a {
    display: block;
    padding: 12px 25px;
    color: #333333 !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.site-navigation ul.navigation > li.dropdown > ul > li > a:hover,
.site-navigation ul.navigation > li.dropdown > ul > li.active > a {
    background: rgba(244, 195, 75, 0.1);
    color: var(--pbmit-global-color) !important;
    border-left-color: var(--pbmit-global-color);
    padding-left: 30px;
}

/* Sticky Header Dropdown */
.site-header.sticky-active .site-navigation ul.navigation > li.dropdown > ul {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Dropdown */
@media (max-width: 1199px) {
    .site-navigation ul.navigation > li.dropdown > ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.05);
        margin: 10px 0 10px 20px;
        border-radius: 5px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .site-navigation ul.navigation > li.dropdown.open > ul {
        max-height: 500px;
        padding: 10px 0;
    }

    .site-navigation ul.navigation > li.dropdown > a::after {
        position: absolute;
        right: 20px;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #ffffff !important;
        padding: 10px 20px;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li > a:hover,
    .site-navigation ul.navigation > li.dropdown > ul > li.active > a {
        background: rgba(244, 195, 75, 0.2);
        color: var(--pbmit-global-color) !important;
    }
}

/* Simple Clean Mobile Menu */
@media (max-width: 1199px) {
    /* Mobile Sticky Header */
    .site-header {
        position: relative;
        z-index: 10;
        transition: all 0.3s ease;
    }

    .site-header.sticky-header,
    .site-header.sticky-active {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        animation: slideDown 0.3s ease-in-out;
    }

    .site-header.sticky-header .pbmit-header-overlay,
    .site-header.sticky-active .pbmit-header-overlay {
        background: #ffffff !important;
    }

    /* Logo size on mobile */
    .site-header .site-branding img {
        max-height: 60px !important;
    }

    .site-title {
        height: 62px;
    }

    /* Mobile Logo Switching - Fix overlap */
    .site-branding .logo-default {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }

    .site-branding .logo-sticky {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        left: 0;
        top: 0;
    }

    /* When sticky on mobile, swap logos */
    .site-header.sticky-header .logo-default,
    .site-header.sticky-active .logo-default {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .site-header.sticky-header .logo-sticky,
    .site-header.sticky-active .logo-sticky {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
    }

    /* Hamburger button - change color on sticky */
    .site-header.sticky-header .navbar-toggler span,
    .site-header.sticky-header .navbar-toggler::before,
    .site-header.sticky-header .navbar-toggler::after,
    .site-header.sticky-active .navbar-toggler span,
    .site-header.sticky-active .navbar-toggler::before,
    .site-header.sticky-active .navbar-toggler::after {
        background: #333333 !important;
    }

    /* Mobile menu wrapper - premium black design */
    .pbmit-menu-wrap {
        padding: 30px 0;
        background: #000000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        transition: all 200ms ease !important;
        -webkit-transition: all 200ms ease !important;
        -moz-transition: all 200ms ease !important;
        -ms-transition: all 200ms ease !important;
        -o-transition: all 200ms ease !important;
        z-index: 99999 !important;
    }

    .pbmit-mobile-menu-bg {
        z-index: 99998 !important;
    }

    .navbar-collapse {
        z-index: 100000 !important;
    }

    /* Hide floating elements when mobile menu is open */
    header.active ~ .floating-whatsapp-btn,
    header.active ~ .pbmit-progress-wrap,
    header.active ~ .page-wrapper .mobile-category-filter-btn {
        z-index: 1 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        visibility: hidden !important;
    }

    /* Ensure category modal is below mobile menu */
    .mobile-category-modal {
        z-index: 10000 !important;
    }

    /* When mobile menu is active, hide category modal */
    body:has(header.active) .mobile-category-modal {
        z-index: 1 !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .active .pbmit-menu-wrap {
        transition-delay: 0ms !important;
        -webkit-transition-delay: 0ms !important;
        -moz-transition-delay: 0ms !important;
        -ms-transition-delay: 0ms !important;
        -o-transition-delay: 0ms !important;
    }

    .pbmit-mobile-menu-bg {
        transition: all 200ms ease !important;
        -webkit-transition: all 200ms ease !important;
        -moz-transition: all 200ms ease !important;
        -ms-transition: all 200ms ease !important;
        -o-transition: all 200ms ease !important;
        transition-delay: 0ms !important;
        -webkit-transition-delay: 0ms !important;
        -moz-transition-delay: 0ms !important;
        -ms-transition-delay: 0ms !important;
        -o-transition-delay: 0ms !important;
    }

    /* Navigation list */
    .site-navigation ul.navigation {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .site-navigation ul.navigation > li {
        position: relative;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-navigation ul.navigation > li:last-child {
        border-bottom: none;
    }

    /* Menu items */
    .site-navigation ul.navigation > li > a {
        display: block;
        padding: 18px 25px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff !important;
        text-decoration: none;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

    .site-navigation ul.navigation > li > a:hover {
        color: var(--pbmit-global-color) !important;
        background: rgba(244, 195, 75, 0.05);
        border-left-color: var(--pbmit-global-color);
        padding-left: 30px;
    }

    .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
        background: rgba(244, 195, 75, 0.1);
        border-left-color: var(--pbmit-global-color);
        padding-left: 30px;
    }

    /* Dropdown menu */
    .site-navigation ul.navigation > li.dropdown > a {
        padding-right: 45px;
        position: relative;
    }

    /* Hide the custom arrow - use righticon instead */
    .site-navigation ul.navigation > li.dropdown > a::after {
        display: none !important;
    }

    /* Style the righticon that scripts.js adds */
    .site-navigation ul.navigation > li.dropdown .righticon {
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        padding: 5px;
    }

    .site-navigation ul.navigation > li.dropdown .righticon i {
        color: var(--pbmit-global-color);
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .site-navigation ul.navigation > li.dropdown.open .righticon i {
        transform: rotate(90deg);
    }

    /* Submenu */
    .site-navigation ul.navigation > li.dropdown > ul {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.03) !important;
        margin: 0 !important;
        border-radius: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        padding: 0 !important;
        list-style: none !important;
        border-left: 3px solid rgba(244, 195, 75, 0.3) !important;
        display: none !important;
    }

    .site-navigation ul.navigation > li.dropdown > ul.open,
    .site-navigation ul.navigation > li.dropdown.open > ul {
        display: block !important;
        max-height: 1000px !important;
        padding: 8px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .site-navigation ul.navigation > li.dropdown > ul > li:last-child {
        border-bottom: none;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li > a {
        padding: 14px 25px 14px 40px !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        transition: all 0.3s ease !important;
        border-left: 2px solid transparent !important;
        display: block !important;
        text-decoration: none !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
        background: rgba(244, 195, 75, 0.08) !important;
        padding-left: 45px !important;
        border-left-color: var(--pbmit-global-color) !important;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li.active > a {
        color: var(--pbmit-global-color) !important;
        background: rgba(244, 195, 75, 0.12) !important;
        padding-left: 45px !important;
        border-left-color: var(--pbmit-global-color) !important;
    }

    /* Hide mobile header buttons */
    .pbmit-right-box {
        display: none !important;
    }

    /* Hamburger button styling */
    .navbar-toggler {
        background: transparent !important;
        border: none !important;
        width: 40px !important;
        height: 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        cursor: pointer !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        padding: 0 !important;
    }

    .navbar-toggler span {
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        background: var(--pbmit-global-color) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }

    /* Hamburger lines */
    .navbar-toggler::before,
    .navbar-toggler::after {
        content: '' !important;
        display: block !important;
        width: 28px !important;
        height: 3px !important;
        background: var(--pbmit-global-color) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
    }

    /* Animate to X when menu is open */
    .navbar-toggler.active::before {
        transform: translateY(13px) rotate(45deg);
    }

    .navbar-toggler.active span {
        opacity: 0;
    }

    .navbar-toggler.active::after {
        transform: translateY(-13px) rotate(-45deg);
    }

    /* Hide close panel - use hamburger instead */
    .closepanel {
        display: none;
    }

    /* No overlay needed */
    .pbmit-mobile-menu-bg {
        display: none;
    }
}

/* Extra small mobile devices */
@media (max-width: 575px) {
    .site-header .site-branding img {
        max-height: 50px !important;
    }

    .pbmit-header-button-text-1,
    .pbmit-header-button-text-2 {
        font-size: 12px !important;
    }

    .pbmit-button-box-second .pbmit-btn .pbmit-button-text {
        font-size: 13px !important;
    }
}

/* Title Bar Wrapper Margin */
.pbmit-title-bar-wrapper {
    margin: 0px 20px 0;
}

/* Mobile Title Bar Responsive */
@media (max-width: 767px) {
    .pbmit-title-bar-wrapper {
        margin: 0px 10px 0;
    }
}

/* Service Details Page - Desktop Header Styles */
@media (min-width: 1200px) {
    /* Force WHITE text for ALL menu items on desktop, then override for active */
    html body.service-details-page .site-navigation ul.navigation > li > a,
    body.service-details-page .site-navigation ul.navigation > li > a {
        color: #ffffff !important;
    }

    /* Active menu item - yellow */
    html body.service-details-page .site-navigation ul.navigation > li.active > a,
    body.service-details-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Sticky header menu items - BLACK when sticky */
    html body.service-details-page .sticky-header .site-navigation ul.navigation > li > a,
    body.service-details-page .sticky-header .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    html body.service-details-page .sticky-header .site-navigation ul.navigation > li.active > a,
    body.service-details-page .sticky-header .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Header phone button - WHITE */
    html body.service-details-page .pbmit-header-button a,
    html body.service-details-page .pbmit-header-button-text-1,
    html body.service-details-page .pbmit-header-button-text-2,
    body.service-details-page .pbmit-header-button a,
    body.service-details-page .pbmit-header-button-text-1,
    body.service-details-page .pbmit-header-button-text-2 {
        color: #ffffff !important;
    }
}

/* Service Details Page - Mobile Menu - Ensure Visibility */
@media (max-width: 1199px) {
    body .service-details-page .site-navigation ul.navigation > li > a {
        color: #000000 !important;
    }

    body .service-details-page .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    /* Mobile dropdown submenu */
    body .service-details-page .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    /* Mobile dropdown submenu items */
    body .service-details-page .site-navigation ul.navigation > li.dropdown > ul > li > a {
        color: #000000 !important;
    }

    body .service-details-page .site-navigation ul.navigation > li.dropdown > ul > li.active > a {
        color: var(--pbmit-global-color) !important;
    }

    body .service-details-page .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
    }
}

/* Service Details Page - Sticky Header - Black Text */
body .service-details-page .site-header.sticky-active .site-navigation ul.navigation > li > a {
    color: #000000 !important;
}

body .service-details-page .site-header.sticky-active .site-navigation ul.navigation > li.active > a {
    color: var(--pbmit-global-color) !important;
}

body .service-details-page .site-header.sticky-active .pbmit-header-button a,
body .service-details-page .site-header.sticky-active .pbmit-header-button-text-1,
body .service-details-page .site-header.sticky-active .pbmit-header-button-text-2 {
    color: #000000 !important;
}

/* Service Details Page - Sticky Header on Scroll */
.service-details-page .site-header.sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.3s ease-in-out;
}

.service-details-page .site-header.sticky-active .pbmit-header-overlay {
    background: #ffffff !important;
}

/* Service Details Page - Mobile Font Size Adjustments */
@media (max-width: 767px) {
    .service-details .service-full-description h1 {
        font-size: 24px !important;
    }

    .service-details .service-full-description h2 {
        font-size: 20px !important;
    }

    .service-details .service-full-description h3 {
        font-size: 18px !important;
    }

    .service-details .service-full-description h4 {
        font-size: 16px !important;
    }

    .service-details .service-full-description p,
    .service-details .service-full-description li {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .service-details .service-full-description ul,
    .service-details .service-full-description ol {
        padding-left: 25px !important;
    }

    /* Title bar adjustments */
    .service-details-page .pbmit-tbar-title {
        font-size: 28px !important;
    }

    .service-details-page .pbmit-tbar-subtitle {
        font-size: 14px !important;
    }

    /* Sidebar widget */
    .service-sidebar .widget-title {
        font-size: 18px !important;
    }

    .service-sidebar .all-post-list ul li a {
        font-size: 14px !important;
        padding: 10px 15px !important;
    }
}

/* Service Details Page - Tablet Font Size Adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .service-details .service-full-description h1 {
        font-size: 28px !important;
    }

    .service-details .service-full-description h2 {
        font-size: 24px !important;
    }

    .service-details .service-full-description h3 {
        font-size: 20px !important;
    }

    .service-details .service-full-description h4 {
        font-size: 18px !important;
    }

    .service-details .service-full-description p,
    .service-details .service-full-description li {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
}

/* ============================================
   MOBILE MENU - Fix Inactive Menu Visibility
   ============================================ */
@media (max-width: 1199px) {
    /* Ensure mobile menu has proper background */
    .pbmit-menu-wrap {
        background: #ffffff !important;
    }

    /* Override all possible color inheritance for inactive menu items */
    .site-navigation ul.navigation > li:not(.active) > a,
    .site-navigation ul.navigation > li > a {
        color: #000000 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: transparent !important;
    }

    /* Active menu items - always yellow */
    .site-navigation ul.navigation > li.active > a,
    .site-navigation ul.navigation > li.active > a:hover,
    .site-navigation ul.navigation > li.active > a:focus {
        color: var(--pbmit-global-color) !important;
        background: transparent !important;
    }

    /* Hover state for inactive items */
    .site-navigation ul.navigation > li:not(.active) > a:hover {
        color: #333333 !important;
    }

    /* Dropdown parent menu */
    .site-navigation ul.navigation > li.dropdown > ul {
        background: #f8f8f8 !important;
    }

    .site-navigation ul.navigation > li.dropdown > ul > li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Dropdown inactive items */
    .site-navigation ul.navigation > li.dropdown > ul > li:not(.active) > a {
        color: #333333 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 10px 20px !important;
        background: transparent !important;
    }

    /* Dropdown active items */
    .site-navigation ul.navigation > li.dropdown > ul > li.active > a {
        color: var(--pbmit-global-color) !important;
        background: #f0f0f0 !important;
        display: block !important;
        padding: 10px 20px !important;
    }

    /* Dropdown hover */
    .site-navigation ul.navigation > li.dropdown > ul > li > a:hover {
        color: var(--pbmit-global-color) !important;
        background: #f0f0f0 !important;
    }

    /* Ensure dropdown is visible when opened */
    .site-navigation ul.navigation > li.dropdown.open > ul,
    .site-navigation ul.navigation > li.dropdown:hover > ul {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Force override any page-specific styles on mobile */
    body .site-navigation ul.navigation > li:not(.active) > a {
        color: #000000 !important;
    }

    body .site-navigation ul.navigation > li.active > a {
        color: var(--pbmit-global-color) !important;
    }
}

/* ============================================
   HOME PAGE - SERVICES SLIDER DOTS ON MOBILE
   ============================================ */

/* Hide dots on desktop */
@media (min-width: 768px) {
    .services-swiper-mobile .swiper-pagination {
        display: none !important;
    }
}

/* Show and style dots on mobile */
@media (max-width: 767px) {
    .services-swiper-mobile .swiper-pagination {
        display: block !important;
        position: relative !important;
        bottom: 0 !important;
        margin-top: 20px !important;
        text-align: center;
    }

    .services-swiper-mobile .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
        margin: 0 5px !important;
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
    }

    .services-swiper-mobile .swiper-pagination-bullet-active {
        background: var(--pbmit-global-color);
        border-color: var(--pbmit-global-color);
        transform: scale(1.2);
    }

    /* Add visual hint with text */
    .services-swiper-mobile .swiper-pagination::before {
        content: "Swipe to see more services";
        display: block;
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        margin-bottom: 10px;
        font-style: italic;
    }
}
