 html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* ===== ENHANCED CAROUSEL STYLES ===== */
        .carousel-container {
            position: relative;
            width: 100vw;
            height: 85vh;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            width: 300vw;
            height: 100%;
            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel img {
            width: 100vw;
            height: 100%;
            object-fit: cover;
        }

        /* Enhanced gradient overlay */
        .carousel::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
            pointer-events: none;
        }

        .overlay-text {
            position: absolute;
            top: 50%;
            left: 20%;
            transform: translate(-50%, -50%);
            opacity: 0;
            animation: fadeIn 1.2s ease-in-out forwards;
        }

        .primary-text {
            font-size: clamp(2.5rem, 5vw, 5rem);
            font-weight: 800;
            color: white;
            margin-bottom: 10px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: -0.02em;
        }

        .secondary-text {
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 700;
            color: #2563eb;
            text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-block;
        }

        @keyframes fadeIn {
            0% { opacity: 0; transform: translate(-50%, -55%); }
            100% { opacity: 1; transform: translate(-50%, -50%); }
        }

        /* ===== ENHANCED ACTIVITIES SECTION ===== */
        .activites {
            margin-top: 4rem;
            position: relative;
            z-index: 10;
            padding: 3rem 0;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(250px, 1fr));
            gap: 2rem;
            justify-content: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        @media (max-width: 1280px) {
            .activities-grid {
                grid-template-columns: repeat(3, minmax(250px, 1fr));
            }
        }

        @media (max-width: 1024px) {
            .activities-grid {
                grid-template-columns: repeat(2, minmax(250px, 1fr));
            }
        }

        @media (max-width: 640px) {
            .activities-grid {
                grid-template-columns: repeat(1, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        .activity-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .activity-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
        }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(37,99,235,0.05) 0%, rgba(59,130,246,0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none;
        }

        .activity-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
        }

        .activity-card:hover::before {
            opacity: 1;
        }

        .image-container {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .activity-card:hover .image-container img {
            transform: scale(1.15);
        }

        .activity-details {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .activity-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #111827;
            line-height: 1.4;
        }

        .activity-info {
            font-size: 0.875rem;
            color: #6b7280;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .rating {
            font-size: 0.875rem;
            color: #fbbf24;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .price {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .old-price {
            text-decoration: line-through;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .new-price {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .show-more-btn {
            display: block;
            margin: 3rem auto;
            padding: 1rem 3rem;
            font-size: 1rem;
            font-weight: 700;
            color: white;
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
            transition: all 0.3s ease;
        }

        .show-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
        }

        /* ===== ENHANCED SUBSCRIPTION SECTION ===== */
        .subscribtion_back {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 4rem 0;
        }

        .subscription-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .subscription-container {
                grid-template-columns: 1fr;
            }
        }

        .subscription-image {
            position: relative;
            height: 100%;
            min-height: 400px;
        }

        .subscription-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .subscription-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            color: white;
        }

        .subscription-content h2 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .subscription-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 2rem;
            background: white;
            color: #2563eb;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .subscription-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
            background: #f0f9ff;
        }

        /* ===== ENHANCED REVIEWS SECTION ===== */
        .reviews-section {
            background: linear-gradient(to bottom, #f9fafb 0%, #f3f4f6 100%);
            padding: 4rem 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #3b82f6);
            border-radius: 2px;
        }

        .reviews-container {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            padding: 1rem;
            scroll-behavior: smooth;
            scrollbar-width: thin;
            scrollbar-color: #3b82f6 #e5e7eb;
        }

        .reviews-container::-webkit-scrollbar {
            height: 8px;
        }

        .reviews-container::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 10px;
        }

        .reviews-container::-webkit-scrollbar-thumb {
            background: #3b82f6;
            border-radius: 10px;
        }

        .review-card {
            min-width: 380px;
            max-width: 420px;
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: rgba(37, 99, 235, 0.05);
            font-family: Georgia, serif;
            z-index: 0;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(37, 99, 235, 0.15);
        }

        .review-stars {
            padding-bottom: 1rem;
            color: #fbbf24;
            font-size: 1.25rem;
            position: relative;
            z-index: 1;
        }

        .review-text {
            font-size: 0.95rem;
            color: #374151;
            line-height: 1.7;
            max-height: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .review-location {
            font-size: 0.875rem;
            color: #6b7280;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        /* ===== ENHANCED SPONSORS SECTION ===== */
        .sponsors-container {
            background: white;
            padding: 4rem 0;
            text-align: center;
        }

        .sponsors-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }

        .sponsors-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #3b82f6);
            border-radius: 2px;
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            max-width: 1200px;
            margin: auto;
            gap: 2rem;
            padding: 0 2rem;
        }

        .sponsor-item {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9fafb;
            border-radius: 16px;
            padding: 2rem;
            min-height: 140px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .sponsor-item:hover {
            background: white;
            border-color: #3b82f6;
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
        }

        .sponsor-item img {
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .sponsor-item:hover img {
            filter: grayscale(0%);
        }

        /* ===== MODAL ENHANCEMENTS ===== */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            width: 90%;
            max-width: 600px;
            border-radius: 20px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.3s ease-out;
            max-height: 80vh;
            overflow-y: auto;
        }

        .terms-modal-overlay {
            backdrop-filter: blur(8px);
            background: rgba(15, 23, 42, 0.6);
        }

        .terms-modal {
            border-radius: 24px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }

        /* ===== SCROLL ANIMATIONS ===== */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .carousel-container {
                height: 70vh;
            }

            .overlay-text {
                left: 50%;
            }

            .review-card {
                min-width: 300px;
            }
        }