        body {
            font-family: 'Quicksand', sans-serif;
        }

        .hero-gradient {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.65) 100%);
        }

        .card-hover {
            transition: all 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(242, 93, 37, 0.3);
        }

        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(242, 93, 37, 0.1);
        }

        /* Hamburger Menu Styles */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-menu.active {
            max-height: 500px;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #f25d25;
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Gallery Slider Styles */
        .gallery-slider {
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .gallery-slide {
            min-width: 100%;
            padding: 0 10px;
        }

        @media (min-width: 768px) {
            .gallery-slide {
                min-width: 50%;
            }
        }

        @media (min-width: 1024px) {
            .gallery-slide {
                min-width: 33.333%;
            }
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(242, 93, 37, 0.9);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .slider-btn:hover {
            background: rgba(242, 93, 37, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-btn-prev {
            left: 20px;
        }

        .slider-btn-next {
            right: 20px;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            object-fit: contain;
            animation: zoomIn 0.3s;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .modal-close:hover {
            color: #f25d25;
            transform: scale(1.2);
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(242, 93, 37, 0.9);
            color: white;
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .modal-nav:hover {
            background: rgba(242, 93, 37, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-nav-prev {
            left: 20px;
        }

        .modal-nav-next {
            right: 20px;
        }

        .modal-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 16px;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .modal-nav {
                width: 50px;
                height: 50px;
            }

            .modal-nav-prev {
                left: 10px;
            }

            .modal-nav-next {
                right: 10px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.5);
            }

            to {
                transform: scale(1);
            }
        }

        /* Combo Tab Styles */
        .combo-tab {
            color: #6b7280;
            white-space: nowrap;
        }

        .combo-tab.active {
            background: linear-gradient(135deg, #f25d25 0%, #ff7a47 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(242, 93, 37, 0.3);
        }

        /* Mobile Swiper Styles */
        .combo-swiper-container {
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

        .combo-swiper-container::-webkit-scrollbar {
            display: none;
        }

        .combo-card {
            scroll-snap-align: center;
            min-width: 85vw;
            max-width: 400px;
        }

        /* Laptop/Desktop optimizations */
        @media (min-width: 1024px) {
            .combo-card {
                max-width: 900px;
            }

            .combo-image-section {
                position: relative;
                overflow: hidden;
                border-radius: 1rem;
            }

            .combo-image-overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
            }
        }

        /* Accordion Styles */
        .accordion-btn {
            transition: all 0.3s;
        }

        .accordion-btn.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .accordion-content.open {
            max-height: 800px;
        }

        /* Desktop Grid - Hide on Mobile */
        @media (min-width: 768px) {
            .combo-swiper-container {
                display: none;
            }
        }