/* ============================================================
   🔒 FULLY SCOPED — .exp-section prefix on every rule
   Zero bleed to any other section on the page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── scoped box-sizing reset ── */
.exp-section *,
.exp-section *::before,
.exp-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ══════════════════════════════
   SECTION SHELL
══════════════════════════════ */
.exp-section {
    font-family: 'Raleway', sans-serif;
    background: #f0ede8;
    width: 100%;
    overflow: hidden;
}

/* ══════════════════════════════
   TOP HALF — features + image
══════════════════════════════ */
.exp-section .exp-top {
    position: relative;
    padding: clamp(50px, 7vw, 90px) clamp(20px, 6vw, 80px) 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Header text ── */
.exp-section .exp-eyebrow {
    text-align: center;
    font-size: clamp(12px, 1.1vw, 14px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c4960a;
    margin-bottom: 10px;
}

.exp-section .exp-heading {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3.5vw, 44px);
    font-weight: 700;
    color: #1a2a5e;
    margin-bottom: clamp(40px, 6vw, 80px);
    line-height: 1.2;
}

/* ── 3-column grid: left features | image | right features ── */
.exp-section .exp-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 clamp(20px, 3vw, 50px);
    align-items: center;
    position: relative;
}

/* ── Feature columns ── */
.exp-section .exp-col {
    display: flex;
    flex-direction: column;
    gap: clamp(30px, 4vw, 56px);
}

.exp-section .exp-col.right .exp-feature {
    flex-direction: row;
    text-align: left;
}

.exp-section .exp-col.left .exp-feature {
    flex-direction: row-reverse;
    text-align: right;
}

/* ── Single feature card ── */
.exp-section .exp-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.exp-section .exp-feature-icon {
    flex-shrink: 0;
    width: clamp(54px, 6vw, 72px);
    height: clamp(54px, 6vw, 72px);
    background: #fff;
    border: 1.5px solid rgba(26, 42, 94, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(22px, 2.5vw, 30px);
    box-shadow: 0 4px 20px rgba(26, 42, 94, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.exp-section .exp-feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 150, 10, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.exp-section .exp-feature:hover .exp-feature-icon {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(196, 150, 10, 0.2);
    border-color: rgba(196, 150, 10, 0.35);
}

.exp-section .exp-feature:hover .exp-feature-icon::before {
    opacity: 1;
}

.exp-section .exp-feature-text h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(13px, 1.3vw, 16px);
    font-weight: 700;
    color: #1a2a5e;
    margin-bottom: 6px;
    line-height: 1.3;
}

.exp-section .exp-feature-text p {
    font-size: clamp(12px, 1.1vw, 14px);
    color: #6b7280;
    line-height: 1.65;
    font-weight: 400;
}

/* ── Center image ── */
.exp-section .exp-img-wrap {
    position: relative;
    width: clamp(200px, 28vw, 380px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
}

.exp-section .exp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 -8px 30px rgba(26, 42, 94, 0.12));
}

/* Decorative circle behind image */
.exp-section .exp-img-ring {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,150,10,0.08) 0%, rgba(26,42,94,0.05) 60%, transparent 100%);
    border: 1.5px dashed rgba(196, 150, 10, 0.2);
    animation: expRingPulse 6s ease-in-out infinite;
    z-index: 1;
}

.exp-section .exp-img-ring::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(26, 42, 94, 0.08);
    animation: expRingPulse 8s ease-in-out infinite reverse;
}

/* ══════════════════════════════
   BOTTOM HALF — stats bar
══════════════════════════════ */
.exp-section .exp-stats {
    background: #0f0d1e;
    padding: clamp(36px, 5vw, 60px) clamp(20px, 6vw, 80px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    overflow: hidden;
}

/* subtle star texture */
.exp-section .exp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.7) 1px, transparent 1px),
        radial-gradient(circle, rgba(196,150,10,0.4) 1px, transparent 1px);
    background-size: 90px 90px, 150px 150px;
    background-position: 0 0, 45px 75px;
    opacity: 0.12;
    pointer-events: none;
}

/* gold accent line at top of stats bar */
.exp-section .exp-stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c4960a, #ffd700, #c4960a, transparent);
}

/* centre divider — image straddles the boundary */
.exp-section .exp-stats-center-slot {
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-section .exp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    text-align: center;
}

.exp-section .exp-stat-num {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.exp-section .exp-stat-num span {
    color: #c4960a;
}

.exp-section .exp-stat-label {
    font-size: clamp(12px, 1.1vw, 15px);
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ══════════════════════════════
   KEYFRAMES (exp- prefixed)
══════════════════════════════ */
@keyframes expRingPulse {
    0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.7; }
    50%       { transform: translateX(-50%) scale(1.04); opacity: 1; }
}

@keyframes expCountUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
    .exp-section .exp-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 30px 24px;
    }

    .exp-section .exp-img-wrap {
        grid-column: 1 / -1;
        order: -1;
        width: clamp(160px, 50vw, 280px);
        margin: 0 auto;
    }

    .exp-section .exp-col.left .exp-feature,
    .exp-section .exp-col.right .exp-feature {
        flex-direction: row;
        text-align: left;
    }

    .exp-section .exp-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .exp-section .exp-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .exp-section .exp-stat-num {
        font-size: clamp(32px, 10vw, 48px);
    }
}