/* =========================================
   MRO PAGE STYLES
   ========================================= */

.feature-card-mro {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card-mro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
    border-color: rgba(242, 101, 34, 0.3) !important;
}

.feature-icon-mro {
    width: 65px;
    height: 65px;
    background-color: rgba(0, 75, 135, 0.08);
    color: #004B87;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-card-mro:hover .feature-icon-mro {
    background-color: #004B87;
    color: #ffffff;
    transform: scale(1.05) rotate(5deg);
}

/* Custom Nav Tabs for MRO Products */
.custom-mro-tabs .nav-link {
    color: #555555;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.custom-mro-tabs .nav-link:hover {
    color: #f26522;
    border-color: #f26522;
    background-color: rgba(242, 101, 34, 0.05);
}

.custom-mro-tabs .nav-link.active {
    background-color: #f26522 !important;
    color: #ffffff !important;
    border-color: #f26522;
    box-shadow: 0 6px 15px rgba(242, 101, 34, 0.25);
}

/* Product Card Hover Effects */
.mro-product-card .product-img-wrap {
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

.mro-product-card:hover .product-img-wrap {
    background-color: #f8f9fa;
}

.mro-product-card .overlay {
    backdrop-filter: blur(2px);
}

.mro-product-card:hover .overlay {
    opacity: 1 !important;
}

.hover-btn-orange {
    transition: all 0.3s ease;
}
.hover-btn-orange:hover {
    background-color: #f26522 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
}
