/* Location Cards Plugin CSS */
        .dynamic-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            perspective: 1000px;
            margin: 0 auto;
            padding: 1.5rem;
            max-width: 1400px;
        }

        @media (max-width: 1200px) {
            .dynamic-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.25rem;
                padding: 1.25rem;
            }
        }

        @media (max-width: 768px) {
            .dynamic-cards {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 1rem;
            }
        }

        .location-card {
            position: relative;
            height: 280px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }

        .location-card.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .location-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .card-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.6s ease;
        }

        .location-card:hover .card-background {
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.3);
            transition: background 0.3s ease;
        }

        .location-card:hover .card-overlay {
            background: rgba(0,0,0,0.7);
        }

        .card-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 1.5rem;
            color: white;
            z-index: 3;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .location-name {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            /* border: 2px solid white; */
            padding: 0.4rem 0.8rem;
            display: inline-block;
            text-align: center !important;
            margin:0px auto;
            /* background: transparent; */
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(-40px);

        }
        
        .location-card:hover .location-name {
            transform: translateY(-40px);
            /*background: rgba(255,255,255,0.1);*/
            position:relative;
            
        }
        .content-frame{
            /* border:1.5px solid #fff; */
             border-bottom:.8px solid #fff;
            border-left: .8px solid #fff;
            border-right: .8px solid #fff;
            transition: border 0.4s ease;
            max-height:20px;
            text-align: center;
            position:relative;
        }
       .location-card:hover .content-frame{
            border-bottom:.8px solid #fff;
            border-left: .8px solid #fff;
            border-right: .8px solid #fff;
            border-top: .8px solid transparent;
            height:auto;
            max-height: 400px;
        }
        /* .location-card:hover .content-frame::before{ */
        .content-frame::before{
            content:'';
            display:block;
            backdrop-filter: blur(30px);
            background:white;
            position: absolute;
            top:-2px;
            left:-1px;
            width:30px;
            height: 2px;
            z-index: -1;
        }
        .content-frame::after{
        /* .location-card:hover .content-frame::after{ */
            content:'';
            display:block;
            backdrop-filter: blur(30px);
            background: white;
            position: absolute;
            top:-2px;
            right:-1px;
            width:30px;
            height: 2px;
            z-index: -1;
        }
        /* .location-card:hover .location-name::before{
            content:'';
            display:block;
            backdrop-filter: blur(30px);
            background: rgba(255,255,255,0.1);;
            position: absolute;
            bottom:27px;
            width:100%;
            height: 2px;
            z-index: -1;


        } */
      .location-categories {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.location-card:hover .location-categories {
    opacity: 1;
    transform: translateY(-40px);
}

.location-card:hover .category-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for category items */
.location-card:hover .category-item:nth-child(1) {
    transition-delay: 0.1s;
}

.location-card:hover .category-item:nth-child(2) {
    transition-delay: 0.2s;
}

.location-card:hover .category-item:nth-child(3) {
    transition-delay: 0.3s;
}

.location-card:hover .category-item:nth-child(4) {
    transition-delay: 0.4s;
}

.location-card:hover .category-item:nth-child(5) {
    transition-delay: 0.5s;
}

.category-item:hover {
    transform: translateY(-6px) !important;
    transition-delay: 0s !important;
}
        .category-icon {
            width: 24px;
            height: 24px;
            fill: white;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5));
        }

        .category-label {
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        /* Loading shimmer animation */
        .loading-shimmer {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
            border-radius: 15px;
            height: 300px;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        /* Staggered animation delays */
        .location-card:nth-child(1) { transition-delay: 0ms; }
        .location-card:nth-child(2) { transition-delay: 150ms; }
        .location-card:nth-child(3) { transition-delay: 300ms; }
        .location-card:nth-child(4) { transition-delay: 450ms; }
        .location-card:nth-child(5) { transition-delay: 600ms; }
        .location-card:nth-child(6) { transition-delay: 750ms; }
        .location-card:nth-child(n+7) { transition-delay: 900ms; }

        /* Responsive adjustments */
        @media (max-width: 480px) {
            .location-card {
                height: 250px;
            }
            
            .card-content {
                padding: 1.5rem;
            }
            
            .location-name {
                font-size: 1.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            .location-categories {
                gap: 1.5rem;
            }
        }

        /* Home Button Styles */
        .home-button-container {
            /* margin-top: 1rem; */
            text-align: center;
            opacity: 0;
            width: 100%;
            transition: all 0.4s ease;
        }

        .location-card:hover .home-button-container {
            opacity: 1;
        }

        .home-button {
            display: inline-block;
            background: transparent;
            color: white;
            text-decoration: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            width: 100%;
            box-shadow: none;
        }

        .home-button:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
            border-color: white;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .home-button:active {
            transform: translateY(0);
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .home-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.8rem;
            }
        }