.hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://img.freepik.com/free-vector/3d-earth-graphic-symbolizing-global-trade-illustration_456031-125.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: radial-gradient(
        circle at center,
        var(--primary-gold) 0%,
        transparent 70%
    );
    opacity: 0.1;
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(245, 185, 65, 0.2) 0%,
        rgba(59, 138, 196, 0.2) 50%,
        rgba(10, 25, 41, 0.3) 100%
    );
    mix-blend-mode: overlay;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
} 