/* ========================================
   WHY CHOOSE US - PREMIUM DARK THEME
   ======================================== */

.why-choose-section {
    position: relative;
    background: linear-gradient(180deg,
            #0f172a 0%,
            #1e293b 50%,
            #0f172a 100%) !important;
    padding: 50px 0 !important;
    overflow: hidden;
}

/* Animated background pattern */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Section Header */
.why-choose-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #f8fafc !important;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(56, 189, 248, 0.3);
}

.why-choose-title .highlight-text {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.why-choose-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1 !important;
    font-weight: 400;
    line-height: 1.6;
}

/* Features Grid */
.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* Feature Card */
.feature-card {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(56, 189, 248, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            #fbbf24 50%,
            transparent 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.6) !important;
    box-shadow:
        0 20px 40px rgba(251, 191, 36, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Feature Icon */
.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
    opacity: 0.3;
    transform: scale(1.15) rotate(90deg);
}

.feature-icon {
    font-size: 2.8rem;
    color: #38bdf8 !important;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(56, 189, 248, 0.4));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotateY(360deg);
    color: #0ea5e9 !important;
}

/* Feature Text */
.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f8fafc !important;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.95rem;
    color: #94a3b8 !important;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.why-choose-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-cta-btn {
    padding: 20px 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow:
        0 10px 30px rgba(2, 132, 199, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.why-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.why-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.why-cta-btn:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow:
        0 15px 40px rgba(2, 132, 199, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

.why-cta-btn i {
    margin-right: 10px;
    font-size: 1.1rem;
    animation: planeFloat 2s ease-in-out infinite;
}

@keyframes planeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-3px) rotate(-5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-choose-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0 !important;
    }

    .why-choose-title {
        font-size: 2.2rem;
    }

    .why-choose-subtitle {
        font-size: 1.1rem;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .why-cta-btn {
        padding: 18px 40px !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .why-choose-title {
        font-size: 1.8rem;
    }

    .why-choose-subtitle {
        font-size: 1rem;
    }

    .feature-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .why-cta-btn {
        width: 100%;
        max-width: 350px;
    }
}