        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .map-region {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .map-region:hover {
            fill: #D4AF37;
            transform: scale(1.05);
        }
        .testimonial-card {
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .brand-gateway {
            transition: all 0.4s ease;
        }
        .brand-gateway:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }


        .brand-poland:hover { border-color: #1B4D3E; color: #1B4D3E; }
        .brand-morocco:hover { border-color: #D4AF37; color: #D4AF37; }
        .brand-africa:hover { border-color: #E2725B; color: #E2725B; }
        .brand-eguide:hover { border-color: #2563EB; color: #2563EB; }
        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        @media (max-width: 768px) {
            .parallax {
                background-attachment: scroll;
            }
        }
        
        /* === Custom Colors === */
.text-gold { color: #D4AF37; }
.bg-gold { background-color: #D4AF37; }

.text-dark { color: #0F0F0F; }
.bg-dark { background-color: #0F0F0F; }

.text-light-gold { color: #F4E8C1; }
.bg-light-gold { background-color: #F4E8C1; }

.text-dark-gold { color: #B8860B; }
.bg-dark-gold { background-color: #B8860B; }

/* === Custom Fonts === */
.font-serif { font-family: 'Playfair Display', serif; }
.font-sans { font-family: 'Inter', sans-serif; }

/* === Animations === */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% { transform: translateY(20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}
