
/* Showcase Container */
.ingots-showcase {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

/* Background Decorative Circles */
.showcase-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Ingots Container */
.ingots-container {
    position: relative;
    display: flex;
    gap: 40px;
    z-index: 2;
    perspective: 1000px;
}

/* Ingot Card */
.ingot-card {
    position: relative;
    width: 220px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.ingot-1 {
    transform: rotate(-8deg);
}

.ingot-2 {
    transform: rotate(8deg) translateY(30px);
}

.ingot-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(0deg) !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.3);
    z-index: 10;
}

/* Ingot Image */
.ingot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ingot-card:hover .ingot-image {
    transform: scale(1.1);
}

/* Glow Effect */
.ingot-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.ingot-card:hover .ingot-glow {
    opacity: 1;
}

/* Shine Effect */
.ingot-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.ingot-card:hover .ingot-shine {
    left: 100%;
    top: 100%;
}

/* Floating Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 60%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(5) {
    top: 40%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 70%;
    animation-delay: 5s;
    animation-duration: 6s;
}

/* ========================================
   FEATURES IMAGE - SHINE EFFECT
   ======================================== */

/* Features Image Container with Shine Effect */
.features-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.1);
}

/* Main Shine Animation */
.features-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 215, 0, 0.4) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    transform: skewX(-25deg);
    animation: ingotShine 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

/* Glow Pulse Effect */
.features-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.3) 0%,
        rgba(255, 223, 0, 0.2) 30%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ingotPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    filter: blur(30px);
}

/* Enhanced Image Styling */
.features-image img {
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 3;
    animation: ingotFloat 4s ease-in-out infinite;
}

.features-image:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(255, 215, 0, 0.5));
}

/* Shine Animation */
@keyframes ingotShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

/* Pulse Animation */
@keyframes ingotPulse {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Float Animation */
@keyframes ingotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .ingots-showcase {
        min-height: 400px;
    }
    
    .ingots-container {
        gap: 20px;
    }
    
    .ingot-card {
        width: 180px;
        height: 230px;
    }
    
    .features-image {
        padding: 1.5rem;
    }
    
    .features-image::before {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .ingots-showcase {
        min-height: 350px;
    }
    
    .ingots-container {
        gap: 15px;
    }
    
    .ingot-card {
        width: 150px;
        height: 200px;
    }
    
    .ingot-1 {
        transform: rotate(-5deg);
    }

    .ingot-2 {
        transform: rotate(5deg) translateY(20px);
    }
    
    .bg-circle {
        filter: blur(40px);
    }
}

@media (max-width: 576px) {
    .ingots-container {
        gap: 20px;
    }
    
    .ingot-card {
        width: 180px;
        height: 230px;
    }
}