/* Base Configuration & Custom Variables */
        :root {
            --bg-dark: #070707;
            --bg-darker: #0c0b0a;
            --bg-card: #151311;
            --bg-card-hover: #1e1b18;
            --color-primary: #e52d27; /* Fire Red */
            --color-secondary: #b31217; /* Darker Crimson */
            --color-orange: #ff7e00; /* Ember Orange */
            --color-gold: #cfa864; /* Accent Gold */
            --text-light: #ffffff;
            --text-muted: #afaaa5;
            --text-dark: #1c1a17;
            --nav-bg: rgba(7, 7, 7, 0.8);
            --nav-height: 80px;
            --border-glow: 0 0 15px rgba(229, 45, 39, 0.35);
            --border-glow-heavy: 0 0 25px rgba(229, 45, 39, 0.7);
            --gold-glow: 0 0 15px rgba(207, 168, 100, 0.3);
            --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-fast: all 0.2s ease;
        }

        /* Reset & Global Styles */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            outline: none;
        }

        html, body {
            width: 100%;
            max-width: 100vw;
            margin: 0;
            padding: 0;
            overflow-x: hidden !important;
            position: relative;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: 'Cairo', sans-serif;
            text-align: right;
            line-height: 1.6;
        }

        /* Prevent background glow elements or cards from causing horizontal overflow */
        section, header, footer, main {
            overflow: hidden;
            max-width: 100vw;
            position: relative;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--color-secondary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-primary);
        }

        /* Container & Typography Helpers */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
            box-sizing: border-box;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-light);
            display: inline-block;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
            border-radius: 2px;
        }

        .section-title h2::before {
            content: '\f2e7'; /* FontAwesome Knife/Fork */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-dark);
            padding: 0 10px;
            color: var(--color-gold);
            font-size: 1.2rem;
        }

        .section-subtitle {
            font-family: 'Amiri', serif;
            font-size: 1.2rem;
            color: var(--color-gold);
            margin-top: 0.5rem;
            letter-spacing: 1px;
        }

        /* Button Utilities */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: 2px solid transparent;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            color: var(--text-light);
            box-shadow: var(--border-glow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--border-glow-heavy);
            background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            color: var(--text-light);
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: var(--text-light);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }

        .btn-whatsapp {
            background: #25d366;
            color: #fff;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background: #20ba5a;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
        }

        .btn-facebook {
            background: #1877f2;
            color: #fff;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
        }

        .btn-facebook:hover {
            background: #166fe5;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.5);
        }

        .btn-google-rate {
            background: rgba(207, 168, 100, 0.05);
            border-color: var(--color-gold);
            color: var(--color-gold);
            backdrop-filter: blur(5px);
            box-shadow: var(--gold-glow);
        }

        .btn-google-rate:hover {
            background: var(--color-gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
            box-shadow: 0 0 20px var(--color-gold);
        }

        .btn-cliq {
            background: rgba(0, 150, 255, 0.08);
            border-color: rgba(0, 150, 255, 0.4);
            color: #00d2ff;
            backdrop-filter: blur(5px);
            box-shadow: 0 0 15px rgba(0, 150, 255, 0.2);
        }

        .btn-cliq:hover {
            background: #0096ff;
            color: #ffffff;
            border-color: #0096ff;
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 150, 255, 0.6);
        }

        /* QliC Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
        }

        .modal-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.2rem;
            max-width: 440px;
            width: 90%;
            position: relative;
            transform: scale(0.85);
            transition: var(--transition-smooth);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            text-align: center;
        }

        .modal-overlay.open .modal-content {
            transform: scale(1);
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.4rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .modal-close-btn:hover {
            color: var(--color-primary);
        }

        .modal-title {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-light);
        }

        .modal-subtitle {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        /* Styled Bank Card */
        .bank-card {
            background: linear-gradient(135deg, #1b1b1b 0%, #111 50%, #201314 100%);
            border: 1px solid rgba(207, 168, 100, 0.25);
            border-radius: 16px;
            padding: 1.8rem;
            color: var(--text-light);
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.05);
            text-align: right;
            aspect-ratio: 1.58 / 1;
        }

        .bank-card::after {
            content: '';
            position: absolute;
            top: -50px; left: -50px;
            width: 150px; height: 150px;
            background: radial-gradient(circle, rgba(207, 168, 100, 0.08) 0%, rgba(207, 168, 100, 0) 70%);
            pointer-events: none;
        }

        .bank-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .bank-card-chip {
            width: 45px;
            height: 35px;
            background: linear-gradient(135deg, #e6b863, #bf953f);
            border-radius: 6px;
            position: relative;
            box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        }

        .bank-card-chip::before {
            content: '';
            position: absolute;
            top: 50%; left: 0; right: 0; height: 1px; background: rgba(0,0,0,0.15);
        }

        .bank-card-chip::after {
            content: '';
            position: absolute;
            left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(0,0,0,0.15);
        }

        .bank-card-logo {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--color-gold);
            text-shadow: var(--gold-glow);
        }

        .bank-card-label {
            font-size: 0.75rem;
            color: var(--color-gold);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.2rem;
        }

        .bank-name-val {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.2rem;
        }

        .cliq-details-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0.7rem 1rem;
            border-radius: 10px;
            margin-top: 0.5rem;
        }

        .cliq-alias {
            font-family: monospace, sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-light);
            letter-spacing: 1px;
        }

        .cliq-copy-btn {
            background: none;
            border: none;
            color: var(--color-gold);
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-fast);
            padding: 4px 8px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cliq-copy-btn:hover {
            background: rgba(207, 168, 100, 0.15);
            color: var(--text-light);
        }

        .cliq-copy-btn.copied {
            color: #25d366;
        }

        /* Glassmorphism Class */
        .glass-panel {
            background: rgba(21, 19, 17, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }

        /* Sticky Navbar */
        .header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            height: var(--nav-height);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: var(--transition-smooth);
        }

        .header.scrolled {
            background-color: var(--nav-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            height: 70px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid var(--border-color);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* Logo Branding */
        .brand-logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid var(--color-gold);
            box-shadow: var(--gold-glow);
        }

        .brand-name {
            font-size: 1.4rem;
            font-weight: 900;
            letter-spacing: 0.5px;
            background: linear-gradient(45deg, var(--text-light), var(--color-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Cinzel', 'Cairo', sans-serif;
        }

        /* Nav Menu Links */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-link {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-muted);
            position: relative;
            padding: 6px 0;
            letter-spacing: 0.5px;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
            transition: var(--transition-smooth);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--text-light);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background-color: var(--color-orange);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--color-orange);
        }

        /* Mobile Menu Hamburger Button */
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.6rem;
            cursor: pointer;
            z-index: 1001;
            transition: var(--transition-fast);
        }

        .hamburger:hover {
            color: var(--color-primary);
        }

        /* Mobile Overlay Background */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }


        /* Hero Section Styling */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            background: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
        }

        /* Dark Vignette Overlay over Hero Background */
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle, rgba(0,0,0,0.5) 0%, rgba(7,7,7,0.9) 80%, rgba(7,7,7,1) 100%),
                        linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(7,7,7,0.95) 100%);
            z-index: 1;
        }

        /* Ember Particles Overlay in Hero */
        .hero-particles {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 2;
            overflow: hidden;
        }

        .ember {
            position: absolute;
            bottom: -20px;
            width: 4px;
            height: 4px;
            background: var(--color-orange);
            border-radius: 50%;
            opacity: 0.6;
            filter: blur(1px);
            box-shadow: 0 0 10px var(--color-orange);
            animation: floatUp 8s infinite linear;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 800px;
            padding: 0 1.5rem;
            margin-top: 60px;
        }

        /* Pulsing Glow Logo Container */
        .logo-wrapper {
            position: relative;
            width: 170px;
            height: 170px;
            margin: 0 auto 2rem;
            border-radius: 50%;
            padding: 8px;
            background: linear-gradient(135deg, rgba(229, 45, 39, 0.8), rgba(255, 126, 0, 0.8));
            box-shadow: 0 0 35px rgba(229, 45, 39, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
            animation: pulseGlow 4s infinite ease-in-out;
        }

        .logo-wrapper::after {
            content: '';
            position: absolute;
            top: -12px; left: -12px; right: -12px; bottom: -12px;
            border-radius: 50%;
            border: 2px dashed rgba(255, 126, 0, 0.5);
            animation: rotateClockwise 25s infinite linear;
        }

        .logo-wrapper::before {
            content: '';
            position: absolute;
            top: -6px; left: -6px; right: -6px; bottom: -6px;
            border-radius: 50%;
            border: 1px solid rgba(229, 45, 39, 0.3);
            animation: rotateCounter 15s infinite linear;
        }

        .hero-logo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid var(--bg-dark);
            background: var(--bg-darker);
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: -1px;
            margin-bottom: 1rem;
            font-family: 'Cinzel', 'Cairo', sans-serif;
            background: linear-gradient(to bottom, #ffffff 30%, #f3d49f 70%, var(--color-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
        }

        .hero-subtitle {
            font-family: 'Amiri', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #eaeaea;
            margin-bottom: 3rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8);
            position: relative;
            display: inline-block;
        }

        .hero-subtitle::before, .hero-subtitle::after {
            content: '♦';
            color: var(--color-gold);
            font-size: 1.2rem;
            margin: 0 15px;
            vertical-align: middle;
            text-shadow: var(--gold-glow);
        }

        .hero-ctas {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* Scroll Down Indicator */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            opacity: 0.7;
            transition: var(--transition-fast);
        }

        .scroll-down:hover {
            color: var(--color-primary);
            opacity: 1;
        }

        .scroll-down i {
            animation: bounceUpDown 2s infinite ease-in-out;
            font-size: 1.2rem;
        }

        /* About Section (نبذة عن المطعم) */
        .about {
            padding: 8rem 0;
            position: relative;
            background-color: var(--bg-darker);
        }

        /* Flame/Ember ambient backlights */
        .ambient-glow {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(229, 45, 39, 0.08) 0%, rgba(229, 45, 39, 0) 70%);
            filter: blur(50px);
            pointer-events: none;
        }

        .about-glow-1 {
            top: 10%; right: -150px;
        }

        .about-glow-2 {
            bottom: 10%; left: -150px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4.5rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        /* Double border frame for illustration */
        .about-image-frame {
            border: 2px solid var(--color-gold);
            padding: 15px;
            border-radius: 12px;
            box-shadow: var(--gold-glow);
            position: relative;
        }

        .about-image-frame::before {
            content: '';
            position: absolute;
            top: -8px; left: -8px; right: -8px; bottom: -8px;
            border: 1px dashed var(--color-primary);
            border-radius: 16px;
            opacity: 0.4;
        }

        .about-img {
            border-radius: 6px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
            display: block;
            width: 100%;
            height: 450px;
            object-fit: cover;
            filter: grayscale(15%) contrast(110%);
        }

        .about-badge {
            position: absolute;
            bottom: 35px;
            right: -25px;
            background: linear-gradient(135deg, var(--color-gold), #8f6c30);
            padding: 1.5rem 1.8rem;
            border-radius: 12px;
            color: var(--text-dark);
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.4);
            font-weight: 800;
            line-height: 1.2;
            z-index: 5;
            animation: floatBadge 6s infinite ease-in-out;
        }

        .about-badge span {
            display: block;
            font-size: 1.8rem;
            font-family: 'Cinzel', sans-serif;
            color: var(--bg-dark);
        }

        .about-badge label {
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .about-content {
            display: flex;
            flex-direction: column;
        }

        .about-tagline {
            color: var(--color-gold);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-tagline::after {
            content: '';
            width: 40px;
            height: 2px;
            background-color: var(--color-gold);
        }

        .about-title {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 1.8rem;
            line-height: 1.3;
        }

        .about-title span {
            color: var(--color-primary);
        }

        .about-text {
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 2.5rem;
            text-align: justify;
        }

        /* Mini feature icons in About section */
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .about-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .about-feat-icon {
            width: 45px;
            height: 45px;
            background-color: rgba(229, 45, 39, 0.1);
            border: 1px solid rgba(229, 45, 39, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: var(--border-glow);
        }

        .about-feature-item h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-light);
        }

        .about-feature-item p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Menu Section (المنيو) */
        .menu-section {
            padding: 8rem 0;
            position: relative;
            background-color: var(--bg-dark);
        }

        .menu-glow {
            top: 25%; left: 50%;
            transform: translateX(-50%);
            background: radial-gradient(circle, rgba(255, 126, 0, 0.05) 0%, rgba(255, 126, 0, 0) 70%);
        }

        /* Category Filter Tabs Styling */
        .menu-tabs {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 4rem;
        }

        .menu-tab-btn {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 0.9rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-tab-btn i {
            font-size: 1rem;
            transition: var(--transition-fast);
        }

        .menu-tab-btn:hover {
            border-color: rgba(229, 45, 39, 0.4);
            color: var(--text-light);
            background-color: rgba(229, 45, 39, 0.05);
        }

        .menu-tab-btn.active {
            background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
            border-color: var(--color-primary);
            color: var(--text-light);
            box-shadow: var(--border-glow);
        }

        .menu-tab-btn.active i {
            transform: scale(1.1);
        }

        /* Menu Cards Grid Layout */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            transition: var(--transition-smooth);
        }

        /* Menu Card Item */
        .menu-item-card {
            background-color: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            padding: 1.8rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition-smooth);
            height: 100%;
        }

        /* Glowing backdrop effects on hover */
        .menu-item-card::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(229, 45, 39, 0.1) 0%, rgba(229, 45, 39, 0) 70%);
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-smooth);
            transform: scale(0.5);
            z-index: 1;
        }

        .menu-item-card:hover {
            transform: translateY(-8px);
            background-color: var(--bg-card-hover);
            border-color: rgba(229, 45, 39, 0.35);
            box-shadow: var(--border-glow);
        }

        .menu-item-card:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .menu-card-top {
            position: relative;
            z-index: 2;
        }

        /* Item Category Label */
        .menu-card-cat {
            font-size: 0.75rem;
            color: var(--color-gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .menu-card-cat::before {
            content: '';
            width: 6px;
            height: 6px;
            background-color: var(--color-gold);
            border-radius: 50%;
        }

        /* Item Titles (Arabic first, large; English below, small/muted) */
        .menu-card-title-ar {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 0.3rem;
            line-height: 1.4;
        }

        .menu-card-title-en {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
            margin-bottom: 1.5rem;
            display: block;
        }

        /* Bottom section with Order button */
        .menu-card-bottom {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            border-top: 1px dashed rgba(255, 255, 255, 0.08);
            padding-top: 1.2rem;
            margin-top: auto;
            position: relative;
            z-index: 2;
        }

        .menu-item-price {
            display: none !important;
        }

        .menu-item-price .currency {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        /* Quick order trigger icon */
        .menu-card-order-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .menu-item-card:hover .menu-card-order-btn {
            background-color: var(--color-primary);
            border-color: var(--color-primary);
            color: var(--text-light);
            box-shadow: 0 0 10px rgba(229, 45, 39, 0.6);
            transform: rotate(-45deg);
        }

        /* Hidden/filtered state animation for cards */
        .menu-item-card.hidden {
            display: none;
        }

        /* Location Section (موقعنا) */
        .location-section {
            padding: 8rem 0;
            position: relative;
            background-color: var(--bg-darker);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Map Mockup & Interactive Button */
        .map-mockup-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.6);
            border: 1px solid var(--border-color);
            height: 400px;
        }

        .map-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.6) contrast(1.1) grayscale(10%);
        }

        /* Dark gradient overlay over the map image to look elegant and high-tech */
        .map-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(rgba(0,0,0,0.1), rgba(7, 7, 7, 0.8));
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .map-interactive-card {
            background: rgba(21, 19, 17, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            max-width: 320px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            z-index: 3;
            transform: translateY(0);
            transition: var(--transition-smooth);
        }

        .map-interactive-card:hover {
            transform: translateY(-5px);
            border-color: var(--color-primary);
            box-shadow: var(--border-glow);
        }

        .map-pin-pulse {
            width: 50px;
            height: 50px;
            background: rgba(229, 45, 39, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 1.5rem;
            margin: 0 auto 1.2rem;
            position: relative;
        }

        .map-pin-pulse::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border-radius: 50%;
            border: 2px solid var(--color-primary);
            animation: pulseGlow 1.8s infinite ease-in-out;
        }

        .map-interactive-card h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .map-interactive-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .location-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .loc-tag {
            color: var(--color-gold);
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .loc-tag::after {
            content: '';
            width: 40px;
            height: 2px;
            background-color: var(--color-gold);
        }

        .location-info h3 {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.3;
        }

        .location-detail-card {
            background-color: var(--bg-card);
            border-radius: 12px;
            border-right: 4px solid var(--color-primary);
            padding: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .loc-icon-box {
            width: 50px;
            height: 50px;
            background-color: rgba(229, 45, 39, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .loc-detail-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-light);
        }

        .loc-detail-content p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Contact Section (تواصل معنا) */
        .contact-section {
            padding: 8rem 0 6rem;
            position: relative;
            background-color: var(--bg-dark);
            text-align: center;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
        }

        .contact-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }

        .contact-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem;
            width: 320px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }

        .contact-card.whatsapp-card:hover {
            border-color: rgba(37, 211, 102, 0.35);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
        }

        .contact-card.facebook-card:hover {
            border-color: rgba(24, 119, 242, 0.35);
            box-shadow: 0 10px 25px rgba(24, 119, 242, 0.15);
        }

        .contact-card-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: var(--transition-smooth);
        }

        .whatsapp-card .contact-card-icon {
            background-color: rgba(37, 211, 102, 0.1);
            color: #25d366;
            border: 1px solid rgba(37, 211, 102, 0.2);
        }

        .facebook-card .contact-card-icon {
            background-color: rgba(24, 119, 242, 0.1);
            color: #1877f2;
            border: 1px solid rgba(24, 119, 242, 0.2);
        }

        .contact-card:hover .contact-card-icon {
            transform: scale(1.1);
        }

        .contact-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .contact-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        /* Footer Section */
        .footer {
            background-color: var(--bg-darker);
            padding: 4rem 0 2rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            border-top: 1px solid var(--border-color);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            align-items: center;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-desc {
            max-width: 450px;
            line-height: 1.7;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .social-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: var(--transition-smooth);
            font-size: 1.1rem;
        }

        .social-circle:hover {
            background-color: var(--color-primary);
            border-color: var(--color-primary);
            color: var(--text-light);
            box-shadow: var(--border-glow);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-copyright {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-copyright i {
            color: var(--color-primary);
            animation: pulseGlow 1.5s infinite ease-in-out;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(229, 45, 39, 0.9);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            box-shadow: var(--border-glow);
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--color-orange);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 126, 0, 0.5);
        }

        /* Scroll Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* KEYFRAMES FOR ANIMATIONS */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 15px rgba(229, 45, 39, 0.35); }
            50% { box-shadow: 0 0 30px rgba(229, 45, 39, 0.7); }
            100% { box-shadow: 0 0 15px rgba(229, 45, 39, 0.35); }
        }

        @keyframes rotateClockwise {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes rotateCounter {
            0% { transform: rotate(360deg); }
            100% { transform: rotate(0deg); }
        }

        @keyframes floatUp {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }

        @keyframes floatBadge {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

        @keyframes bounceUpDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .about-grid, .location-grid {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }

            .about-image-wrapper {
                max-width: 600px;
                margin: 0 auto;
            }

            .about-badge {
                right: 0;
                bottom: -20px;
            }

            .hero h1 {
                font-size: 3.2rem;
            }

            .hero-subtitle {
                font-size: 1.8rem;
            }
        }

        /* Mobile App Bottom Navigation Bar (Hidden on Desktop) */
        .mobile-bottom-nav {
            display: none;
        }

        @media (max-width: 768px) {
            :root {
                --nav-height: 65px;
            }

            body, html {
                overflow-x: hidden !important;
                width: 100%;
                max-width: 100vw;
            }

            body {
                padding-bottom: 75px; /* Space so bottom nav never overlaps page content */
            }

            /* Hide glow circles & overflow triggers on mobile */
            .ambient-glow {
                display: none !important;
            }

            /* Hide Hamburger Button & Top Drawer on Mobile */
            .hamburger {
                display: none !important;
            }

            .nav-menu {
                display: none !important;
            }

            /* Native App Bottom Tab Bar Navigation - Perfectly Symmetrical & Centered */
            .mobile-bottom-nav {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                width: 100vw;
                max-width: 100%;
                height: 68px;
                background: rgba(14, 12, 10, 0.96);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                justify-content: space-around;
                align-items: center;
                z-index: 9999;
                box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.8);
                padding: 0;
                margin: 0;
                box-sizing: border-box;
                dir: rtl;
            }

            .mobile-nav-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                color: var(--text-muted);
                font-size: 0.72rem;
                font-weight: 600;
                flex: 1 1 0;
                min-width: 0;
                width: 20%;
                height: 100%;
                transition: var(--transition-fast);
                position: relative;
                text-decoration: none;
                box-sizing: border-box;
                text-align: center;
            }

            .mobile-nav-item i {
                font-size: 1.2rem;
                transition: var(--transition-fast);
            }

            .mobile-nav-item span {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                max-width: 100%;
            }

            .mobile-nav-item.active {
                color: var(--color-gold);
            }

            .mobile-nav-item.active i {
                color: var(--color-primary);
                transform: translateY(-2px) scale(1.12);
                filter: drop-shadow(0 0 8px rgba(229, 45, 39, 0.6));
            }

            .mobile-nav-item.active::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 26px;
                height: 3px;
                background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
                border-bottom-left-radius: 4px;
                border-bottom-right-radius: 4px;
                box-shadow: var(--border-glow);
            }

            /* Adjust Back to Top button on mobile to sit above the bottom bar */
            .back-to-top {
                bottom: 85px !important;
            }

            /* Hide CTA in header on small mobile screens */
            .header-cta {
                display: none;
            }

            .hero h1 {
                font-size: 2.3rem;
                max-width: 100%;
                word-wrap: break-word;
            }

            .hero-subtitle {
                font-size: 1.25rem;
                margin-bottom: 2rem;
            }

            .hero-subtitle::before, .hero-subtitle::after {
                display: none;
            }

            .logo-wrapper {
                width: 130px;
                height: 130px;
            }

            .about, .menu-section, .location-section, .contact-section {
                padding: 4rem 0;
            }

            .section-title {
                margin-bottom: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                width: 100%;
                max-width: 100%;
                gap: 1.2rem;
                box-sizing: border-box;
            }

            .menu-item-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .menu-tabs {
                gap: 8px;
                width: 100%;
                justify-content: center;
            }

            .menu-tab-btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.85rem;
            }

            .contact-card {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-socials {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Extra Mobile Optimization (< 480px) */
        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
                width: 100%;
                max-width: 100vw;
                box-sizing: border-box;
            }

            .brand-name {
                font-size: 1.15rem;
            }

            .nav-logo {
                width: 40px;
                height: 40px;
            }

            .hero-content {
                padding: 0 0.5rem;
                margin-top: 20px;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .logo-wrapper {
                width: 110px;
                height: 110px;
                margin-bottom: 1.2rem;
            }

            .hero h1 {
                font-size: 1.85rem;
                line-height: 1.25;
            }

            .hero-subtitle {
                font-size: 1.05rem;
                margin-bottom: 1.8rem;
            }

            .hero-ctas {
                flex-direction: column;
                width: 100%;
                max-width: 100%;
                gap: 0.8rem;
                box-sizing: border-box;
            }

            .hero-ctas .btn {
                width: 100%;
                max-width: 100%;
                justify-content: center;
                padding: 0.85rem 1.2rem;
                font-size: 0.95rem;
                box-sizing: border-box;
            }

            .section-title h2 {
                font-size: 1.65rem;
            }

            .about-title {
                font-size: 1.55rem;
            }

            .about-text {
                font-size: 0.95rem;
                line-height: 1.8;
            }

            .about-image-wrapper, .about-image-frame {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .about-img {
                height: 250px;
                width: 100%;
                object-fit: cover;
            }

            .about-badge {
                position: relative;
                right: auto;
                left: auto;
                bottom: auto;
                margin-top: 15px;
                width: 100%;
                max-width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0.9rem 1.2rem;
                box-sizing: border-box;
            }

            .about-badge span {
                display: inline-block;
                font-size: 1.4rem;
            }

            .menu-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                width: 100%;
                box-sizing: border-box;
            }

            .menu-item-card {
                padding: 1.2rem;
                width: 100%;
                box-sizing: border-box;
            }

            .map-mockup-container {
                height: 280px;
                width: 100%;
                box-sizing: border-box;
            }

            .map-interactive-card {
                padding: 1rem;
                max-width: 90%;
            }

            .contact-grid {
                gap: 1.2rem;
                width: 100%;
                box-sizing: border-box;
            }

            .contact-card {
                padding: 1.6rem 1rem;
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
            }

            .modal-content {
                padding: 1.5rem 1.2rem;
                width: 95%;
                max-width: 95vw;
                box-sizing: border-box;
            }

            .bank-card {
                padding: 1.2rem;
                width: 100%;
                box-sizing: border-box;
            }

            .bank-name-val {
                font-size: 1.05rem;
            }

            .cliq-alias {
                font-size: 1.05rem;
            }

            .back-to-top {
                bottom: 85px !important;
                left: 15px;
                width: 40px;
                height: 40px;
            }
        }