@keyframes zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.animate-zoom {
    animation: zoom 15s infinite alternate linear;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 3rem 2rem;
    border-radius: 2rem;
    transition: all 0.5s ease;
}

.glass-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.15);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    width: 100%;
    height: 300px;
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.gallery-img:hover {
    transform: scale(0.98);
    opacity: 0.9;
}

@keyframes pulse-custom {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.animate-pulse-custom {
    animation: pulse-custom 2s infinite;
}

.mobile-link {
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #1d4ed8;
}

@keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fade-in 0.4s ease-out forwards;
}