
        :root {
            --primary-red: #e63946;
            --dark-red: #d00000;
            --light-red: #ff6b6b;
            --white: #ffffff;
            --off-white: #f8f9fa;
            --light-gray: #e9ecef;
            --medium-gray: #adb5bd;
            --dark-gray: #212529;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            width: 100%;
             overflow-x: hidden;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-gray);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* Header */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 1.2rem 0;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 0.8rem 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 56px;
            width: 92px;;
        }

        .logo span {
            color: var(--dark-gray);
            margin-left: 5px;
        }

        .logo-icon {
            margin-right: 8px;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-red);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-gray);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), 
                        url('img/hero.avif') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: left;
            color: var(--white);
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(230, 57, 70, 0.1) 0%, transparent 100%);
            z-index: 1;
        }

        .hero-content {
            max-width: 650px;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1.2rem;
        }

        .secondary-button {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .secondary-button:hover {
            background-color: var(--white);
            color: var(--primary-red);
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 40px;
            height: 40px;
            top: 40%;
            right: 15%;
            animation-delay: 4s;
        }

        /* Features Section */
        .features {
            padding: 6rem 0;
            background-color: var(--off-white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-gray);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background-color: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid var(--light-gray);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--dark-red) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(180deg);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--medium-gray);
        }
        
        /*----About Us---------*/
  .about-section-123 {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
            position: relative;
            overflow: hidden;
        }

        .container-123 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header-123 {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp-123 0.8s forwards 0.3s;
        }

        .section-title-123 {
            font-size: 2.5rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title-123::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-red);
            border-radius: 2px;
        }

        .section-subtitle-123 {
            font-size: 1.1rem;
            color: var(--medium-gray);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .about-content-123 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text-123 {
            opacity: 0;
            transform: translateX(-30px);
            animation: fadeInLeft-123 0.8s forwards 0.5s;
        }

        .about-text-123 p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark-gray);
            margin-bottom: 25px;
        }

        .highlight-text-123 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-red);
            margin: 30px 0;
            padding-left: 20px;
            border-left: 4px solid var(--primary-red);
        }

        .about-image-123 {
            position: relative;
            opacity: 0;
            transform: translateX(30px);
            animation: fadeInRight-123 0.8s forwards 0.7s;
        }

        .image-main-123 {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .image-main-123:hover {
            transform: scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .promise-cards-123 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .promise-card-123 {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .promise-card-123:nth-child(1) {
            animation: fadeInUp-123 0.8s forwards 0.9s;
        }

        .promise-card-123:nth-child(2) {
            animation: fadeInUp-123 0.8s forwards 1.1s;
        }

        .promise-card-123:nth-child(3) {
            animation: fadeInUp-123 0.8s forwards 1.3s;
        }

        .promise-card-123:nth-child(4) {
            animation: fadeInUp-123 0.8s forwards 1.5s;
        }

        .promise-card-123:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
        }

        .card-icon-123 {
            width: 70px;
            height: 70px;
            background: var(--light-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--white);
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .promise-card-123:hover .card-icon-123 {
            background: var(--primary-red);
            transform: scale(1.1) rotate(5deg);
        }

        .card-title-123 {
            font-size: 1.3rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .card-text-123 {
            color: var(--medium-gray);
            line-height: 1.6;
        }

        .closing-statement-123 {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp-123 0.8s forwards 1.7s;
        }

        .closing-statement-123::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
        }

        .closing-text-123 {
            font-size: 1.4rem;
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .closing-subtext-123 {
            font-size: 1.1rem;
            color: var(--medium-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Animations */
        @keyframes fadeInUp-123 {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft-123 {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight-123 {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content-123 {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-image-123 {
                order: -1;
            }
            
            .section-title-123 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .about-section-123 {
                padding: 60px 0;
            }
            
            .section-title-123 {
                font-size: 2rem;
            }
            
            .promise-cards-123 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .closing-text-123 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .section-title-123 {
                font-size: 1.8rem;
            }
            
            .promise-card-123 {
                padding: 20px;
            }
            
            .closing-statement-123 {
                padding: 30px 20px;
            }
        }
        /* How It Works */
        .how-it-works {
            padding: 6rem 0;
            background-color: var(--white);
        }

        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 3rem;
            position: relative;
        }

        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 35px;
            right: 0;
            width: 100%;
            height: 2px;
            background-color: var(--light-gray);
            z-index: 0;
        }

        .step h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        /* Chef Section */
        .chef-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
        }

        .chef-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            margin-top: 3rem;
        }

        .chef-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .chef-image:hover {
            transform: perspective(1000px) rotateY(0);
        }

        .chef-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .chef-image:hover img {
            transform: scale(1.05);
        }

        .chef-content {
            flex: 1;
        }

        .chef-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark-gray);
            font-weight: 700;
        }

        .chef-content p {
            margin-bottom: 1.5rem;
            color: var(--medium-gray);
        }

        .chef-signature {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: var(--primary-red);
            margin-top: 1.5rem;
            font-weight: 700;
        }

        /* Plans Section */
        .plans {
            padding: 6rem 0;
            background-color: var(--off-white);
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .plan-card {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
            border: 1px solid var(--light-gray);
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .plan-header {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            padding: 2.5rem 2rem;
            text-align: center;
        }

        .plan-header h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .plan-features {
            padding: 2.5rem 2rem;
        }

        .plan-features ul {
            list-style: none;
        }

        .plan-features li {
            padding: 0.7rem 0;
            border-bottom: 1px solid var(--light-gray);
            position: relative;
            padding-left: 1.8rem;
        }

        .plan-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            color: var(--primary-red);
            position: absolute;
            left: 0;
        }

        .plan-button {
            display: block;
            text-align: center;
            margin: 1.5rem 2rem 2.5rem;
        }

        /* Weekly Menu Section - FIXED */
        .weekly-menu {
            padding: 6rem 0;
            background-color: var(--white);
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .menu-tab {
            background: none;
            border: 2px solid var(--light-gray);
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--dark-gray);
            cursor: pointer;
            transition: var(--transition);
            border-radius: 50px;
        }

        .menu-tab.active {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border-color: var(--primary-red);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .menu-item {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        .menu-item.hidden {
            display: none;
        }

        .menu-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .menu-item-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .menu-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .menu-item:hover .menu-item-image img {
            transform: scale(1.1);
        }

        .menu-item-content {
            padding: 1.8rem;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.8rem;
        }

        .menu-item-title {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .menu-item-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-red);
        }

        .menu-item-desc {
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
        }

        .menu-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .menu-tag {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* App Download Section */
        .app-download {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .app-download::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .app-download::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .app-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        .app-content {
            flex: 1;
        }

        .app-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .app-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .app-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .app-features li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }

        .app-features li i {
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .app-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .app-button {
            display: flex;
            align-items: center;
            background-color: var(--white);
            color: var(--dark-gray);
            padding: 1rem 1.8rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .app-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .app-button i {
            font-size: 2.2rem;
            margin-right: 0.8rem;
        }

        .app-button-text {
            display: flex;
            flex-direction: column;
        }

        .app-button-text span:first-child {
            font-size: 0.8rem;
        }

        .app-button-text span:last-child {
            font-size: 1.2rem;
        }

        .app-image {
            flex: 1;
            text-align: center;
        }

        .app-image img {
            max-width: 300px;
            filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
            animation: float 3s ease-in-out infinite;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 6rem 0;
            background-color: var(--off-white);
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 3rem auto 0;
            position: relative;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 0 2rem;
            text-align: center;
        }

        .testimonial-content {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-bottom: 2rem;
            border: 1px solid var(--light-gray);
        }

        .testimonial-content::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid var(--white);
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1rem;
            overflow: hidden;
            border: 3px solid var(--primary-red);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light-gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background-color: var(--primary-red);
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: var(--medium-gray);
        }

        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 5rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
            font-weight: 600;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-red);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #bdbdbd;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #bdbdbd;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0);
            }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        /* Scroll Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .chef-container, .app-container {
                gap: 3rem;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .steps {
                flex-direction: column;
                gap: 3rem;
            }
            
            .step:not(:last-child)::after {
                display: none;
            }
            
            .chef-container, .app-container {
                flex-direction: column;
            }
            
            .chef-image, .app-image {
                margin-bottom: 3rem;
            }
            
            .app-content {
                text-align: center;
            }
            
            .app-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 1.5rem 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                z-index: 100;
                border-radius: 0 0 15px 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0;
                text-align: center;
                padding: 0.8rem 0;
            }

            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

            .hero-buttons button {
                width: 100%;
                margin-bottom: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
            
            .menu-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .menu-tab {
                width: 80%;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .feature-card, .plan-card {
                padding: 2rem 1.5rem;
            }
            
            .app-button {
                width: 100%;
                justify-content: center;
            }
        }
    

    /* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
}    