/* Initial hidden states */

/* Home page specific styles for Frigo Express BG */


.gallery-indicator {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-indicator:hover {
    transform: scale(1.2);
}

#gallerySlider {
    will-change: transform;
    transition: transform 0.6s ease-in-out;
}

/* Custom scrollbar for any overflow */
.custom-scrollbar::-webkit-scrollbar {
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(97, 100, 79, 0.07);
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #61644F;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #CFC5B8;
}

/* Custom horizontal scrollbar for desktop */
@media (min-width: 768px) {
    .custom-scrollbar::-webkit-scrollbar {
        height: 14px;
    }

    .custom-scrollbar::-webkit-scrollbar-track {
        background: #F2F2F2;
    }
}

.service-image {
    border: 1px solid #CFC5B8;
    box-shadow: 0 4px 8px rgba(97, 100, 79, 0.2);
    border-radius: 12px;
}

/* Hero section enhancements - background removed */
.hero-gradient {
    background: transparent;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-element {
    animation: float 3s ease-in-out infinite;
}

/* Card hover effects */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #61644F;
    box-shadow: 0 20px 40px rgba(97, 100, 79, 0.15);
}

/* Button animations */
.cta-button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

/* Text animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}