        /* Premium Slider Styles */
        .premium-slider-section {
            position: relative;
            margin-top: 0;
            height: 100vh;
            min-height: 600px;
            max-height: 800px;
            overflow: hidden;
        }

        .premium-slider-container {
            width: 100%;
            height: 100%;
        }

        .premium-hero-slider {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 90%;
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 0 20px;
            max-width: 800px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideContentFadeIn 1s ease 0.3s forwards;
        }

        @keyframes slideContentFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-title {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .slide-subtitle {
            font-family: 'Quicksand', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            opacity: 0.9;
        }

        .slide-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #a7cf38 0%, #8bb82e 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(167, 207, 56, 0.3);
        }

        .slide-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(167, 207, 56, 0.4);
            background: linear-gradient(135deg, #8bb82e 0%, #a7cf38 100%);
        }

        /* Swiper Navigation */
        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(167, 207, 56, 0.8);
            transform: scale(1.1);
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: #a7cf38;
            transform: scale(1.2);
        }

        /* Autoplay Progress */
        .swiper-autoplay-progress {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            z-index: 10;
        }

        .swiper-autoplay-progress-bar {
            height: 100%;
            background: #a7cf38;
            border-radius: 2px;
            width: 0;
            transition: width 0.1s linear;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .premium-slider-section {
                height: 80vh;
                min-height: 500px;
            }

            .slide-title {
                font-size: 2.8rem;
            }

            .slide-subtitle {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .premium-slider-section {
                height: 70vh;
                min-height: 400px;
            }

            .slide-title {
                font-size: 2.2rem;
            }

            .slide-subtitle {
                font-size: 1.1rem;
            }

            .slide-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .premium-slider-section {
                height: 60vh;
                min-height: 300px;
            }

            .slide-title {
                font-size: 1.8rem;
            }

            .slide-subtitle {
                font-size: 1rem;
            }

            .slide-content {
                padding: 0 15px;
            }
        }

        /* Remove content on specific breakpoint if needed */
        @media (max-width: 480px) {
            .slide-content {
                /* Uncomment below to hide content on very small screens */
                /* display: none; */
            }
        }