/* --- Variables & Reset --- */
:root {
  --primary-color: #e63946;
  /* Red - Spicy/Fire */
  --secondary-color: #f4a261;
  /* Orange - Warmth */
  --accent-color: #d4af37;
  /* Gold - Luxury */

  /* Light Theme Colors */
  --bg-body: #F9F7F2;
  /* Cream White */
  --bg-section-alt: #F1EDE4;
  /* Slightly Darker Cream */
  --bg-card: #FFFFFF;
  --text-main: #1A1A1A;
  --text-muted: #555555;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);

  --font-heading: "Playfair Display", serif;
  --font-body: "Outfit", sans-serif;

  --transition-fast: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 0% 0%, rgba(230, 57, 70, 0.15), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(244, 162, 97, 0.15), transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(230, 57, 70, 0.1), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(212, 175, 55, 0.1), transparent 40%),
    var(--bg-body);
  background-attachment: scroll;
  /* Fixed is laggy on iOS, handled by ::before/container */
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  /* Reduced complexity */
  z-index: -1;
  pointer-events: none;
  contain: strict;
}

/* --- Speed Optimization: Eliminate 300ms touch delay --- */
a,
button,
.btn,
.nav-menu a,
.menu-card,
.menu-item {
  touch-action: manipulation;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Optimization Rules --- */
section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.mobile-br {
  display: none;
}

/* --- Utilities --- */
.text-gradient {
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-title {
  background: linear-gradient(90deg,
      var(--secondary-color),
      var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-separator {
  color: var(--secondary-color);
  margin: 0 5px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

/* White version for dark backgrounds (Hero Section) */
.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  margin-left: 1rem;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.nav-btn {
  padding: 8px 20px;
  /* Smaller padding */
  font-size: 0.9rem;
  /* Smaller font */
  border-width: 1.5px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1240px;
  z-index: 2100;
  background: rgba(255, 255, 255, 0.98);
  /* Solid-ish background for max performance */
  will-change: transform;
  transform: translate3d(-50%, 0, 0);
  backface-visibility: hidden;
  padding: 0.5rem 0.8rem;
  border-radius: 100px;
  /* Pill shape */
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  /* Restored red frame */
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  /* Restored shadow */
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Subtle edge to merge with glass */
}

.logo img {
  height: 100%;
  width: 100%;
  border-radius: 0;
  object-fit: contain;
  /* Shifted slightly up and enlarged for perfect circle fit */
  transform: scale(1.48) translateY(-1px);
  transition: transform 0.3s ease;
}

/* --- Dropdown Menu --- */
.dropdown {
  position: relative;
}

.dropdown>a>i,
.dropdown-icon-img {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  /* Make it white */
}

@media (min-width: 769px) {

  .dropdown.active>a>i,
  .dropdown.active>a>.dropdown-icon-img {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 1rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 769px) {
  .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex;
  /* Changed from block to flex for icon alignment */
  align-items: center;
  gap: 8px;
  /* Added gap between icon and text */
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-color);
}

.nav-menu ul {
  display: flex;
  gap: 1.5rem;
  /* Slightly reduced gap */
  align-items: center;
}

.nav-menu ul li a {
  color: #ffffff;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-item-location {
  margin-left: 0;
  /* Removed extra margin to push further left away from cart */
  display: flex;
  align-items: center;
}

.nav-icon-img {
  width: 18px;
  height: auto;
  margin-right: 5px;
  filter: brightness(0) invert(1);
  vertical-align: middle;
}

/* Dynamic Scroll States */
.navbar.scrolled .nav-menu ul li a {
  color: #000000;
  text-shadow: none;
}

.navbar.scrolled .dropdown-icon-img,
.navbar.scrolled .nav-icon-img {
  filter: brightness(0);
  /* Make icons black for light background */
}

.navbar.scrolled .hamburger i {
  color: var(--text-main);
  text-shadow: none;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  /* Align content to top */
  position: relative;
  padding-top: 260px;
  /* Increased to push content down and balance empty space below */
  /* Increased padding to position text nicely below navbar */
  /* Navbar height */
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("images/hero-bg-opt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-accent {
  display: none;
  /* Removed accent blob as we have a full bg now */
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(230, 57, 70, 0.15) 0%,
      rgba(15, 17, 21, 0) 70%);
  filter: blur(30px);
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  /* Changed to single column */
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  /* Increased to allow title on one line */
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 4.8rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-title .text-gradient {
  white-space: nowrap;
}

.text-subtitle {
  font-size: 1.8rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 300;
  display: block;
  margin-top: 25px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.5rem;
  color: #ffffff;
  max-width: 1000px;
  margin: 70px auto 35px;
  line-height: 1.4;
  opacity: 0.95;
}

.hero-description .text-highlight {
  font-size: 3.2rem;
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  /* Force square ratio */
  object-fit: cover;
  /* Crop content to cover */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* Much faster than drop-shadow */
  border-radius: 50%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Animations */
.fade-in-up {
  opacity: 1;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-smooth) forwards;
  will-change: transform, opacity;
}

.fade-in {
  opacity: 1;
  /* Updated to 1 to ensure visibility */
  animation: fadeIn 1.2s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Floating Animation for Hero Image */
.floating {
  animation: float 6s ease-in-out infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Glow Effect for Button */
.glow-effect:hover {
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.6);
  transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

/* --- Responsive --- */
.mobile-menu-footer {
  display: none;
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
    position: relative;
    z-index: 3100;
    /* Content must be above menu */
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    padding: 150px 2rem 40px;
    z-index: 2000;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    border-top: none;
  }

  .nav-menu.active {
    display: flex;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
    align-items: flex-start;
    width: 100%;
  }

  .nav-menu ul li {
    width: 100%;
  }

  .nav-item-location {
    display: none;
  }

  /* Mobile Menu Footer - iOS 26 Liquid Glass Style */
  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
      0 -30px 80px rgba(0, 0, 0, 0.12),
      inset 0 1px 3px rgba(255, 255, 255, 0.9);
    margin-top: auto;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 3.5rem 2rem 10rem;
    width: calc(100% + 4rem);
    position: relative;
    z-index: 2010;
  }

  .mobile-menu-footer .btn {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-nav-btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  }


  /* Mobile Dropdowns: Accordion Style */
  .dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .dropdown-icon-img {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0);
    /* Black icon for light menu */
  }

  .dropdown.active .dropdown-icon-img {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    left: 0;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.15s linear, opacity 0.1s ease;
    min-width: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  /* Disable desktop hover effects on mobile */
  .dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: none;
  }

  .dropdown.active .dropdown-menu {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.20));
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid rgba(230, 57, 70, 0.8);
    margin: 20px 0 15px 10px;
    transform: none;
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 1px rgba(255, 255, 255, 0.5);
  }

  .dropdown-menu li a {
    padding: 12px 15px;
    font-size: 1rem;
    color: #1a1a1a;
    /* Black text to match footer */
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 12px;
    font-weight: 500;
  }

  .dropdown-menu li a i {
    display: none;
  }

  .dropdown-menu li a:hover {
    background: rgba(0, 0, 0, 0.08);
    padding-left: 20px;
    transform: translateX(5px);
  }

  /* Hide secondary nav elements and optimize header when menu is open */
  body.menu-open .nav-cart-btn,
  body.menu-open .mobile-nav-location {
    display: none !important;
  }

  .navbar {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
    border: none !important;
    padding: 1rem 0 !important;
  }

  body.menu-open .navbar {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    padding-top: 10px !important;
  }

  /* Make links bigger on mobile */
  .nav-menu a,
  .nav-menu ul li a {
    font-size: 1.1rem;
    padding: 0.6rem;
    display: block;
    color: #000000 !important;
    /* Brightened to match button red */
    text-shadow: none !important;
    transition: all 0.3s ease;
  }

  /* Keep Order Online button white */
  .nav-menu .btn-primary,
  .mobile-menu-footer .btn-primary {
    color: #ffffff !important;
  }

  /* Scrolled State - Turn text black */
  .navbar.scrolled .nav-menu a,
  .navbar.scrolled .nav-menu ul li a {
    color: #000000 !important;
    text-shadow: none !important;
  }

  /* Close Icon (X) when menu is open: Black */
  .hamburger.active i {
    color: #e63946 !important;
    text-shadow: none !important;
  }

  .navbar.scrolled .dropdown-icon-img {
    filter: brightness(0) !important;
  }

  /* Logo adjustment for mobile */
  .logo {
    width: 50px;
    height: 50px;
    margin-top: 5px;
    position: relative;
    z-index: 3200;
    background-color: var(--primary-color);
    /* Restored for mobile */
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
    /* Restored for mobile */
  }

  .logo img {
    transform: scale(1.48) translateY(-1px);
  }

  .hero {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1)),
      url("images/hero-mobile-creative.png");
    background-attachment: scroll;
    background-position: center 60% !important;
    background-size: cover;
    padding-top: 110px !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-height: 85vh !important;
  }

  .hero-text-frame {
    background: rgba(255, 255, 255, 0.92);
    /* Solid white for max speed */
    padding: 1.6rem 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin-bottom: 1.2rem;
  }

  .hero-content {
    width: 95%;
    margin: 0 auto;
  }

  .hero-description {
    margin: 1.5rem auto !important;
    max-width: 100%;
    line-height: 1.5;
  }

  .navbar .icon-wrapper i {
    color: var(--primary-color) !important;
  }

  .hero-cta .btn-outline-white {
    border-color: #000000 !important;
    color: #000000 !important;
  }

  .hero-cta .btn-outline-white:hover {
    background-color: #ffffff !important;
    color: var(--primary-color) !important;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 3200;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger i {
    color: #000000;
    font-size: 1.8rem;
    transition: all 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* When menu is open, X button follows scroll logic or stay white if in hero */
  .hamburger.active i {
    color: #000000;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .navbar.scrolled .hamburger.active i {
    color: #000000;
    text-shadow: none;
  }

  .nav-btn {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 1.0rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin-top: 2rem !important;
    /* Raised further from 3.5rem */
  }

  .hero-title {
    font-size: 2.8rem !important;
    /* Larger, more impactful */
    line-height: 1.1;
    margin-top: 0 !important;
    margin-bottom: 0rem !important;
  }

  .hero-title .text-gradient {
    white-space: nowrap;
    /* Prevent title wrapping */
  }

  .text-secondary-title {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    color: #ff6b6b !important;
    /* Warm reddish coral */
    font-family: var(--font-body);
    font-weight: 500 !important;
    font-size: 1.8rem !important;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 0.5rem !important;
    white-space: nowrap;
  }

  .title-separator {
    display: none;
    /* Hide dash on mobile if stacking */
  }

  .nav-cart-btn i {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
  }

  .text-subtitle {
    font-size: 1.15rem !important;
    white-space: normal !important;
    /* Changed from nowrap to allow the <br> to work */
    color: #000000 !important;
    text-shadow: none !important;
    font-weight: 400 !important;
    letter-spacing: 0.3px;
    margin-top: -2.1rem !important;
    /* Raised slightly more than -1.7rem */
    margin-bottom: 0.5rem !important;
    display: block;
    line-height: 1.4 !important;
    /* Added to keep lines tight */
  }

  .hero-description {
    margin: 0.5rem auto 1rem !important;
    /* Significantly increased margin from 1.2rem to 3.5rem to lower buttons */
    font-size: 1.1rem !important;
    /* Larger for better readability */
    padding: 0 1rem;
    line-height: 1.5;
    color: #000000 !important;
    text-shadow: none !important;
  }

  .hero-description .text-highlight {
    font-size: 2rem !important;
    /* Larger, more prominent call to action */
    background: linear-gradient(90deg, #e63946, #ff4d4d, #f4a261);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    display: block;
    font-weight: 700;
  }

  .hero-visual {
    margin-top: 1rem !important;
  }

  .hero-cta {
    display: flex;
    justify-content: center;
    flex-direction: row;
    /* Force side-by-side */
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.8rem;
  }

  .hero-cta .btn {
    padding: 12px 15px !important;
    font-size: 0.85rem !important;
    min-width: 130px;
    flex: 0 1 auto;
    margin: 0 !important;
    white-space: nowrap;
    /* Absolute fix for button text wrap */
  }

  .btn-outline {
    margin-left: 0 !important;
    /* Critical for side-by-side */
  }

  .scroll-indicator {
    display: none !important;
  }

  .section-title {
    font-size: 2rem !important;
  }
}

/* --- Section Commons --- */
.section {
  padding: 120px 0;
  contain: content;
  /* Isolate paint updates per section */
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-white {
  background-color: #ffffff;
}

.section-alt {
  background-color: var(--bg-section-alt);
}

.text-center {
  text-align: center;
}

.margin-top-lg {
  margin-top: 3rem;
}

/* --- About Section --- */
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.about-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.8;
}

.about-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
}

/* .feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
} */

.feature-icon-img,
.feature-icon-fa {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.feature-icon-img {
  filter: brightness(0);
}

.feature-icon-fa {
  font-size: 1.8rem;
  /* Adjusted for visual weight balance */
  color: #000;
}

.feature-item:hover .feature-icon-img,
.feature-item:hover .feature-icon-fa {
  transform: translateY(-5px);
}

.visual-card-img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.visual-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-visual:hover .visual-card-img img {
  transform: scale(1.05);
}

/* --- Menu Section --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 991px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.menu-img-wrapper {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-wrapper img {
  transform: scale(1.1);
}

.menu-content {
  padding: 1.5rem;
}

.menu-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.menu-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  min-height: 60px;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: 700;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.btn-icon i {
  transition: transform var(--transition-fast);
}

.btn-icon:hover {
  background: #333;
}

.btn-icon:hover i {
  transform: rotate(90deg);
}

/* Scroll Animations */
.hidden-on-scroll {
  opacity: 1;
  /* Updated to 1 to ensure visibility if JS fails */
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.element-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive for updates */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 2rem;
    width: 100%;
  }

  .feature-item {
    text-align: center;
  }

  .feature-icon-img,
  .feature-icon-fa {
    width: 45px !important;
    height: 45px !important;
    margin-bottom: 0.8rem;
  }

  .feature-icon-fa {
    font-size: 2.5rem !important;
  }

  .feature-item span {
    font-size: 0.9rem;
    line-height: 1.3;
    display: block;
    font-weight: 500;
  }
}

/* --- Testimonials Section (Reference Implementation) --- */
.carousel-container {
  width: 90%;
  max-width: 800px;
  background: transparent;
  /* Changed from white to match theme */
  border-radius: 20px;
  /* box-shadow provided in snippet but redundant with card style */
  padding: 0;
  position: relative;
  overflow: visible;
  /* Changed to visible for arrows */
  margin: 0 auto;
}

.slider-container {
  position: relative;
  min-height: 350px;
  /* Adjusted height */
  overflow: hidden;
}

/* --- Reviews Carousel (Kata Mereka) --- */
.reviews-carousel-wrapper {
  position: relative;
  max-width: 650px;
  margin: 3rem auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-carousel {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  background: transparent;
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  box-sizing: border-box;
  /* Ensure padding doesn't push width */
}

.review-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reviewer-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.15);
}

.reviewer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info h4 {
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 3px;
}

.stars {
  color: #ffc107;
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 auto !important;
  max-width: 500px;
  display: block;
  text-align: center;
}

/* Bottom Nav Style (Matching Blog) */
.reviews-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 2.5rem auto 0;
  max-width: 650px;
}

.review-nav-btn {
  background: var(--bg-card);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.review-nav-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.2);
}

.review-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 20px;
}

/* --- Mobile Specific Fixes for Reviews --- */
@media (max-width: 768px) {
  .reviews-carousel-wrapper {
    margin: 2rem 1.5rem 0 !important;
    max-width: none !important;
    width: calc(100% - 3rem) !important;
    border-radius: 20px !important;
  }

  .testimonial-card {
    padding: 2.5rem 1rem !important;
    min-width: 100% !important;
    width: 100% !important;
  }

  .review-header {
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .review-text {
    max-width: 100% !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    padding: 0 0.5rem !important;
  }

  .reviews-carousel-nav {
    margin-top: 1.5rem !important;
    gap: 12px !important;
    width: 100% !important;
    justify-content: center !important;
  }
}

.review-dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: var(--primary-color);
  width: 25px;
  border-radius: 10px;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 80px 0;
  margin-top: 50px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("images/cta-bg-opt.jpg");
  /* New grilling background */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #ffffff !important;
}

.pulse-anim {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(230, 57, 70, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-section-alt);
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  align-items: start;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-col h3 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0;
  justify-content: center;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-main);
}

.social-links a:hover {
  background: var(--primary-color);
}

.footer-bottom {
  padding: 0.5rem 0 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Hide Dropdown Icon on Desktop */
.footer-dropdown-icon {
  display: none;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
    padding-bottom: 0.5rem;
  }

  .footer-logo,
  .social-links {
    justify-content: center;
  }

  .footer-desc {
    margin: 0;
  }

  /* Footer Accordion Dropdowns */
  .footer-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0;
  }

  .footer-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
    /* Reduced padding */
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: var(--font-body);
    /* Changed to sans-serif */
    font-size: 0.75rem !important;
    /* Reset to 0.75rem but sans-serif looks smaller */
    font-weight: 500;
    /* Lighter weight */
    letter-spacing: 1px;
    /* Reduced spacing */
    color: var(--text-main);
  }

  /* Unify other titles to match Dropdowns */
  .footer-awards-title,
  .contact-title {
    font-family: var(--font-body);
    font-size: 0.75rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    display: block;
  }

  .contact-phone {
    font-size: 1.1rem;
    /* Slightly smaller phone number */
  }

  .footer-dropdown-icon {
    display: inline-block;
    /* Show on mobile */
    width: 14px;
    height: auto;
    transition: transform 0.3s ease;
    filter: brightness(0);
    /* Make icon black */
    opacity: 0.8;
  }

  .footer-dropdown.active .footer-dropdown-icon {
    transform: rotate(180deg);
  }

  .footer-dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease,
      padding 0.3s ease;
    padding: 0;
  }

  .footer-dropdown.active .footer-dropdown-content {
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.20));
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid rgba(230, 57, 70, 0.8);
    margin: 15px 0 20px 0;
    box-shadow:
      0 15px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 1px rgba(255, 255, 255, 0.5);
  }

  .footer-dropdown .footer-links li {
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    /* Black text for footer */
  }

  /* Non-dropdown footer columns */
  .footer-col:not(.footer-dropdown) h3 {
    text-transform: uppercase;
    font-size: 0.9rem;
    /* Match new standard */
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 1rem 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-col:not(.footer-dropdown) .footer-links li {
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: #000000;
  }

  .footer-socials {
    margin-top: 5px;
  }

  .footer-bottom {
    padding: 0 0 80px 0;
  }

  .section-subtitle {
    font-size: 0.8rem !important;
    margin-bottom: 2rem !important;
  }

  /* Card titles correction */
  .menu-title {
    font-size: 1.1rem !important;
  }

  .blog-preview-content h3 {
    font-size: 1rem !important;
  }
}

.footer-col p {
  font-weight: 400;
  /* Ensure address is not bold */
}

/* Footer Contact */
/* Footer Contact */
.footer-contact {
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  /* Added spacing bottom */
}

.contact-title {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.star-rating-img {
  width: 90px;
  height: auto;
  display: inline-block;
}

.contact-phone {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
}

.footer-awards-title {
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-awards-img img {
  height: 60px;
  margin-bottom: 2rem;
  /* Increased spacing */
  filter: brightness(0);
  /* Make black */
}

.footer-socials {
  justify-content: center;
  margin-bottom: 0.5rem;
}

/* --- Fire Effect --- */
.fire-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  height: 105%;
  border-radius: 50%;
  z-index: -1;
  box-shadow:
    0 0 10px 0 rgba(230, 57, 70, 0.8),
    0 0 20px 2px rgba(244, 162, 97, 0.6),
    0 0 30px 5px rgba(212, 175, 55, 0.4);
  animation: burn 1.5s ease-in-out infinite alternate;
  filter: blur(10px);
}

@keyframes burn {
  0% {
    box-shadow:
      0 0 10px 0 rgba(230, 57, 70, 0.8),
      0 0 20px 2px rgba(244, 162, 97, 0.6),
      0 0 30px 5px rgba(212, 175, 55, 0.4);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  100% {
    box-shadow:
      0 0 20px 4px rgba(230, 57, 70, 1),
      0 0 40px 10px rgba(244, 162, 97, 0.8),
      0 0 60px 15px rgba(212, 175, 55, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

/* --- Ember Effect --- */
/* --- Ember Effect --- */
.ember {
  position: absolute;
  bottom: -10px;
  /* Start below */
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #fff 10%, #ffcc00 40%, #ff4500 100%);
  border-radius: 50%;
  box-shadow:
    0 0 4px #ffcc00,
    0 0 8px #ff4500;
  opacity: 0;
  pointer-events: none;
  z-index: 20;

  /* Explicit animation properties */
  animation-name: rise;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  /* Duration set by JS */
  will-change: transform, opacity;
}

@keyframes rise {
  0% {
    bottom: -10px;
    opacity: 0;
    transform: translateX(0) scale(0.5);
  }

  10% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  70% {
    opacity: 0.6;
  }

  100% {
    bottom: 80%;
    opacity: 0;
    transform: translateX(var(--drift)) scale(0.2);
  }
}

/* --- Testimonials Section --- */
.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.carousel-wrapper {
  position: relative;
  height: 300px;
  /* Estimated height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card.active {
  opacity: 1;
  z-index: 2;
  pointer-events: all;
  top: 50%;
}

/* Carousel Animation: Simple fade/scale transition */

.review-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reviewer-img {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 0 2px var(--primary-color);
  overflow: hidden;
  /* Ensure image stays inside border-radius */
}

.reviewer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.stars {
  color: var(--accent-color);
}

.review-text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.control-btn {
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  position: relative;
  z-index: 10;
}

.control-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
}

.indicator {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.indicator.active {
  background: var(--primary-color);
  transform: scale(1.2);
}

/* --- Blog Preview Carousel Section --- */
.blog-preview-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(24, 26, 31, 1) 100%);
  padding: 80px 0;
}

.blog-preview-section .section-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.blog-preview-section .section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.blog-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.blog-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-preview-card {
  min-width: 100%;
  display: flex;
  flex-direction: row;
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-preview-img {
  position: relative;
  width: 45%;
  min-height: 280px;
  overflow: hidden;
}

.blog-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-preview-card:hover .blog-preview-img img {
  transform: scale(1.05);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.blog-preview-content {
  width: 55%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-preview-content h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.3;
}

.blog-preview-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.blog-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 2.5rem;
}

.blog-nav-btn {
  background: var(--bg-card);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.blog-nav-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.blog-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-dot.active {
  background: var(--primary-color);
  width: 28px;
  border-radius: 20px;
}

.blog-dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.5rem;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-left: 50%;
  transform: translateX(-50%);
}

.btn-view-all:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .blog-preview-card {
    flex-direction: column;
  }

  .blog-preview-img {
    width: 100%;
    min-height: 200px;
  }

  .blog-preview-content {
    width: 100%;
    padding: 1.5rem;
  }

  .blog-preview-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .blog-preview-content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .blog-carousel-nav {
    gap: 1rem;
  }

  .blog-nav-btn {
    width: 40px;
    height: 40px;
  }

  .btn-view-all {
    font-size: 0.9rem;
    padding: 12px 24px;
    margin-top: 2rem;
    white-space: nowrap;
  }

  /* Location button improvements */
  .location-cta .btn-lg {
    font-size: 1rem;
    padding: 14px 28px;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }
}

/* ============================================
   FLOATING CHAT BUTTON & MODAL
   ============================================ */

.floating-chat-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.floating-chat-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatPulse 3s ease-in-out infinite;
  overflow: hidden;
}

.floating-chat-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.chat-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-icon i {
  font-size: 2.8rem;
  color: white;
}



/* Chat Bubble Popup */
.chat-bubble {
  position: relative;
  background: white;
  border-radius: 15px;
  padding: 12px 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 220px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 14px;
  /* Perfectly centered over the 48px button */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.chat-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-bubble-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.chat-bubble-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.chat-bubble-close i {
  font-size: 0.65rem;
  color: #666;
}

.chat-bubble p {
  margin: 0;
  padding-right: 16px;
  color: #333;
  font-size: 0.8rem;
  line-height: 1.4;
}


@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes labelBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Chat Modal */
.chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Lighter backdrop for light theme */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.chat-modal.active {
  opacity: 1;
  visibility: visible;
}

.chat-modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-modal.active .chat-modal-content {
  transform: scale(1);
}

.chat-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-modal-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.chat-modal-close i {
  color: #333;
  font-size: 1.2rem;
}

.chat-modal-close:hover i {
  color: white;
}

.chat-modal-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}

.chat-modal-content>p {
  color: #666;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.chat-form-group {
  margin-bottom: 20px;
}

.chat-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

.chat-form-group .required {
  color: var(--primary);
}

.chat-form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
}

.chat-form-group input:focus {
  outline: none;
  border-color: #25D366;
  background: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

.chat-form-group input::placeholder {
  color: #999;
}

.chat-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  margin-top: 10px;
}

.chat-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.chat-submit-btn:active {
  transform: translateY(-1px);
}

.chat-submit-btn i {
  font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .mobile-br {
    display: inline;
  }

  .floating-chat-container {
    bottom: 20px;
    right: 20px;
  }

  .floating-chat-btn {
    gap: 3px;
  }

  .chat-icon {
    width: 38px;
    height: 38px;
    padding-left: 3px;
  }

  .chat-icon i {
    font-size: 1.3rem;
  }

  .chat-text {
    font-size: 0.8rem;
    padding-right: 10px;
    white-space: nowrap;
    /* Fix sticky text wrap */
  }

  .chat-bubble {
    max-width: 200px;
    padding: 10px 12px;
  }

  .chat-bubble p {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .chat-modal-content {
    padding: 30px 25px;
    border-radius: 20px;
  }

  .chat-modal-content h3 {
    font-size: 1.5rem;
  }

  .chat-form-group input {
    padding: 12px 16px;
  }

  .chat-submit-btn {
    padding: 14px;
  }

  /* Universal Mobile Proportionality Fixes */
  .section {
    padding: 60px 0 !important;
  }

  .section-title {
    font-size: 2rem !important;
    padding: 0 1.5rem !important;
  }

  .section-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2.5rem !important;
    padding: 0 1.5rem !important;
  }

  .about-container {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }

  .about-text {
    text-align: center !important;
    font-size: 1.05rem !important;
    padding: 0 1rem !important;
  }

  .about-features {
    justify-content: center !important;
    gap: 1.5rem !important;
  }

  .menu-grid {
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }

  .menu-content {
    padding: 1.2rem !important;
  }

  .menu-title {
    font-size: 1.3rem !important;
  }

  .cta-title {
    font-size: 2.2rem !important;
    padding: 0 1rem !important;
  }

  .cta-text {
    font-size: 1rem !important;
    padding: 0 1.5rem !important;
  }

  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 0 1rem !important;
  }
}

/* --- Floating F&B Particles --- */
.reviews-section,
.about-section,
.menu-section {
  position: relative;
  overflow: hidden;
  /* Contain the floating icons */
}

.fb-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  color: var(--primary-color);
  opacity: 0.08;
  font-size: 1.5rem;
  animation: dynamic-float 20s linear infinite;
  pointer-events: none;
  will-change: transform;
}

@keyframes dynamic-float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }

  15% {
    opacity: 0.15;
  }

  35% {
    transform: translateY(60vh) translateX(30px) rotate(90deg) scale(1.1);
  }

  65% {
    transform: translateY(30vh) translateX(-30px) rotate(180deg) scale(0.9);
  }

  85% {
    opacity: 0.15;
  }

  100% {
    transform: translateY(-20vh) translateX(10px) rotate(360deg) scale(1.2);
    opacity: 0;
  }
}

.p1 {
  left: 10%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.p2 {
  left: 30%;
  animation-duration: 15s;
  animation-delay: -5s;
}

.p3 {
  left: 50%;
  animation-duration: 20s;
  animation-delay: -2s;
}

.p4 {
  left: 70%;
  animation-duration: 17s;
  animation-delay: -8s;
}

.p5 {
  left: 90%;
  animation-duration: 19s;
  animation-delay: -4s;
}

.p6 {
  left: 15%;
  animation-duration: 22s;
  animation-delay: -10s;
}

/* --- Glare Interaction Effect (from Online Food) --- */
.menu-card,
.testimonial-slide,
.visual-card-img {
  position: relative;
  overflow: hidden;
}

.menu-card::before,
.testimonial-slide::before,
.visual-card-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(230, 57, 70, 0.1),
      transparent 40%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 5;
}

.menu-card:hover::before,
.testimonial-slide:hover::before,
.visual-card-img:hover::before {
  opacity: 1;
}

/* Enhancing existing cards with lift and shadow */
.testimonial-slide:active,
.testimonial-slide.active {
  transition: transform 0.6s ease-in-out, box-shadow 0.3s ease;
}

.testimonial-slide.active:hover {
  transform: translateX(0) scale(1.02) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.visual-card-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}