﻿/* Custom styles specific to About Us page enhancements */
.glass-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.04);
}

.contact-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (hover: hover) {
    .contact-card-hover:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 12px 30px -10px rgba(37, 99, 235, 0.15);
        border-color: rgba(37, 99, 235, 0.3);
    }
}

.contact-card-active:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.9);
}

.social-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .social-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .social-btn:hover::before {
        left: 100%;
    }

.map-frame {
    filter: grayscale(0.1) contrast(1.05);
    transition: filter 0.3s ease;
}

    .map-frame:hover {
        filter: grayscale(0) contrast(1);
    }

/* Background blob animation */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.bg-blob {
    animation: float 20s infinite ease-in-out;
}
