:root {
            --deep-black: #0a0a0a;
            --rich-black: #121212;
            --luxury-gold: #d4af37;
            --metallic-gold: #c5a145;
            --light-gold: #e6d8a6;
            --pure-white: #ffffff;
            --off-white: #f8f8f8;
            --gray-100: #e5e5e5;
            --gray-300: #d4d4d4;
            --gray-500: #737373;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --section-padding: 120px 0;
            --container-width: 90%;
            --max-container-width: 1400px;
            --border-radius: 8px;
            --box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --gold-gradient: linear-gradient(135deg, var(--luxury-gold), var(--metallic-gold));
            
            --bg-color: var(--deep-black);
            --text-color: var(--gray-100);
            --heading-color: var(--pure-white);
            --card-bg: rgba(18, 18, 18, 0.8);
            --border-color: rgba(212, 175, 55, 0.1);
        }

        [data-theme="light"] {
            --bg-color: #f9f9f9;
            --text-color: #333333;
            --heading-color: #222222;
            --card-bg: rgba(255, 255, 255, 0.9);
            --border-color: rgba(0, 0, 0, 0.1);
            --rich-black: #f5f5f5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--heading-color);
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--deep-black);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            border-top-color: var(--luxury-gold);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .container {
            width: var(--container-width);
            max-width: var(--max-container-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold-gradient);
            border-radius: 3px;
        }

        .section-description {
            max-width: 700px;
            margin: 0 auto 3rem;
            text-align: center;
            color: var(--gray-300);
            font-size: 1.1rem;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            z-index: 1000;
            background-color: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.4s ease;
        }

        [data-theme="light"] .header {
            background-color: rgba(249, 249, 249, 0.9);
        }

        .header.scrolled {
            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--pure-white);
            display: flex;
            align-items: center;
        }

        [data-theme="light"] .logo {
            color: var(--heading-color);
        }

        .logo-accent {
            color: var(--luxury-gold);
            margin-left: 8px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            font-size: 1rem;
            color: var(--gray-300);
            transition: var(--transition);
        }

        [data-theme="light"] .nav-link {
            color: var(--gray-500);
        }

        .nav-link:hover {
            color: var(--luxury-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--pure-white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }

        [data-theme="light"] .mobile-menu-btn {
            color: var(--heading-color);
        }

        .theme-toggle {
    position: relative;
    width: 60px;
    height: 28px;
    border-radius: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    margin-left: 20px;
    transition: background 0.4s ease, border 0.4s ease;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.1);
}

.theme-toggle i {
    font-size: 14px;
    color: var(--luxury-gold);
    transition: transform 0.4s ease, opacity 0.4s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.theme-toggle i.sun {
    left: 8px;
    opacity: 1;
}

.theme-toggle i.moon {
    right: 8px;
    opacity: 0.5;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--luxury-gold);
    border-radius: 50%;
    top: 4px;
    left: 4px;
    transition: left 0.4s ease, background 0.4s ease;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

[data-theme="light"] .theme-toggle::before {
    left: 36px;
    background: var(--luxury-gold);
}

[data-theme="light"] .theme-toggle i.sun {
    opacity: 1;
}

[data-theme="light"] .theme-toggle i.moon {
    opacity: 0.5;
}

[data-theme="dark"] .theme-toggle::before {
    left: 4px;
    background: var(--luxury-gold);
}

[data-theme="dark"] .theme-toggle i.sun {
    opacity: 0.5;
}

[data-theme="dark"] .theme-toggle i.moon {
    opacity: 1;
}

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold-gradient);
            color: var(--deep-black);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('/assets/bg.jpg') no-repeat center center/cover;
}

        [data-theme="light"] .hero {
            background: linear-gradient(rgba(249, 249, 249, 0.7), rgba(249, 249, 249, 0.7)), url('/assets/bg.jpg') no-repeat center center/cover;
        }

        .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    z-index: 1;
}

        .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    background: rgba(18, 18, 18, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out forwards;
}

        .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--luxury-gold), var(--light-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

        .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray-300);
}

        [data-theme="light"] .hero-description {
            color: var(--gray-500);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 35px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--gold-gradient);
            color: var(--deep-black);
            border: none;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--metallic-gold), var(--luxury-gold));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .about {
            background-color: var(--rich-black);
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/pattern.png') repeat;
            opacity: 0.03;
            pointer-events: none;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 4rem;
        }

        .skill-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .skill-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gold-gradient);
            transition: height 0.6s ease;
        }

        .skill-card:hover::before {
            height: 100%;
        }

        .skill-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--luxury-gold);
            position: relative;
            padding-left: 20px;
        }

        .skill-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: var(--luxury-gold);
            border-radius: 50%;
        }

        .skill-list {
            list-style: none;
        }

        .skill-item {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: var(--text-color);
        }

        .skill-item::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--luxury-gold);
            font-weight: bold;
        }

        .portfolio {
            background-color: var(--bg-color);
            position: relative;
        }

        .portfolio::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
            align-items: start;
        }

        .portfolio-item {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            height: auto;
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .portfolio-img {
            width: 100%;
            height: auto;
            object-fit: contain;
            transition: transform 0.8s ease;
            display: block;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            background: linear-gradient(transparent, rgba(10, 10, 10, 0.9));
            color: var(--pure-white);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.6s ease;
        }

        [data-theme="light"] .portfolio-overlay {
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .portfolio-category {
            display: inline-block;
            padding: 5px 15px;
            background: var(--gold-gradient);
            color: var(--deep-black);
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .portfolio-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .shop {
            background-color: var(--rich-black);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 4rem;
        }

        .product-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold-gradient);
            color: var(--deep-black);
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            z-index: 2;
        }

        .product-img-container {
            height: 250px;
            overflow: hidden;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 25px;
        }

        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--heading-color);
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--luxury-gold);
            margin-bottom: 20px;
        }

        .btn-secondary {
            background: transparent;
            color: var(--luxury-gold);
            border: 1px solid var(--luxury-gold);
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        /* Testimonials Section */
        .testimonials {
            background-color: var(--bg-color);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/gold-pattern.png') repeat;
            opacity: 0.03;
            pointer-events: none;
        }

        .swiper-container {
            width: 100%;
            height: 100%;
            padding: 50px 0;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--border-radius);
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .testimonial-quote {
            font-size: 1.1rem;
            color: var(--text-color);
            margin-bottom: 30px;
            position: relative;
        }

        .testimonial-quote::before,
        .testimonial-quote::after {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--luxury-gold);
            opacity: 0.5;
            font-size: 1.5rem;
            position: absolute;
        }

        .testimonial-quote::before {
            content: '\f10d';
            top: -15px;
            left: -25px;
        }

        .testimonial-quote::after {
            content: '\f10e';
            bottom: -30px;
            right: -25px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--luxury-gold);
        }

        .author-info h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--heading-color);
        }

        .author-info p {
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        .stars {
            color: var(--luxury-gold);
            margin-top: 5px;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--gray-500);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--gold-gradient);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--luxury-gold);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: rgba(212, 175, 55, 0.1);
        }

        /* Footer */
        .footer {
            background-color: var(--rich-black);
            padding: 80px 0 30px;
            position: relative;
            border-top: 1px solid var(--border-color);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--pure-white);
            margin-bottom: 20px;
            display: inline-block;
        }

        [data-theme="light"] .footer-logo {
            color: var(--heading-color);
        }

        .footer-logo-accent {
            color: var(--luxury-gold);
        }

        .footer-description {
            color: var(--gray-300);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        [data-theme="light"] .footer-description {
            color: var(--gray-500);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-300);
            transition: var(--transition);
            border: 1px solid var(--border-color);
        }

        .social-link:hover {
            color: var(--luxury-gold);
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.3rem;
            color: var(--pure-white);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        [data-theme="light"] .footer-title {
            color: var(--heading-color);
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold-gradient);
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            margin-bottom: 12px;
        }

        .footer-link a {
            color: var(--gray-300);
            transition: var(--transition);
            display: inline-block;
        }

        [data-theme="light"] .footer-link a {
            color: var(--gray-500);
        }

        .footer-link a:hover {
            color: var(--luxury-gold);
            transform: translateX(5px);
        }

        .footer-link a::before {
            content: '→';
            margin-right: 8px;
            color: var(--luxury-gold);
            opacity: 0;
            transition: var(--transition);
        }

        .footer-link a:hover::before {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .copyright {
            color: var(--gray-500);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-content {
                max-width: 700px;
            }
        }

        @media (max-width: 1024px) {
            :root {
                --section-padding: 100px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }

            .hero-content {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 80px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--rich-black);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                transition: right 0.4s ease;
                z-index: 1000;
                border-left: 1px solid var(--border-color);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-link {
                font-size: 1.1rem;
                padding: 10px 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-content {
                margin: 0 20px;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }

            .testimonial-card {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            :root {
                --section-padding: 70px 0;
                --container-width: 95%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-card {
                padding: 30px 20px;
            }
            
            .testimonial-quote::before {
                left: -5px;
            }
            
            .testimonial-quote::after {
                right: -5px;
            }

            .testimonial-author {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .scroll-top {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 400px) {
            .hero-content {
                padding: 25px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .product-card {
                max-width: 100%;
            }
        }
