/* Enhanced Category Cards with Images */
.category-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cat-card-enhanced {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    cursor: pointer;
}

.cat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: all 0.4s ease;
}

.cat-card-enhanced:hover::before {
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.cat-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.cat-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    color: #fff;
}

.cat-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cat-card-enhanced:hover .cat-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.cat-icon-large i {
    font-size: 2rem;
    color: #fff;
}

.cat-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.cat-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cat-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.cat-link i {
    transition: transform 0.3s ease;
}

.cat-link:hover i {
    transform: translateX(5px);
}

/* Responsive for Enhanced Cards */
@media (max-width: 992px) {
    .category-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cat-card-enhanced {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .cat-card-enhanced {
        height: 300px;
    }

    .cat-content {
        padding: 30px;
    }

    .cat-content h3 {
        font-size: 1.5rem;
    }

    .cat-icon-large {
        width: 60px;
        height: 60px;
    }

    .cat-icon-large i {
        font-size: 1.5rem;
    }
}