
        

        /* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            overflow: hidden;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
            width: 100%;
            max-width: 900px;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 8vw, 4.5rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-content h1 span {
            color: var(--accent-gold);
            display: inline;
        }

        /* Swiper Slider */
        .swiper {
            width: 100%;
            height: 100vh;
        }

        .swiper-slide {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background-image: center;
            transition: transform 4s ease-out;
        }

        .swiper-slide-active .slide-image {
            transform: scale(1.05);
        }

        /* Overlay for text readability */
        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(26, 26, 26, 0.1) 100%);
            z-index: 5;
        }

        /* Navigation Arrows */
        .swiper-button-prev,
        .swiper-button-next {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            color: var(--accent-gold);
            backdrop-filter: blur(10px);
            transition: all var(--transition);
            z-index: 20;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: rgba(212, 175, 55, 0.3);
            transform: scale(1.1);
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 20px;
            font-weight: bold;
        }

        /* Pagination Dots */
        .swiper-pagination {
            bottom: 40px !important;
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 20;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.4);
            opacity: 1;
            border-radius: 50%;
            transition: all var(--transition);
            border: 2px solid transparent;
        }

        .swiper-pagination-bullet-active {
            width: 32px;
            background: var(--accent-gold);
            border-radius: 6px;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: clamp(1.5rem, 6vw, 2.5rem);
                margin-bottom: 1.5rem;
            }

            .swiper-button-prev,
            .swiper-button-next {
                width: 40px;
                height: 40px;
            }

            .swiper-button-prev::after,
            .swiper-button-next::after {
                font-size: 16px;
            }

            .swiper-pagination {
                bottom: 20px !important;
            }

            .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
            }

            .swiper-pagination-bullet-active {
                width: 28px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: clamp(1.2rem, 5vw, 1.8rem);
            }

            .swiper-button-prev,
            .swiper-button-next {
                width: 35px;
                height: 35px;
                display: none; /* Hide on very small screens */
            }
        }
    