.transition-hover {
        transition: all 0.3s ease-in-out;
    }
    
    .transition-hover:hover {
        transform: translateY(-5px);
    }

    .price-card {
        border: 1px solid black;
    }
    
    .price-card:hover {
        background: var(--color-primary) !important;
        transform: translateY(-2px) scale(1.025);
        z-index: 15;
        position: relative;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
    }
    
    .banner-content h2 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .banner-content p {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .image-holder img {
        transition: transform 0.3s ease-in-out;
    }
    
    .image-holder:hover img {
        transform: scale(1.05);
    }
    
    @media (max-width: 768px) {
        .banner-content {
            text-align: center !important;
        }
    }
    
    .btn {
        transition: all 0.3s ease-in-out;
        border-radius: 8px;
        padding: 12px 30px;
        font-weight: 600;
    }
    
    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    section {
        position: relative;
        overflow-x: hidden;
    }
    
    .map-container {
        position: relative;
    }
    
    .chevron-forward-circle,
    .chevron-back-circle {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.2s ease;
        fill: var(--color-primary);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .chevron-forward-circle:hover,
    .chevron-back-circle:hover {
        background: var(--color-primary);
        fill: white;
        transform: scale(1.05);
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
    
    .swiper-slide {
        height: auto;
    }
    
    #billboard {
        position: relative;
        overflow: hidden;
    }
    
    #billboard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }
    
    #billboard .container {
        position: relative;
        z-index: 2;
    }
