/* ==========================================================================
   WEEBS 2.0 - PREMIUM RESTAURANT STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --primary-orange: #F26A21;
  --primary-accent: #FF8A00;
  --dark-brown: #2B1A16;
  --cream-bg: #F9F4EE;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --dark-glass-bg: rgba(43, 26, 22, 0.7);
  
  --font-heading: 'Bebas Neue', cursive, sans-serif;
  --font-body: 'Poppins', sans-serif;

  --shadow-orange-glow: 0 10px 30px rgba(242, 106, 33, 0.35);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 25px 50px rgba(242, 106, 33, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-brown);
  color: var(--cream-bg);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(242, 106, 33, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(255, 138, 0, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Typography Base */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Layout Containers */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.accent-text {
  color: var(--primary-orange);
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   3. CUSTOM CURSOR & EXTRA UI COMPONENTS
   -------------------------------------------------------------------------- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-orange);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(242, 106, 33, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out;
  box-shadow: 0 0 15px rgba(242, 106, 33, 0.3);
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--dark-brown);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.brand-logo-anim {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
}

.brand-logo-anim span {
  color: var(--primary-orange);
}

.progress-bar-container {
  width: 240px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto 15px;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-accent));
  transition: width 0.1s linear;
}

.loader-status {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-orange), var(--primary-accent));
  z-index: 1001;
  width: 0%;
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.float-btn.whatsapp {
  background-color: #25D366;
}

.float-btn.messenger {
  background: linear-gradient(135deg, #0084FF, #00C6FF);
}

.float-btn.scroll-top {
  background-color: var(--primary-orange);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.float-btn.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-accent));
  color: var(--white);
  box-shadow: var(--shadow-orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(242, 106, 33, 0.5);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  border-color: var(--primary-orange);
  background: rgba(242, 106, 33, 0.15);
  transform: translateY(-3px);
}

.btn-dark {
  background-color: var(--dark-brown);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #1a0f0d;
  transform: translateY(-3px);
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-orange);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(242, 106, 33, 0.4);
  box-shadow: var(--shadow-card-hover);
}

/* Section Header Shared */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-orange);
  margin-bottom: 12px;
  background: rgba(242, 106, 33, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(242, 106, 33, 0.2);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 15px;
  line-height: 1.1;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  color: rgba(249, 244, 238, 0.7);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.navbar-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-normal);
}

.navbar-header.scrolled {
  padding: 14px 0;
  background: var(--dark-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-text {
  color: var(--white);
}

.logo-tag {
  color: var(--primary-orange);
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger-btn .bar {
  width: 26px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  width: 450px;
  height: 450px;
  background: rgba(242, 106, 33, 0.25);
  top: 10%;
  left: -100px;
}

.glow-2 {
  width: 550px;
  height: 550px;
  background: rgba(255, 138, 0, 0.18);
  bottom: 5%;
  right: -150px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary-orange);
  background: rgba(242, 106, 33, 0.12);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(242, 106, 33, 0.25);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-family: var(--font-heading);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-subtitle .dot {
  color: var(--primary-orange);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(249, 244, 238, 0.75);
  max-width: 520px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.trust-divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual / Right Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(242,106,33,0.4) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

.hero-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(242,106,33,0.2), rgba(255,138,0,0.1));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphBlob 8s ease-in-out infinite alternate;
}

@keyframes morphBlob {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 30px;
  overflow: visible;
}

.hero-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(255, 255, 255, 0.15);
  animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Floating Elements */
.floating-element {
  position: absolute;
  z-index: 3;
  width: 50px;
  height: 50px;
  background: var(--dark-glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 1.4rem;
  box-shadow: var(--shadow-card);
}

.float-chili { top: 10%; left: -20px; color: #ff4d4d; animation: floatElem 4s infinite alternate; }
.float-ramen { bottom: 15%; left: -30px; color: var(--primary-accent); animation: floatElem 5s infinite alternate-reverse; }
.float-fork { top: 20%; right: -25px; color: #fff; animation: floatElem 4.5s infinite alternate; }
.float-star { bottom: 10%; right: -10px; color: #ffd700; animation: floatElem 3.5s infinite alternate-reverse; }

@keyframes floatElem {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(15deg); }
}

/* Steam SVG Animation */
.steam-container {
  position: absolute;
  top: -60px;
  width: 180px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

.steam-wave {
  position: absolute;
  width: 60px;
  height: 100px;
  opacity: 0;
}

.steam-1 { left: 20px; animation: steamRise 3s infinite ease-out; }
.steam-2 { left: 70px; animation: steamRise 3s infinite ease-out 1s; }
.steam-3 { left: 120px; animation: steamRise 3s infinite ease-out 2s; }

@keyframes steamRise {
  0% { transform: translateY(20px) scaleX(0.8); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-60px) scaleX(1.2); opacity: 0; }
}

/* Float Badge */
.image-glass-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: rgba(43, 26, 22, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-card);
  z-index: 4;
}

.image-glass-card i {
  font-size: 1.8rem;
  color: var(--primary-orange);
}

.image-glass-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.image-glass-card span {
  font-size: 0.75rem;
  color: var(--primary-accent);
}

/* --------------------------------------------------------------------------
   7. SPECIAL OFFERS SECTION
   -------------------------------------------------------------------------- */
.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.special-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.discount-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--primary-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(242, 106, 33, 0.4);
}

.special-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.special-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.special-card:hover .special-img-wrapper img {
  transform: scale(1.08);
}

.special-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rating-stars {
  color: #ffd700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.special-info h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1.2;
}

.special-info p {
  font-size: 0.9rem;
  color: rgba(249, 244, 238, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.current-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-orange);
}

/* --------------------------------------------------------------------------
   8. MENU PREVIEW SECTION
   -------------------------------------------------------------------------- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-orange-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.menu-card {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.menu-img-box {
  position: relative;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.menu-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-box img {
  transform: scale(1.08);
}

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.fav-btn:hover,
.fav-btn.active {
  background: var(--primary-orange);
  color: var(--white);
}

.menu-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-title {
  font-size: 1.4rem;
  line-height: 1.2;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-orange);
}

.menu-desc {
  font-size: 0.88rem;
  color: rgba(249, 244, 238, 0.65);
  margin-bottom: 20px;
}

.menu-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.prep-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Filter Hide Class */
.menu-card.hide {
  display: none;
}

/* --------------------------------------------------------------------------
   9. WHY CHOOSE US SECTION
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  padding: 35px 25px;
  text-align: center;
  position: relative;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(242, 106, 33, 0.15);
  border: 1px solid rgba(242, 106, 33, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--primary-orange);
  font-size: 1.8rem;
  transition: var(--transition-normal);
}

.why-card:hover .icon-circle {
  background: var(--primary-orange);
  color: var(--white);
  transform: rotateY(180deg);
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(249, 244, 238, 0.65);
}

/* --------------------------------------------------------------------------
   10. STATISTICS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(242,106,33,0.15), rgba(43,26,22,0.9));
  border-y: 1px solid var(--glass-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-number-flex {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-number-flex .plus {
  color: var(--primary-orange);
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   11. GALLERY SECTION
   -------------------------------------------------------------------------- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,26,22,0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
}

.gallery-overlay h4 {
  font-size: 1.4rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonial-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  border-radius: 24px;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  position: relative;
  box-sizing: border-box;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: rgba(242, 106, 33, 0.15);
}

.review-text {
  font-size: 1.15rem;
  font-style: italic;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-orange);
}

.user-info h4 {
  font-size: 1.2rem;
}

.user-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-controls button:hover {
  background: var(--primary-orange);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot-indicator.active {
  background: var(--primary-orange);
  width: 25px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   13. CALL TO ACTION SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 60px 0 100px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-orange), #c84e0e);
  border-radius: 30px;
  padding: 70px 40px;
  box-shadow: 0 20px 50px rgba(242, 106, 33, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.footer-section {
  background-color: #1a0f0d;
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 15px;
  display: inline-block;
}

.footer-logo span {
  color: var(--primary-orange);
}

.brand-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.hours-list li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.open-status {
  color: #00ff88 !important;
  font-weight: 600;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--white);
  outline: none;
}

.footer-animated-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
  margin-bottom: 30px;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 15px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   15. ANIMATIONS & SCROLL REVEAL CLASSES
   -------------------------------------------------------------------------- */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Ripple Effect Element */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 35px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark-brown);
    padding: 100px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition-normal);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 25px;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .gallery-masonry {
    grid-auto-rows: 200px;
  }

  .gallery-item.item-tall {
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.2rem;
  }

  .btn-lg {
    padding: 14px 28px;
    width: 100%;
  }

  .cta-banner {
    padding: 40px 20px;
  }

  .stat-number-flex {
    font-size: 2.8rem;
  }
}