/* Why Choose Us - Divine Split Layout */
.why-choose-us-section {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 50px 0;
    }
}

/* Background Atmosphere */
.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(194, 24, 91, 0.05) 0%, transparent 60%),
        radial-gradient(circle at bottom left, rgba(160, 19, 74, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.why-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

/* --- Left: Visual Side --- */
.why-visual-side {
    position: relative;
    z-index: 2;
}

.image-halo-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    /* To see halo */
}

/* Main Image */
.why-hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.why-hero-img:hover {
    transform: scale(1.02);
}

/* Animated Halo Rings */
.halo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.ring-1 {
    width: 120%;
    height: 120%;
    animation: rotateRing 20s linear infinite;
}

.ring-2 {
    width: 140%;
    height: 140%;
    border-style: dashed;
    animation: rotateRingRev 30s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateRingRev {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

/* Legacy Badge */
.exp-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--primary-color);
    animation: floatBadge 5s ease-in-out infinite;
}

@keyframes floatBadge {

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

    50% {
        transform: translateY(-10px);
    }
}

.exp-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--icon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-heading);
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

/* --- Right: Content Side --- */
.why-content-side {
    position: relative;
    z-index: 2;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Glass & Gold */
.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #a0134a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(194, 24, 91, 0.15);
}

.why-feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-box {
    background: var(--icon-gradient);
    /* Vibrant pink gradient */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 8px 15px rgba(194, 24, 91, 0.2);
    padding: 5px;
}

.why-feature-card:hover .feature-icon-box {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(10deg);
}

.feature-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.feature-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .why-container-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-hero-img {
        height: 350px;
    }

    .exp-badge {
        right: 0;
        bottom: 20px;
    }
    
    .ring-1 {
        width: 500px;
        height: 500px;
    }

    .ring-2 {
        width: 650px;
        height: 650px;
    }
}

@media (max-width: 576px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-feature-card {
        padding: 15px 12px;
        gap: 12px;
        border-radius: 15px;
    }

    .feature-icon-box {
        font-size: 20px;
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .feature-info h4 {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .feature-info p {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .ring-1 {
        width: 350px;
        height: 350px;
    }

    .ring-2 {
        width: 480px;
        height: 480px;
    }
}