/* Features (Why Choose Us) Enhanced Styles */

.features-section-modern {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
    border-color: rgba(59, 130, 246, 0.1);
}

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

/* Icon Styling */
.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.feature-icon-wrapper i {
    font-size: 1.75rem;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    background: #3b82f6;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.feature-card-modern:hover .feature-icon-wrapper i {
    color: #ffffff;
}

/* Content Styling */
.feature-card-modern h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.feature-card-modern p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Feature List Inside Card */
.feature-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.feature-card-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.3s ease;
}

.feature-card-list li i {
    width: 24px;
    height: 24px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-card-modern:hover .feature-card-list li i {
    background: #10b981;
    color: #ffffff;
}

/* Decoration */
.feature-card-number {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    opacity: 0.03;
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-card-number {
    opacity: 0.08;
    transform: scale(1.1);
}
