/* ===== ELITE INTRO SECTION ===== */
.elite-intro {
    background: #ffffff;

    color: var(--primary-black);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Texture Pattern (Optional subtle detail) */
.elite-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#D4AF37 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.15;
    /* Increased opacity for light background */
    pointer-events: none;
}

.elite-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Image Styling */
.elite-image-box {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 2px;
    /* Sharp elite corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Softer shadow */
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* clearer inner border */
    z-index: 1;
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.elite-image-box:hover .image-frame img {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 1rem 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Text Content */
.elite-text-box {
    padding-left: 2rem;
}

.elite-text-box .section-title {
    color: var(--primary-black);
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1.2;
}

.elite-text-box .section-subtitle {
    text-align: left;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.section-description-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    /* Soft dark grey for readability */
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Elite Features */
.elite-features {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* Dark faint border */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.feature-item span {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--primary-black);
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
    .elite-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .elite-text-box {
        padding-left: 0;
        text-align: center;
    }

    .elite-text-box .section-title,
    .elite-text-box .section-subtitle {
        text-align: center;
    }

    .elite-features {
        justify-content: center;
    }
}