.animated-slider {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 600px;
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-background {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 100%);
        }

        .slide-content {
            position: relative;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .slide-category {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-category {
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
        }

        .category-line {
            width: 80px;
            height: 2px;
            background: #F00;
        }

        .category-text {
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .slide-title {
            max-width: 800px;
            /* margin-bottom: 35px; */
        }

        .slide-title h1 {
            color: #fff;
            font-size: 30px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-title h1 {
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }

        .slide-title .highlight {
            color: #F70600;
        }

        .slide-description {
            max-width: 600px;
            margin-bottom: 15px;
        }

        .slide-description p {
            color: #e0e0e0;
            font-size: 18px;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-description p {
            animation: fadeInUp 0.8s ease-out 0.7s forwards;
        }

        .slide-button {
            opacity: 0;
            transform: translateY(30px);
        }

        .slide.active .slide-button {
            animation: fadeInUp 0.8s ease-out 0.9s forwards;
        }

        .btn-discover {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 5px 20px;
            background: #00994A;
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .btn-discover:hover {
            background: #ffc62e;
            transform: translateX(5px);
        }

        .btn-discover::after {
            content: '→';
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .btn-discover:hover::after {
            transform: translateX(5px);
        }

        .slider-navigation {
            position: absolute;
            bottom: 60px;
            right: 80px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .nav-btn:hover {
            background: #FDB714;
            border-color: #FDB714;
            color: #000;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .slide-content {
                padding: 0 40px;
            }

            .slide-title h1 {
                font-size: 56px;
            }

            .slider-navigation {
                bottom: 40px;
                right: 40px;
            }

            .nav-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .animated-slider {
                min-height: 500px;
                height: 40vh;
            }

            .slide-content {
                padding: 0 30px;
            }

            .category-line {
                width: 50px;
            }

            .category-text {
                font-size: 14px;
            }

            .slide-title h1 {
                font-size: 40px;
            }

            .slide-description p {
                font-size: 16px;
            }

            .btn-discover {
                padding: 15px 30px;
                font-size: 14px;
            }

            .slider-navigation {
                bottom: 30px;
                right: 30px;
                gap: 10px;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 480px) {
            .animated-slider {
                min-height: 440px;
            }

            .slide-content {
                padding: 0 20px;
            }

            .slide-category {
                margin-bottom: 20px;
            }

            .category-line {
                width: 40px;
            }

            .category-text {
                font-size: 12px;
            }

            .slide-title {
                margin-bottom: 0px;
            }

            .slide-title h1 {
                font-size: 18px;
                margin-bottom: 15px;
            }

            .slide-description {
                margin-bottom: 10px;
            }

            .slide-description p {
                font-size: 14px;
            }

            .btn-discover {
                padding: 5px 20px;
                font-size: 13px;
            }

            .slider-navigation {
                bottom: 20px;
                right: 20px;
            }

            .nav-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }