
    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange: #e85d04;
      --orange-light: #f48c06;
      --yellow: #ffc300;
      --dark: #0d0d0d;
      --card: #161616;
      --text: #f0f0f0;
      --muted: #aaa;
      --radius: 16px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* ── Animated Background Blobs ── */
    .bg-blobs {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
      animation: blobFloat 10s ease-in-out infinite alternate;
    }

    .blob-1 {
      width: 500px; height: 500px;
      background: var(--orange);
      top: -150px; left: -150px;
      animation-duration: 12s;
    }

    .blob-2 {
      width: 400px; height: 400px;
      background: var(--yellow);
      bottom: -100px; right: -100px;
      animation-duration: 9s;
      animation-delay: -3s;
    }

    .blob-3 {
      width: 300px; height: 300px;
      background: var(--orange-light);
      top: 40%; left: 60%;
      animation-duration: 14s;
      animation-delay: -6s;
    }

    @keyframes blobFloat {
      0%   { transform: translate(0, 0) scale(1); }
      50%  { transform: translate(30px, -30px) scale(1.05); }
      100% { transform: translate(-20px, 20px) scale(0.97); }
    }

    /* ── Header ── */
    header {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 2rem 3rem;
      background: linear-gradient(135deg, rgba(232,93,4,0.15), transparent);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      animation: slideDown 0.8s ease both;
    }

    @keyframes slideDown {
      from { opacity: 0; transform: translateY(-40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .brand-bar {
      width: 6px;
      height: 60px;
      background: linear-gradient(to bottom, var(--orange), var(--yellow));
      border-radius: 4px;
      animation: barGrow 1s ease both 0.3s;
    }

    @keyframes barGrow {
      from { transform: scaleY(0); opacity: 0; }
      to   { transform: scaleY(1); opacity: 1; }
    }

    .brand-name {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      line-height: 1.1;
      color: var(--orange);
      letter-spacing: -0.5px;
    }

    .brand-name span { color: var(--yellow); }

    .halal-trademark {
      display: flex;
      align-items: center;
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      align-self: center;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
      animation: badgePop 0.6s ease both 0.6s;
    }

    .halal-trademark svg { width: 100%; height: 100%; display: block; }

    @keyframes badgePop {
      from { opacity: 0; transform: scale(0.4) rotate(-20deg); }
      to   { opacity: 1; transform: scale(1) rotate(0deg); }
    }

    .contact-box {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px;
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      backdrop-filter: blur(10px);
      transition: background 0.3s;
    }

    .contact-box:hover { background: rgba(232,93,4,0.2); }

    .wa-icon {
      width: 28px; height: 28px;
      background: #25D366;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    .contact-numbers { display: flex; flex-direction: column; gap: 2px; }

    .contact-numbers span,
    .contact-numbers a {
      color: var(--text) !important;
      text-decoration: none !important;
    }

    /* ── Hero Strip ── */
    .hero-strip {
      position: relative;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      padding: 2.5rem 3rem;
      animation: fadeIn 1s ease both 0.4s;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    .hero-text {
      max-width: 380px;
    }

    .hero-text h2 {
      font-size: clamp(1.5rem, 3.5vw, 2.4rem);
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero-text h2 span {
      background: linear-gradient(90deg, var(--orange), var(--yellow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-text p {
      margin-top: 0.75rem;
      font-size: 0.95rem;
      color: var(--muted);
      font-weight: 300;
    }

    .food-img-wrap {
      position: relative;
      flex-shrink: 0;
    }

    .food-ring {
      width: clamp(160px, 22vw, 240px);
      height: clamp(160px, 22vw, 240px);
      border-radius: 50%;
      border: 5px solid var(--orange);
      padding: 6px;
      background: conic-gradient(var(--orange), var(--yellow), var(--orange));
      animation: spinRing 8s linear infinite;
      box-shadow: 0 0 40px rgba(232,93,4,0.5);
    }

    @keyframes spinRing {
      to { transform: rotate(360deg); }
    }

    .food-ring-inner {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, #c0392b, #7b1a1a 60%, #3d0000);
      display: grid;
      place-items: center;
      font-size: clamp(4rem, 10vw, 7rem);
      overflow: hidden;
      animation: counterSpin 8s linear infinite;
    }

    @keyframes counterSpin {
      to { transform: rotate(-360deg); }
    }

    .food-emoji { display: block; }

    /* ── Divider ── */
    .divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--orange), var(--yellow), var(--orange), transparent);
      margin: 0 3rem;
      border-radius: 2px;
      animation: shimmer 3s linear infinite;
      background-size: 200% 100%;
    }

    @keyframes shimmer {
      from { background-position: 200% 0; }
      to   { background-position: -200% 0; }
    }

    /* ── Section Title ── */
    .section-title {
      text-align: center;
      padding: 2.5rem 3rem 0.5rem;
      position: relative;
      z-index: 5;
      animation: fadeIn 1s ease both 0.6s;
    }

    .section-title h3 {
      font-size: clamp(1rem, 2vw, 1.2rem);
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--orange);
      font-weight: 600;
    }

    .section-title p {
      font-size: clamp(0.85rem, 1.5vw, 0.95rem);
      color: var(--muted);
      margin-top: 0.25rem;
    }

    /* ── Menu Grid ── */
    .menu-grid {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      padding: 2rem 3rem 3rem;
    }

    /* ── Menu Category Card ── */
    .menu-card {
      background: var(--card);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      opacity: 0;
      animation: cardReveal 0.6s ease forwards;
    }

    .menu-card:nth-child(1)  { animation-delay: 0.1s; }
    .menu-card:nth-child(2)  { animation-delay: 0.2s; }
    .menu-card:nth-child(3)  { animation-delay: 0.3s; }
    .menu-card:nth-child(4)  { animation-delay: 0.4s; }
    .menu-card:nth-child(5)  { animation-delay: 0.5s; }
    .menu-card:nth-child(6)  { animation-delay: 0.6s; }

    @keyframes cardReveal {
      from { opacity: 0; transform: translateY(40px) scale(0.96); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .menu-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--yellow));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .menu-card:hover::before { transform: scaleX(1); }

    .menu-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(232,93,4,0.08), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .menu-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(232,93,4,0.2);
      border-color: rgba(232,93,4,0.3);
    }

    .menu-card:hover::after { opacity: 1; }

    .card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .card-icon {
      font-size: 1.8rem;
      width: 48px; height: 48px;
      background: rgba(232,93,4,0.15);
      border-radius: 12px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(232,93,4,0.25);
      flex-shrink: 0;
      transition: background 0.3s, transform 0.3s;
    }

    .menu-card:hover .card-icon {
      background: rgba(232,93,4,0.3);
      transform: scale(1.1) rotate(-5deg);
    }

    .card-title {
      font-size: 1.05rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--orange);
    }

    .menu-items { list-style: none; }

    .menu-items li {
      position: relative;
      padding: 0.45rem 0 0.45rem 1.2rem;
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--text);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      cursor: default;
      transition: color 0.2s, padding-left 0.2s;
    }

    .menu-items li:last-child { border-bottom: none; }

    .menu-items li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 5px; height: 5px;
      background: var(--orange);
      border-radius: 50%;
      opacity: 0.5;
      transition: opacity 0.2s, transform 0.2s;
    }

    .menu-items li:hover {
      color: var(--yellow);
      padding-left: 1.5rem;
    }

    .menu-items li:hover::before {
      opacity: 1;
      transform: translateY(-50%) scale(1.4);
    }

    /* ── Tagline Banner ── */
    .tagline-banner {
      position: relative;
      z-index: 5;
      margin: 0 3rem 3rem;
      padding: 2.5rem;
      background: linear-gradient(135deg, var(--orange), var(--orange-light) 40%, var(--yellow));
      border-radius: var(--radius);
      text-align: center;
      overflow: hidden;
      animation: fadeIn 1s ease both 1s;
    }

    .tagline-banner::before {
      content: '';
      position: absolute;
      inset: -50%;
      background: conic-gradient(transparent 240deg, rgba(255,255,255,0.15) 250deg, transparent 260deg);
      animation: rotateSweep 4s linear infinite;
    }

    @keyframes rotateSweep {
      to { transform: rotate(360deg); }
    }

    .tagline-banner h2 {
      position: relative;
      z-index: 1;
      font-size: clamp(1.3rem, 3vw, 2rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: #fff;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .tagline-banner p {
      position: relative;
      z-index: 1;
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.85);
    }

    /* ── Scroll-reveal (Intersection Observer powered) ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    /* ── Footer ── */
    footer {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: 1.5rem 3rem;
      font-size: 0.8rem;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    footer strong { color: var(--orange); }

    /* ── Floating Particles ── */
    .particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--orange);
      border-radius: 50%;
      opacity: 0;
      animation: particleFloat linear infinite;
    }

    @keyframes particleFloat {
      0%   { transform: translateY(100vh) scale(0); opacity: 0; }
      10%  { opacity: 0.6; }
      90%  { opacity: 0.2; }
      100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
    }

    /* ── Top Marquee ── */
    .marquee-wrap {
      position: relative;
      z-index: 5;
      background: linear-gradient(90deg, var(--orange), var(--orange-light));
      overflow: hidden;
      padding: 0.5rem 0;
      white-space: nowrap;
    }

    .marquee-inner {
      display: inline-block;
      animation: marquee 25s linear infinite;
    }

    .marquee-inner span {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
      padding: 0 2rem;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .marquee-inner span.marquee-highlight {
      background: var(--dark);
      color: var(--yellow);
      border: 2px solid #fff;
      border-radius: 20px;
      padding: 0.15rem 1rem;
      margin: 0 0.5rem;
      animation: highlightPulse 1.1s ease-in-out infinite;
      display: inline-block;
    }

    @keyframes highlightPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,255,255,0); }
      50%      { transform: scale(1.15); box-shadow: 0 0 14px rgba(255,255,255,0.7); }
    }

    .marquee-inner span.marquee-halal {
      color: var(--dark) !important;
      font-weight: 800;
      animation: haladGlow 2s ease-in-out infinite;
    }

    @keyframes haladGlow {
      0%, 100% { color: var(--dark); text-shadow: none; }
      50%      { color: #fff9e6; text-shadow: 0 0 8px rgba(255,255,255,0.6); }
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      header, .hero-strip, .menu-grid, .tagline-banner { padding-left: 1.25rem; padding-right: 1.25rem; }
      .divider { margin: 0 1.25rem; }
      header { flex-direction: column; align-items: flex-start; }
      .hero-strip { flex-direction: column-reverse; align-items: center; }
      .hero-text { max-width: 100%; text-align: center; }
      .food-ring { width: 160px; height: 160px; }
      .menu-grid { grid-template-columns: 1fr; }
      .tagline-banner { margin: 0 1.25rem 2rem; }
      footer { padding: 1.5rem 1.25rem; }
    }

    @media (max-width: 480px) {
      .brand-name { font-size: 1.8rem; }
      .contact-box { font-size: 0.75rem; }
    }