/* Additional community icons for social platforms */
.community-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(231, 76, 60, 0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.community-card:hover .community-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(231, 76, 60, 0.8));
}

/* Enhanced feature icons styling */
.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(18, 18, 18, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
                inset 0 0 0 2px rgba(231, 76, 60, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(231, 76, 60, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                inset 0 0 0 3px rgba(231, 76, 60, 0.8);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.5));
    transition: transform 0.3s ease;
    z-index: 1;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.1);
}

/* Enhanced executor icons styling */
.executor-icon {
    width: 100px;
    height: 100px;
    background: rgba(18, 18, 18, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
                inset 0 0 0 2px rgba(231, 76, 60, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.executor-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(231, 76, 60, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.executor-card:hover .executor-icon {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                inset 0 0 0 3px rgba(231, 76, 60, 0.6);
}

.executor-card:hover .executor-icon::before {
    opacity: 1;
}

.executor-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.3));
    transition: transform 0.3s ease;
    z-index: 1;
}

.executor-card:hover .executor-icon img {
    transform: scale(1.1);
}

/* Recommended executor styling enhancement */
.recommended .executor-icon {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 
                inset 0 0 0 2px rgba(231, 76, 60, 0.6);
}

.recommended:hover .executor-icon {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 
                inset 0 0 0 3px rgba(231, 76, 60, 1);
}

/* Navigation enhancement for new pages */
.nav-links li a {
    position: relative;
    overflow: hidden;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer links enhancement */
.footer-links ul li a {
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: -10px;
}
