/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 100%);
    padding: 70px 0;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0b6578;
    margin-bottom: 15px;
}

.why-us-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #4496a6;
    margin-bottom: 50px;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.why-us-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(109, 189, 200, 0.2);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.why-us-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.why-us-badge i {
    font-size: 1.3rem;
}

.why-us-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-point {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(109, 189, 200, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-point:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 35px rgba(109, 189, 200, 0.2);
    border-left-color: #6dbdc8;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6dbdc8 0%, #5aacb7 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-point:hover .point-icon {
    transform: rotate(10deg) scale(1.1);
}

.point-icon i {
    font-size: 1.8rem;
    color: white;
}

.point-text h3 {
    font-size: 1.3rem;
    color: #224056;
    margin-bottom: 8px;
    font-weight: 700;
}

.point-text p {
    font-size: 1rem;
    color: #4496a6;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-us-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-us-title {
        font-size: 2rem;
    }
    
    .why-point {
        padding: 20px;
        gap: 15px;
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
    }
    
    .point-icon i {
        font-size: 1.5rem;
    }
    
    .point-text h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .why-point {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .why-us-badge {
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}
