@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(2deg); }
    66% { transform: translateY(-15px) rotate(-2deg); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 0, 0.5), 0 0 40px rgba(255, 107, 0, 0.3), 0 0 60px rgba(255, 107, 0, 0.1); }
    50% { box-shadow: 0 0 30px rgba(255, 107, 0, 0.8), 0 0 60px rgba(255, 107, 0, 0.5), 0 0 90px rgba(255, 107, 0, 0.3); }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes particleFloat {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(50px, -80px) scale(1.2); opacity: 0.4; }
    100% { transform: translate(100px, -150px) scale(0.8); opacity: 0; }
}
.shamedical-banner {
    background: linear-gradient(135deg, #0047AB, #1E3A8A, #4169E1, #0066CC, #003d82);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    position: relative;
    overflow: hidden;
}
.floating-image {
    animation: floatAnimation 8s ease-in-out infinite;
}
.cta-primary {
    background: linear-gradient(135deg, #FF6B00, #FF8C00, #FFA500);
    animation: pulseGlow 2.5s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.cta-primary:hover::before {
    width: 400px;
    height: 400px;
}
.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.9), 0 10px 50px rgba(255, 107, 0, 0.5);
}
.cta-secondary {
    transition: all 0.3s ease;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}
.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}
.cta-secondary:hover::before {
    left: 100%;
}
.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}
.glass-badge {
    /*background: rgba(255, 255, 255, 0.15);*/
    backdrop-filter: blur(15px);
    /*border: 1px solid rgba(255, 255, 255, 0.25);*/
    border-radius: 60px;
    padding: 10px 20px;
    margin-bottom: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.glass-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 165, 0, 0.25));
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 10px 24px;
    border-radius: 60px;
    color: #FFD700;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    animation: scaleIn 0.6s ease-out;
}
.stats-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 20px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.glass-description {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.gradient-heading {
    background: linear-gradient(135deg, #FFFFFF, #E0E7FF, #C7D2FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.3));
}
.eu-badge {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(0, 71, 171, 0.95));
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: floatAnimation 6s ease-in-out infinite;
}
.eu-badge:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}
.banner-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}
.banner-content > *:nth-child(1) { animation-delay: 0.1s; }
.banner-content > *:nth-child(2) { animation-delay: 0.2s; }
.banner-content > *:nth-child(3) { animation-delay: 0.3s; }
.banner-content > *:nth-child(4) { animation-delay: 0.4s; }
.banner-content > *:nth-child(5) { animation-delay: 0.5s; }
.banner-content > *:nth-child(6) { animation-delay: 0.6s; }
.banner-content > *:nth-child(7) { animation-delay: 0.7s; }

@media (max-width: 991px) {
    .glass-description { padding: 24px; }
    .stats-card { padding: 16px 20px; }
}