/* ========== PIZZERIA - LANDING PAGE TEMPLATE ===========
==========================================================
/*=========== LICENCE:  MIT ==============================
/*=========== AUTHOR: JOHNDEV19  =========================
/*=========== CREATION DATE: FEBRUARY 2025  ==============
/*=========== UPDATED: MARCH 2025  =======================
========================================================*/

       /* ===== CSS ROOT VARIABLES ===== */
        :root {
            /* Colors */
            --primary-color: #ff7a5c;
            --primary-light: #ffd2c7;
            --primary-dark: #e56a4e;
            --secondary-color: #ff9d7d;
            --accent-color: #ff5733;
            --background-color: #fff5f2;
            --white: #ffffff;
            --black: #222222;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
            --gray-900: #212529;
            
            /* Typogrsphy */
            --font-family: 'Poppins', sans-serif;
            --font-size-xs: 0.75rem;
            --font-size-sm: 0.875rem;
            --font-size-md: 1rem;
            --font-size-lg: 1.125rem;
            --font-size-xl: 1.25rem;
            --font-size-2xl: 1.5rem;
            --font-size-3xl: 1.875rem;
            --font-size-4xl: 2.25rem;
            --font-size-5xl: 3rem;
            --font-size-6xl: 3.75rem;
            
            /* Font Weights */
            --font-light: 300;
            --font-regular: 400;
            --font-medium: 500;
            --font-semibold: 600;
            --font-bold: 700;
            --font-extrabold: 800;
            
            /* Spacing */
            --spacing-xs: 0.25rem;
            --spacing-sm: 0.5rem;
            --spacing-md: 1rem;
            --spacing-lg: 1.5rem;
            --spacing-xl: 2rem;
            --spacing-2xl: 2.5rem;
            --spacing-3xl: 3rem;
            --spacing-4xl: 4rem;
            
            /* Border Radius */
            --radius-sm: 0.25rem;
            --radius-md: 0.5rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-2xl: 2rem;
            --radius-full: 9999px;
            
            /* Shadows */
            --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            
            /* Container */
            --container-width: 1200px;
            --container-padding: 1rem;
            
            /* Z-index */
            --z-negative: -1;
            --z-normal: 1;
            --z-tooltip: 10;
            --z-fixed: 100;
            --z-modal: 1000;
        }
        
        /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-family);
            font-size: var(--font-size-md);
            line-height: 1.6;
            color: var(--gray-800);
            background-color: var(--background-color);
            overflow-x: hidden;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-normal);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        button, .btn {
            cursor: pointer;
            font-family: var(--font-family);
            font-weight: var(--font-medium);
            border: none;
            outline: none;
            transition: var(--transition-normal);
        }
        
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
        
        section {
            padding: var(--spacing-4xl) 0;
            position: relative;
            overflow: hidden;
        }
        
        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: var(--font-bold);
            line-height: 1.2;
            margin-bottom: var(--spacing-md);
            color: var(--gray-900);
        }
        
        h1 {
            font-size: var(--font-size-5xl);
        }
        
        h2 {
            font-size: var(--font-size-4xl);
        }
        
        h3 {
            font-size: var(--font-size-3xl);
        }
        
        h4 {
            font-size: var(--font-size-2xl);
        }
        
        h5 {
            font-size: var(--font-size-xl);
        }
        
        h6 {
            font-size: var(--font-size-lg);
        }
        
        p {
            margin-bottom: var(--spacing-md);
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .text-center {
            text-align: center;
        }
        
        .section-title {
            margin-bottom: var(--spacing-3xl);
            position: relative;
            z-index: 2;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
            margin-bottom: var(--spacing-md);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
            border-radius: var(--radius-full);
        }
        
        .section-title.text-center h2::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* ===== DECORATIVE SHAPES ===== */
        .shape {
            position: absolute;
            z-index: 0;
        }
        
        .shape-circle {
            border-radius: 50%;
        }
        
        .shape-triangle {
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }
        
        .shape-square {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        
        .shape-wave {
            clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
        }
        
        .shape-donut {
            border-radius: 50%;
            box-shadow: 0 0 0 15px var(--background-color);
        }
        
        .shape-1 {
            width: 150px;
            height: 150px;
            background-color: var(--primary-light);
            top: 10%;
            right: 5%;
            opacity: 0.5;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            bottom: 15%;
            left: 10%;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }
        
        .shape-3 {
            width: 120px;
            height: 120px;
            background-color: var(--accent-color);
            top: 20%;
            left: 5%;
            opacity: 0.2;
            animation: float 10s ease-in-out infinite;
        }
        
        .shape-4 {
            width: 100px;
            height: 100px;
            background-color: var(--primary-color);
            bottom: 10%;
            right: 10%;
            opacity: 0.2;
            animation: float 7s ease-in-out infinite;
        }
        
        .shape-5 {
            width: 60px;
            height: 60px;
            background-color: var(--secondary-color);
            top: 40%;
            right: 20%;
            opacity: 0.3;
            animation: float 9s ease-in-out infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-full);
            font-weight: var(--font-medium);
            transition: var(--transition-normal);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.1);
            transition: var(--transition-normal);
            z-index: -1;
        }
        
        .btn:hover::before {
            width: 100%;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .btn-icon {
            margin-left: var(--spacing-sm);
        }
        
        /* ===== HEADER & NAVIGATION ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            box-shadow: var(--shadow-sm);
            padding: var(--spacing-md) 0;
            z-index: var(--z-fixed);
            transition: var(--transition-normal);
        }
        
        .header.scrolled {
            padding: var(--spacing-sm) 0;
            box-shadow: var(--shadow-md);
        }
        
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: var(--font-size-xl);
            font-weight: var(--font-bold);
            color: var(--primary-color);
        }
        
        .logo i {
            font-size: 1.5em;
            margin-right: var(--spacing-sm);
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
        }
        
        .nav-list {
            display: flex;
            align-items: center;
            margin-right: var(--spacing-xl);
        }
        
        .nav-item {
            margin: 0 var(--spacing-md);
        }
        
        .nav-link {
            font-weight: var(--font-medium);
            color: var(--gray-700);
            position: relative;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition-normal);
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        
        .nav-toggle {
            display: none;
            font-size: var(--font-size-2xl);
            cursor: pointer;
            color: var(--gray-800);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            padding: calc(var(--spacing-4xl) * 2) 0 var(--spacing-4xl);
            background-color: var(--background-color);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background-color: var(--primary-light);
            border-radius: 50%;
            opacity: 0.5;
            z-index: 0;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background-color: var(--primary-light);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 0;
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-3xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: var(--z-normal);
        }
        
        .hero-subtitle {
            font-size: var(--font-size-lg);
            color: var(--primary-color);
            margin-bottom: var(--spacing-sm);
            position: relative;
            display: inline-block;
        }
        
        .hero-subtitle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -30px;
            width: 20px;
            height: 2px;
            background-color: var(--primary-color);
            transform: translateY(-50%);
        }
        
        .hero-title {
            font-size: var(--font-size-6xl);
            margin-bottom: var(--spacing-lg);
            line-height: 1.2;
            position: relative;
        }
        
        .hero-title span {
            color: var(--primary-color);
            display: block;
            position: relative;
        }
        
        .hero-description {
            margin-bottom: var(--spacing-xl);
            color: var(--gray-600);
            position: relative;
            z-index: 1;
        }
        
        .hero-btns {
            display: flex;
            gap: var(--spacing-md);
            position: relative;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-img-main {
            width: 100%;
            border-radius: var(--radius-full);
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 2;
            animation: circling 30s linear infinite;
        }
        
        @keyframes circling {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        .hero-img-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background-color: var(--primary-light);
            border-radius: var(--radius-full);
            z-index: 1;
        }
        
        .hero-img-dots {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
            background-size: 15px 15px;
            z-index: 3;
        }
        
        .hero-img-triangle {
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            opacity: 0.7;
            z-index: 3;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero-stats {
            display: flex;
            align-items: center;
            margin-top: var(--spacing-xl);
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            width: fit-content;
            position: relative;
            z-index: 3;
        }
        
        .hero-stats::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 20px;
            width: 20px;
            height: 20px;
            background-color: var(--white);
            transform: rotate(45deg);
            z-index: -1;
        }
        
        .hero-stat-avatars {
            display: flex;
            margin-right: var(--spacing-md);
        }
        
        .hero-stat-avatar {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            border: 2px solid var(--white);
            margin-right: -15px;
            overflow: hidden;
        }
        
        .hero-stat-number {
            font-weight: var(--font-bold);
            color: var(--primary-color);
            margin-right: var(--spacing-sm);
        }
        
        .hero-stat-text {
            font-size: var(--font-size-sm);
            color: var(--gray-600);
        }
        
        .hero-card {
            position: absolute;
            bottom: 0;
            left: 0;
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            max-width: 250px;
            z-index: 3;
        }
        
        .hero-card-img {
            width: 60px;
            height: 60px;
            border-radius: var(--radius-md);
            margin-right: var(--spacing-md);
            overflow: hidden;
        }
        
        .hero-card-content h4 {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-xs);
        }
        
        .hero-card-rating {
            display: flex;
            align-items: center;
            margin-bottom: var(--spacing-xs);
        }
        
        .hero-card-rating i {
            color: #FFD700;
            font-size: var(--font-size-sm);
            margin-right: 2px;
        }
        
        .hero-card-price {
            font-weight: var(--font-bold);
            color: var(--primary-color);
        }
        
        /* ===== ABOUT SECTION ===== */
        .about {
            background-color: var(--white);
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background-color: var(--primary-light);
            opacity: 0.3;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 150px;
            height: 150px;
            background-color: var(--primary-light);
            opacity: 0.3;
            clip-path: polygon(0 100%, 0 0, 100% 100%);
        }
        
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-3xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .about-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
            position: relative;
        }
        
        .about-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-normal);
        }
        
        .about-img:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .about-img:nth-child(1) {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
            height: 95%;
        }
        
        .about-img:nth-child(2), .about-img:nth-child(3) {
            max-width: 100%;
        }
        
        .about-img-dots {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
            background-size: 15px 15px;
            z-index: 3;
        }
        
        .about-img-circle {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 60px;
            height: 60px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            opacity: 0.5;
            z-index: 3;
            animation: float 7s ease-in-out infinite;
        }
        
        .about-content h2 {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .about-content h2::before {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .about-text {
            margin-bottom: var(--spacing-lg);
            color: var(--gray-600);
            position: relative;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
            margin-bottom: var(--spacing-xl);
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            background-color: var(--gray-100);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            transition: var(--transition-normal);
        }
        
        .about-feature:hover {
            background-color: var(--primary-light);
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }
        
        .about-feature i {
            font-size: var(--font-size-xl);
            color: var(--primary-color);
            margin-right: var(--spacing-sm);
        }
        
        .about-feature-text h4 {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-xs);
        }
        
        .about-feature-text p {
            font-size: var(--font-size-sm);
            color: var(--gray-600);
            margin-bottom: 0;
        }
        
        /* ===== MENU SECTION ===== */
        .menu {
            background-color: var(--background-color);
            position: relative;
        }
        
        .menu::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 50px;
            width: 100px;
            height: 100px;
            background-color: var(--primary-color);
            opacity: 0.1;
            border-radius: 50%;
        }
        
        .menu::after {
            content: '';
            position: absolute;
            bottom: 100px;
            right: 100px;
            width: 150px;
            height: 150px;
            background-color: var(--primary-color);
            opacity: 0.1;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        }
        
        .menu-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: var(--spacing-2xl);
            flex-wrap: wrap;
            gap: var(--spacing-sm);
            position: relative;
            z-index: 1;
        }
        
        .menu-tab {
            padding: 0.5rem 1.5rem;
            background-color: var(--white);
            border-radius: var(--radius-full);
            font-weight: var(--font-medium);
            cursor: pointer;
            transition: var(--transition-normal);
            box-shadow: var(--shadow-sm);
        }
        
        .menu-tab.active, .menu-tab:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(3px);
            box-shadow: var(--shadow-md);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: var(--spacing-xl);
            position: relative;
            z-index: 1;
        }
        
        .menu-item {
            background-color: var(--white);
            border-radius: 160px 160px 0 0;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
            position: relative;
            border: 0.4px solid var(--primary-color);
        }
        
        .menu-item::before {
            content: '';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background-color: var(--primary-light);
            border-radius: 50%;
            opacity: 0;
            transition: var(--transition-normal);
            z-index: -1;
        }
        
        .menu-item:hover::before {
            opacity: 1;
        }
        
        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .menu-item-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .menu-item-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
        }
        
        .menu-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(0.9);
            transition: var(--transition-normal);
        }
        
        .menu-item-content {
            padding: var(--spacing-md);
        }
        
        .menu-item-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-xs);
        }
        
        .menu-item-text {
            font-size: var(--font-size-sm);
            color: var(--gray-600);
            margin-bottom: var(--spacing-md);
        }
        
        .menu-item-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .menu-item-price {
            font-weight: var(--font-bold);
            color: var(--primary-color);
        }
        
        .menu-item-btn {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: var(--primary-color);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-normal);
        }
        
        .menu-item-btn:hover {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }
        
        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            background-color: var(--white);
            position: relative;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
            background-size: 50px 50px;
            opacity: 0.3;
            z-index: 0;
        }
        
        .testimonials-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-3xl);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .testimonials-content h2 {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .testimonials-content h2::before {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: var(--primary-light);
            z-index: -1;
            opacity: 0.5;
        }
        
        .testimonials-text {
            margin-bottom: var(--spacing-lg);
            color: var(--gray-600);
            position: relative;
        }
        
        .testimonials-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-md);
            position: relative;
        }
        
        .testimonial-img {
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-md);
        }
        
        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-normal);
        }
        
        .testimonial-img:hover img {
            transform: scale(1.05);
        }
        
        .testimonial-img:nth-child(1) {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
            height: 100%;
        }
        
        .testimonial-img:nth-child(2), .testimonial-img:nth-child(3) {
            height: 200px;
        }
        
        .testimonial-img-circle {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            border-radius: 50%;
            opacity: 0.3;
            z-index: 3;
            animation: float 8s ease-in-out infinite;
        }
        
        .testimonial-card {
            background-color: var(--white);
            border-radius: var(--radius-lg);
            padding: var(--spacing-lg);
            box-shadow: var(--shadow-md);
            margin-top: var(--spacing-xl);
            position: relative;
            z-index: 2;
            margin-bottom: 10px;
        }
        
        .testimonial-card::before {
            content: '\201C';
            position: absolute;
            top: -30px;
            left: 20px;
            font-size: 100px;
            color: var(--primary-light);
            font-family: serif;
            line-height: 1;
            z-index: -1;
        }
        
        .testimonial-card-text {
            font-style: italic;
            margin-bottom: var(--spacing-md);
            color: var(--gray-700);
        }
        
        .testimonial-card-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-card-author-img {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-full);
            overflow: hidden;
            margin-right: var(--spacing-md);
            border: 3px solid var(--primary-light);
        }
        
        .testimonial-card-author-name {
            font-weight: var(--font-semibold);
            margin-bottom: 0;
        }
        
        .testimonial-card-author-title {
            font-size: var(--font-size-sm);
            color: var(--gray-600);
        }
        
        /* ===== CONTACT SECTION ===== */
        .contact {
            background-color: var(--background-color);
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background-color: var(--primary-light);
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            opacity: 0.5;
            z-index: 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-3xl);
            position: relative;
            z-index: 1;
        }
        
        .contact-info h2 {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .contact-info h2::before {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 10px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .contact-text {
            margin-bottom: var(--spacing-lg);
            color: var(--gray-600);
            position: relative;
        }
        
        .contact-details {
            margin-bottom: var(--spacing-xl);
        }
        
        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: var(--spacing-md);
            background-color: var(--white);
            padding: var(--spacing-md);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }
        
        .contact-detail:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
        }
        
        .contact-detail i {
            font-size: var(--font-size-xl);
            color: var(--primary-color);
            margin-right: var(--spacing-md);
        }
        
        .contact-detail-text h4 {
            font-size: var(--font-size-md);
            margin-bottom: var(--spacing-xs);
        }
        
        .contact-detail-text p {
            font-size: var(--font-size-sm);
            color: var(--gray-600);
            margin-bottom: 0;
        }
        
        .contact-social {
            display: flex;
            gap: var(--spacing-md);
        }
        
        .contact-social-link {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-full);
            background-color: var(--primary-color);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-normal);
        }
        
        .contact-social-link:hover {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }
        
        .contact-form {
            background-color: var(--white);
            padding: var(--spacing-xl);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            position: relative;
            z-index: 2;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            background-color: var(--primary-light);
            border-radius: var(--radius-lg);
            z-index: -1;
            opacity: 0.5;
        }
        
        .form-group {
            margin-bottom: var(--spacing-md);
        }
        
        .form-label {
            display: block;
            margin-bottom: var(--spacing-xs);
            font-weight: var(--font-medium);
            color: var(--gray-700);
        }
        
        .form-control {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-md);
            font-family: var(--font-family);
            font-size: var(--font-size-md);
            transition: var(--transition-normal);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 122, 92, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-btn {
            width: 100%;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            background-color: var(--gray-900);
            color: var(--white);
            padding: var(--spacing-3xl) 0 var(--spacing-md);
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-xl);
            margin-bottom: var(--spacing-2xl);
            position: relative;
            z-index: 1;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            font-size: var(--font-size-xl);
            font-weight: var(--font-bold);
            color: var(--primary-color);
            margin-bottom: var(--spacing-md);
        }
        
        .footer-logo i {
            font-size: 1.5em;
            margin-right: var(--spacing-sm);
        }
        
        .footer-text {
            color: var(--gray-400);
            margin-bottom: var(--spacing-md);
        }
        
        .footer-social {
            display: flex;
            gap: var(--spacing-sm);
            margin-bottom: var(--spacing-lg);
        }
        
        .footer-social-link {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            background-color: var(--gray-800);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-normal);
        }
        
        .footer-social-link:hover {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }
        
        .footer-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-lg);
            color: var(--white);
            position: relative;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: var(--radius-full);
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
        }
        
        .footer-link {
            margin-bottom: var(--spacing-sm);
            color: var(--gray-400);
            transition: var(--transition-normal);
        }
        
        .footer-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .footer-contact {
            margin-bottom: var(--spacing-sm);
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            color: var(--primary-color);
            margin-right: var(--spacing-sm);
            font-size: var(--font-size-md);
        }
        
        .footer-contact p {
            color: var(--gray-400);
            margin-bottom: 0;
        }
        
        /* Enhanced Footer Styles */
        .footer-newsletter {
            margin-top: var(--spacing-md);
        }
        
        .footer-newsletter p {
            color: var(--gray-400);
            margin-bottom: var(--spacing-md);
        }
        
        .newsletter-form {
            display: flex;
            gap: var(--spacing-sm);
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid var(--gray-700);
            background-color: var(--gray-800);
            border-radius: var(--radius-md);
            color: var(--white);
            font-family: var(--font-family);
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .newsletter-btn {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 0.75rem 1rem;
            border-radius: var(--radius-md);
            font-weight: var(--font-medium);
            transition: var(--transition-normal);
        }
        
        .newsletter-btn:hover {
            background-color: var(--primary-dark);
        }
        
        .footer-awards {
            display: flex;
            gap: var(--spacing-md);
            margin-top: var(--spacing-md);
            flex-wrap: wrap;
        }
        
        .footer-award {
            display: flex;
            align-items: center;
            background-color: var(--gray-800);
            padding: var(--spacing-sm) var(--spacing-md);
            border-radius: var(--radius-md);
        }
        
        .footer-award i {
            color: gold;
            margin-right: var(--spacing-sm);
        }
        
        .footer-award span {
            font-size: var(--font-size-sm);
            color: var(--gray-300);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--gray-800);
            padding-top: var(--spacing-md);
            text-align: center;
            color: var(--gray-500);
            font-size: var(--font-size-sm);
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: var(--spacing-md);
        }
        
        .footer-bottom-link {
            color: var(--gray-500);
            transition: var(--transition-normal);
        }
        
        .footer-bottom-link:hover {
            color: var(--primary-color);
        }
        
        .footer-payment-methods {
            display: flex;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-md);
        }
        
        .footer-payment {
            width: 40px;
            height: 25px;
            background-color: var(--gray-800);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-sm);
        }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media screen and (max-width: 1024px) {
            h1 {
                font-size: var(--font-size-4xl);
            }
            
            h2 {
                font-size: var(--font-size-3xl);
            }
            
            .hero-title {
                font-size: var(--font-size-4xl);
            }
            
            .shape {
                display: none;
            }
        }
        
        @media screen and (max-width: 768px) {
            .nav-list {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                padding: 0 var(--spacing-xl);
                box-shadow: var(--shadow-lg);
                transition: var(--transition-normal);
                z-index: var(--z-fixed);
                margin-right: 0;
            }
            
            .nav-list.show {
                right: 0;
            }
            
            .nav-item {
                margin: var(--spacing-md) 0;
            }
            
            .nav-toggle {
                display: block;
            }
            
            .nav-close {
                position: absolute;
                top: var(--spacing-xl);
                right: var(--spacing-xl);
                font-size: var(--font-size-2xl);
                cursor: pointer;
                display: block;
            }
            
            .hero-container, 
            .about-container, 
            .testimonials-container, 
            .contact-container {
                grid-template-columns: 1fr;
                gap: var(--spacing-xl);
            }
            
            .hero-content {
                order: 1;
                text-align: center;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            .hero-stats {
                margin: var(--spacing-xl) auto 0;
            }
            
            .section-title {
                text-align: center;
            }
            
            .section-title h2::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .menu-item-img {
                height: 300px;
            }
            
            .menu-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .hero-img-dots,
            .hero-img-triangle,
            .about-img-dots,
            .about-img-circle,
            .testimonial-img-circle {
                display: none;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: var(--spacing-md);
            }
            
            .footer-bottom-links {
                justify-content: center;
                margin-top: var(--spacing-sm);
            }
        }
        
        @media screen and (max-width: 576px) {
            h1, .hero-title {
                font-size: var(--font-size-3xl);
            }
            
            h2 {
                font-size: var(--font-size-2xl);
            }
            
            .hero-btns {
                flex-direction: column;
                gap: var(--spacing-sm);
            }
            
            .hero-card {
                display: none;
            }
            
            .menu-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: var(--spacing-sm);
                justify-content: flex-start;
            }
            
            .menu-tab {
                white-space: nowrap;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .contact-form::before {
                display: none;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        @media screen and (min-width: 769px) {
            .nav-close {
                display: none;
            }
        }
