/* Why Us Section - Professional Style */
.why-us-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-content {
    display: flex;
    align-items: flex-end;
    /* Changed from center to flex-end */
    gap: 60px;
}

/* Left Side - Image */
.why-us-image {
    flex: 1;
    max-width: 450px;
    align-self: flex-end;
    /* Push image to bottom */
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Right Side - Features Grid */
.why-us-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-feature-card:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.why-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.why-feature-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.why-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.why-feature-card h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .why-us-content {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .why-us-image {
        max-width: 100%;
        align-self: center;
    }

    .why-us-features {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-feature-card {
        padding: 30px 25px;
    }

    .why-icon {
        width: 65px;
        height: 65px;
    }

    .why-icon i {
        font-size: 32px;
    }

    .why-feature-card h4 {
        font-size: 1.15rem;
    }
}