/* ===== EXHIBIT PROFILE PAGE ===== */

/* ===== BANNER ===== */
.ep-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.08) 0%, rgba(217, 119, 6, 0.06) 50%, rgba(5, 150, 105, 0.04) 100%);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(3px);
}


.ep-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
    animation: epFadeInUp 0.8s ease-out both;
}

.ep-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.25);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: epFadeInUp 0.8s 0.15s ease-out both;
}

.ep-banner-tag .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: epPulse 2s ease-in-out infinite;
}

.ep-banner-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
    /* background: linear-gradient(85deg, #059669 25%, #d97706 50%, #059669 75%); */
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: epShimmer 4s ease-in-out infinite, epFadeInUp 0.8s 0.25s ease-out both;
}

.ep-banner-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: epFadeInUp 0.8s 0.35s ease-out both;
}

.ep-banner-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    border-radius: 2px;
    margin: 24px auto 0;
    animation: epExpandLine 0.8s 0.5s ease-out both;
}

/* ===== MAIN CONTENT ===== */
.ep-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

/* Left: Categories */
.ep-categories {
    display: flex;
    flex-direction: column;
    gap: 36px;
    animation: epFadeInUp 0.8s 0.4s ease-out both;
}

.ep-category {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 32px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(20px);
    animation: epFadeInUp 0.6s ease-out forwards;
}

.ep-category:nth-child(1) {
    animation-delay: 0.5s;
}

.ep-category:nth-child(2) {
    animation-delay: 0.6s;
}

.ep-category:nth-child(3) {
    animation-delay: 0.7s;
}

.ep-category:hover {
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 12px 32px rgba(5, 150, 105, 0.06);
    transform: translateY(-4px);
}

.ep-category-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1.4;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ep-category-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-gold));
    border-radius: 2px;
    flex-shrink: 0;
}

.ep-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ep-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.ep-list-item:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.ep-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.ep-check svg {
    width: 11px;
    height: 11px;
    color: #fff;
    stroke-width: 3;
}

/* Right: Image Collage */
.ep-collage {
    position: sticky;
    top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    animation: epFadeInUp 0.8s 0.6s ease-out both;
}

.ep-collage-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    aspect-ratio: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    animation: epScaleIn 0.6s ease-out forwards;
}

.ep-collage-item:nth-child(1) {
    animation-delay: 0.7s;
}

.ep-collage-item:nth-child(2) {
    animation-delay: 0.8s;
}

.ep-collage-item:nth-child(3) {
    animation-delay: 0.9s;
}

.ep-collage-item:nth-child(4) {
    animation-delay: 1.0s;
}

.ep-collage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    z-index: 2;
}

.ep-collage-item:hover {
    border-color: var(--glass-border-hover);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    z-index: 2;
}

.ep-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ep-collage-item:hover img {
    transform: scale(1.12);
}

.ep-collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 47, 102, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.ep-collage-item:hover .ep-collage-overlay {
    opacity: 1;
}

.ep-collage-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.ep-collage-item:hover .ep-collage-label {
    opacity: 1;
    transform: translateY(0);
}

/* CTA */
.ep-cta {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: epFadeInUp 0.8s 1.1s ease-out both;
}

.ep-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-amber));
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.25);
}

.ep-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ep-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(217, 119, 6, 0.35);
    color: #fff;
}

.ep-btn-primary:hover::before {
    left: 100%;
}

.ep-btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.ep-btn-primary:hover svg {
    transform: translateX(4px);
}

.ep-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: var(--text-primary);
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
}

.ep-btn-secondary:hover {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.3);
    transform: translateY(-3px);
    color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes epFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes epScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes epShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes epPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@keyframes epFloatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.98);
    }
}

@keyframes epExpandLine {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ep-content {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 24px;
    }

    .ep-collage {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .ep-banner {
        min-height: 260px;
    }

    .ep-content {
        padding: 40px 16px;
    }

    .ep-category {
        padding: 20px 20px;
    }

    .ep-category-title {
        font-size: 15px;
    }

    .ep-list-item {
        font-size: 14px;
    }

    .ep-collage {
        gap: 8px;
    }

    .ep-collage-item {
        border-radius: 14px;
    }

    .ep-cta {
        flex-direction: column;
    }

    .ep-btn-primary,
    .ep-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .ep-banner-content,
    .ep-banner-tag,
    .ep-banner-title,
    .ep-banner-subtitle,
    .ep-banner-line,
    .ep-category,
    .ep-collage-item,
    .ep-cta {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .ep-orb {
        animation: none;
    }
}