/* Why Choose Section Styles */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1);
}

.why-choose-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* New layout: media + cards */
.why-choose-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.why-choose-media {
    position: relative;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 18px;
    position: relative;
    background:
      radial-gradient(800px 400px at 100% 0%, rgba(59,130,246,0.25), transparent 60%),
      radial-gradient(600px 350px at 0% 100%, rgba(139,92,246,0.25), transparent 60%),
      linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25) inset, 0 20px 40px rgba(2,6,23,0.45);
    overflow: hidden;
}

.why-choose-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.why-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.18);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    font-size: 1.1rem;
}

.why-card-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.why-card-text {
    margin: 0;
    color: #e2e8f0;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
    }

    .why-choose-image {
        min-height: 260px;
        /* background-image: url(./why-choose-image.jpeg);*/
        background-size: cover;
        background-position: center;
    }
}