
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            background-color: #fff;
            color: #1e1e1e;
        }

        h1,
        h2,
        h3,
        h4,
        .logo-font,
        .nav-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Color palette: Red, Orange, Black, White, Gold accents */
        :root {
            --primary-red: #dc2626;
            --primary-orange: #f97316;
            --dark-bg: #111111;
            --gold: #fbbf24;
            --light-bg: #fef9f0;
            --hover-red: #b91c1c;
            --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
        }

        /* Top header styles */
        .top-header {
            background-color: #1a1a1a;
            color: #f5f5f5;
            font-size: 0.85rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 193, 7, 0.2);
        }

        .top-header a {
            color: #f5f5f5;
            text-decoration: none;
            transition: 0.3s;
        }

        .top-header a:hover {
            color: var(--gold);
        }

        .social-icons-top i {
            font-size: 0.9rem;
            margin: 0 8px;
            transition: 0.3s;
        }

        .social-icons-top i:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Navbar */
        .navbar {
            background: white !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #dc2626, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent !important;
            letter-spacing: -0.5px;
        }

        .nav-link {
            font-weight: 600;
            color: #2d2d2d !important;
            margin: 0 8px;
            transition: 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(90deg, #dc2626, #f97316);
            transition: 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-order-nav {
            background: linear-gradient(45deg, #dc2626, #f97316);
            border: none;
            color: white;
            border-radius: 40px;
            padding: 6px 22px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-order-nav:hover {
            transform: scale(1.03);
            background: linear-gradient(45deg, #b91c1c, #ea580c);
            box-shadow: 0 8px 18px rgba(220, 38, 38, 0.25);
        }

        /* Hero */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('https://images.pexels.com/photos/958545/pexels-photo-958545.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
            min-height: 85vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .btn-hero {
            background: linear-gradient(45deg, #dc2626, #f97316);
            border: none;
            padding: 12px 32px;
            font-weight: 700;
            border-radius: 40px;
            transition: 0.3s;
            margin: 8px;
        }

        .btn-hero-outline {
            background: transparent;
            border: 2px solid white;
            padding: 10px 30px;
            font-weight: 700;
            border-radius: 40px;
            transition: 0.3s;
        }

        .btn-hero-outline:hover {
            background: white;
            color: var(--primary-red);
            border-color: white;
        }

        .floating-card {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Section style */
        section{
            overflow: hidden;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #dc2626, #f97316);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .section-sub {
            color: #4b5563;
            max-width: 700px;
            margin: 0 auto;
        }

        /* cards menu */
        .menu-card {
            border: none;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.35s ease;
            box-shadow: var(--shadow-sm);
            background: white;
        }

        .menu-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .menu-card img {
            height: 210px;
            object-fit: cover;
            transition: 0.4s;
        }

        .menu-card:hover img {
            transform: scale(1.05);
        }

        .price {
            color: var(--primary-red);
            font-weight: 800;
            font-size: 1.3rem;
        }

        .btn-order-card {
            background: #dc2626;
            color: white;
            border-radius: 30px;
            padding: 6px 20px;
            font-weight: 600;
            transition: 0.2s;
        }

        .btn-order-card:hover {
            background: #b91c1c;
            transform: translateY(-2px);
        }

        /* Why choose icons */
        .feature-icon {
            background: linear-gradient(145deg, #fff5e6, #ffe6d5);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            font-size: 2.3rem;
            color: var(--primary-red);
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, #dc2626, #f97316);
            color: white;
            transform: scale(1.1);
        }

        /* process steps */
        .step-item {
            position: relative;
            text-align: center;
        }

        .step-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dc2626, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            font-weight: bold;
            color: white;
            transition: 0.3s;
        }

        .step-item:hover .step-circle {
            transform: scale(1.08);
            box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
        }

        /* Testimonial carousel */
        .testimonial-card {
            background: white;
            border-radius: 32px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
        }

        .rating i {
            color: var(--gold);
            margin: 0 2px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: #dc2626;
            border-radius: 50%;
            padding: 20px;
        }

        /* gallery overlay */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            cursor: pointer;
        }

        .gallery-item img {
            transition: 0.5s;
            height: 260px;
            width: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.4s;
            color: white;
            font-size: 2rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* contact */
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 32px;
            box-shadow: var(--shadow-sm);
        }

        .form-control,
        .form-select {
            border-radius: 50px;
            padding: 12px 20px;
            border: 1px solid #e5e7eb;
        }

        .btn-submit {
            background: linear-gradient(45deg, #dc2626, #f97316);
            border: none;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 700;
            width: 100%;
        }

        .map-container iframe {
            width: 100%;
            border-radius: 24px;
            height: 280px;
        }

        /* cta fullwidth */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/699953/pexels-photo-699953.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }

        /* footer */
        .footer {
            background: #0f0f0f;
            color: #ccc;
        }

        .footer a {
            text-decoration: none;
            color: #ccc;
            transition: 0.3s;
        }

        .footer a:hover {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .top-header .row>div {
                margin-bottom: 5px;
            }
        }