/* ============================================================
   WHY CHOOSE US — why-us.css
   Scoped: ALL rules prefixed .ak-why-
   Zero bleed to other sections.
============================================================ */

/* ─── SECTION ─────────────────────────────────────────────── */
.ak-why-section {
        padding: 60px 60px 60px; /* 🔥 reduced top & bottom space */

    background: #faf8f4;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* ─── CONTAINER ───────────────────────────────────────────── */
.ak-why-container {
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 0 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ─── LEFT IMAGE ──────────────────────────────────────────── */
.ak-why-left {
    position: relative;
    z-index: 10; /* 🔥 FIX: ensure image always above strip */
    border-radius: 24px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
    flex-shrink: 0;
}

.ak-why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

/* ─── RIGHT ───────────────────────────────────────────────── */
.ak-why-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── ROW ─────────────────────────────────────────────────── */
.ak-why-row {
    position: relative; /* 🔥 FIX: create stacking context */
    z-index: 1;
    display: flex;
    align-items: center;
}

/* ─── ICON AREA ───────────────────────────────────────────── */
.ak-why-icon-area {
    position: relative;
    width: 200px;
    height: 90px;
    flex-shrink: 0;
    z-index: 2;
}

/* ─── STRIP (FIXED) ───────────────────────────────────────── */
.ak-why-strip {
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 62px;
    background: linear-gradient(90deg, #e85d04, #f97316);
    border-radius: 0 14px 14px 0;

    z-index: -1; /* 🔥 MAIN FIX: send behind everything */
}

/* ─── WHEEL ──────────────────────────────────────────────── */
.ak-why-wheel-wrap {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    z-index: 2;
}

/* ─── ICON ──────────────────────────────────────────────── */
.ak-why-icon-circle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #0c0c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff;
}

/* ─── CONTENT ───────────────────────────────────────────── */
.ak-why-content {
    background: #fff;
    padding: 22px 30px;
    border-radius: 14px;
    width: 100%;
    border-left: 4px solid #d4a017;
}

.ak-why-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.ak-why-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .ak-why-container {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ak-why-container {
        grid-template-columns: 1fr;
    }

    .ak-why-strip {
        left: -20px;
        width: 220px;
    }
}

/* ─── CHAKRA CONTINUOUS ROTATION ───────────────────────── */

/* Smooth infinite rotation */
.ak-why-wheel-wrap {
    animation: ak-why-spin 18s linear infinite;
    transform-origin: center center;
    will-change: transform;
}

/* Keyframes */
@keyframes ak-why-spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Speed up on hover (premium feel) */
.ak-why-row:hover .ak-why-wheel-wrap {
    animation-duration: 6s;
}

/* Accessibility (optional but pro-level) */
@media (prefers-reduced-motion: reduce) {
    .ak-why-wheel-wrap {
        animation: none;
    }
}
/* ─── SCROLL REVEAL ANIMATION ───────────────────────── */

/* Initial hidden state */
.ak-why-row.ak-why-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(6px);
}

/* Visible state */
.ak-why-row.ak-why-show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        filter 0.8s ease;
}

/* Stagger effect (professional touch) */
.ak-why-row:nth-child(1) { transition-delay: 0.1s; }
.ak-why-row:nth-child(2) { transition-delay: 0.2s; }
.ak-why-row:nth-child(3) { transition-delay: 0.3s; }
.ak-why-row:nth-child(4) { transition-delay: 0.4s; }

/* ============================================================
   🔥 SUPER RESPONSIVE UPGRADE (PRO LEVEL)
============================================================ */

/* ─── LARGE SCREENS (1400px+) ───────────────────────────── */
@media (min-width: 1400px) {
    .ak-why-container {
        max-width: 1400px;
        grid-template-columns: 420px 1fr;
        gap: 80px;
    }

    .ak-why-content h3 {
        font-size: 20px;
    }

    .ak-why-content p {
        font-size: 15px;
    }
}

/* ─── LAPTOP (1200px) ───────────────────────────────────── */
@media (max-width: 1200px) {
    .ak-why-container {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }

    .ak-why-section {
        padding: 50px 40px;
    }
}

/* ─── TABLET (1024px) ───────────────────────────────────── */
@media (max-width: 1024px) {
    .ak-why-container {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .ak-why-icon-area {
        width: 170px;
    }

    .ak-why-strip {
        left: -200px;
        width: 300px;
    }
}

/* ─── SMALL TABLET (900px) ─────────────────────────────── */
@media (max-width: 900px) {
    .ak-why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ak-why-left {
        max-height: 420px;
    }

    .ak-why-row {
        gap: 10px;
    }

    .ak-why-icon-area {
        width: 150px;
    }

    .ak-why-strip {
        left: -80px;
        width: 240px;
    }
}

/* ─── MOBILE (768px) ───────────────────────────────────── */
@media (max-width: 768px) {

    .ak-why-section {
        padding: 40px 20px;
    }

    .ak-why-left {
        max-height: 320px;
    }

    .ak-why-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .ak-why-icon-area {
        width: 120px;
        height: 80px;
    }

    .ak-why-strip {
        left: -40px;
        width: 200px;
        height: 50px;
    }

    .ak-why-wheel-wrap {
        width: 90px;
        height: 90px;
    }

    .ak-why-icon-circle {
        width: 50px;
        height: 50px;
    }

    .ak-why-content {
        padding: 16px 18px;
    }

    .ak-why-content h3 {
        font-size: 16px;
    }

    .ak-why-content p {
        font-size: 13px;
    }
}

/* ─── SMALL MOBILE (480px) ─────────────────────────────── */
@media (max-width: 480px) {

    .ak-why-section {
        padding: 30px 15px;
    }

    .ak-why-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ak-why-icon-area {
        width: 100%;
        height: 70px;
    }

    .ak-why-strip {
        left: 0;
        width: 100%;
        border-radius: 12px;
    }

    .ak-why-wheel-wrap {
        right: 20px;
        width: 80px;
        height: 80px;
    }

    .ak-why-icon-circle {
        right: 30px;
    }

    .ak-why-content {
        width: 100%;
    }

    .ak-why-content h3 {
        font-size: 15px;
    }

    .ak-why-content p {
        font-size: 12.5px;
    }
}