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

        :root {
            /* Light Theme */
            --bg-primary: #f5f5f5;
            --bg-secondary: #ffffff;
            --text-primary: #0a0a0a;
            --text-secondary: #4a4a4a;
            --accent-red: #b41e1e;
            --accent-gold: #d4af37;
            --border-color: rgba(10, 10, 10, 0.1);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(10, 10, 10, 0.2);
            --shadow-color: rgba(0, 0, 0, 0.1);
            --overlay-gradient: linear-gradient(135deg, rgba(245, 245, 245, 0.8), rgba(180, 30, 30, 0.2));
        }

        [data-theme="dark"] {
            /* Dark Theme */
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --text-primary: #f5f5f5;
            --text-secondary: #d4d4d4;
            --accent-red: #b41e1e;
            --accent-gold: #d4af37;
            --border-color: rgba(245, 245, 245, 0.1);
            --glass-bg: rgba(10, 10, 10, 0.7);
            --glass-border: rgba(245, 245, 245, 0.1);
            --shadow-color: rgba(0, 0, 0, 0.5);
            --overlay-gradient: linear-gradient(135deg, rgba(10, 10, 10, 0.75), rgba(139, 0, 0, 0.3));
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.3s ease, color 0.3s ease;
        }

        /* Hero Section with Slideshow */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--overlay-gradient);
        }

        /* Slide backgrounds */
        .slide1 {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('slide1.jpeg');
            background-size: cover;
            background-position: center;
        }

        .slide2 {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('https://images.unsplash.com/photo-1529006557810-274b9b2fc783?w=1920&q=80');
            background-size: cover;
            background-position: center;
        }

        .slide3 {
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                        url('https://images.unsplash.com/photo-1639024471283-03518883512d?w=1920&q=80');
            background-size: cover;
            background-position: center;
        }

        /* Glass Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--accent-red);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-primary);
            text-shadow: 2px 2px 4px var(--shadow-color);
        }

        .logo span {
            color: var(--accent-red);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Theme Toggle Button */
        .theme-toggle {
            width: 50px;
            height: 50px;
            background: var(--glass-bg);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px var(--shadow-color);
        }

        .theme-toggle:hover {
            transform: scale(1.1) rotate(15deg);
            border-color: var(--accent-gold);
            box-shadow: 0 6px 20px var(--shadow-color);
        }

        .theme-toggle:active {
            transform: scale(0.95);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--text-primary);
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Sidebar */
        .sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-left: 1px solid var(--accent-red);
            padding: 6rem 2rem 2rem;
            transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 999;
            overflow-y: auto;
        }

        .sidebar.active {
            right: 0;
        }

        .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(180, 30, 30, 0.05), rgba(212, 175, 55, 0.02));
            z-index: -1;
        }

        .sidebar h3 {
            color: var(--text-primary);
            margin-bottom: 2rem;
            font-size: 1.5rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--bg-secondary);
            border-radius: 15px;
            border: 1px solid var(--border-color);
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(180, 30, 30, 0.1);
            transform: translateX(-10px);
            border-color: var(--accent-red);
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent-red), #8b0000);
            border-radius: 10px;
            font-size: 1.2rem;
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 2rem;
            animation: fadeInUp 1s ease;
        }

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

        .hero h1 {
            font-size: 4rem;
            color: var(--text-primary);
            text-shadow: 3px 3px 6px var(--shadow-color);
            margin-bottom: 1rem;
            animation: slideInLeft 1s ease 0.2s both;
        }

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

        .hero .tagline {
            font-size: 2rem;
            color: var(--accent-gold);
            text-shadow: 2px 2px 4px var(--shadow-color);
            margin-bottom: 2rem;
            animation: slideInRight 1s ease 0.4s both;
        }

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

        .price-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-red), #8b0000);
            color: white;
            padding: 1.5rem 3rem;
            border-radius: 50px;
            font-size: 3rem;
            font-weight: bold;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(180, 30, 30, 0.4);
            animation: pulse 2s ease infinite;
        }

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

        .order-btn {
            display: inline-block;
            padding: 1.5rem 3rem;
            background: linear-gradient(135deg, var(--accent-gold), #b8941e);
            color: var(--bg-primary);
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            margin-top: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            animation: bounceIn 1s ease 0.6s both;
            border: none;
            cursor: pointer;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .order-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        /* Order Form Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 2px solid var(--border-color);
            border-radius: 30px;
            padding: 3rem;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

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

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            cursor: pointer;
            color: var(--accent-red);
            transition: transform 0.3s ease;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .close-modal:hover {
            transform: rotate(90deg);
            background: rgba(180, 30, 30, 0.1);
        }

        .modal h2 {
            color: var(--text-primary);
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-red);
            background: var(--bg-secondary);
            box-shadow: 0 0 0 3px rgba(180, 30, 30, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-order {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .submit-order:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
        }

        /* Content Section */
        .content {
            padding: 5rem 2rem;
            background: var(--bg-primary);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-section {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .info-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .info-section h2 {
            color: var(--text-primary);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .info-section p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .location {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(180, 30, 30, 0.05);
            border-radius: 20px;
            border-left: 4px solid var(--accent-red);
        }

        .location-icon {
            font-size: 2rem;
            color: var(--accent-red);
        }

        /* Map Section */
        .map-section {
            padding: 5rem 2rem;
            background: var(--bg-secondary);
        }

        .map-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .map-container h2 {
            color: var(--text-primary);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .map-wrapper {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow-color);
            border: 2px solid var(--border-color);
            height: 450px;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%) contrast(1.1);
        }

        /* Footer */
        footer {
            background: var(--glass-bg);
            border-top: 1px solid var(--border-color);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: var(--text-primary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-secondary);
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

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

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--accent-red);
        }

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

        .footer-social-icon {
            width: 45px;
            height: 45px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .footer-social-icon:hover {
            background: linear-gradient(135deg, var(--accent-red), #8b0000);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .footer-bottom p {
            margin: 0.5rem 0;
        }

        .footer-bottom a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--accent-red);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .tagline {
                font-size: 1.3rem;
            }

            .price-badge {
                font-size: 2rem;
                padding: 1rem 2rem;
            }

            .order-btn {
                font-size: 1.1rem;
                padding: 1rem 2rem;
            }

            .modal {
                padding: 1rem;
            }

            .modal-content {
                padding: 2rem 1.5rem;
                margin: 0;
                max-height: 85vh;
                border-radius: 25px;
            }

            .modal h2 {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .form-group {
                margin-bottom: 1.2rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 0.9rem;
                font-size: 0.95rem;
            }

            .form-group textarea {
                min-height: 80px;
            }

            .submit-order {
                padding: 1rem;
                font-size: 1rem;
            }

            .close-modal {
                top: 0.8rem;
                right: 0.8rem;
                font-size: 1.8rem;
            }

            .info-section {
                padding: 2rem;
            }

            .info-section h2 {
                font-size: 2rem;
            }

            .sidebar {
                width: 280px;
            }

            .nav-container {
                padding: 0;
            }

            nav {
                padding: 1rem 1.5rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .theme-toggle {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }

            .nav-right {
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .map-wrapper {
                height: 350px;
            }

            .map-section {
                padding: 3rem 1rem;
            }

            footer {
                padding: 3rem 1.5rem 1.5rem;
            }

            .location {
                flex-direction: column;
                text-align: center;
                border-left: none;
                border-top: 4px solid var(--accent-red);
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero .tagline {
                font-size: 1.1rem;
            }

            .price-badge {
                font-size: 1.8rem;
                padding: 0.8rem 1.5rem;
            }

            .order-btn {
                font-size: 1rem;
                padding: 0.8rem 1.5rem;
            }

            .modal-content {
                padding: 1.5rem 1rem;
                max-height: 80vh;
                border-radius: 20px;
            }

            .modal h2 {
                font-size: 1.4rem;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 0.8rem;
                font-size: 0.9rem;
                border-radius: 12px;
            }

            .submit-order {
                padding: 0.9rem;
                font-size: 0.95rem;
            }

            .info-section {
                padding: 1.5rem;
            }

            .info-section h2 {
                font-size: 1.8rem;
            }

            .info-section p {
                font-size: 1rem;
            }

            .map-wrapper {
                height: 300px;
                border-radius: 20px;
            }

            .sidebar {
                width: 100%;
                padding: 5rem 1.5rem 2rem;
            }

            .theme-toggle {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 360px) {
            .modal-content {
                padding: 1.2rem 0.8rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 0.7rem;
                font-size: 0.85rem;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }