/* AGROLINK EXPORTS - Micro-animations & Keyframes */

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(217, 119, 6, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.pulse-gold {
    animation: pulse-glow 2s infinite;
}

.pulse-whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}

.float-anim {
    animation: float-icon 3.5s ease-in-out infinite;
}

/* Spinner for loader */
.spinner-luxury {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(200, 106, 20, 0.15);
    border-left-color: #C86A14;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hover Zoom for Gallery */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}
.gallery-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-card:hover img {
    transform: scale(1.12);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(58, 25, 12, 0.85) 0%, rgba(58, 25, 12, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-card:hover .gallery-overlay {
    opacity: 1;
}
