.premium-card-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #0f0f0f;
    padding: 60px;
    border-radius: 12px;
    gap: 60px;
    overflow: hidden;
}

.premium-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-card-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 0;
}

.premium-card-desc {
    color: #a0a0a0;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.premium-card-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.premium-card-image-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-radius 0.6s ease;
    transform-style: preserve-3d;
    background: #1a1a1a;
}

.premium-card-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: 0 0 0px rgba(255, 255, 255, 0);
    transition: box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}

.premium-card-img {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

/* Hover Interactions */
.premium-card-image-container:hover .premium-card-image-wrapper {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-radius: 28px;
}

.premium-card-image-container:hover .premium-card-image-wrapper::after {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1); /* Subtle glow */
}

.premium-card-image-container:hover .premium-card-img {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .premium-card-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    
    .premium-card-title {
        font-size: 2.2rem;
    }
    
    .premium-card-desc {
        max-width: 100%;
    }
}