/* ============================================================
   WHY CHOOSE US — why-us.css
   LIGHT SACRED IVORY THEME — Warm Parchment · Gold · Saffron
   Scoped: ALL rules prefixed .ak-why-
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── SECTION ─────────────────────────────────────────────── */
.ak-why-section {
    padding: 60px 60px;
    background: #fdf8f0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Warm ambient radial glow */
.ak-why-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw; height: 90vw;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 160, 40, 0.09) 0%,
        rgba(220, 100, 30, 0.04) 45%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    animation: akWhyGlowPulse 9s ease-in-out infinite alternate;
}

@keyframes akWhyGlowPulse {
    from { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.06); }
}

/* Warm parchment noise texture */
.ak-why-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

/* ─── 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;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 10px;
    flex-shrink: 0;
    box-shadow:
        0 0 0 1px rgba(200, 150, 12, 0.22),
        0 0 0 4px rgba(200, 150, 12, 0.06),
        0 20px 50px rgba(120, 80, 10, 0.14),
        0 0 40px rgba(200, 150, 12, 0.08);
    animation: akWhyImgReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes akWhyImgReveal {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.ak-why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    filter: brightness(0.96) saturate(0.90) sepia(0.05);
    transition: filter 0.4s ease;
}

.ak-why-left:hover img {
    filter: brightness(1.02) saturate(0.95) sepia(0.02);
}

/* ─── RIGHT ───────────────────────────────────────────────── */
.ak-why-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ─── ROW ─────────────────────────────────────────────────── */
.ak-why-row {
    position: relative;
    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 — warm saffron-to-gold gradient ───────────────── */
.ak-why-strip {
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: 62px;

    background: linear-gradient(90deg, #e8c87a, #d4880a, #a04010, #d4880a);
    border-radius: 0 14px 14px 0;

    z-index: -1;

    box-shadow:
        0 4px 18px rgba(160, 80, 10, 0.22),
        0 0 24px rgba(200, 150, 12, 0.12);
}

/* ─── WHEEL ──────────────────────────────────────────────── */
.ak-why-wheel-wrap {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    z-index: 2;

    filter:
        drop-shadow(0 0 10px rgba(200, 150, 12, 0.40))
        drop-shadow(0 0 22px rgba(200, 150, 12, 0.15))
        brightness(0.98)
        sepia(1)
        saturate(1.9)
        hue-rotate(8deg);

    opacity: 0.75;
}

/* ─── ICON CIRCLE ───────────────────────────────────────── */
.ak-why-icon-circle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;

    background: radial-gradient(circle at 35% 35%,
        #fff4c2 0%,
        #f5c230 30%,
        #d4800a 70%,
        #a04010 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #fff8e8;

    box-shadow:
        0 0 0 2px rgba(245, 200, 66, 0.35),
        0 4px 16px rgba(160, 80, 10, 0.30),
        0 0 18px rgba(200, 150, 12, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);

    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ak-why-row:hover .ak-why-icon-circle {
    box-shadow:
        0 0 0 2px rgba(245, 200, 66, 0.65),
        0 6px 22px rgba(160, 80, 10, 0.45),
        0 0 32px rgba(200, 150, 12, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.40);
    transform: translateY(-50%) scale(1.08);
}

/* ─── CONTENT CARD ──────────────────────────────────────── */
.ak-why-content {
    background: #ffffff;
    padding: 22px 30px;
    border-radius: 14px;
    width: 100%;

    border-left: 3px solid #d4880a;

    box-shadow:
        0 2px 16px rgba(120, 80, 10, 0.08),
        0 1px 4px rgba(120, 80, 10, 0.05);

    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.ak-why-row:hover .ak-why-content {
    background: #fffbf3;
    border-left-color: #f5c230;
    transform: translateX(4px);
    box-shadow:
        0 6px 28px rgba(120, 80, 10, 0.13),
        0 0 16px rgba(200, 150, 12, 0.07);
}

.ak-why-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.02em;

    background: linear-gradient(110deg, #7a4f00, #c8860c, #f5c230, #d4880a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: akWhyTitleShimmer 6s linear infinite;
}

@keyframes akWhyTitleShimmer {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.ak-why-content p {
    font-size: 14px;
    color: #8a7a60;
    line-height: 1.75;
    font-weight: 300;
}

/* ─── CHAKRA SPIN ────────────────────────────────────────── */
.ak-why-wheel-wrap {
    animation: ak-why-spin 18s linear infinite;
    transform-origin: center center;
    will-change: transform;
}

@keyframes ak-why-spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
}

.ak-why-row:hover .ak-why-wheel-wrap {
    animation-duration: 6s;
}

@media (prefers-reduced-motion: reduce) {
    .ak-why-wheel-wrap { animation: none; }
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.ak-why-row.ak-why-hidden {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(6px);
}

.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;
}

.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; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (min-width: 1400px) {
    .ak-why-container {
        max-width: 1400px;
        grid-template-columns: 420px 1fr;
        gap: 80px;
    }
    .ak-why-content h3 { font-size: 22px; }
    .ak-why-content p  { font-size: 15px; }
}

@media (max-width: 1200px) {
    .ak-why-container {
        grid-template-columns: 320px 1fr;
        gap: 50px;
    }
    .ak-why-section { padding: 50px 40px; }
}

@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; }
}

@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; }
}

@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: 17px; }
    .ak-why-content p   { font-size: 13px; }
}

@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; }
}