
        :root {
            --primary-gold: #d4af37;
            --primary-dark: #1a1a1a;
            --secondary-gray: #f8f9fa;
            --accent-blue: #2c3e50;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
            --shadow-soft: 0 20px 60px rgba(0,0,0,0.15);
            --shadow-intense: 0 30px 80px rgba(0,0,0,0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            touch-action: pan-y;
        }

        /* Enhanced Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: fixed;
            width: 100%;
            top: 0;
        }

        .navbar-scrolled {
            background: rgba(26, 26, 26, 0.98);
            backdrop-filter: blur(25px);
            box-shadow: var(--shadow-intense);
        }

        /* Hero Slider - Optimized for Mobile */
        .hero-slider {
            height: 100vh;
            position: relative;
            overflow: hidden;
            background: var(--primary-dark);
            margin-top: 56px;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        /* New Image Container Solution */
        .slide-container {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
        }

        .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
            filter: brightness(1) contrast(1) saturate(1.1);
        }

        /* Cinematic Overlay */
        .slide-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(0,0,0,0.6) 0%,
                rgba(0,0,0,0.3) 50%,
                rgba(0,0,0,0.7) 100%
            );
            z-index: 2;
        }

        /* Enhanced Content Overlay */
        .slide-content {
            position: absolute;
            bottom: 15%;
            left: 5%;
            padding: 2.5rem 2.8rem;
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            max-width: 580px;
            z-index: 10;
            color: white;
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .swiper-slide-active .slide-content {
            transform: translateY(0);
            opacity: 1;
            transition-delay: 0.2s;
        }

        .slide-content.text-end {
            left: auto;
            right: 5%;
            text-align: right;
        }

        /* Enhanced Typography with Gold */
        .slide-content h1 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 2.8rem;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            line-height: 1.3;
            text-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        .slide-content p {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 1.8rem;
            color: rgba(255, 255, 255, 0.98);
            line-height: 1.6;
            text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        }

        /* Premium Gold Button */
        .btn-minimal {
            background: var(--gradient-gold);
            border: 2px solid rgba(212, 175, 55, 0.3);
            padding: 1rem 2.2rem;
            font-size: 1.05rem;
            font-weight: 600;
            border-radius: 35px;
            color: var(--primary-dark);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-minimal::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }

        .btn-minimal:hover {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
            color: var(--primary-dark);
            border-color: rgba(212, 175, 55, 0.6);
        }

        .btn-minimal:hover::before {
            left: 100%;
        }

        /* Navigation Elements */
        .swiper-button-next,
        .swiper-button-prev {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 18px;
            font-weight: 900;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(212, 175, 55, 0.9);
            transform: scale(1.15);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
            border-color: var(--primary-gold);
        }

        /* Animated Pagination */
        .swiper-pagination {
            position: absolute;
            bottom: 40px !important;
            z-index: 10;
        }

        .swiper-pagination-bullet {
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.4);
            opacity: 1;
            margin: 0 12px !important;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .swiper-pagination-bullet::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid transparent;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .swiper-pagination-bullet-active {
            background: var(--primary-gold);
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }

        .swiper-pagination-bullet-active::before {
            border-color: var(--primary-gold);
            transform: scale(1.5);
        }

        /* Mobile Content Optimization */
        @media (max-width: 768px) {
            .hero-slider {
                height: 100vh;
            }
            .slide-content {
                left: 4%;
                right: 4%;
                padding: 1.8rem 2rem;
                max-width: 92%;
                bottom: 12%;
                background: rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(15px);
                border-radius: 16px;
            }

            .slide-content.text-end {
                right: 4%;
                left: 4%;
                text-align: left;
            }

            .slide-content h1 {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 0.8rem;
                text-shadow: 0 3px 10px rgba(212, 175, 55, 0.5);
            }

            .slide-content p {
                font-size: 1rem;
                line-height: 1.5;
                margin-bottom: 1.3rem;
                text-shadow: 0 2px 6px rgba(0,0,0,0.8);
            }

            .btn-minimal {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
                border-radius: 25px;
                font-weight: 600;
            }

            /* Mobile Navigation */
            .swiper-button-next,
            .swiper-button-prev {
                width: 45px;
                height: 45px;
                margin-top: -22.5px;
            }

            .swiper-button-next::after,
            .swiper-button-prev::after {
                font-size: 14px;
            }

            .swiper-pagination {
                bottom: 25px !important;
            }

            .swiper-pagination-bullet {
                width: 12px;
                height: 12px;
                margin: 0 8px !important;
            }
        }

        /* Small Mobile Devices */
        @media (max-width: 480px) {
            .slide-content {
                padding: 1.5rem 1.8rem;
                bottom: 10%;
            }

            .slide-content h1 {
                font-size: 1.8rem;
            }

            .slide-content p {
                font-size: 0.95rem;
            }

            .btn-minimal {
                padding: 0.6rem 1.3rem;
                font-size: 0.85rem;
            }
        }

        /* Landscape Mobile Optimization */
        @media (max-width: 768px) and (orientation: landscape) {
            .slide-image {
                width: auto;
                height: 100%;
                min-width: 100%;
            }
            
            .hero-slider {
                height: 100vh;
            }

            .slide-content {
                bottom: 8%;
                padding: 1.3rem 1.8rem;
            }

            .slide-content h1 {
                font-size: 1.6rem;
            }

            .slide-content p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }

            .btn-minimal {
                padding: 0.5rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        /* Why Choose Us Section */
        .why-choose-us {
            padding: 3rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        /* Touch Optimization */
        .swiper-slide {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .btn-minimal {
            -webkit-tap-highlight-color: rgba(0,0,0,0);
        }
