/**
 * Why Choose Us Section - Modern Design
 * GRPCMedia Theme
 * Version: 1.0.0
 */

/* Section Container */
.grpc-why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.grpc-why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%23007cba" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

/* Section Header */
.grpc-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.grpc-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #2F2483 0%, #005a8b 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(47, 36, 131, 0.3);
}

.grpc-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.grpc-section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.grpc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Feature Card */
.grpc-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.grpc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2F2483 0%, #005a8b 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.grpc-feature-card:hover::before {
    transform: scaleX(1);
}

.grpc-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(47, 36, 131, 0.2);
}

/* Feature Icon */
.grpc-feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grpc-feature-icon i {
    font-size: 50px;
    color: #2F2483;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.grpc-feature-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 36, 131, 0.1) 0%, rgba(0, 90, 139, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.grpc-feature-card:hover .grpc-feature-icon i {
    transform: scale(1.1) rotate(5deg);
    color: #005a8b;
}

.grpc-feature-card:hover .grpc-feature-icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, rgba(47, 36, 131, 0.2) 0%, rgba(0, 90, 139, 0.2) 100%);
}

/* Feature Content */
.grpc-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.grpc-feature-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.grpc-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2F2483;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.grpc-feature-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.grpc-feature-link:hover {
    color: #005a8b;
    gap: 12px;
}

.grpc-feature-link:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .grpc-section-title {
        font-size: 36px;
    }
    
    .grpc-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .grpc-why-choose-section {
        padding: 60px 0;
    }
    
    .grpc-section-title {
        font-size: 32px;
    }
    
    .grpc-section-subtitle {
        font-size: 16px;
    }
    
    .grpc-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

