/* contact us cards */
.addressCard {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.addressCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
}

.addressCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.addressInfoCards .card-2 {
    /* background: linear-gradient(135deg, #FFD166 0%, #FF9A5A 50%, #FF6B6B 100%); */
    /* background: linear-gradient(135deg, #A8E6A3 0%, #6FAF6A 50%, #2D4E28 100%); */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.addressInfoCards .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.addressInfoCards .addressCard:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.addressInfoCards .glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(30px);
    animation: pulse 4s infinite alternate;
    opacity: 0;
    transition: all 0.5s ease;
}

.addressInfoCards .addressCard:hover .glow {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
}