/* =============================================
   Theme: Why Us - Asymmetrical Layout
   ============================================= */

.why-us-section {
    position: relative;
    padding: 100px 0;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3e%3cpath fill='%23f8f9fa' fill-opacity='1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,133.3C672,117,768,139,864,165.3C960,192,1056,224,1152,218.7C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3e%3c/path%3e%3c/svg%3e");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-us-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.why-us-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.why-us-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.why-us-cards-grid {
    display: grid;
    gap: 1.5rem;
}

.why-us-card-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-us-icon-v2 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    background: var(--gradient-primary);
}

.why-us-card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.why-us-card-content p {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .why-us-content {
        margin-bottom: 2rem;
    }
    .why-us-card-v2 {
        text-align: left;
    }
}
