:root {
            --primary: #c62828;
            --primary-dark: #8e0000;
            --primary-light: #ff5f52;
            --secondary: #ef6c00;
            --secondary-dark: #b53d00;
            --dark: #2c1a1a;
            --darker: #1a0a0a;
            --light: #f5f5f5;
            --lighter: #fff8f1;
            --spice: #ff9800;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        body:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(198, 40, 40, 0.1) 0%, rgba(26, 10, 10, 0.95) 80%);
            z-index: -1;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--light);
        }

        h1 {
            font-size: 4rem;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        h2 {
            font-size: 3rem;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 2.5rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 5px;
            background: var(--spice);
            border-radius: 3px;
        }

        p {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .container {
            width: 90%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: var(--primary);
            color: var(--lighter);
            border: none;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1.1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .btn:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.8s;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .btn:hover:after {
            left: 100%;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--spice);
            color: var(--spice);
        }

        .btn-outline:hover {
            background: var(--spice);
            color: var(--darker);
        }

        section {
            padding: 120px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 10, 10, 0.9);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            transition: var(--transition);
            border-bottom: 1px solid rgba(239, 108, 0, 0.2);
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-svg {
            height: 100px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: var(--transition);
        }

        .logo-svg:hover {
            filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 152, 0, 0.5));
            transform: scale(1.05);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--light);
            font-weight: 600;
            font-size: 1.05rem;
            transition: var(--transition);
            position: relative;
            padding: 8px 0;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--spice);
            transition: var(--transition);
        }

        nav ul li a:hover {
            color: var(--spice);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light);
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            color: var(--spice);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(26, 10, 10, 0.7), rgba(26, 10, 10, 0.7)), url('https://images.unsplash.com/photo-1600891964599-f61ba0e24092?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(198, 40, 40, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(239, 108, 0, 0.2) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
            z-index: 1;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--spice);
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 1.5s; }
        .particle:nth-child(5) { top: 10%; left: 70%; animation-delay: 3s; }
        .particle:nth-child(6) { top: 70%; left: 15%; animation-delay: 0.5s; }

        .hero-content {
            max-width: 800px;
            position: relative;
            z-index: 10;
        }

        .hero-content h1 {
            margin-bottom: 1.5rem;
            animation: heroTitleAppear 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            opacity: 0;
            transform: translateY(50px) scale(0.8);
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 248, 241, 0.9);
            animation: fadeInSlide 1s ease-out 0.5s forwards;
            opacity: 0;
            transform: translateX(-30px);
        }

        .hero-highlight {
            display: inline-block;
            background: rgba(239, 108, 0, 0.2);
            padding: 8px 20px;
            border-radius: 30px;
            margin: 15px 0;
            font-weight: 600;
            color: var(--spice);
            animation: pulseGlow 2s ease-in-out infinite, fadeInSlide 1s ease-out 0.3s forwards;
            opacity: 0;
            transform: translateX(-30px);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .hero-highlight::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        .hero-btns {
            display: flex;
            gap: 25px;
            animation: bounceIn 1s ease-out 0.8s forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-btns .btn {
            position: relative;
            overflow: hidden;
        }

        .hero-btns .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .hero-btns .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* About Section */
        .about {
            background-color: var(--dark);
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
        }

        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            transform: rotate(-3deg);
            transition: var(--transition);
        }

        .about-img:hover {
            transform: rotate(0);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }

        .value-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 35px;
            transition: var(--transition);
            border-top: 4px solid var(--spice);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .value-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(239, 108, 0, 0.1);
            z-index: -1;
            transition: var(--transition);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .value-card:hover:before {
            height: 100%;
        }

        .value-card i {
            font-size: 2.8rem;
            color: var(--spice);
            margin-bottom: 25px;
        }

        /* Products */
        .products {
            background: linear-gradient(to bottom, var(--darker) 0%, rgba(44, 26, 26, 0.9) 100%), url('https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            position: relative;
        }

        .products:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 10, 10, 0.85);
            z-index: 0;
        }

        .products .container {
            position: relative;
            z-index: 2;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 0;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--shadow);
        }

        .product-img {
            height: 250px;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-info {
            padding: 25px;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-hover);
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-card h3 {
            color: var(--spice);
            font-size: 1.8rem;
        }

        /* Stats */
        .stats {
            background: linear-gradient(45deg, var(--primary) 0%, var(--secondary-dark) 100%);
            padding: 100px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item i {
            font-size: 3.5rem;
            color: var(--lighter);
            margin-bottom: 20px;
        }

        .stat-item h3 {
            font-size: 3.5rem;
            color: var(--lighter);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-item p {
            color: var(--lighter);
            font-weight: 600;
        }

        /* Contact */
        .contact {
            background-color: var(--dark);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 25px;
            align-items: flex-start;
        }

        .contact-item i {
            font-size: 1.8rem;
            color: var(--spice);
            min-width: 40px;
            padding-top: 5px;
        }

        .contact-form .form-group {
            margin-bottom: 25px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            font-size: 1rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--spice);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 15px rgba(239, 108, 0, 0.2);
        }

        .contact-form textarea {
            min-height: 180px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background: var(--darker);
            padding: 100px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
            font-size: 1.6rem;
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--spice);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links li a {
            color: var(--gray);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links li a:hover {
            color: var(--spice);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 18px;
            margin-top: 25px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            color: var(--light);
            transition: var(--transition);
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--spice);
            color: var(--darker);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
            }
            50% {
                transform: translateY(-40px) rotate(180deg);
            }
            75% {
                transform: translateY(-20px) rotate(270deg);
            }
        }

        @keyframes heroTitleAppear {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.8);
            }
            60% {
                opacity: 0.8;
                transform: translateY(-10px) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.3);
            }
            50% {
                opacity: 0.7;
                transform: translateY(-10px) scale(1.05);
            }
            70% {
                opacity: 0.9;
                transform: translateY(5px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(239, 108, 0, 0.4);
                border-color: rgba(239, 108, 0, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(239, 108, 0, 0.8);
                border-color: rgba(239, 108, 0, 0.6);
            }
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background: radial-gradient(circle at 30% 70%, rgba(198, 40, 40, 0.3) 0%, transparent 50%),
                            radial-gradient(circle at 70% 30%, rgba(239, 108, 0, 0.2) 0%, transparent 50%);
            }
            50% {
                background: radial-gradient(circle at 70% 30%, rgba(198, 40, 40, 0.4) 0%, transparent 50%),
                            radial-gradient(circle at 30% 70%, rgba(239, 108, 0, 0.3) 0%, transparent 50%);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            h1 {
                font-size: 3.2rem;
            }
            
            h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-img {
                max-width: 80%;
                margin: 0 auto 50px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }
            
            header.scrolled {
                padding: 12px 0;
            }
            
            .logo-svg {
                height: 50px;
                width: auto;
                filter: brightness(0) invert(1);
                transition: var(--transition);
            }
            
            .mobile-toggle {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 90px);
                background: var(--dark);
                transition: var(--transition);
                z-index: 999;
                box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 40px 30px;
            }
            
            nav ul li {
                margin: 0 0 25px 0;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 20px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            section {
                padding: 90px 0;
                margin-top: 0;
            }
            
            section:first-of-type {
                padding-top: 110px;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.4rem;
            }
            
            h2 {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .hero {
                min-height: 750px;
                padding-top: 90px;
            
            }
            
            .hero-content {
                text-align: center;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            section {
                padding: 70px 0;
            }
        }