 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #1a1a1a;
            background-color: #fafbfc;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ========== DESIGN TOKENS ========== */
        :root {
            --primary-green: #00C853;
            --accent-gold: #FFD700;
            --dark-bg: #0F1419;
            --light-bg: #FAFBFC;
            --card-bg: rgba(255, 255, 255, 0.95);
            --text-primary: #1a1a1a;
            --text-secondary: #666666;
            --border-light: rgba(0, 0, 0, 0.08);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --gradient-bg: linear-gradient(135deg, #fef9e6 0%, #fbeced 100%);
        }

        /* ========== TYPOGRAPHY ========== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: clamp(1.75rem, 4vw, 2.75rem);
            margin-bottom: 1.25rem;
        }

        h3 {
            font-size: clamp(1.25rem, 3vw, 1.75rem);
            margin-bottom: 1rem;
        }

        p {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary-green);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: #00a844;
        }

        /* ========== UTILITIES ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-divider {
            display: inline-block;
            width: 60px;
            height: 3px;
            background: var(--primary-green);
            border-radius: 2px;
            margin-bottom: 1.5rem;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            position: relative;
            background: var(--gradient-bg);
            padding: 3rem 2rem;
            overflow: hidden;
            border-radius: 0 0 30px 30px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 200, 83, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(20px); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-image {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-lg);
            animation: slideDown 0.8s ease-out;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .hero-logo-circle {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            animation: scaleIn 0.6s ease-out;
        }

        .hero-logo-circle img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .hero h1 {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .hero-location {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        /* ========== CTA BUTTONS ========== */
        .cta-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }

        .btn-primary {
            background: white;
            color: var(--primary-green);
            border: 2px solid transparent;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: #f5f5f5;
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        /* ========== FLOATING CONTACT ICONS ========== */
        .contact-icons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin: 3rem 0 2rem;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            cursor: pointer;
        }

        .contact-icon:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .contact-icon i {
            font-size: 1.75rem;
            transition: var(--transition);
        }

        .icon-phone i { color: #4CAF50; }
        .icon-email i { color: #E91E63; }
        .icon-location i { color: #FF6F00; }
        .icon-sms i { color: #2196F3; }
        .icon-web i { color: #00BCD4; }

        /* ========== SECTION STYLES ========== */
        section {
            padding: 4rem 2rem;
        }

        section.alt-bg {
            background: var(--gradient-bg);
        }

        /* ========== ABOUT SECTION ========== */
        .about-section {
            max-width: 900px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.25rem;
            color: var(--primary-green);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .about-text {
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--text-secondary);
            text-align: justify;
        }

        /* ========== GALLERY STYLES ========== */
        .gallery-section {
            max-width: 1100px;
            margin: 0 auto;
        }

        .gallery {
            display: grid;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .gallery-grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            aspect-ratio: 1;
            cursor: pointer;
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1) rotate(1deg);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: white;
            margin: 0;
        }

        /* ========== MENU CARD GRID ========== */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .menu-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .menu-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .menu-card-image {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            position: relative;
        }

        .menu-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .menu-card:hover .menu-card-image img {
            transform: scale(1.08);
        }

        .menu-card-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .menu-card-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary-green);
            margin: 0;
        }

        /* ========== PORTFOLIO SHOWCASE ========== */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .portfolio-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            aspect-ratio: 16/10;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .portfolio-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
        }

        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .portfolio-card:hover .portfolio-image {
            transform: scale(1.05);
        }

        /* ========== ORDER ONLINE SECTION ========== */
        .order-section {
            max-width: 1000px;
            margin: 0 auto;
        }

        .order-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            align-items: center;
        }

        .order-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            text-align: center;
            cursor: pointer;
        }

        .order-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .order-card img {
            width: 100%;
            max-width: 150px;
            height: auto;
            margin-bottom: 1rem;
            transition: var(--transition);
        }

        .order-card:hover img {
            transform: scale(1.05);
        }

        .order-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-green);
            margin-top: 1rem;
        }

        /* ========== REVIEWS SECTION ========== */
        .reviews-section {
            max-width: 900px;
            margin: 0 auto;
        }

        .reviews-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin: 2rem auto;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            display: block;
        }

        .reviews-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-secondary {
            background: var(--primary-green);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            background: #00a844;
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* ========== LOCATION SECTION ========== */
        .location-section {
            max-width: 1100px;
            margin: 0 auto;
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
            align-items: start;
        }

        .location-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .location-info h3 {
            color: var(--primary-green);
            margin-bottom: 0;
        }

        .location-details {
            background: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .location-details p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .location-details i {
            color: var(--primary-green);
            margin-top: 0.25rem;
            min-width: 20px;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            aspect-ratio: 1;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-green);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-4px) rotate(5deg);
            box-shadow: var(--shadow-md);
        }

        /* ========== MODERN FOOTER ========== */
        /* ── FOOTER ── */
 footer {
  background: #060F09;
  padding: 52px 5% 28px;
  text-align: center;
}
.footer-powered { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.footer-powered span { font-size: 0.7rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-powered img { height: 38px; width: auto; object-fit: contain; vertical-align: middle; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--sun); }
.footer-section-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.footer-social { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover { transform: translateY(-3px); }
.footer-social a:nth-child(1):hover { background: #3b5999; border-color: #3b5999; color: #fff; }
.footer-social a:nth-child(2):hover { background: #1d9bf0; border-color: #1d9bf0; color: #fff; }
.footer-social a:nth-child(3):hover { background: #e4405f; border-color: #e4405f; color: #fff; }
.footer-social a:nth-child(4):hover { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-social a.wa-icon { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); color: #25D366; }
.footer-social a.wa-icon:hover { background: #25D366; border-color: #25D366; color: #fff; }
.footer-share-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.fsr-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.fsr-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.fsr-wa  { background: #25D366; }
.fsr-fb  { background: #3b5999; }
.fsr-tw  { background: #1d9bf0; }
.fsr-li  { background: #0077b5; }
.fsr-em  { background: #e8593f; }
.fsr-sm  { background: #4c53ef; }
.footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,.28); border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; }



        /* ========== FLOATING BUTTONS ========== */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 50;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .fab {
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-lg);
            animation: slideInRight 0.5s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fab-scroll-top {
            background: var(--primary-green);
            color: white;
        }

        .fab-scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 20px 40px rgba(0, 200, 83, 0.3);
        }

        .floating-buttons-left {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 50;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .fab-whatsapp {
            background: #25d366;
            color: white;
            animation: slideInLeft 0.5s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fab-whatsapp:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
        }

        .fab-share {
            background: #FF6F00;
            color: white;
        }

        .fab-share:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 20px 40px rgba(255, 111, 0, 0.3);
        }

        /* ========== RESPONSIVENESS ========== */
        @media (max-width: 900px) {
            .container {
                padding: 0 1.5rem;
            }

            section {
                padding: 3rem 1.5rem;
            }

            h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            .hero {
                padding: 2rem 1.5rem;
                border-radius: 0 0 20px 20px;
            }

            .hero-logo-circle {
                width: 120px;
                height: 120px;
            }

            .hero-logo-circle img {
                width: 110px;
                height: 110px;
            }

            .contact-icons {
                gap: 1.5rem;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
            }

            .contact-icon i {
                font-size: 1.5rem;
            }

            .location-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
                gap: 12px;
            }

            .floating-buttons-left {
                bottom: 20px;
                left: 20px;
                gap: 12px;
            }

            .fab {
                width: 55px;
                height: 55px;
                font-size: 1.25rem;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 1rem;
            }

            section {
                padding: 2rem 1rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            h2 {
                font-size: 1.25rem;
            }

            h3 {
                font-size: 1.1rem;
            }

            .hero {
                padding: 1.5rem 1rem;
            }

            .hero-logo-circle {
                width: 100px;
                height: 100px;
            }

            .hero-logo-circle img {
                width: 92px;
                height: 92px;
            }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .btn {
                padding: 0.9rem 1.8rem;
                font-size: 0.9rem;
            }

            .contact-icons {
                gap: 1rem;
            }

            .contact-icon {
                width: 50px;
                height: 50px;
            }

            .contact-icon i {
                font-size: 1.25rem;
            }

            .gallery-grid-2,
            .gallery-grid-3,
            .menu-grid,
            .portfolio-grid,
            .order-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }

            .location-details {
                padding: 1rem;
            }

            .social-icons {
                gap: 0.75rem;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            footer {
                padding: 2rem 1rem 1rem;
            }

            .footer-links {
                gap: 1rem;
                font-size: 0.85rem;
            }

            .footer-social-icons {
                gap: 0.75rem;
            }

            .footer-social-btn {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }

            .floating-buttons {
                bottom: 15px;
                right: 15px;
            }

            .floating-buttons-left {
                bottom: 15px;
                left: 15px;
            }

            .fab {
                width: 50px;
                height: 50px;
                font-size: 1.1rem;
            }
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-section {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Smooth scrolling for links */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }