/* ===== Portfolio Section ===== */
.wm-portfolio {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.wm-portfolioFilter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.wm-filterBtn {
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wm-filterBtn:hover, .wm-filterBtn.active {
    background: linear-gradient(135deg, #2ec4b6, #1a3a5f);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

/* Product Grid */
.wm-portfolioGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.wm-productCard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.wm-productCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.wm-productImg {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.wm-productImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wm-productCard:hover .wm-productImg img {
    transform: scale(1.05);
}

.wm-productOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 95, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wm-productCard:hover .wm-productOverlay {
    opacity: 1;
}

.wm-quickView {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a3a5f;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.wm-quickView:hover {
    background: white;
    transform: translateY(-2px);
}

.wm-productInfo {
    padding: 20px;
}

.wm-productCategory {
    display: inline-block;
    font-size: 0.75rem;
    padding: 4px 10px;
    background: rgba(46, 196, 182, 0.1);
    color: #2ec4b6;
    border-radius: 50px;
    margin-bottom: 10px;
    font-weight: 600;
}

.wm-productInfo h3 {
    font-size: 1.2rem;
    color: #1a3a5f;
    margin-bottom: 15px;
    font-weight: 600;
}

.wm-productMeta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
}

.wm-productMeta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.wm-enquiryBtn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2ec4b6, #1a3a5f);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.wm-enquiryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

/* CTA Section */
.wm-portfolioCta {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.05) 0%, rgba(26, 58, 95, 0.05) 100%);
    border-radius: 12px;
    margin-top: 30px;
}

.wm-portfolioCta p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.wm-ctaBtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #2ec4b6, #1a3a5f);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wm-ctaBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 196, 182, 0.3);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .wm-portfolio {
        padding: 80px 0;
    }
    
    .wm-portfolioGrid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .wm-portfolioFilter {
        gap: 8px;
    }
    
    .wm-filterBtn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .wm-portfolioGrid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 576px) {
    .wm-portfolio {
        padding: 60px 0;
    }
    
    .wm-productImg {
        height: 180px;
    }
    
    .wm-portfolioCta {
        padding: 25px 15px;
    }
}