        :root {
            --primary-gold: #b89e7d;
            --deep-black: #0a0a0a;
            --rich-gray: #1a1a1a;
            --accent-blue: #2c5aa0;
            --text-light: #f8f9fa;
            --gradient-gold: linear-gradient(135deg, #b89e7d, #c4a87e, #a08a6b);
            --gradient-dark: linear-gradient(135deg, #0a0a0a, #1a1a1a, #2a2a2a);
            
            /* Typography System */
            --font-display: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --font-accent: 'Roboto Condensed', sans-serif;
            
            /* Font Sizes */
            --text-xs: 0.75rem;
            --text-sm: 0.875rem;
            --text-base: 1rem;
            --text-lg: 1.125rem;
            --text-xl: 1.25rem;
            --text-2xl: 1.5rem;
            --text-3xl: 1.875rem;
            --text-4xl: 2.25rem;
            --text-5xl: 3rem;
            --text-6xl: 3.75rem;
            --text-7xl: 4.5rem;
            --text-8xl: 6rem;
            
            /* Line Heights */
            --leading-tight: 1.25;
            --leading-snug: 1.375;
            --leading-normal: 1.5;
            --leading-relaxed: 1.625;
            --leading-loose: 2;
            
            /* Letter Spacing */
            --tracking-tighter: -0.05em;
            --tracking-tight: -0.025em;
            --tracking-normal: 0em;
            --tracking-wide: 0.025em;
            --tracking-wider: 0.05em;
            --tracking-widest: 0.1em;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            font-weight: 400;
            background: var(--deep-black);
            color: var(--text-light);
            overflow-x: hidden;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .loading-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    animation: pulse 2s infinite;
    margin-top: 2rem;
    color: var(--primary-gold);
}
/* ========================================= */
        /* Enhanced Navigation */
        .navbar {
            backdrop-filter: blur(20px);
            background: rgba(10, 10, 10, 0.9) !important;
            border-bottom: 1px solid rgba(184, 158, 125, 0.1);
            transition: all 0.4s ease;
            animation: navSlideDown 0.8s ease-out;
            padding: 1rem 0;
            min-height: 80px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .navbar .container {
            position: relative;
        }

        .navbar .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: width 0.6s ease;
        }

        .navbar:hover .container::before {
            width: 100%;
        }

        @keyframes navSlideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .navbar-brand {
            font-family: var(--font-display);
            font-size: var(--text-3xl);
            font-weight: 700;
            letter-spacing: var(--tracking-wide);
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: brandGlow 2s ease-in-out infinite alternate;
            text-transform: none;
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
        }

        .navbar-brand img {
            height: 60px !important;
            width: auto;
            transition: all 0.4s ease;
            filter: drop-shadow(0 2px 8px rgba(184, 158, 125, 0.3));
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 12px rgba(184, 158, 125, 0.5));
        }

        @keyframes brandGlow {
            from {
                filter: drop-shadow(0 0 5px rgba(184, 158, 125, 0.5));
            }
            to {
                filter: drop-shadow(0 0 15px rgba(184, 158, 125, 0.8));
            }
        }

        .nav-link {
            position: relative;
            color: var(--text-light) !important;
            font-family: var(--font-accent);
            font-weight: 600;
            font-size: var(--text-base);
            letter-spacing: var(--tracking-wide);
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
            padding: 0.75rem 1.25rem !important;
            margin: 0 0.25rem;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: var(--primary-gold) !important;
            transform: translateY(-3px);
            background: rgba(184, 158, 125, 0.1);
            box-shadow: 0 4px 12px rgba(184, 158, 125, 0.2);
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184, 158, 125, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .nav-link:hover::before {
            left: 100%;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-gold);
            transition: all 0.4s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Contact Information Styling */
        .contact-info {
            padding: 0.5rem 1rem;
            border-radius: 12px;
            background: rgba(184, 158, 125, 0.05);
            border: 1px solid rgba(184, 158, 125, 0.1);
            transition: all 0.4s ease;
        }

        .contact-info:hover {
            background: rgba(184, 158, 125, 0.1);
            border-color: rgba(184, 158, 125, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(184, 158, 125, 0.2);
        }

        .phone-number {
            font-family: var(--font-accent);
            font-weight: 600;
            font-size: var(--text-sm);
            letter-spacing: var(--tracking-wide);
            color: var(--text-light) !important;
        }

        .phone-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(184, 158, 125, 0.1);
            transition: all 0.4s ease;
            animation: phoneRing 2s ease-in-out infinite;
        }

        .phone-icon:hover {
            background: rgba(184, 158, 125, 0.2);
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(184, 158, 125, 0.3);
        }

        @keyframes phoneRing {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(-5deg);
            }
            75% {
                transform: rotate(5deg);
            }
        }

 

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .navbar-brand img {
                height: 50px !important;
            }
            
            .nav-link {
                font-size: var(--text-sm);
                padding: 0.5rem 1rem !important;
            }
            
            .contact-info {
                padding: 0.25rem 0.75rem;
            }
            
            .phone-number {
                font-size: var(--text-xs);
            }
            
            .phone-icon svg {
                width: 24px;
                height: 24px;
            }
        }

        /* Hero Carousel - Enhanced Cross-Browser Responsive */
        .hero-carousel {
            position: relative;
            height: 100vh;
            overflow: hidden;
            /* Cross-browser compatibility */
            -webkit-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -ms-transform: translateZ(0);
            -o-transform: translateZ(0);
            transform: translateZ(0);
            /* Prevent horizontal scroll on mobile */
            max-width: 100vw;
        }

        .carousel-item {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Ensure content is properly positioned */
            overflow: hidden;
            /* Cross-browser flexbox support */
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: flex;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            align-items: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            justify-content: center;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
            -webkit-transition: opacity 0.5s ease;
            -moz-transition: opacity 0.5s ease;
            -o-transition: opacity 0.5s ease;
            /* Cross-browser object-fit support */
            -webkit-object-fit: cover;
            -moz-object-fit: cover;
            -ms-object-fit: cover;
            object-fit: cover;
            /* Fallback for older browsers */
            min-width: 100%;
            min-height: 100%;
            /* Mobile video optimization */
            -webkit-transform: scale(1.01);
            -moz-transform: scale(1.01);
            -ms-transform: scale(1.01);
            -o-transform: scale(1.01);
            transform: scale(1.01);
            /* Video loading state */
            background: #000;
            /* Ensure video is visible when loaded */
            will-change: opacity;
        }

        /* Video loading and error states */
        .hero-video.loading {
            opacity: 0;
        }

        .hero-video.loaded {
            opacity: 1;
        }

        .hero-video.error {
            opacity: 0;
            /* Fallback background when video fails to load */
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        /* Video fallback for browsers that don't support video */
        .hero-video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            z-index: 1;
            display: none;
        }

        .no-video .hero-video-fallback {
            display: block;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(10, 10, 10, 0.85) 0%,
                rgba(26, 26, 26, 0.7) 50%,
                rgba(10, 10, 10, 0.95) 100%
            );
            z-index: 2;
            /* Enhanced overlay for better text readability */
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            /* Additional darkening for better text contrast */
            box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
            /* Cross-browser gradient support */
            background: -webkit-linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
            background: -moz-linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
            background: -ms-linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(10, 10, 10, 0.95) 100%);
        }

        .hero-content {
            position: relative;
            text-align: center;
            max-width: 900px;
            padding: 2rem;
            z-index: 10;
            animation: heroContentEntry 1.5s ease-out;
            /* Ensure text is always visible */
            color: var(--text-light);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            /* Enhanced positioning and visibility */
            display: flex;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            flex-direction: column;
            -webkit-flex-direction: column;
            -moz-flex-direction: column;
            -ms-flex-direction: column;
            justify-content: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            align-items: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            min-height: 100vh;
            /* Ensure content is above overlay */
            position: relative;
            z-index: 15;
            /* Mobile optimization */
            width: 100%;
            box-sizing: border-box;
            /* Prevent text overflow */
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: var(--text-7xl);
            font-weight: 800;
            line-height: var(--leading-tight);
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
            text-transform: none;
            letter-spacing: var(--tracking-wider);
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
            animation: titleSlideIn 1.2s ease-out 0.3s both;
            /* Ensure text is always visible */
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9));
        }



        .hero-subtitle {
            font-family: var(--font-body);
            font-size: var(--text-xl);
            margin-bottom: 2.5rem;
            color: var(--primary-gold);
            font-weight: 300;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
            animation: subtitleFadeIn 1s ease-out 0.6s both;
            /* Enhanced visibility */
            line-height: var(--leading-relaxed);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: var(--tracking-normal);
        }

        .hero-buttons {
            display: flex;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            gap: 1.5rem;
            justify-content: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            flex-wrap: wrap;
            -webkit-flex-wrap: wrap;
            -moz-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
            animation: buttonsPop 1s ease-out 0.9s both;
            /* Mobile touch optimization */
            -webkit-tap-highlight-color: transparent;
            /* Ensure buttons are accessible on mobile */
            min-height: 44px;
        }

        .btn-luxury {
            padding: 15px 35px;
            border: 2px solid var(--primary-gold);
            background: transparent;
            color: var(--primary-gold);
            text-decoration: none;
            font-family: var(--font-accent);
            font-weight: 600;
            font-size: var(--text-sm);
            text-transform: uppercase;
            letter-spacing: var(--tracking-wider);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border-radius: 0;
        }

        .btn-luxury::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-gold);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-luxury:hover {
            color: var(--deep-black);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(184, 158, 125, 0.3);
        }

        .btn-luxury:hover::before {
            left: 0;
        }

        .btn-luxury-filled {
            background: var(--gradient-gold);
            color: var(--deep-black);
            border-color: transparent;
        }

        .btn-luxury-filled:hover {
            background: transparent;
            color: #000000;
            border-color: var(--primary-gold);
        }

        /* Carousel Controls - Enhanced Cross-Browser */
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(184, 158, 125, 0.2);
            border-radius: 50%;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(184, 158, 125, 0.3);
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            /* Mobile touch optimization */
            -webkit-tap-highlight-color: transparent;
            /* Ensure minimum touch target size */
            min-width: 44px;
            min-height: 44px;
            /* Cross-browser cursor support */
            cursor: pointer;
        }

        .carousel-control-prev {
            left: 30px;
        }

        .carousel-control-next {
            right: 30px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(184, 158, 125, 0.4);
            transform: translateY(-50%) scale(1.1);
            -webkit-transform: translateY(-50%) scale(1.1);
            -moz-transform: translateY(-50%) scale(1.1);
            -ms-transform: translateY(-50%) scale(1.1);
            -o-transform: translateY(-50%) scale(1.1);
        }

        /* Touch device optimization */
        .carousel-control-prev:active,
        .carousel-control-next:active {
            background: rgba(184, 158, 125, 0.6);
            transform: translateY(-50%) scale(0.95);
            -webkit-transform: translateY(-50%) scale(0.95);
            -moz-transform: translateY(-50%) scale(0.95);
            -ms-transform: translateY(-50%) scale(0.95);
            -o-transform: translateY(-50%) scale(0.95);
        }

        .carousel-indicators {
            bottom: 30px;
            /* Cross-browser display */
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            display: flex;
            /* Mobile optimization */
            padding: 0 20px;
        }

        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            border: 1px solid var(--primary-gold);
            margin: 0 5px;
            transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            /* Mobile touch optimization */
            -webkit-tap-highlight-color: transparent;
            /* Ensure minimum touch target */
            min-width: 20px;
            min-height: 20px;
            /* Cross-browser cursor */
            cursor: pointer;
        }

        .carousel-indicators .active {
            background: var(--primary-gold);
            transform: scale(1.2);
            -webkit-transform: scale(1.2);
            -moz-transform: scale(1.2);
            -ms-transform: scale(1.2);
            -o-transform: scale(1.2);
        }

        /* Typography Enhancements */
        .text-display {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: var(--leading-tight);
        }
        
        .text-body {
            font-family: var(--font-body);
            line-height: var(--leading-relaxed);
        }
        
        .text-accent {
            font-family: var(--font-accent);
            text-transform: uppercase;
            letter-spacing: var(--tracking-wide);
        }
        
        .text-gold {
            color: var(--primary-gold);
        }
        
        .text-gradient {
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Responsive Typography */
        @media (max-width: 768px) {
            .hero-title {
                font-size: var(--text-5xl);
                letter-spacing: var(--tracking-wide);
            }
            
            .hero-subtitle {
                font-size: var(--text-lg);
            }
            
            .section-title {
                font-size: var(--text-3xl);
            }
            
            .navbar-brand {
                font-size: var(--text-2xl);
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: var(--text-4xl);
            }
            
            .hero-subtitle {
                font-size: var(--text-base);
            }
            
            .section-title {
                font-size: var(--text-2xl);
            }
        }
        
        /* Additional Typography Utilities */
        .font-display { font-family: var(--font-display) !important; }
        .font-body { font-family: var(--font-body) !important; }
        .font-accent { font-family: var(--font-accent) !important; }
        
        .text-xs { font-size: var(--text-xs) !important; }
        .text-sm { font-size: var(--text-sm) !important; }
        .text-base { font-size: var(--text-base) !important; }
        .text-lg { font-size: var(--text-lg) !important; }
        .text-xl { font-size: var(--text-xl) !important; }
        .text-2xl { font-size: var(--text-2xl) !important; }
        .text-3xl { font-size: var(--text-3xl) !important; }
        .text-4xl { font-size: var(--text-4xl) !important; }
        .text-5xl { font-size: var(--text-5xl) !important; }
        .text-6xl { font-size: var(--text-6xl) !important; }
        .text-7xl { font-size: var(--text-7xl) !important; }
        .text-8xl { font-size: var(--text-8xl) !important; }
        
        .leading-tight { line-height: var(--leading-tight) !important; }
        .leading-snug { line-height: var(--leading-snug) !important; }
        .leading-normal { line-height: var(--leading-normal) !important; }
        .leading-relaxed { line-height: var(--leading-relaxed) !important; }
        .leading-loose { line-height: var(--leading-loose) !important; }
        
        .tracking-tighter { letter-spacing: var(--tracking-tighter) !important; }
        .tracking-tight { letter-spacing: var(--tracking-tight) !important; }
        .tracking-normal { letter-spacing: var(--tracking-normal) !important; }
        .tracking-wide { letter-spacing: var(--tracking-wide) !important; }
        .tracking-wider { letter-spacing: var(--tracking-wider) !important; }
        .tracking-widest { letter-spacing: var(--tracking-widest) !important; }
        
        /* Beautiful Text Effects */
        .text-glow {
            text-shadow: 0 0 10px rgba(184, 158, 125, 0.5);
        }
        
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        .text-shadow-lg {
            text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
        }
        
        .text-elegant {
            font-family: var(--font-display);
            font-weight: 400;
            font-style: italic;
            letter-spacing: var(--tracking-wide);
        }
        
        .text-luxury {
            font-family: var(--font-display);
            font-weight: 700;
            text-transform: none;
            letter-spacing: var(--tracking-wider);
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Typography Animations */
        @keyframes textFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .text-animate {
            animation: textFadeIn 0.8s ease-out forwards;
        }
        
        .text-animate-delay-1 { animation-delay: 0.1s; }
        .text-animate-delay-2 { animation-delay: 0.2s; }
        .text-animate-delay-3 { animation-delay: 0.3s; }
        .text-animate-delay-4 { animation-delay: 0.4s; }
        .text-animate-delay-5 { animation-delay: 0.5s; }
        
        /* Form Typography Enhancement */
        .contact-input {
            font-family: var(--font-body);
            font-size: var(--text-base);
            font-weight: 400;
            letter-spacing: var(--tracking-normal);
        }
        
        .contact-input::placeholder {
            font-family: var(--font-body);
            font-weight: 300;
            color: rgba(248, 249, 250, 0.6);
        }
        
        /* Enhanced Text Rendering */
        h1, h2, h3, h4, h5, h6 {
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* Beautiful Paragraph Spacing */
        p {
            margin-bottom: 1.5rem;
            text-rendering: optimizeLegibility;
        }
        
        /* Enhanced Link Typography */
        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        a:hover {
            text-decoration: none;
        }
        
        /* List Typography */
        ul, ol {
            font-family: var(--font-body);
            line-height: var(--leading-relaxed);
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        /* Store Section Enhancement */
        .store-section {
            background: var(--gradient-dark);
            padding: 100px 0;
            position: relative;
        }

        .store-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 800;
            text-transform: uppercase;
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: 3px;
            line-height: 1.2;
            /* Enhanced desktop styling */
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            /* Smooth transitions for responsive changes */
            transition: all 0.3s ease;
        }

        /* Enhanced Watch Cards */
        .watch-card {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(184, 158, 125, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .watch-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(184, 158, 125, 0.1), transparent);
            opacity: 0;
            transition: all 0.6s ease;
            z-index: 1;
        }

        .watch-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(184, 158, 125, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
            opacity: 0;
            z-index: 1;
        }

        .watch-card:hover {
            transform: translateY(-20px) rotateX(8deg) rotateY(5deg) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(184, 158, 125, 0.3),
                0 0 40px rgba(184, 158, 125, 0.1);
            border-color: rgba(184, 158, 125, 0.5);
        }

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

        .watch-card:hover::after {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }

        .watch-card img {
            transition: all 0.6s ease;
            position: relative;
            z-index: 2;
        }

        .watch-card:hover img {
            transform: scale(1.15) rotateZ(5deg);
            filter: brightness(1.1) saturate(1.2);
        }

        .card-overlay {
            background: linear-gradient(
                to top, 
                rgba(0,0,0,0.95) 0%, 
                rgba(0,0,0,0.7) 50%,
                transparent 100%
            );
            padding: 2rem;
            position: relative;
            z-index: 3;
            transition: all 0.4s ease;
        }

        .watch-card:hover .card-overlay {
            background: linear-gradient(
                to top, 
                rgba(184, 158, 125, 0.2) 0%, 
                rgba(0,0,0,0.8) 50%,
                transparent 100%
            );
        }

        .watch-price {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-gold);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }

        .watch-card:hover .watch-price {
            transform: scale(1.1);
            text-shadow: 0 0 20px rgba(184, 158, 125, 0.8);
        }

        .watch-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .watch-card:hover .watch-name {
            color: rgba(255, 255, 255, 1);
            transform: translateY(-5px);
        }

        /* Luxury Watch Cards - New Design */
        .luxury-watch-card {
            background: var(--deep-black);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .luxury-watch-card:hover {
            transform: translateY(-25px) rotateX(10deg) rotateY(5deg) scale(1.05);
            box-shadow: 
                0 40px 80px rgba(184, 158, 125, 0.4),
                0 0 60px rgba(184, 158, 125, 0.2);
        }

        .watch-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
        }

        .watch-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: center 30%;
            transition: all 0.8s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .luxury-watch-card:hover .watch-image {
            transform: scale(1.2) rotateZ(3deg);
            filter: brightness(1.2) contrast(1.2) saturate(1.3);
        }

        .watch-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.8) 30%,
                rgba(0, 0, 0, 0.4) 70%,
                transparent 100%
            );
            padding: 3rem 2rem 2rem;
            transform: translateY(100%);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
        }

        .luxury-watch-card:hover .watch-overlay {
            transform: translateY(0);
        }

        .overlay-content {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease 0.2s;
        }

        .luxury-watch-card:hover .overlay-content {
            opacity: 1;
            transform: translateY(0);
        }

        .watch-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .watch-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .watch-price {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .shop-now-btn {
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            color: var(--deep-black);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            position: relative;
            overflow: hidden;
        }

        .shop-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .shop-now-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
            background: linear-gradient(135deg, #f4d03f, var(--primary-gold));
        }

        .shop-now-btn:hover::before {
            left: 100%;
        }

        /* Luxury Tab Buttons */
        .luxury-tab-btn {
            position: relative;
            overflow: hidden;
        }

        .luxury-tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .luxury-tab-btn:hover::before {
            left: 100%;
        }

        .luxury-tab-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
        }

        /* Section Header Enhancements */
        .section-header {
            position: relative;
        }

        .section-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: var(--gradient-gold);
            border-radius: 1px;
        }

        .title-underline {
            position: relative;
        }

        .title-underline::before,
        .title-underline::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 1px;
            background: var(--primary-gold);
            transform: translateY(-50%);
        }

        .title-underline::before {
            left: -40px;
        }

        .title-underline::after {
            right: -40px;
        }

        /* Luxury Fragrance Cards */
        .luxury-fragrance-card {
            background: var(--deep-black);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .luxury-fragrance-card:hover {
            transform: translateY(-25px) rotateX(10deg) rotateY(5deg) scale(1.05);
            box-shadow: 
                0 40px 80px rgba(184, 158, 125, 0.4),
                0 0 60px rgba(184, 158, 125, 0.2);
        }

        .fragrance-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 25px;
        }

        .fragrance-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            object-position: center 30%;
            transition: all 0.8s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .luxury-fragrance-card:hover .fragrance-image {
            transform: scale(1.2) rotateZ(3deg);
            filter: brightness(1.2) contrast(1.2) saturate(1.3);
        }

        .fragrance-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.95) 0%,
                rgba(0, 0, 0, 0.8) 30%,
                rgba(0, 0, 0, 0.4) 70%,
                transparent 100%
            );
            padding: 3rem 2rem 2rem;
            transform: translateY(100%);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(10px);
        }

        .luxury-fragrance-card:hover .fragrance-overlay {
            transform: translateY(0);
        }

        .luxury-fragrance-card:hover .overlay-content {
            opacity: 1;
            transform: translateY(0);
        }

        .fragrance-name {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .fragrance-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .fragrance-price {
            font-size: 2rem;
            font-weight: 900;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Brands Section */
        .brands-section {
            padding: 80px 0;
            background: var(--rich-gray);
        }

        .brand-logo {
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.3s ease;
        }

        .brand-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }

        /* Testimonials Enhancement */
        .testimonial-card {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(184, 158, 125, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(184, 158, 125, 0.1);
        }

        /* Enhanced Footer Styles */
        .footer-enhanced {
            position: relative;
            background: #000000;
            border-top: 1px solid rgba(184, 158, 125, 0.1);
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        }

        .footer-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
                linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.01) 50%, transparent 52%);
            background-size: 100px 100px, 150px 150px, 20px 20px;
            z-index: -1;
        }

        /* Footer Top Section */
        .footer-top {
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-brand-section {
            animation: fadeInUp 0.8s ease-out;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo-img {
            width: 120px;
            height: 100px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(184, 158, 125, 0.3));
            transition: all 0.4s ease;
        }

        .footer-logo-img:hover {
            transform: scale(1.5);
            filter: drop-shadow(0 4px 12px rgba(184, 158, 125, 0.5));
        }

        .footer-brand-title {
            font-family: var(--font-display);
            font-size: var(--text-xl);
            font-weight: 700;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .footer-brand-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--text-xs);
            line-height: var(--leading-relaxed);
            margin-bottom: 1rem;
        }

        .footer-social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 10px;
            color: #D4AF37;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .social-link:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: #D4AF37;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .social-link:hover::before {
            left: 100%;
        }

        /* Newsletter Section */
        .footer-newsletter {
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .newsletter-title {
            font-family: var(--font-display);
            font-size: var(--text-xl);
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 0.75rem;
        }

        .newsletter-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--text-sm);
            margin-bottom: 1.5rem;
        }

        .newsletter-form .input-group {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(184, 158, 125, 0.2);
            border-radius: 12px;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .newsletter-input {
            background: transparent !important;
            border: none !important;
            color: var(--text-light) !important;
            padding: 1rem 1.25rem !important;
            font-size: var(--text-sm);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-input:focus {
            box-shadow: none !important;
            outline: none !important;
        }

        .newsletter-btn {
            background: var(--gradient-gold) !important;
            border: none !important;
            color: var(--deep-black) !important;
            font-weight: 600;
            padding: 1rem 1.5rem !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(184, 158, 125, 0.4);
        }

        .newsletter-btn:hover::before {
            left: 100%;
        }

        /* Footer Middle Section */
        .footer-middle {
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-section {
            animation: fadeInUp 0.8s ease-out;
        }

        .footer-section-title {
            font-family: var(--font-display);
            font-size: var(--text-lg);
            font-weight: 600;
            color: #D4AF37;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, #B8860B);
            border-radius: 1px;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: var(--text-sm);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: var(--text-sm);
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
            display: inline-block;
            line-height: 1.4;
        }

        .footer-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 0;
            height: 1px;
            background: #D4AF37;
            transition: width 0.3s ease;
            transform: translateY(-50%);
        }

        .footer-link:hover {
            color: #D4AF37;
            padding-left: 1rem;
        }

        .footer-link:hover::before {
            width: 0.75rem;
        }

        /* Footer Contact Section */
        .footer-contact-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .footer-contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .footer-contact-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .footer-contact-item:hover::before {
            left: 100%;
        }

        .contact-icon-wrapper {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #000;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .footer-contact-item:hover .contact-icon-wrapper {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .contact-text-wrapper {
            position: relative;
            z-index: 2;
            flex: 1;
        }

        .contact-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: var(--text-xs);
            line-height: 1.4;
            display: block;
        }

        /* Subscribe Section */
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        /* Subscribe section styling */
        .footer-section-subscribe {
            /* Normal styling without height adjustment */
        }

        .subscribe-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 8px;
            padding: 0.875rem 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: var(--text-sm);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .subscribe-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .subscribe-input:focus {
            outline: none;
            border-color: #D4AF37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }

        .subscribe-btn {
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            border: none;
            border-radius: 8px;
            padding: 0.875rem 1.5rem;
            color: #000;
            font-weight: 600;
            font-size: var(--text-sm);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .subscribe-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .subscribe-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .subscribe-btn:hover::before {
            left: 100%;
        }

        /* Footer Bottom Section */
        .footer-bottom {
            background: rgba(0, 0, 0, 0.4);
            padding: 1.5rem 0;
        }

        .footer-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            margin-bottom: 1.5rem;
        }

        .footer-copyright p {
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--text-sm);
            margin: 0;
        }

        .footer-legal-links {
            display: flex;
            gap: 1.5rem;
            justify-content: flex-end;
            flex-wrap: wrap;
        }

        .legal-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: var(--text-xs);
            transition: color 0.3s ease;
            position: relative;
        }

        .legal-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }

        .legal-link:hover {
            color: var(--primary-gold);
        }

        .legal-link:hover::after {
            width: 100%;
        }

        /* Floating Elements */
        .footer-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: -1;
        }

        .floating-watch {
            position: absolute;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(184, 158, 125, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-watch-1 {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-watch-2 {
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .floating-gear {
            position: absolute;
            width: 30px;
            height: 30px;
            background: conic-gradient(from 0deg, transparent, rgba(184, 158, 125, 0.05), transparent);
            border-radius: 50%;
            animation: spin 8s linear infinite;
        }

        .floating-gear-1 {
            top: 40%;
            left: 80%;
            animation-delay: 0s;
        }

        .floating-gear-2 {
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-legal-links {
                justify-content: flex-start;
                gap: 1rem;
            }
            
            .footer-logo {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-social-links {
                justify-content: center;
            }
            
            .newsletter-form .input-group {
                flex-direction: column;
            }
            
            .newsletter-btn {
                border-radius: 8px !important;
                margin-top: 0.5rem;
            }

            .footer-contact-item {
                padding: 1rem;
            }

            .contact-icon-wrapper {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .footer-section-title {
                font-size: var(--text-base);
                margin-bottom: 1rem;
            }

            .footer-middle {
                padding: 3rem 0;
            }
        }

        @media (max-width: 576px) {
            .footer-contact-item {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .contact-icon-wrapper {
                align-self: center;
            }

            .subscribe-form {
                gap: 0.5rem;
            }

            .subscribe-input,
            .subscribe-btn {
                padding: 0.75rem 1rem;
            }
        }

        /* Legacy Footer Styles (for backward compatibility) */
        .footer {
            background: var(--gradient-dark);
            border-top: 1px solid rgba(184, 158, 125, 0.2);
        }

        .footer h4, .footer h5 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }

        .footer a {
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-gold);
        }

        /* Animations */
        @keyframes heroContentEntry {
            0% {
                opacity: 0;
                transform: scale(0.8) translateY(50px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        @keyframes titleSlideIn {
            0% {
                opacity: 0;
                transform: translateY(80px) rotateX(30deg);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0);
            }
        }

        @keyframes subtitleFadeIn {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes buttonsPop {
            0% {
                opacity: 0;
                transform: translateY(40px) scale(0.8);
            }
            60% {
                transform: translateY(-10px) scale(1.1);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

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

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px);
            }
            50% { 
                transform: translateY(-15px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(184, 158, 125, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(184, 158, 125, 0.6);
            }
        }

        @keyframes rotate3D {
            from {
                transform: rotateY(0deg);
            }
            to {
                transform: rotateY(360deg);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3) translateY(-100px);
            }
            50% {
                opacity: 1;
                transform: scale(1.1) translateY(0);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

        .floating {
            animation: float 4s ease-in-out infinite;
        }

        .pulsing {
            animation: pulse 2s ease-in-out infinite;
        }

        .shimmer-effect {
            background: linear-gradient(90deg, transparent, rgba(184, 158, 125, 0.4), transparent);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }

        .glow-effect {
            animation: glow 3s ease-in-out infinite;
        }

        /* Enhanced Element Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .animate-on-scroll.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-left {
            animation: slideInLeft 0.8s ease-out;
        }

        .slide-right {
            animation: slideInRight 0.8s ease-out;
        }

        .scale-in {
            animation: scaleIn 0.6s ease-out;
        }

        /* Enhanced Section Titles */
        .section-title {
            font-size: 3.5rem;
            font-weight: 700;
            text-transform: uppercase;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            position: relative;
            text-align: center;
            animation: titlePulse 3s ease-in-out infinite;
        }

        .section-title::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-gold);
            border-radius: 2px;
            animation: lineExpand 2s ease-out;
        }

        @keyframes titlePulse {
            0%, 100% {
                text-shadow: 0 0 20px rgba(184, 158, 125, 0.3);
            }
            50% {
                text-shadow: 0 0 40px rgba(184, 158, 125, 0.6);
            }
        }

        @keyframes lineExpand {
            from {
                width: 0;
            }
            to {
                width: 100px;
            }
        }

        .typewriter {
    overflow: hidden;
    border-right: 3px solid #ffffff;
    white-space: nowrap;
    animation: typewriter 8s steps(40, end), blink 0.75s step-end infinite;
}

.typewriter-finished {
    border-right: none !important;
    animation: none !important;
}
/* ================================================================ */

        /* Enhanced Store Section */
        .store-section {
            background: var(--gradient-dark);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .store-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-gold);
            animation: borderSlide 3s ease-in-out infinite;
        }

        @keyframes borderSlide {
            0%, 100% {
                background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
            }
            50% {
                background: linear-gradient(90deg, var(--primary-gold), transparent, var(--primary-gold));
            }
        }

        /* Enhanced Feature Boxes */
        .feature-box {
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .feature-box:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            animation: iconFloat 3s ease-in-out infinite;
        }

        .feature-box:hover .feature-icon {
            transform: rotate(360deg) scale(1.2);
            box-shadow: 0 0 30px rgba(184, 158, 125, 0.6);
        }

        /* Enhanced Icon Styling for New SVG Icons */
        .feature-icon svg {
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon svg {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
        }

        .feature-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }

        /* Enhanced Service Items Styling */
        .service-item {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
            border-radius: 15px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .service-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .service-item:hover::before {
            opacity: 1;
        }

        .service-item:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
        }

        .service-item:hover .service-icon svg {
            transform: scale(1.1);
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
        }

        .service-icon {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, var(--primary-gold), #f4d03f, var(--primary-gold));
            border-radius: 50%;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
            animation: rotate 3s linear infinite;
        }

        .service-item:hover .service-icon::after {
            opacity: 0.3;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .service-content h5 {
            transition: all 0.3s ease;
        }

        .service-item:hover .service-content h5 {
            color: var(--primary-gold) !important;
            transform: translateX(5px);
        }

        .service-content p {
            transition: all 0.3s ease;
        }

        .service-item:hover .service-content p {
            color: rgba(255,255,255,0.9) !important;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-5px) rotate(180deg);
            }
        }

        /* Enhanced Contact Form */
        .contact-form-container {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 25px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .contact-form-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(184, 158, 125, 0.15);
            border-color: rgba(184, 158, 125, 0.3);
        }

        .contact-input {
            background: rgba(255,255,255,0.05) !important;
            border: 1px solid rgba(212,175,55,0.2) !important;
            color: var(--text-light) !important;
            padding: 1rem !important;
            border-radius: 10px !important;
            transition: all 0.3s ease !important;
        }

        .contact-input:focus {
            background: rgba(255,255,255,0.08) !important;
            border-color: var(--primary-gold) !important;
            box-shadow: 0 0 20px rgba(184, 158, 125, 0.2) !important;
            outline: none !important;
            transform: translateY(-2px);
        }

        .contact-input::placeholder {
            color: rgba(255,255,255,0.5) !important;
        }

        .contact-info-container {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 25px;
            padding: 2.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .contact-info-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(184, 158, 125, 0.15);
            border-color: rgba(184, 158, 125, 0.3);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(184, 158, 125, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(184, 158, 125, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184, 158, 125, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .contact-item:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 25px rgba(184, 158, 125, 0.2);
            border-color: rgba(184, 158, 125, 0.3);
            background: rgba(184, 158, 125, 0.08);
        }

        .contact-item:hover::before {
            left: 100%;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .contact-item:hover .contact-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 20px rgba(184, 158, 125, 0.5);
        }

        .contact-details {
            position: relative;
            z-index: 2;
        }

        .contact-details h6 {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-details h6 {
            transform: translateX(5px);
        }

        .contact-details a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--primary-gold);
        }

        /* Map Section Styles */
        .map-section {
            background: var(--deep-black);
            position: relative;
            overflow: hidden;
        }

        .map-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
            animation: borderSlide 3s ease-in-out infinite;
        }

        .map-container {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(184, 158, 125, 0.1);
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 40px rgba(184, 158, 125, 0.1);
            transition: all 0.4s ease;
        }

        .map-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(184, 158, 125, 0.2);
            border-color: rgba(184, 158, 125, 0.3);
        }

        .map-wrapper {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .location-map {
            width: 100%;
            height: 100%;
            border: none;
            transition: all 0.3s ease;
        }

        .map-overlay {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            animation: slideInRight 0.8s ease-out;
        }

        .map-info {
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
            border: 1px solid rgba(184, 158, 125, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(184, 158, 125, 0.2);
            transition: all 0.3s ease;
        }

        .map-info:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(184, 158, 125, 0.3);
        }

        /* Location Cards */
        .location-card {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(184, 158, 125, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184, 158, 125, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .location-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(184, 158, 125, 0.2);
            border-color: rgba(184, 158, 125, 0.4);
        }

        .location-card:hover::before {
            left: 100%;
        }

        .location-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .location-card:hover .location-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 30px rgba(184, 158, 125, 0.6);
        }

        .location-card h5 {
            color: var(--primary-gold);
            font-weight: 700;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .location-card:hover h5 {
            transform: translateY(-3px);
        }

        .location-card p {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 0.95rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Responsive adjustments for map section */
        @media (max-width: 768px) {
            .map-wrapper {
                height: 350px;
            }
            
            .map-overlay {
                position: relative;
                top: auto;
                right: auto;
                margin-top: 1rem;
            }
            
            .map-info {
                text-align: center;
            }
            
            .location-card {
                margin-bottom: 1.5rem;
            }
        }

        /* Enhanced Testimonials */
        .testimonial-card {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 25px;
            padding: 2.5rem;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-gold);
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
        }

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

        /* Enhanced Brand Logos */
        .brand-logo {
            filter: grayscale(100%) opacity(0.6);
            transition: all 0.5s ease;
            transform-origin: center;
        }

        .brand-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.2) rotate(5deg);
            animation: brandBounce 0.6s ease;
        }

        @keyframes brandBounce {
            0%, 100% {
                transform: scale(1.2) rotate(5deg);
            }
            50% {
                transform: scale(1.3) rotate(-5deg);
            }
        }

        /* Mission Section Styles */
        .mission-section {
            background: linear-gradient(135deg, var(--rich-gray) 0%, var(--deep-black) 100%);
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--gradient-gold);
            animation: borderSlide 3s ease-in-out infinite;
        }

        .mission-content {
            position: relative;
            z-index: 2;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(184, 158, 125, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .service-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(184, 158, 125, 0.2);
            border-color: rgba(184, 158, 125, 0.3);
        }

        .service-item:hover::before {
            left: 100%;
        }

        .service-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .service-item:hover .service-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 25px rgba(184, 158, 125, 0.5);
        }

        .service-content {
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .service-content h5 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-content h5 {
            color: var(--primary-gold) !important;
            transform: translateX(5px);
        }

        .mission-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.6s ease;
        }

        .mission-image-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(184, 158, 125, 0.3);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(184, 158, 125, 0.1) 0%,
                transparent 50%,
                rgba(10, 10, 10, 0.2) 100%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .mission-image-container:hover .image-overlay {
            opacity: 1;
        }

        .mission-decoration .decoration-circle {
            animation: float 6s ease-in-out infinite;
        }

        .mission-decoration .decoration-line {
            animation: shimmer 3s ease-in-out infinite;
        }

        /* Responsive adjustments for mission section */
        @media (max-width: 768px) {
            .service-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            
            .service-icon {
                align-self: center;
            }
            
            .mission-section .section-title {
                text-align: center !important;
            }
        }

        /* Responsive Design */
        /* Enhanced Mobile Responsive Styles - Cross-Browser Compatible */
        @media (max-width: 768px) {
            .hero-carousel {
                height: 100vh;
                /* Mobile viewport optimization */
                height: 100dvh;
                height: 100svh;
            }
            
            .carousel-item {
                height: 100vh;
                height: 100dvh;
                height: 100svh;
            }
            
            .hero-video {
                /* Mobile video optimization */
                -webkit-transform: scale(1.02);
                -moz-transform: scale(1.02);
                -ms-transform: scale(1.02);
                -o-transform: scale(1.02);
                transform: scale(1.02);
                /* Prevent video overflow on mobile */
                max-width: 100vw;
                max-height: 100vh;
            }
            
            .hero-title {
                font-size: 2.8rem;
                letter-spacing: 1px;
                /* Enhanced mobile visibility */
                text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
                /* Mobile text optimization */
                line-height: 1.1;
                margin-bottom: 1rem;
                /* Prevent text overflow */
                max-width: 90vw;
                word-break: break-word;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                /* Better mobile readability */
                font-weight: 500;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
                /* Mobile text optimization */
                line-height: 1.4;
                max-width: 85vw;
                margin-bottom: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                -webkit-flex-direction: column;
                -moz-flex-direction: column;
                -ms-flex-direction: column;
                align-items: center;
                -webkit-align-items: center;
                -moz-align-items: center;
                -ms-align-items: center;
                gap: 1rem;
                /* Mobile button optimization */
                width: 100%;
                max-width: 300px;
            }
            
            .btn-luxury {
                /* Mobile button sizing */
                padding: 12px 25px;
                font-size: 0.9rem;
                /* Ensure touch target size */
                min-height: 44px;
                min-width: 120px;
                /* Mobile touch optimization */
                -webkit-tap-highlight-color: transparent;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                display: none;
            }
            
            .hero-content {
                padding: 1rem;
                min-height: 80vh;
                /* Mobile content optimization */
                justify-content: center;
                -webkit-justify-content: center;
                -moz-justify-content: center;
                -ms-justify-content: center;
                /* Prevent content overflow */
                max-width: 95vw;
                margin: 0 auto;
            }
            
            .carousel-indicators {
                bottom: 20px;
                /* Mobile indicator optimization */
                padding: 0 15px;
            }
            
            .carousel-indicators [data-bs-target] {
                /* Larger touch targets on mobile */
                width: 15px;
                height: 15px;
                min-width: 25px;
                min-height: 25px;
                margin: 0 3px;
            }
        }

        /* Small Mobile Devices - Enhanced Cross-Browser Support */
        @media (max-width: 480px) {
            .hero-carousel {
                /* Small mobile optimization */
                height: 100vh;
                height: 100dvh;
                height: 100svh;
            }
            
            .carousel-item {
                height: 100vh;
                height: 100dvh;
                height: 100svh;
            }
            
            .hero-video {
                /* Small mobile video optimization */
                -webkit-transform: scale(1.03);
                -moz-transform: scale(1.03);
                -ms-transform: scale(1.03);
                -o-transform: scale(1.03);
                transform: scale(1.03);
            }
            
            .hero-title {
                font-size: 2.2rem;
                letter-spacing: 0.5px;
                /* Small mobile text optimization */
                line-height: 1.05;
                max-width: 95vw;
                margin-bottom: 0.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                /* Small mobile subtitle optimization */
                line-height: 1.3;
                max-width: 90vw;
                margin-bottom: 1.5rem;
            }
            
            .hero-content {
                padding: 0.8rem;
                /* Small mobile content optimization */
                min-height: 75vh;
                justify-content: center;
                -webkit-justify-content: center;
                -moz-justify-content: center;
                -ms-justify-content: center;
            }
            
            .hero-buttons {
                /* Small mobile button optimization */
                gap: 0.8rem;
                max-width: 280px;
            }
            
            .btn-luxury {
                /* Small mobile button sizing */
                padding: 10px 20px;
                font-size: 0.85rem;
                min-height: 40px;
                min-width: 100px;
            }
            
            .carousel-indicators {
                bottom: 15px;
                /* Small mobile indicator optimization */
                padding: 0 10px;
            }
            
            .carousel-indicators [data-bs-target] {
                /* Small mobile touch targets */
                width: 12px;
                height: 12px;
                min-width: 20px;
                min-height: 20px;
                margin: 0 2px;
            }
        }

        /* Extra Small Mobile Devices */
        @media (max-width: 360px) {
            .hero-title {
                font-size: 1.8rem;
                letter-spacing: 0.3px;
                line-height: 1.0;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
                line-height: 1.2;
            }
            
            .hero-buttons {
                max-width: 250px;
            }
            
            .btn-luxury {
                padding: 8px 16px;
                font-size: 0.8rem;
                min-height: 36px;
                min-width: 90px;
            }
        }

        /* Cross-Browser Compatibility Fixes */
        /* Safari-specific fixes */
        @supports (-webkit-appearance: none) {
            .hero-carousel {
                /* Safari video rendering optimization */
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
            
            .hero-video {
                /* Safari video scaling fix */
                -webkit-transform: scale(1.01) translateZ(0);
                transform: scale(1.01) translateZ(0);
            }
        }

        /* Edge-specific fixes */
        @supports (-ms-ime-align: auto) {
            .hero-carousel {
                /* Edge rendering optimization */
                -ms-transform: translateZ(0);
                transform: translateZ(0);
            }
        }

        /* Firefox-specific fixes */
        @supports (-moz-appearance: none) {
            .hero-video {
                /* Firefox video optimization */
                -moz-transform: scale(1.01);
                transform: scale(1.01);
            }
        }

        /* Touch Gesture Support */
        .hero-carousel {
            /* Enable touch gestures */
            touch-action: pan-y pinch-zoom;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Mobile Video Optimization */
        @media (max-width: 768px) {
            .hero-video {
                /* iOS Safari video fixes */
                -webkit-transform: scale(1.02) translateZ(0);
                transform: scale(1.02) translateZ(0);
                /* Prevent video from being hidden behind other elements */
                z-index: 1;
                /* Ensure video plays inline on mobile */
                object-position: center center;
            }
            
            /* Safari-specific mobile fixes */
            @supports (-webkit-appearance: none) {
                .hero-video {
                    -webkit-transform: scale(1.02) translate3d(0, 0, 0);
                    transform: scale(1.02) translate3d(0, 0, 0);
                }
            }
        }

        /* Landscape Mobile Optimization */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-carousel {
                height: 100vh;
                height: 100dvh;
                height: 100svh;
            }
            
            .carousel-item {
                height: 100vh;
                height: 100dvh;
                height: 100svh;
            }
            
            .hero-content {
                min-height: 60vh;
                padding: 0.5rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 0.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .hero-buttons {
                flex-direction: row;
                -webkit-flex-direction: row;
                -moz-flex-direction: row;
                -ms-flex-direction: row;
                gap: 0.8rem;
            }
        }

        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--deep-black);
            display: flex;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flex;
            flex-direction: column;
            -webkit-flex-direction: column;
            -moz-flex-direction: column;
            -ms-flex-direction: column;
            align-items: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            -ms-align-items: center;
            justify-content: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            -ms-justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
            -webkit-transition: opacity 0.5s ease;
            -moz-transition: opacity 0.5s ease;
            -o-transition: opacity 0.5s ease;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(184, 158, 125, 0.3);
            border-top: 4px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .loading-spinner::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border: 2px solid transparent;
            border-top: 2px solid rgba(184, 158, 125, 0.6);
            border-radius: 50%;
            animation: spin 2s linear infinite reverse;
        }

        /* Luxury Partners Section Styles */
        .luxury-partners-section {
            position: relative;
            overflow: hidden;
        }

        .partners-scroll-container {
            position: relative;
            overflow: hidden;
            margin: 0 -15px;
        }

        .partners-scroll-wrapper {
            display: flex;
            gap: 3rem;
            padding: 2rem 0;
            transition: transform 0.5s ease;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
        }

        .partners-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

        .partners-scroll-wrapper:active {
            cursor: grabbing;
        }

        .partner-item {
            min-width: 200px;
            flex-shrink: 0;
            text-align: center;
            padding: 2rem;
            background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
            border: 1px solid rgba(184, 158, 125, 0.1);
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .partner-item:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: rgba(184, 158, 125, 0.3);
            box-shadow: 0 20px 40px rgba(184, 158, 125, 0.2);
        }

        .partner-glow {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(184, 158, 125, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .partner-item:hover .partner-glow {
            opacity: 1;
        }

        .partner-logo {
            max-height: 80px;
            width: auto;
            filter: grayscale(100%) brightness(0.8);
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .partner-item:hover .partner-logo {
            filter: grayscale(0%) brightness(1.2);
            transform: scale(1.1);
        }

        .scroll-indicator {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0.7;
            border-radius: 50%;
        }

        .scroll-indicator:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
        }

        .scroll-indicator.left {
            left: 0;
            background: linear-gradient(90deg, rgba(10, 10, 10, 0.9), transparent);
            border-radius: 0 30px 30px 0;
        }

        .scroll-indicator.right {
            right: 0;
            background: linear-gradient(270deg, rgba(10, 10, 10, 0.9), transparent);
            border-radius: 30px 0 0 30px;
        }

        .scroll-progress-container {
            margin-top: 2rem;
            text-align: center;
        }

        .scroll-progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(184, 158, 125, 0.1);
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .scroll-progress-fill {
            height: 100%;
            background: var(--gradient-gold);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .partners-scroll-wrapper {
                gap: 2rem;
                padding: 1.5rem 0;
            }

            .partner-item {
                min-width: 180px;
                padding: 1.5rem;
            }

            .scroll-indicator {
                width: 50px;
                height: 50px;
            }

            .scroll-indicator svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 576px) {
            .partner-item {
                min-width: 160px;
                padding: 1rem;
            }

            .partner-logo {
                max-height: 60px;
            }
        }

        /* Enhanced Responsive Section Title Styles */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem !important;
                line-height: 1.2 !important;
                letter-spacing: 2px !important;
                margin-bottom: 1.5rem !important;
                /* Mobile text optimization */
                word-break: break-word;
                max-width: 90vw;
                margin-left: auto;
                margin-right: auto;
                /* Enhanced mobile readability */
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            }
            
            /* Responsive lead text */
            .lead {
                font-size: 1.1rem !important;
                line-height: 1.6 !important;
                max-width: 85vw !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }
            
            /* Responsive section header */
            .section-header {
                padding: 0 1rem !important;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem !important;
                line-height: 1.1 !important;
                letter-spacing: 1.5px !important;
                margin-bottom: 1.2rem !important;
                /* Small mobile optimization */
                max-width: 95vw;
                /* Better text wrapping */
                hyphens: auto;
                -webkit-hyphens: auto;
                -ms-hyphens: auto;
            }
            
            /* Small mobile lead text */
            .lead {
                font-size: 1rem !important;
                line-height: 1.5 !important;
                max-width: 90vw !important;
            }
        }

        @media (max-width: 360px) {
            .section-title {
                font-size: 1.5rem !important;
                line-height: 1.0 !important;
                letter-spacing: 1px !important;
                margin-bottom: 1rem !important;
                /* Extra small mobile optimization */
                max-width: 98vw;
            }
            
            /* Extra small mobile lead text */
            .lead {
                font-size: 0.9rem !important;
                line-height: 1.4 !important;
                max-width: 95vw !important;
            }
        }

        /* Landscape orientation on mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .section-title {
                font-size: 1.6rem !important;
                line-height: 1.1 !important;
                letter-spacing: 1.5px !important;
                margin-bottom: 1rem !important;
            }
        }

        /* ============================================================ */

        /* Show More Button Styles */
        .show-more-btn {
            background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
            border: none;
            border-radius: 50px;
            padding: 18px 40px;
            color: var(--deep-black);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
        }

        .show-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .show-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
            color: var(--deep-black);
        }

        .show-more-btn:hover::before {
            left: 100%;
        }

        .show-more-btn .btn-text {
            position: relative;
            z-index: 1;
        }

        .show-more-btn .btn-icon {
            position: relative;
            z-index: 1;
            font-size: 18px;
            font-weight: 900;
            transition: transform 0.3s ease;
        }

        .show-more-btn:hover .btn-icon {
            transform: rotate(45deg);
        }

        .show-more-btn.showing-all .btn-text {
            content: 'SHOW LESS';
        }

        .show-more-btn.showing-all .btn-icon {
            transform: rotate(45deg);
        }

        /* Animation for showing hidden items */
        .watch-item.d-none,
        .fragrance-item.d-none {
            display: none !important;
        }

        .watch-item.show-item,
        .fragrance-item.show-item {
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        /* Responsive adjustments for show more button */
        @media (max-width: 768px) {
            .show-more-btn {
                padding: 15px 30px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .show-more-btn {
                padding: 12px 25px;
                font-size: 12px;
            }
        }

        
    