* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #ff6b35;
            --secondary: #f7931e;
            --accent: #ffd23f;
            --green: #2ecc71;
            --dark: #2c3e50;
            --light: #fff8f0;
            --white: #ffffff;
            --gray: #7f8c8d;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: 
                linear-gradient(135deg, rgba(255,107,53,0.95) 0%, rgba(247,147,30,0.92) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23ff6b35" width="1200" height="800"/><g opacity="0.15" fill="white"><circle cx="200" cy="150" r="100"/><circle cx="800" cy="400" r="150"/><circle cx="1000" cy="700" r="80"/><path d="M0 600 Q200 550 400 600 T800 600" stroke="white" stroke-width="3" fill="none"/><circle cx="400" cy="200" r="60"/><circle cx="600" cy="650" r="90"/></g></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            color: var(--white);
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            opacity: 0.15;
            animation: float 15s ease-in-out infinite;
        }

        .floating-icon:nth-child(1) {
            top: 10%;
            left: 8%;
            font-size: 4rem;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 70%;
            left: 15%;
            font-size: 3rem;
            animation-delay: 2s;
        }

        .floating-icon:nth-child(3) {
            top: 25%;
            right: 12%;
            font-size: 3.5rem;
            animation-delay: 4s;
        }

        .floating-icon:nth-child(4) {
            bottom: 15%;
            right: 20%;
            font-size: 4.5rem;
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.8rem 2rem;
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            border: 2px solid rgba(255,255,255,0.3);
            animation: bounceIn 1s ease-out;
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.5);
            }
            60% {
                transform: scale(1.1);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero h1 {
            font-family: 'Pacifico', cursive;
            font-size: clamp(3.5rem, 9vw, 7rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease-out 0.2s backwards;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tagline {
            font-size: clamp(1.3rem, 3vw, 2rem);
            margin-bottom: 3rem;
            font-weight: 500;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s backwards;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 1.5rem 3.5rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 3px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* Floating WhatsApp & Call Buttons */
        .floating-actions {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }

        .float-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 25px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }

        .float-btn:hover {
            transform: scale(1.15);
            animation: none;
        }

        .whatsapp-btn {
            background: #25D366;
        }

        .call-btn {
            background: var(--primary);
        }

        .float-btn i {
            font-size: 2rem;
            color: var(--white);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-label {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Pacifico', cursive;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-content {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--gray);
        }

        .about-content p {
            margin-bottom: 1.8rem;
        }

        .about-highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 2.5rem;
            border-radius: 25px;
            color: var(--white);
            margin-top: 2rem;
            box-shadow: 0 15px 40px rgba(255,107,53,0.3);
        }

        .about-highlight h4 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .about-features {
            display: grid;
            gap: 2rem;
        }

        .feature-box {
            background: var(--light);
            padding: 2.5rem;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            transition: all 0.3s ease;
        }

        .feature-box:hover {
            transform: translateX(15px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .feature-box h4 {
            font-size: 1.4rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 700;
        }

        .feature-box p {
            color: var(--gray);
        }

        /* Menu Highlights Section */
        .menu {
            background: var(--light);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .menu-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 3px solid transparent;
        }

        .menu-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .menu-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #ffd89b 0%, #ffb347 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .menu-image i {
            font-size: 5rem;
            color: rgba(255,255,255,0.5);
        }

        .menu-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            padding: 0.7rem 1.3rem;
            background: var(--green);
            color: var(--white);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .menu-info {
            padding: 2.5rem;
        }

        .menu-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .menu-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .menu-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 2px solid var(--light);
        }

        .menu-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .btn-order {
            padding: 1rem 2rem;
            background: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .btn-order:hover {
            background: var(--secondary);
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--light);
            border-radius: 25px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(255,107,53,0.2);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon-wrap {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon-wrap {
            transform: rotate(360deg) scale(1.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--white);
        }

        .service-card h4 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .service-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Why Choose Us Section */
        .why-choose {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
        }

        .why-choose .section-label {
            background: rgba(255,255,255,0.25);
        }

        .why-choose .section-title {
            color: var(--white);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .reason-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 3rem 2.5rem;
            border-radius: 25px;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .reason-card:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-10px);
        }

        .reason-icon-bg {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }

        .reason-card:hover .reason-icon-bg {
            transform: rotate(-360deg) scale(1.1);
        }

        .reason-icon {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .reason-card h4 {
            font-size: 1.7rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .reason-card p {
            opacity: 0.95;
            line-height: 1.7;
        }

        /* Gallery Section */
        .gallery {
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .gallery-item {
            height: 320px;
            background: linear-gradient(135deg, #ffd89b 0%, #ffb347 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 60px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .gallery-item i {
            font-size: 5rem;
            color: rgba(255,255,255,0.5);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,107,53,0.9), rgba(247,147,30,0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--white);
            font-size: 3rem;
        }

        /* Contact Section */
        .contact {
            background: var(--light);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .contact-card {
            text-align: center;
            padding: 3rem 2.5rem;
            background: var(--white);
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 5px solid var(--primary);
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .contact-icon-wrap {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon-wrap {
            transform: rotate(360deg) scale(1.1);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: var(--white);
        }

        .contact-card h3 {
            font-size: 1.7rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .contact-card a {
            color: var(--gray);
            text-decoration: none;
            display: block;
            margin: 0.6rem 0;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .contact-card p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            font-family: 'Pacifico', cursive;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            opacity: 0.85;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .social-link i {
            color: var(--white);
            font-size: 1.4rem;
        }

        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            text-align: center;
            opacity: 0.75;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 4rem 1.5rem;
            }

            .hero {
                background-attachment: scroll;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 350px;
                justify-content: center;
            }

            .floating-actions {
                bottom: 20px;
                right: 20px;
            }

            .float-btn {
                width: 55px;
                height: 55px;
            }

            .float-btn i {
                font-size: 1.6rem;
            }
        }

        /* Scroll Animation */
        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }