/* Modern Why Choose Us Section Styles with Teal-Purple Theme */
:root {
    --primary-teal: #3fb0ac;
    --secondary-purple: #6a4c93;
    --accent-light: #8be9fd;
    --text-light: #f8f9fa;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Why Us Section */
.why-us {
    position: relative;
    padding: 100px 5%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-purple));
    min-height: 70vh;
}

/* Particles Container */
#why-us-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Why Us Container */
.why-us-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.why-us .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.why-us .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-us .section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: var(--accent-light);
    left: 25%;
    bottom: -10px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(139, 233, 253, 0.5);
}

.why-us .section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Feature Card */
.feature {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Feature Icon */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(139, 233, 253, 0.3);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(139, 233, 253, 0.4);
}

.feature-icon i {
    font-size: 32px;
    color: var(--text-dark);
}

/* Feature Content */
.feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.feature p {
    color: var(--text-light);
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 80px 5% 60px;
    }
    
    .why-us .section-title h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .why-us .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature h3 {
        font-size: 1.3rem;
    }
}
