/* ================================================================
   EEA Features Showcase — Header + image + checklist + CTA
   ================================================================ */

.eea-feat {
    --eea-feat-navy:    #080872;
    --eea-feat-gold:    #C7A73E;
    --eea-feat-white:   #ffffff;
    --eea-feat-ink:     #1a1a2e;
    --eea-feat-mute:    #6b6b80;
    --eea-feat-accent:  #C7A73E;
    --eea-feat-primary: #080872;
    --eea-feat-ease:    cubic-bezier(.2, .8, .2, 1);

    position: relative;
    width: 100%;
    padding: 120px 32px;
    color: var(--eea-feat-ink);
    font-family: 'Montserrat', 'Poppins', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    isolation: isolate;
    background: var(--eea-feat-white);
}

.eea-feat,
.eea-feat *,
.eea-feat *::before,
.eea-feat *::after {
    box-sizing: border-box;
}

.eea-feat ul,
.eea-feat li {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.eea-feat a {
    color: inherit;
    text-decoration: none !important;
}

.eea-feat img {
    display: block;
    max-width: 100%;
    height: auto;
}

.eea-feat p { margin: 0; }

/* Full-width breakout */
.eea-feat--fullwidth {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Subtle bg atmosphere */
.eea-feat--blob::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(closest-side, rgba(199, 167, 62, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
}

.eea-feat--blob::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(closest-side, rgba(8, 8, 114, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
}

.eea-feat__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ================================================================
   HEADER
   ================================================================ */
.eea-feat__header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.eea-feat__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--eea-feat-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}

.eea-feat__script {
    position: relative;
    font-family: 'Baskervville', 'GFS Didot', Georgia, serif;
    font-size: clamp(28px, 4vw, 42px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.15;
    color: var(--eea-feat-accent);
    margin: 0 0 24px;
    display: inline-block;
    padding-bottom: 14px;
}

.eea-feat--script-underline .eea-feat__script::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70%;
    height: 1.5px;
    background: var(--eea-feat-accent);
    transform: translateX(-50%);
    border-radius: 1.5px;
}

.eea-feat__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #3a3a55;
    margin: 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================
   BODY — 2-column grid
   ================================================================ */
.eea-feat__body {
    display: grid;
    grid-template-columns: 48% 1fr;
    gap: 60px;
    align-items: center;
}

.eea-feat-img-right .eea-feat__body {
    grid-template-columns: 1fr 48%;
}

.eea-feat-img-right .eea-feat__media   { order: 2; }
.eea-feat-img-right .eea-feat__content { order: 1; }
.eea-feat-img-left  .eea-feat__media   { order: 1; }
.eea-feat-img-left  .eea-feat__content { order: 2; }

/* ================================================================
   IMAGE
   ================================================================ */
.eea-feat__media {
    position: relative;
    width: 100%;
    margin: 0;
}

.eea-feat__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 26px 70px -10px rgba(8, 8, 114, 0.22);
    aspect-ratio: 4 / 3;
    background: #f4f4fb;
}

.eea-feat__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s var(--eea-feat-ease);
}

.eea-feat__media:hover .eea-feat__image img {
    transform: scale(1.04);
}

/* Gold corner accents */
.eea-feat__corner {
    position: absolute;
    width: 56px;
    height: 56px;
    z-index: 2;
    pointer-events: none;
    opacity: .8;
}

.eea-feat__corner--tl {
    top: -16px;
    left: -16px;
    border-top: 2px solid var(--eea-feat-accent);
    border-left: 2px solid var(--eea-feat-accent);
}

.eea-feat__corner--br {
    bottom: -16px;
    right: -16px;
    border-bottom: 2px solid var(--eea-feat-accent);
    border-right: 2px solid var(--eea-feat-accent);
}

/* ================================================================
   CONTENT — checklist + buttons
   ================================================================ */
.eea-feat__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.eea-feat__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.eea-feat__item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .3s var(--eea-feat-ease);
}

a.eea-feat__item:hover {
    transform: translateX(4px);
}

.eea-feat__check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(199, 167, 62, 0.15);
    border: 1.5px solid var(--eea-feat-accent);
    color: var(--eea-feat-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--eea-feat-ease);
}

.eea-feat__check svg,
.eea-feat__check i {
    width: 14px;
    height: 14px;
    color: inherit;
    fill: none;
    stroke: currentColor;
}

.eea-feat__check i {
    font-size: 14px;
    stroke: none;
    fill: currentColor;
}

.eea-feat__check svg path { stroke: currentColor; }

.eea-feat__item:hover .eea-feat__check {
    background: var(--eea-feat-accent);
    color: var(--eea-feat-white);
    transform: rotate(8deg) scale(1.05);
}

.eea-feat__item:hover .eea-feat__check svg path {
    stroke: var(--eea-feat-white);
}

.eea-feat__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--eea-feat-ink);
    transition: color .3s var(--eea-feat-ease);
}

/* ================================================================
   BUTTONS
   ================================================================ */
.eea-feat__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
    margin-top: 8px;
}

.eea-feat__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none !important;
    transition: background .3s var(--eea-feat-ease), color .3s var(--eea-feat-ease), border-color .3s var(--eea-feat-ease), transform .3s var(--eea-feat-ease), box-shadow .3s var(--eea-feat-ease);
}

.eea-feat__btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform .3s var(--eea-feat-ease);
}

.eea-feat__btn:hover {
    transform: translateY(-2px);
}

.eea-feat__btn:hover svg {
    transform: translateX(4px);
}

.eea-feat__btn--primary {
    background: var(--eea-feat-accent);
    color: var(--eea-feat-primary);
    border-color: var(--eea-feat-accent);
    box-shadow: 0 12px 28px rgba(199, 167, 62, 0.28);
}

.eea-feat__btn--primary:hover {
    background: var(--eea-feat-primary);
    color: var(--eea-feat-white);
    border-color: var(--eea-feat-primary);
    box-shadow: 0 16px 32px rgba(8, 8, 114, 0.30);
}

.eea-feat__btn--secondary {
    background: transparent;
    color: var(--eea-feat-primary);
    border-color: var(--eea-feat-primary);
}

.eea-feat__btn--secondary:hover {
    background: var(--eea-feat-primary);
    color: var(--eea-feat-white);
}

/* ================================================================
   ELEMENTOR / THEME GUARDS
   ================================================================ */
.elementor-page .eea-feat a,
.e-con .eea-feat a {
    text-decoration: none !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .eea-feat__body {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .eea-feat {
        padding: 64px 20px;
    }
    .eea-feat__header {
        margin-bottom: 40px;
    }
    .eea-feat__body,
    .eea-feat-img-right .eea-feat__body,
    .eea-feat-img-left  .eea-feat__body {
        grid-template-columns: 1fr !important;
        gap: 36px;
    }
    .eea-feat-img-right .eea-feat__media,
    .eea-feat-img-left  .eea-feat__media {
        order: 1;
    }
    .eea-feat-img-right .eea-feat__content,
    .eea-feat-img-left  .eea-feat__content {
        order: 2;
    }
    .eea-feat__image {
        aspect-ratio: 4 / 3;
        max-width: 520px;
        margin: 0 auto;
    }
    .eea-feat__corner {
        width: 40px;
        height: 40px;
    }
    .eea-feat__corner--tl { top: -10px; left: -10px; }
    .eea-feat__corner--br { bottom: -10px; right: -10px; }
    .eea-feat__buttons {
        justify-content: center;
        width: 100%;
    }
    .eea-feat__btn {
        width: 100%;
    }
    .eea-feat__text {
        font-size: 16px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .eea-feat,
    .eea-feat *,
    .eea-feat *::before,
    .eea-feat *::after {
        animation: none !important;
        transition: none !important;
    }
}
