/* Modern Choose Us Section - Simple Grid Design */
.choose-us-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
}

/* Simple Feature Boxes */
.choose-feature-simple {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid white;
    transition: all 0.3s ease;
    height: 100%;
}

.choose-feature-simple:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 15px;
}

.choose-feature-simple h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-feature-simple p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.choose-feature-simple {
    animation: fadeInUp 0.6s ease-out;
}

.col-lg-4:nth-child(1) .choose-feature-simple { animation-delay: 0.1s; }
.col-lg-4:nth-child(2) .choose-feature-simple { animation-delay: 0.2s; }
.col-lg-4:nth-child(3) .choose-feature-simple { animation-delay: 0.3s; }
.col-lg-4:nth-child(4) .choose-feature-simple { animation-delay: 0.4s; }
.col-lg-4:nth-child(5) .choose-feature-simple { animation-delay: 0.5s; }
.col-lg-4:nth-child(6) .choose-feature-simple { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 991px) {
    .choose-feature-simple {
        padding: 25px;
    }

    .feature-number {
        font-size: 42px;
    }

    .choose-feature-simple h4 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .choose-feature-simple {
        padding: 20px;
        margin-bottom: 15px;
    }

    .feature-number {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .choose-feature-simple h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .choose-feature-simple p {
        font-size: 13px;
    }
}
