﻿/* ===========================
   KOODAI COFFEE - DARK MODE ONLY
   Brand Color: Chocolate Gold #D4A373
   =========================== */

/* ===========================
   CSS VARIABLES - DARK MODE
   =========================== */
:root {
  /* Brand Colors - Dark Theme */
  --brand-gold: #D4A373;
  --bg-dark: #121212;
  --text-dark: #EAEAEA;
  --brown-deep: #2C1810;
  --beige-light: #1a1a1a;
  --soft-white: #F5F5F5;
}

/* ===========================
   BASE STYLES & RESETS
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

html {
  scroll-behavior: smooth;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: 'Inter' !important;
}

body {
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
  background: var(--beige-light);
  color: var(--brown-deep);
}

/* Mobile Tap Highlight Fix */
a,
button,
input,
select {
  -webkit-tap-highlight-color: transparent !important;
  outline: 0 !important;
}

a:focus,
button:focus,
a:active,
button:active {
  outline: 0 !important;
  box-shadow: none !important;
}

/* ===========================
   MENU CARD CATEGORY LABELS - HIDDEN
   =========================== */
.menu-card-category {
  display: none !important;
}

/* ===========================
   MOBILE MENU BUTTON
   =========================== */
.mobile-menu-btn {
  color: #D4A373;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background-color: #D4A373 !important;
  color: #1a1a1a !important;
  /* Changed to dark for contrast on gold background */
}

/* ===========================
   NAVIGATION LINKS - DARK MODE ONLY
   =========================== */
.nav-link {
  position: relative;
  font-weight: 600;
  color: #D4A373;
  transition: all 0.3s ease;
  padding-bottom: 4px;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A373;
  transition: width 0.3s ease;
}

.nav-link:active,
.nav-link:focus,
.nav-link:visited {
  text-decoration: none;
  outline: none;
}

/* Active state: white text with coklat underline */
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-link.active,
.nav-link:hover {
  color: #FFFFFF;
  text-decoration: none;
}

/* ===========================
   LANGUAGE TOGGLE & CTA BUTTONS - UNIFIED STYLE
   =========================== */
button#langToggle,
button#langToggleMobile,
a#viewAllMenuBtn,
a.cta-menu-btn {
  border: 2px solid #D4A373 !important;
  color: #D4A373 !important;
  background-color: transparent !important;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Hover state: background coklat, text putih */
button#langToggle:hover,
button#langToggleMobile:hover,
a#viewAllMenuBtn:hover,
a.cta-menu-btn:hover {
  background-color: #D4A373 !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4) !important;
}

/* Active state */
button#langToggle.active,
button#langToggleMobile.active {
  background-color: #D4A373;
  color: #1a1a1a !important;
}

/* Active button click effect */
button#langToggle:active,
button#langToggleMobile:active,
a#viewAllMenuBtn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(212, 163, 115, 0.3) !important;
}

/* ===========================
   MOBILE MENU - UNIFIED
   =========================== */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(247, 200, 72, 0.2);
  background-color: #1E1E1E !important;
  min-height: 100vh;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: #D4A373;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 1rem;
  text-decoration: none;
}

.mobile-nav-link:hover {
  color: #D4A373;
  border-left-color: #D4A373;
  background-color: rgba(212, 163, 115, 0.1);
}

.mobile-nav-link.active {
  color: #FFFFFF;
  border-left-color: #D4A373;
  background-color: rgba(212, 163, 115, 0.15);
}

.mobile-nav-link:active,
.mobile-nav-link:focus {
  text-decoration: none;
  outline: none;
}

body.dark-mode .mobile-nav-link {
  border-top-color: rgba(247, 200, 72, 0.3);
}

/* Dark Mode Mobile Menu */
body.dark-mode .mobile-nav-link {
  color: #D4A373;
}

body.dark-mode .mobile-nav-link:hover {
  color: #D4A373;
  border-left-color: #D4A373;
}

body.dark-mode .mobile-nav-link.active {
  color: #FFFFFF;
  border-left-color: #D4A373;
}

body.dark-mode .mobile-menu {
  border-top-color: rgba(212, 163, 115, 0.3);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-fadeInDown {
  animation: fadeInDown 0.8s ease-out;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
}

/* ===========================
   FEATURE CARDS
   =========================== */
.feature-card {
  background: rgba(26, 26, 26, 0.7);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 163, 115, 0.3);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #D4A373;
  background: rgba(26, 26, 26, 0.85);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: rgba(247, 200, 72, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

/* Ensure no black background on SVG icons */
.feature-icon-wrapper svg {
  background: transparent !important;
  color: #F7C848;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background: #F7C848;
  transform: scale(1.1);
}

.feature-card:hover .feature-icon-wrapper svg {
  color: white;
  background: transparent !important;
}

/* ===========================
   FOOTER SOCIAL ICONS - UNIFIED
   =========================== */

/* Light Mode Footer Social - Golden base, WHITE hover (bukan coklat!) */
body:not(.dark-mode) .social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(247, 200, 72, 0.2) !important;
  border-radius: 12px;
  color: #F7C848 !important;
  transition: all 0.3s ease;
}

body:not(.dark-mode) .social-icon-footer:hover {
  background: #F7C848 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(247, 200, 72, 0.5);
}

/* Ensure icon inside turns white on hover */
body:not(.dark-mode) .social-icon-footer:hover svg,
body:not(.dark-mode) .social-icon-footer:hover i {
  color: #FFFFFF !important;
}

/* Dark Mode Footer Social - Brown base, WHITE hover (mirip light mode) */
body.dark-mode .social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(212, 163, 115, 0.2) !important;
  border-radius: 12px;
  color: #D4A373 !important;
  transition: all 0.3s ease;
}

body.dark-mode .social-icon-footer:hover {
  background: #D4A373 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
}

body.dark-mode .social-icon-footer:hover svg,
body.dark-mode .social-icon-footer:hover i {
  color: #FFFFFF !important;
}

/* ===========================
   DARK MODE STYLES - AMBER NOIR
   =========================== */
body.dark-mode {
  background: #121212;
  color: #FFFFFF;
}

/* Header Dark Mode */
body.dark-mode header {
  background: #000000 !important;
  border-bottom: 1px solid rgba(212, 163, 115, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 163, 115, 0.1) !important;
  backdrop-filter: blur(10px);
}

/* Logo Text Dark Mode - Chocolate Color */
body.dark-mode header .text-coffee-dark {
  color: #D4A373 !important;
}

body.dark-mode .nav-link {
  color: #D4A373;
}

/* Keep coklat solid on hover/active - white text */
body.dark-mode .nav-link::after {
  background: #D4A373;
}

body.dark-mode .nav-link.active,
body.dark-mode .nav-link:hover {
  color: #FFFFFF !important;
}

body.dark-mode .mobile-nav-link {
  color: #D4A373;
}

body.dark-mode .mobile-nav-link:hover {
  color: #D4A373;
  border-left-color: #D4A373;
}

body.dark-mode .mobile-nav-link.active {
  color: #FFFFFF !important;
  border-left-color: #D4A373;
}

body.dark-mode .mobile-menu {
  border-top-color: rgba(212, 163, 115, 0.3);
}

/* ===========================
   LIGHT MODE SECTIONS - PROFESSIONAL & CLEAN
   =========================== */

/* Hero Section - Soft Teal gradient (enak di mata) */
body:not(.dark-mode) section:first-of-type,
body:not(.dark-mode) section.relative.min-h-screen {
  background: linear-gradient(135deg,
      rgba(42, 106, 110, 0.08) 0%,
      rgba(24, 97, 105, 0.12) 50%,
      rgba(2, 77, 82, 0.08) 100%) !important;
  position: relative;
}

body:not(.dark-mode) section:first-of-type .absolute.inset-0 {
  background: linear-gradient(to bottom right,
      rgba(24, 97, 105, 0.08),
      rgba(212, 228, 230, 0.12)) !important;
}

/* Hero text - Dark untuk readability */
body:not(.dark-mode) section:first-of-type h1,
body:not(.dark-mode) section:first-of-type h2 {
  color: #2C3E50 !important;
  text-shadow: none;
}

body:not(.dark-mode) section:first-of-type h1 .gradient-text {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(247, 200, 72, 0.2));
}

body:not(.dark-mode) section:first-of-type p {
  color: rgba(44, 62, 80, 0.85) !important;
}

body:not(.dark-mode) section:first-of-type .inline-flex.items-center {
  background: rgba(247, 200, 72, 0.15) !important;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(247, 200, 72, 0.3);
}

body:not(.dark-mode) section:first-of-type .inline-flex.items-center span {
  color: #F7C848 !important;
  font-weight: 600;
}

/* Features Section - Clean white dengan hint Teal */
body:not(.dark-mode) section#features {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(42, 106, 110, 0.02) 50%,
      rgba(255, 255, 255, 0.98) 100%) !important;
  border-top: 1px solid #F7C848;
  border-bottom: 1px solid #F7C848;
}

/* Best Seller Section - Soft Teal background */
body:not(.dark-mode) section#best-seller {
  background: linear-gradient(180deg,
      rgba(42, 106, 110, 0.04) 0%,
      rgba(42, 106, 110, 0.06) 50%,
      rgba(42, 106, 110, 0.04) 100%) !important;
  border-top: 1px solid #f7c848 !important;
  border-bottom: 1px solid #f7c848 !important;
}

/* Decorative elements - subtle */
body:not(.dark-mode) section:first-of-type .absolute:not(.inset-0) {
  opacity: 0.3 !important;
}

/* Section Headers - Golden dengan shadow */
body:not(.dark-mode) section#features .text-center h2,
body:not(.dark-mode) section#best-seller .text-center h2 {
  color: #f7c848 !important;
  text-shadow: 0 2px 4px rgba(224, 155, 45, 0.1);
  font-size: inherit !important;
}

body:not(.dark-mode) section#features .text-center .inline-block,
body:not(.dark-mode) section#best-seller .text-center .inline-block {
  background: rgba(247, 200, 72, 0.12) !important;
  color: #F7C848 !important;
  border: 2px solid rgba(247, 200, 72, 0.3);
  font-size: inherit !important;
}

body:not(.dark-mode) section#features .text-center p,
body:not(.dark-mode) section#best-seller .text-center p {
  color: rgba(44, 62, 80, 0.75) !important;
  font-size: inherit !important;
}

/* Hero CTA Buttons - GOLDEN #F7C848 (Light Mode) */
body:not(.dark-mode) section:first-of-type a[href="menu.html"] {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%) !important;
  box-shadow: 0 8px 24px rgba(247, 200, 72, 0.4);
  border: none;
}

body:not(.dark-mode) section:first-of-type a[href="menu.html"]:hover {
  box-shadow: 0 12px 32px rgba(247, 200, 72, 0.6);
  transform: translateY(-4px);
}

body:not(.dark-mode) section:first-of-type a[href="about.html"] {
  border: 2px solid #F7C848 !important;
  color: #F7C848 !important;
  background: rgba(255, 255, 255, 0.8);
}

body:not(.dark-mode) section:first-of-type a[href="about.html"]:hover {
  background: #F7C848 !important;
  color: #FFFFFF !important;
  border-color: #F7C848 !important;
}

/* Hero CTA Buttons - CHOCOLATE #D4A373 (Dark Mode) */
body.dark-mode section:first-of-type a[href="menu.html"] {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%) !important;
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.4);
  border: none;
}

body.dark-mode section:first-of-type a[href="menu.html"]:hover {
  box-shadow: 0 12px 32px rgba(212, 163, 115, 0.6);
  transform: translateY(-4px);
}

body.dark-mode section:first-of-type a[href="about.html"] {
  border: 2px solid #D4A373 !important;
  color: #D4A373 !important;
  background: rgba(255, 255, 255, 0.05);
}

body.dark-mode section:first-of-type a[href="about.html"]:hover {
  background: #D4A373 !important;
  color: #FFFFFF !important;
  border-color: #8B6F47 !important;
}

/* Hero Section Dark Mode */
body.dark-mode section:first-of-type {
  background: #121212 !important;
}

body.dark-mode section:first-of-type .absolute {
  opacity: 0.8;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: #FFFFFF;
}

body.dark-mode p {
  color: rgba(255, 255, 255, 0.85);
}

/* Badge Dark Mode - Chocolate accent on hero */
body.dark-mode .inline-flex.items-center.gap-3 {
  background: rgba(212, 163, 115, 0.15) !important;
  border: 1px solid rgba(212, 163, 115, 0.3);
}

/* Feature Cards Dark Mode - Chocolate */
body.dark-mode .feature-card {
  background-color: #1E1E1E;
  color: #FFFFFF;
  border: 1px solid rgba(212, 163, 115, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.dark-mode .feature-card:hover {
  box-shadow: 0 20px 40px rgba(212, 163, 115, 0.3);
  border-color: #D4A373;
  transform: translateY(-12px);
}

body.dark-mode .feature-card p {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.15) 0%, rgba(139, 111, 71, 0.08) 100%);
}

/* Sections Dark Mode */
body.dark-mode section {
  background-color: #121212 !important;
}

body.dark-mode section#features {
  background-color: #1a1a1a !important;
}

body.dark-mode section .bg-coffee-gold\/10 {
  background-color: rgba(212, 163, 115, 0.15) !important;
}

/* Buttons Dark Mode */
body.dark-mode .filter-btn {
  color: #D4A373;
  border-color: #D4A373;
  background: rgba(212, 163, 115, 0.05);
}

body.dark-mode .filter-btn:hover {
  background: #D4A373;
  color: #121212;
}

body.dark-mode .filter-btn.active {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  color: white;
}

/* Dropdown & Input - Brown concept in Dark Mode */
body.dark-mode select,
body.dark-mode input[type="text"],
body.dark-mode input[type="search"] {
  background-color: #1E1E1E !important;
  color: #8B6F47 !important;
  border-color: #d4a373;
  ;
  transition: all 0.3s ease;
  min-width: 180px;
  /* Consistency width */
  padding: 0.75rem 1rem;
}

body.dark-mode select option {
  background-color: #2A2A2A !important;
  color: #F7C848 !important;
}

/* Light Mode Dropdown - Teal text */
body:not(.dark-mode) select,
body:not(.dark-mode) input[type="text"],
body:not(.dark-mode) input[type="search"] {
  background-color: white !important;
  color: #2A6A6E !important;
  border-color: rgba(42, 106, 110, 0.3) !important;
  border-bottom: 2px solid #F7C848;
  transition: all 0.3s ease;
  min-width: 180px;
  /* Consistency width */
  padding: 0.75rem 1rem;
}

body:not(.dark-mode) select option {
  background-color: white !important;
  color: #2A6A6E !important;
}

/* Menu Cards Dark Mode - Chocolate */
body.dark-mode .menu-card {
  background-color: #1E1E1E;
  border: 1px solid rgba(212, 163, 115, 0.4);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212, 163, 115, 0.3),
    0 6px 12px rgba(0, 0, 0, 0.4);
  border-color: #D4A373;
}

/* Dark mode category colors */
body.dark-mode .category-food {
  background-color: rgba(255, 250, 243, 0.05);
}

body.dark-mode .category-coffee {
  background-color: rgba(253, 248, 244, 0.05);
}

body.dark-mode .category-non-coffee {
  background-color: rgba(245, 251, 255, 0.05);
}

body.dark-mode .category-snack {
  background-color: rgba(255, 245, 248, 0.05);
}

body.dark-mode .menu-card-title {
  color: #FFFFFF;
}

body.dark-mode .menu-card-description {
  color: rgba(255, 255, 255, 0.8);
}

body.dark-mode .menu-card-footer {
  border-top: 2px solid rgba(212, 163, 115, 0.3);
}

body.dark-mode .menu-card-category {
  background: rgba(139, 111, 71, 0.15);
  color: #d4a373;
}

body.dark-mode .menu-card-image {
  background: #2A2A2A;
  color: #D4A373;
  border-bottom-color: rgba(212, 163, 115, 0.3);
}

body.dark-mode .menu-card-price {
  color: #D4A373;
  text-shadow: 0 0 6px rgba(212, 163, 115, 0.4);
  font-family: 'Inter';
}

body.dark-mode .menu-card-price-range {
  color: #D4A373;
  text-shadow: 0 0 6px rgba(212, 163, 115, 0.4);
  font-family: 'Inter';
}

/* Badge Dark Mode - KEEP BRIGHT & COLORFUL (NOT GREY/BLURRED) */
body.dark-mode .menu-card-badge {
  /* Keep original bright colors - don't make grey/blurred */
  opacity: 1 !important;
  filter: none !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5) !important;
  /* Strong shadow for visibility */
}

body.dark-mode .badge-bestseller {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
  color: #1E1E1E !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

body.dark-mode .badge-promo {
  background: linear-gradient(135deg, #DC2626, #DC2626) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.6) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

body.dark-mode .badge-new {
  background: linear-gradient(135deg, #1ABC9C, #1ABC9C) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(26, 188, 156, 0.6) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

/* ===========================
   FOOTER STYLES - CUSTOMIZABLE LIGHT/DARK MODE
   =========================== */

/* 
  🎨 FOOTER CLASS BARU: .footer-section
  - Strategi: Pakai body:not(.dark-mode) dan body.dark-mode untuk SPECIFICITY tinggi
  - Light: #F7C848 (golden) border, #FFFFFF text
  - Dark: #D4A373 (chocolate) border, rgba(255,255,255,0.85) text
  - TIDAK BOCOR ke element lain karena double selector
*/

/* ===== BASE STYLES (Sama di Light & Dark) ===== */
.footer-section {
  transition: all 0.4s ease;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
}

/* ===== LIGHT MODE FOOTER (Default) ===== */
body:not(.dark-mode) .footer-section {
  background: #2A6A6E !important;
  /* Teal background */
  border-top: 1px solid #f7c848 !important;
  /* 🔥 GOLDEN BORDER - REDUCED */
}

body:not(.dark-mode) .footer-section::before {
  background: linear-gradient(90deg, transparent 0%, rgba(243, 144, 23, 0.5) 50%, transparent 100%);
}

/* Headings - Golden */
body:not(.dark-mode) .footer-section h3,
body:not(.dark-mode) .footer-section h4 {
  color: #F7C848 !important;
  font-weight: 700;
}

/* Text & Paragraphs - WHITE (karena bg teal gelap) */
body:not(.dark-mode) .footer-section p {
  color: #FFFFFF !important;
  /* ✅ PUTIH TERANG */
  line-height: 1.7;
}

/* Links - Golden, hover white */
body:not(.dark-mode) .footer-section a {
  color: #F7C848 !important;
  transition: color 0.3s ease;
  font-weight: 500;
}

body:not(.dark-mode) .footer-section a:hover {
  color: #FFFFFF !important;
  text-shadow: 0 0 8px rgba(247, 200, 72, 0.5);
}

/* Spans - Golden */
body:not(.dark-mode) .footer-section span {
  color: #F7C848 !important;
}

/* ===== DARK MODE FOOTER ===== */
body.dark-mode .footer-section {
  background: #000000 !important;
  /* Pure black */
  border-top: 4px solid #D4A373 !important;
  /* 🔥 CHOCOLATE BORDER */
}

body.dark-mode .footer-section::before {
  background: linear-gradient(90deg, transparent 0%, rgba(212, 163, 115, 0.5) 50%, transparent 100%);
}

/* Headings - Chocolate */
body.dark-mode .footer-section h3,
body.dark-mode .footer-section h4 {
  color: #D4A373 !important;
  font-weight: 700;
}

/* Text & Paragraphs - CREAM (karena bg hitam) */
body.dark-mode .footer-section p {
  color: rgba(255, 255, 255, 0.85) !important;
  /* ✅ CREAM/PUTIH LEMBUT */
  line-height: 1.7;
}

/* Links - Chocolate, hover white */
body.dark-mode .footer-section a {
  color: #D4A373 !important;
  transition: color 0.3s ease;
  font-weight: 500;
}

body.dark-mode .footer-section a:hover {
  color: #FFFFFF !important;
  text-shadow: 0 0 8px rgba(212, 163, 115, 0.5);
}

/* Spans - Chocolate */
body.dark-mode .footer-section span {
  color: #D4A373 !important;
}

/* ===========================
   MENU CARD STYLES
   =========================== */
.menu-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(42, 106, 110, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Light Mode Menu Card - MENONJOL dengan shadow kuat */
body:not(.dark-mode) .menu-card {
  background: rgba(42, 106, 110, 0.12) !important;
  box-shadow: 0 4px 12px rgba(224, 155, 45, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.08);
  border: 1px solid #f7c848 !important;
  position: relative;
}

body:not(.dark-mode) .menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(224, 155, 45, 0.25),
    0 4px 8px rgba(0, 0, 0, 0.12);
  border-color: #f7c848 !important;
  background: rgba(42, 106, 110, 0.12) !important;
}

/* Category-based background colors - REMOVED chicken and seafood */
.category-food {
  background: #fffaf3;
}

.category-coffee {
  background: #fdf8f4;
}

.category-non-coffee {
  background: #f5fbff;
}

.category-snack {
  background: #fff5f8;
}

.category-default {
  background: white;
}

/* Scroll Animation Classes */
.fade-in-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(243, 144, 23, 0.15);
  border-color: var(--brand-gold);
}

.menu-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 30%;
  aspect-ratio: 2 / 1;
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #D4A373;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(224, 155, 45, 0.2);
  position: relative;
  overflow: hidden;
}

/* Responsive: Larger image on desktop */
@media (min-width: 768px) {
  .menu-card-image {
    height: 160px;
    padding: 0.75rem;
    font-size: 3rem;
  }
}

.menu-card-content {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .menu-card-content {
    padding: 1rem;
  }
}

.menu-card-title {
  font-family: 'Inter';
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: #215556;
  transition: color 0.3s ease;
  line-height: 1.2;
  min-height: 2.5em;
}

@media (min-width: 768px) {
  .menu-card-title {
    font-size: 1.125rem;
    min-height: 1.8em;
  }
}

/* Light Mode - Title hover to Golden */
body:not(.dark-mode) .menu-card-title {
  color: #f19f11;
}

body:not(.dark-mode) .menu-card:hover .menu-card-title {
  color: #F7C848;
}

/* Dark Mode - Title hover to Brown */
body.dark-mode .menu-card-title {
  color: #d4a373;
}

body.dark-mode .menu-card:hover .menu-card-title {
  color: #D4A373;
}

.menu-card-description {
  color: rgba(44, 62, 80, 0.7);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(224, 155, 45, 0.12);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: help;
  flex-grow: 1;
}

.menu-card-description:hover {
  -webkit-line-clamp: unset;
  max-height: none;
  color: rgba(44, 62, 80, 0.9);
}

@media (min-width: 768px) {
  .menu-card-description {
    font-size: 0.85rem;
    line-height: 1.5;
    padding-top: 0.5rem;
    -webkit-line-clamp: 5;
  }
}

/* Light mode description with separator */
body:not(.dark-mode) .menu-card-description {
  color: rgba(44, 62, 80, 0.85);
  border-top-color: rgba(224, 155, 45, 0.2);
}

/* Variants text styling with proper spacing */
.menu-card-content p.variants {
  margin-bottom: 1.25rem;
  /* Balanced spacing before footer */
  color: #6B7280;
  font-size: 0.875rem;
  line-height: 1.4;
}

.menu-card-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(224, 155, 45, 0.2);
  transition: border-color 0.3s ease;
}

/* Light mode footer separator - Golden */
body:not(.dark-mode) .menu-card-footer {
  border-top-color: rgba(224, 155, 45, 0.25);
}

/* Left side: Price + Category (vertical stack) */
.menu-card-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* Right side: Variant badge */
/* ===========================
   MENU CARD FOOTER - PRICE & VARIANT BUTTON SEJAJAR!
   =========================== */

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(247, 200, 72, 0.2);
  gap: 1rem;
}

.menu-card-footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.menu-card-footer-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.menu-card-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: #f7c848;
  flex-shrink: 0;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Inter';
}

/* Golden glow on price in light mode */
body:not(.dark-mode) .menu-card-price {
  color: #186169;
  text-shadow: 0 2px 8px rgba(24, 97, 105, 0.3);
  font-weight: 800;
  font-family: 'Inter';
}

.menu-card-price-range {
  font-weight: 700;
  font-size: 1.25rem;
  color: #186169;
  flex-shrink: 0;
  transition: all 0.3s ease;
  line-height: 1;
  font-family: 'Inter';
}

/* Golden glow on price range in light mode */
body:not(.dark-mode) .menu-card-price-range {
  color: #f7c848;
  text-shadow: 0 2px 8px rgba(247, 200, 72, 0.3);
  font-weight: 800;
  font-family: 'Inter';
}

.menu-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #f7c848;
  background: rgba(224, 155, 45, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
}

/* Unified Category Label (Soft Golden for Light Mode) */
.menu-card-category[class*="category-label-"] {
  background: rgba(224, 155, 45, 0.2);
  /* Soft golden bg */
  color: #F7C848;
  /* Golden text */
}

/* Hover effect for light mode only */
body:not(.dark-mode) .menu-card-category:hover {
  background: rgba(224, 155, 45, 0.3);
  transform: translateY(-1px);
}

/* Dark mode keeps original styling */
.dark .menu-card-category[class*="category-label-"] {
  background: rgba(212, 163, 115, 0.15);
  color: #D4A373;
}

.menu-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #D4A373;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
  text-shadow: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.menu-card-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.menu-card-badge:hover::before {
  left: 100%;
}

.menu-card-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.5);
}

/* Light Mode Badge - GRADIENT TERANG KE GELAP + LOGO SVG! */
body:not(.dark-mode) .menu-card-badge {
  background: linear-gradient(135deg, #F7C848 0%, #f39017 50%, #186169 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(247, 200, 72, 0.5) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  font-weight: 800 !important;
  font-size: 0.875rem !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

body:not(.dark-mode) .menu-card-badge:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 30px rgba(247, 200, 72, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Light Mode Badge Colors - BRIGHT & CLEAR */
/* Best Seller Badge - Yellow with a little Orange */
body:not(.dark-mode) .badge-bestseller {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%) !important;
  color: #1E1E1E !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

body:not(.dark-mode) .badge-promo {
  background: linear-gradient(135deg, #DC2626, #DC2626) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

body:not(.dark-mode) .badge-new {
  background: linear-gradient(135deg, #1ABC9C, #1ABC9C) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(26, 188, 156, 0.4) !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.menu-card-price-range {
  font-weight: 700;
  font-size: 1.125rem;
  color: #ea7c0e;
}

/* ===========================
   FILTER BUTTONS - UNIFIED
   =========================== */

/* Light Mode Filter Buttons - Golden accent */
body:not(.dark-mode) .filter-btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid #F7C848;
  background: rgba(247, 200, 72, 0.1);
  color: #F7C848;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.03em;
}

body:not(.dark-mode) .filter-btn:hover {
  background: #F7C848;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(247, 200, 72, 0.4);
}

body:not(.dark-mode) .filter-btn.active {
  background: #F7C848;
  color: white;
  box-shadow: 0 8px 24px rgba(247, 200, 72, 0.5);
  border-color: #F7C848;
  transform: translateY(-2px);
}

/* Dark Mode Filter Buttons - Brown accent */
body.dark-mode .filter-btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 2px solid #D4A373;
  background: rgba(212, 163, 115, 0.15);
  color: #D4A373;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.03em;
}

body.dark-mode .filter-btn:hover {
  background: #D4A373;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
  transition: all 0.3s ease;
}

body.dark-mode .filter-btn.active {
  background: #D4A373;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.5);
  border-color: #D4A373;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ===========================
   SUBCATEGORY FILTER BUTTONS
   =========================== */
#subcategoryFilterContainer {
  animation: slideDown 0.3s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   SEARCH BAR STYLES - UNIFIED
   =========================== */

/* Light Mode Search - Teal border, Golden focus */
body:not(.dark-mode) #searchInput {
  background-color: white;
  border: 2px solid rgba(24, 97, 105, 0.3);
  color: #33190C;
  transition: all 0.3s ease;
}

body:not(.dark-mode) #searchInput::placeholder {
  color: rgba(24, 97, 105, 0.5);
  font-size: 0.95rem;
}

body:not(.dark-mode) #searchInput:focus {
  box-shadow: 0 8px 24px rgba(247, 200, 72, 0.2);
  border-color: #F7C848;
  outline: none;
}

body:not(.dark-mode) #clearSearch {
  color: #186169;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

body:not(.dark-mode) #clearSearch:hover {
  background-color: rgba(247, 200, 72, 0.15);
  color: #F7C848;
  transform: scale(1.1);
}

body:not(.dark-mode) #searchResultsInfo strong {
  color: #F7C848;
  font-weight: 600;
}

/* Dark Mode Search - Brown border, Brown focus */
body.dark-mode #searchInput {
  background-color: #1E1E1E;
  border: 2px solid rgba(212, 163, 115, 0.4);
  color: #FFF6E7;
  transition: all 0.3s ease;
}

body.dark-mode #searchInput::placeholder {
  color: rgba(212, 163, 115, 0.5);
  font-size: 0.95rem;
}

body.dark-mode #searchInput:focus {
  background-color: #2A2A2A;
  box-shadow: 0 8px 24px rgba(212, 163, 115, 0.2);
  border-color: #D4A373;
  outline: none;
}

body.dark-mode #clearSearch {
  color: #D4A373;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

body.dark-mode #clearSearch:hover {
  background-color: rgba(212, 163, 115, 0.15);
  color: #D4A373;
  transform: scale(1.1);
}

body.dark-mode #searchResultsInfo {
  color: rgba(212, 163, 115, 0.8);
}

body.dark-mode #searchResultsInfo strong {
  color: #D4A373;
  font-weight: 600;
}

/* Search animation */
#searchResultsInfo {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#subcategoryFilterContainer>div {
  scrollbar-width: thin;
  scrollbar-color: #D4A373 transparent;
}

#subcategoryFilterContainer>div::-webkit-scrollbar {
  height: 6px;
}

#subcategoryFilterContainer>div::-webkit-scrollbar-track {
  background: rgba(212, 163, 115, 0.1);
  border-radius: 10px;
}

#subcategoryFilterContainer>div::-webkit-scrollbar-thumb {
  background: #D4A373;
  border-radius: 10px;
}

/* Light Mode Subcategory Filter - Golden accent */
body:not(.dark-mode) .subfilter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 30px;
  border: 2px solid rgba(247, 200, 72, 0.3);
  background: rgba(247, 200, 72, 0.05);
  color: #F7C848;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

body:not(.dark-mode) .subfilter-btn:hover {
  background: rgba(247, 200, 72, 0.15);
  border-color: #F7C848;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 200, 72, 0.3);
}

body:not(.dark-mode) .subfilter-btn.active {
  background: #F7C848;
  color: white;
  border-color: #F7C848;
  box-shadow: 0 4px 12px rgba(247, 200, 72, 0.5);
}

/* Dark Mode Subcategory Filter - Brown accent */
body.dark-mode .subfilter-btn {
  padding: 0.625rem 1.5rem;
  border-radius: 30px;
  border: 2px solid rgba(212, 163, 115, 0.3);
  background: rgba(212, 163, 115, 0.05);
  color: #D4A373;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

body.dark-mode .subfilter-btn:hover {
  background: #8B6F47;
  color: #FFFFFF;
  border-color: #8B6F47;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 111, 71, 0.4);
}

body.dark-mode .subfilter-btn.active {
  background: #D4A373;
  color: #FFFFFF;
  border-color: #D4A373;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.5);
}

/* ===========================
   LOADING ANIMATION
   =========================== */
.loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(212, 163, 115, 0.2);
  border-radius: 50%;
  border-top-color: #D4A373;
  animation: spin 1s linear infinite;
}

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

/* ===========================
   PAGINATION STYLES - UNIFIED
   =========================== */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

/* Light Mode Pagination - Golden accent */
body:not(.dark-mode) .pagination-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #F7C848;
  background: rgba(247, 200, 72, 0.1);
  color: #F7C848;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pagination icon styling */
.pagination-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pagination-text {
  font-size: 0.875rem;
}

body:not(.dark-mode) .pagination-btn:hover:not(.disabled) {
  background: #F7C848;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247, 200, 72, 0.4);
}

body:not(.dark-mode) .pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #ccc;
  color: #999;
}

body:not(.dark-mode) .pagination-number {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid rgba(247, 200, 72, 0.3);
  background: rgba(247, 200, 72, 0.05);
  color: #F7C848;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:not(.dark-mode) .pagination-number:hover {
  background: rgba(247, 200, 72, 0.2);
  border-color: #F7C848;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 200, 72, 0.3);
}

body:not(.dark-mode) .pagination-number.active {
  background: #F7C848;
  color: white;
  border-color: #F7C848;
  box-shadow: 0 6px 16px rgba(247, 200, 72, 0.5);
}

/* Dark Mode Pagination - Brown accent */
body.dark-mode .pagination-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 2px solid #D4A373;
  background: rgba(212, 163, 115, 0.1);
  color: #D4A373;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body.dark-mode .pagination-btn:hover:not(.disabled) {
  background: #D4A373;
  color: #121212;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 163, 115, 0.4);
}

body.dark-mode .pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #444;
  color: #666;
  background: transparent;
}

body.dark-mode .pagination-number {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid rgba(212, 163, 115, 0.3);
  background: rgba(212, 163, 115, 0.05);
  color: #D4A373;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .pagination-number:hover {
  background: rgba(212, 163, 115, 0.15);
  border-color: #D4A373;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

body.dark-mode .pagination-number.active {
  background: #D4A373;
  color: #121212;
  border-color: #D4A373;
  box-shadow: 0 6px 16px rgba(212, 163, 115, 0.5);
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Responsive Pagination */
@media (max-width: 768px) {
  /* Mobile menu card - lebih tinggi */
  .menu-card {
    min-height: 280px;
  }

  .pagination-container {
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .pagination-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }

  .pagination-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .pagination-arrow {
    flex: 1;
    max-width: 120px;
    justify-content: center;
  }

  .pagination-icon {
    font-size: 1.1rem;
  }

  .pagination-text {
    font-size: 0.75rem;
  }
}

/* ===========================
   MODAL STYLES WITH IMAGE GALLERY
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: visible;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  padding: 0 1rem;
}

.modal-overlay.show .modal-container {
  transform: scale(1) translateY(0);
}

.modal-content {
  background: white;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: visible;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 97, 105, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid #186169;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
  background: #F7C848;
  border-color: #F7C848;
  color: #1E1E1E;
  transform: rotate(90deg) scale(1.15);
  box-shadow: 0 6px 20px rgba(247, 200, 72, 0.4);
}

/* ===========================
   IMAGE GALLERY SLIDER
   =========================== */
.modal-image-container {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  overflow: hidden;
  position: relative;
  border-radius: 24px 24px 0 0;
}

.modal-gallery-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.modal-gallery-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.modal-gallery-slider:active {
  cursor: grabbing;
}

.modal-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Gallery Navigation Arrows */
.modal-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(24, 97, 105, 0.9);
  border: 2px solid #186169;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-gallery-nav:hover {
  background: #F7C848;
  border-color: #F7C848;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(247, 200, 72, 0.4);
}

.modal-gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-gallery-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.modal-gallery-nav-prev {
  left: 1rem;
}

.modal-gallery-nav-next {
  right: 1rem;
}

.modal-gallery-nav svg {
  width: 20px;
  height: 20px;
  color: white;
}

/* Gallery Dots Indicator */
.modal-gallery-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 100;
  padding: 0.6rem 1.2rem;
  background: rgba(26, 26, 26, 0.85);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  border: 2px solid #D4A373;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.3);
  border: 2px solid #D4A373;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.modal-gallery-dot.active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D4A373;
  box-shadow: 0 0 10px rgba(212, 163, 115, 0.6);
  transform: scale(1.3);
}

.modal-gallery-dot:hover:not(.active) {
  background: rgba(212, 163, 115, 0.6);
  transform: scale(1.2);
}

/* Hide navigation when only 1 image */
.modal-gallery-single .modal-gallery-nav,
.modal-gallery-single .modal-gallery-dots {
  display: none;
}

.modal-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  overflow: visible;
}

.modal-title {
  font-family: 'Inter';
  font-size: 2rem;
  font-weight: 700;
  color: #D4A373;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal-description {
  font-size: 1rem;
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-variants {
  border-top: 2px solid rgba(212, 163, 115, 0.2);
  padding: 1.5rem 0.5rem 0.5rem 0.5rem;
  overflow: visible;
}

.modal-variants-title {
  font-family: 'Inter';
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 1rem;
}

.modal-variants-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: visible;
}

.modal-variant-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(212, 163, 115, 0.05);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.modal-variant-item:hover {
  background: rgba(212, 163, 115, 0.15);
  border-color: #D4A373;
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.2);
}

/* Active Variant State - Ketika variant diklik */
.modal-variant-item.active-variant {
  background: rgba(212, 163, 115, 0.2);
  border: 2px solid #D4A373;
}

.modal-variant-item.active-variant .modal-variant-name {
  color: #D4A373;
  font-weight: 700;
}

.modal-variant-item.active-variant .modal-variant-price {
  color: #D4A373;
  font-weight: 700;
}

/* Thumbnail image for variants with photos */
.modal-variant-thumbnail {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  margin-right: 0.75rem;
  border: 1px solid rgba(212, 163, 115, 0.3);
}

/* Price alignment - fixed width for consistency */
.modal-variant-price {
  font-weight: 700;
  color: #D4A373;
  font-size: 1rem;
  min-width: 100px;
  text-align: right;
  flex-shrink: 0;
}

.modal-variant-name {
  font-weight: 600;
  color: #1E1E1E;
  font-size: 1rem;
}

/* Dark Mode for Modal */
body.dark-mode .modal-content {
  background: #1a1a1a;
}

body.dark-mode .modal-close {
  background: rgba(26, 26, 26, 0.95);
  color: #F9F5EF;
  border: 2px solid rgba(212, 163, 115, 0.3);
}

body.dark-mode .modal-close:hover {
  background: #D4A373;
  color: #1a1a1a;
  border-color: #D4A373;
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.4);
}

body.dark-mode .modal-gallery-nav {
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(212, 163, 115, 0.5);
}

body.dark-mode .modal-gallery-nav:hover {
  background: #D4A373;
  border-color: #D4A373;
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

body.dark-mode .modal-gallery-nav svg {
  color: white;
}

body.dark-mode .modal-gallery-dots {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(212, 163, 115, 0.4);
}

body.dark-mode .modal-gallery-dot {
  border-color: rgba(212, 163, 115, 0.5);
}

body.dark-mode .modal-gallery-dot.active {
  background: #D4A373;
  box-shadow: 0 2px 8px rgba(212, 163, 115, 0.4);
}

body.dark-mode .modal-gallery-dot:hover:not(.active) {
  background: rgba(212, 163, 115, 0.6);
}

body.dark-mode .modal-title {
  color: #D4A373;
}

body.dark-mode .modal-description {
  color: rgba(249, 245, 239, 0.7);
}

body.dark-mode .modal-variants-title {
  color: #F9F5EF;
}

body.dark-mode .modal-variants {
  border-top-color: rgba(212, 163, 115, 0.3);
}

body.dark-mode .modal-variant-item {
  background: rgba(212, 163, 115, 0.1);
}

body.dark-mode .modal-variant-item:hover {
  background: rgba(212, 163, 115, 0.15);
  border-color: #D4A373;
}

/* Dark Mode - Active Variant */
body.dark-mode .modal-variant-item.active-variant {
  background: rgba(212, 163, 115, 0.25);
  border: 2px solid #D4A373;
}

body.dark-mode .modal-variant-item.active-variant .modal-variant-name {
  color: #D4A373;
}

body.dark-mode .modal-variant-item.active-variant .modal-variant-price {
  color: #D4A373;
}

body.dark-mode .modal-variant-name {
  color: #D4A373;
  font-weight: 600;
}

body.dark-mode .modal-variant-thumbnail {
  border-color: rgba(212, 163, 115, 0.4);
}

body.dark-mode .modal-variant-item .text-xs.text-coffee-gold {
  background: rgba(212, 163, 115, 0.2) !important;
  color: #D4A373 !important;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  display: inline-block;
}

/* ========== VARIANT EYE ICON PREVIEW ========== */
.variant-eye-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.1);
  color: #D4A373;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.variant-eye-icon:hover {
  background: rgba(212, 163, 115, 0.3);
  color: #fff;
  transform: scale(1.1);
}

.variant-eye-icon svg {
  width: 20px;
  height: 20px;
}

/* Variant Preview Overlay */
.variant-preview-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Variant Preview Modal */
.variant-preview-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  max-width: 90vw;
  max-height: 90vh;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.variant-preview-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.variant-preview-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.variant-preview-close {
  position: absolute;
  top: -40px;
  right: -10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #D4A373;
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.variant-preview-close:hover {
  background: #fff;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .variant-preview-modal {
    max-width: 95vw;
    max-height: 80vh;
  }

  .variant-preview-img {
    max-height: 70vh;
  }

  .variant-preview-close {
    top: -36px;
    right: 0;
    width: 32px;
    height: 32px;
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-container {
    max-width: 100%;
    max-height: 85vh;
    margin: 0.5rem;
  }

  .modal-image-container {
    height: 200px;
  }

  .modal-gallery-nav {
    width: 32px;
    height: 32px;
  }

  .modal-gallery-nav-prev {
    left: 0.5rem;
  }

  .modal-gallery-nav-next {
    right: 0.5rem;
  }

  .modal-gallery-counter {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .modal-body {
    padding: 1.25rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-variant-item {
    padding: 0.75rem 0.875rem;
    margin-bottom: 0.5rem;
  }

  .modal-variant-name {
    font-size: 0.95rem;
  }

  .modal-variant-price {
    font-size: 1rem;
  }

  /* Compact variants list for mobile */
  .modal-variants-list {
    gap: 0.5rem;
  }

  /* Smaller thumbnail on mobile */
  .modal-variant-thumbnail {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
  }

  /* Smaller price on mobile */
  .modal-variant-price {
    min-width: 80px;
    font-size: 0.9rem;
  }

  /* More scrollable variants on mobile */
  .modal-variants {
    max-height: 40vh;
    overflow-y: auto;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* ===========================
   SMOOTH TRANSITIONS FOR ALL
   =========================== */
header,
nav,
section,
.feature-card,
.menu-card,
button,
a {
  transition-property: background-color, color, border-color, transform, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   SECTION ALTERNATING BACKGROUNDS
   =========================== */
section:nth-child(even) {
  background: #D4E5E6;
  position: relative;
}

section:nth-child(odd) {
  background: #FFFFFF;
}

body.dark-mode section:nth-child(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
}

body.dark-mode section:nth-child(odd) {
  background: transparent !important;
}

/* ===========================
   SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
  width: 10px;
}

/* ===== LIGHT MODE SCROLLBAR ===== */
body:not(.dark-mode)::-webkit-scrollbar-track {
  background: #F9F5EF;
}

body:not(.dark-mode)::-webkit-scrollbar-thumb {
  background: #F7C848 !important;
  border-radius: 10px;
}

body:not(.dark-mode)::-webkit-scrollbar-thumb:hover {
  background: #F7C848 !important;
}

/* ===== DARK MODE SCROLLBAR ===== */
body.dark-mode::-webkit-scrollbar-track {
  background: #1a1a1a;
}

body.dark-mode::-webkit-scrollbar-thumb {
  background: #D4A373 !important;
  border-radius: 10px;
}

body.dark-mode::-webkit-scrollbar-thumb:hover {
  background: #8B6F47 !important;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
  .feature-card {
    padding: 2rem;
  }

  .feature-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .menu-card-title {
    font-size: 1.25rem;
  }

  .filter-btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ===================================
   FACILITIES SECTION STYLES
   =================================== */

.facility-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facility-card:hover::before {
  opacity: 1;
}

.facility-icon {
  transition: transform 0.3s ease;
}

.facility-card:hover .facility-icon {
  transform: rotate(5deg) scale(1.1);
}

.facility-description {
  margin-top: 0.5rem;
  animation: slideDown 0.3s ease-in-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LIGHT MODE FACILITY CARDS ===== */
body:not(.dark-mode) .facility-card {
  background: rgba(247, 200, 72, 0.08) !important;
  border: 1px solid rgba(247, 200, 72, 0.2);
  box-shadow: 0 4px 16px rgba(247, 200, 72, 0.1);
}

body:not(.dark-mode) .facility-card::before {
  background: linear-gradient(135deg, rgba(247, 200, 72, 0.05) 0%, rgba(243, 144, 23, 0.05) 100%);
}

body:not(.dark-mode) .facility-card:hover {
  box-shadow: 0 8px 32px rgba(247, 200, 72, 0.25);
  border-color: rgba(247, 200, 72, 0.4);
}

body:not(.dark-mode) .facility-icon i {
  color: #F7C848 !important;
}

/* ===== DARK MODE FACILITY CARDS ===== */
body.dark-mode .facility-card {
  background-color: #1a1a1a;
  border-color: rgba(212, 163, 115, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

body.dark-mode .facility-card::before {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.05) 0%, rgba(139, 111, 71, 0.05) 100%);
}

body.dark-mode .facility-card:hover {
  box-shadow: 0 8px 32px rgba(212, 163, 115, 0.25);
}

body.dark-mode .facility-title {
  color: #F9F5EF;
}

body.dark-mode .facility-description {
  color: rgba(249, 245, 239, 0.7);
}

body.dark-mode .facility-icon i {
  color: #D4A373;
}

/* ===================================
   SORT DROPDOWN STYLES - UNIFIED
   =================================== */

/* Light Mode Sort Dropdown - Golden accent */
body:not(.dark-mode) #sortMenu {
  min-width: 180px;
  font-size: 0.95rem;
  font-weight: 500;
  background: white;
  color: #F7C848;
  border: 2px solid rgba(247, 200, 72, 0.3);
  box-shadow: 0 2px 8px rgba(247, 200, 72, 0.1);
  transition: all 0.3s ease;
}

body:not(.dark-mode) #sortMenu:hover {
  border-color: #F7C848;
  box-shadow: 0 4px 12px rgba(247, 200, 72, 0.2);
}

body:not(.dark-mode) #sortMenu option {
  padding: 0.5rem;
  background: white;
  color: #33190C;
}

body:not(.dark-mode) label[for="sortMenu"] {
  color: #F7C848;
}

/* Dark Mode Sort Dropdown - Better Contrast */
body.dark-mode #sortMenu {
  min-width: 180px;
  font-size: 0.95rem;
  font-weight: 500;
  background-color: #2A2A2A;
  color: #D4A373;
  border: 2px solid #D4A373;
  box-shadow: none;
  transition: all 0.3s ease;
}

body.dark-mode #sortMenu:hover {
  border-color: #D4A373;
  background-color: #333333;
  box-shadow: none;
  transition: all 0.3s ease;
}

body.dark-mode #sortMenu option {
  background-color: #2A2A2A;
  color: #D4A373;
}

body.dark-mode #sortMenu option {
  padding: 0.5rem;
  background-color: #2A2A2A;
  color: #FFFFFF;
}

body.dark-mode label[for="sortMenu"] {
  color: #D4A373;
}

/* ===========================
   ENHANCED SCROLL EFFECTS
   =========================== */

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Hero Section Parallax Effect */
section:first-of-type .absolute.inset-0 {
  will-change: transform;
}

/* Section Transitions */
section {
  position: relative;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered Reveal Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to elements with inline style */
[style*="animation: fadeInUp"] {
  animation-fill-mode: forwards;
}

/* Enhanced Header Scroll Effect */
header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  padding: 0.75rem 0 !important;
}

body.dark-mode header.scrolled {
  background: rgba(18, 18, 18, 0.98) !important;
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.15) !important;
}

/* Scroll Reveal Base Styles */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.7s;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}

/* Feature Cards Hover Depth */
.feature-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
}

/* Menu Card Fade In Animation */
.fade-in-card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
  transition: opacity 0.6s ease-out,
    transform 0.6s ease-out,
    visibility 0s linear 0.6s;
}

.fade-in-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition: opacity 0.6s ease-out,
    transform 0.6s ease-out,
    visibility 0s linear 0s;
}

/* Smooth Section Dividers */
section+section {
  position: relative;
}

section+section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(212, 163, 115, 0.2) 20%,
      rgba(212, 163, 115, 0.2) 80%,
      transparent);
}

/* Scroll Progress Indicator (Optional) */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #D4A373, #8B6F47);
  z-index: 9999;
  transition: width 0.2s ease-out;
}

/* ===========================
   NAVBAR BUTTONS & SOCIAL ICONS - OVERRIDE INLINE STYLES
   =========================== */

/* NAVBAR BUTTONS (Language & Dark Mode Toggle) */
/* Light Mode - Golden */
body:not(.dark-mode) #langToggle,
body:not(.dark-mode) #darkModeToggle {
  background: rgba(247, 200, 72, 0.2) !important;
  color: #F7C848 !important;
  border-color: rgba(247, 200, 72, 0.3) !important;
}

body:not(.dark-mode) #langToggle:hover,
body:not(.dark-mode) #darkModeToggle:hover {
  background: #F7C848 !important;
  color: #FFFFFF !important;
  border-color: #F7C848 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(247, 200, 72, 0.5) !important;
}

body:not(.dark-mode) #langToggle:hover svg,
body:not(.dark-mode) #darkModeToggle:hover svg {
  color: #FFFFFF !important;
}

/* Dark Mode - Brown */
body.dark-mode #langToggle,
body.dark-mode #darkModeToggle {
  background: rgba(212, 163, 115, 0.2) !important;
  color: #D4A373 !important;
  border-color: rgba(212, 163, 115, 0.3) !important;
}

body.dark-mode #langToggle:hover,
body.dark-mode #darkModeToggle:hover {
  background: #D4A373 !important;
  color: #FFFFFF !important;
  border-color: #D4A373 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4) !important;
}

body.dark-mode #langToggle:hover svg,
body.dark-mode #darkModeToggle:hover svg {
  color: #FFFFFF !important;
}

/* SOCIAL MEDIA ICONS (Instagram, WhatsApp, Email) */
/* Light Mode - Golden */
body:not(.dark-mode) .social-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(247, 200, 72, 0.2) !important;
  color: #F7C848 !important;
  transition: all 0.3s ease !important;
}

body:not(.dark-mode) .social-icon:hover {
  background: #F7C848 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(247, 200, 72, 0.5) !important;
}

body:not(.dark-mode) .social-icon:hover svg {
  color: #FFFFFF !important;
}

/* Dark Mode - Brown */
body.dark-mode .social-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(212, 163, 115, 0.2) !important;
  color: #D4A373 !important;
  transition: all 0.3s ease !important;
}

body.dark-mode .social-icon:hover {
  background: #D4A373 !important;
  color: #FFFFFF !important;
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4) !important;
}

body.dark-mode .social-icon:hover svg {
  color: #FFFFFF !important;
}

/* ===========================
   HERO SECTION - PARALLAX & DUAL MODE
   =========================== */

/* Hero Section Base */
.hero-parallax-section {
  position: relative;
  min-height: 100vh;
  transition: all 0.7s ease;
}

/* Background Gradient - Light Mode (Soft Teal) */
body:not(.dark-mode) .hero-bg-gradient {
  background: linear-gradient(135deg,
      rgba(42, 106, 110, 0.08) 0%,
      rgba(24, 97, 105, 0.12) 50%,
      rgba(42, 106, 110, 0.08) 100%);
}

/* Background Gradient - Dark Mode (Deep Black) */
body.dark-mode .hero-bg-gradient {
  background: linear-gradient(135deg,
      rgba(18, 18, 18, 0.95) 0%,
      rgba(33, 33, 33, 0.98) 50%,
      rgba(18, 18, 18, 0.95) 100%);
}

/* Parallax Floating Circles - Light Mode (Golden) */
body:not(.dark-mode) .hero-circle-1 {
  background: radial-gradient(circle, rgba(224, 155, 45, 0.3) 0%, transparent 70%);
}

body:not(.dark-mode) .hero-circle-2 {
  background: radial-gradient(circle, rgba(247, 200, 72, 0.25) 0%, transparent 70%);
}

body:not(.dark-mode) .hero-circle-3 {
  background: radial-gradient(circle, rgba(224, 155, 45, 0.35) 0%, transparent 70%);
}

body:not(.dark-mode) .hero-circle-4 {
  background: radial-gradient(circle, rgba(247, 200, 72, 0.2) 0%, transparent 70%);
}

/* Parallax Floating Circles - Dark Mode (Brown) */
body.dark-mode .hero-circle-1 {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.25) 0%, transparent 70%);
}

body.dark-mode .hero-circle-2 {
  background: radial-gradient(circle, rgba(139, 111, 71, 0.2) 0%, transparent 70%);
}

body.dark-mode .hero-circle-3 {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.3) 0%, transparent 70%);
}

body.dark-mode .hero-circle-4 {
  background: radial-gradient(circle, rgba(139, 111, 71, 0.18) 0%, transparent 70%);
}

/* Geometric Lines - Light Mode (Golden) */
body:not(.dark-mode) .hero-line-1,
body:not(.dark-mode) .hero-line-2,
body:not(.dark-mode) .hero-line-3,
body:not(.dark-mode) .hero-line-4 {
  background: linear-gradient(to bottom, rgba(224, 155, 45, 0.4), transparent);
}

/* Geometric Lines - Dark Mode (Brown) */
body.dark-mode .hero-line-1,
body.dark-mode .hero-line-2,
body.dark-mode .hero-line-3,
body.dark-mode .hero-line-4 {
  background: linear-gradient(to bottom, rgba(212, 163, 115, 0.3), transparent);
}

/* Coffee Icons - Light Mode (Golden) */
body:not(.dark-mode) .hero-icon-1,
body:not(.dark-mode) .hero-icon-2,
body:not(.dark-mode) .hero-icon-3 {
  color: #F7C848;
  text-shadow: 0 4px 12px rgba(224, 155, 45, 0.3);
}

/* Coffee Icons - Dark Mode (Brown) */
body.dark-mode .hero-icon-1,
body.dark-mode .hero-icon-2,
body.dark-mode .hero-icon-3 {
  color: #D4A373;
  text-shadow: 0 4px 12px rgba(212, 163, 115, 0.4);
}

/* Floating Animations */
@keyframes animate-float-1 {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-20px);
  }
}

@keyframes animate-float-2 {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-25px);
  }
}

@keyframes animate-float-3 {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 0.7;
    transform: translateY(-15px);
  }
}

.animate-float-1 {
  animation: animate-float-1 6s ease-in-out infinite;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
}

.animate-float-2 {
  animation: animate-float-2 7s ease-in-out infinite;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.animate-float-3 {
  animation: animate-float-3 5.5s ease-in-out infinite;
  animation-delay: 0.9s;
  animation-fill-mode: forwards;
}

/* Premium Badge - Light Mode */
body:not(.dark-mode) .hero-badge {
  background: rgba(247, 200, 72, 0.15);
  border: 2px solid rgba(247, 200, 72, 0.3);
}

body:not(.dark-mode) .hero-badge-text {
  color: #F7C848;
}

body:not(.dark-mode) .hero-ping {
  background: #F7C848;
}

/* Premium Badge - Dark Mode */
body.dark-mode .hero-badge {
  background: rgba(212, 163, 115, 0.15);
  border: 2px solid rgba(212, 163, 115, 0.3);
}

body.dark-mode .hero-badge-text {
  color: #D4A373;
}

body.dark-mode .hero-ping {
  background: #D4A373;
}

/* Title Text - Light Mode */
body:not(.dark-mode) .hero-title-line1 {
  color: #2C3E50;
}

body:not(.dark-mode) .hero-title-gradient {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(224, 155, 45, 0.3));
}

/* Title Text - Dark Mode */
body.dark-mode .hero-title-line1 {
  color: #FFFFFF;
}

body.dark-mode .hero-title-gradient {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(212, 163, 115, 0.4));
}

/* Tagline - Light Mode */
body:not(.dark-mode) .hero-tagline {
  color: rgba(44, 62, 80, 0.85);
}

/* Tagline - Dark Mode */
body.dark-mode .hero-tagline {
  color: rgba(255, 255, 255, 0.85);
}

/* Primary Button - Light Mode (Golden) */
body:not(.dark-mode) .hero-btn-primary {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body:not(.dark-mode) .hero-btn-primary-overlay {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

/* Primary Button - Dark Mode (Brown) */
body.dark-mode .hero-btn-primary {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
}

body.dark-mode .hero-btn-primary-overlay {
  background: linear-gradient(135deg, #8B6F47 0%, #D4A373 100%);
}

/* Secondary Button - Light Mode */
body:not(.dark-mode) .hero-btn-secondary {
  background: transparent;
  border-color: #F7C848;
  color: #F7C848;
}

body:not(.dark-mode) .hero-btn-secondary-overlay {
  background: #FFFFFF;
}

body:not(.dark-mode) .hero-btn-secondary:hover {
  color: #F7C848;
}

/* Secondary Button - Dark Mode */
body.dark-mode .hero-btn-secondary {
  background: transparent;
  border-color: #D4A373;
  color: #D4A373;
}

body.dark-mode .hero-btn-secondary-overlay {
  background: rgba(212, 163, 115, 0.1);
}

body.dark-mode .hero-btn-secondary:hover {
  color: #FFFFFF;
}

/* Scroll Indicator - Light Mode */
body:not(.dark-mode) .hero-scroll-text {
  color: rgba(44, 62, 80, 0.6);
}

body:not(.dark-mode) .hero-scroll-border {
  border-color: rgba(224, 155, 45, 0.3);
}

body:not(.dark-mode) .hero-scroll-dot {
  background: #F7C848;
}

/* Scroll Indicator - Dark Mode */
body.dark-mode .hero-scroll-text {
  color: rgba(255, 255, 255, 0.6);
}

body.dark-mode .hero-scroll-border {
  border-color: rgba(212, 163, 115, 0.3);
}

body.dark-mode .hero-scroll-dot {
  background: #D4A373;
}

/* Fade In Up Animation */
@keyframes animate-fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: animate-fade-in-up 0.8s ease-out forwards;
}

/* Fade In Animation */
@keyframes animate-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animate-fade-in {
  animation: animate-fade-in 1s ease-out forwards;
}

/* Gradient Animation */
@keyframes animate-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  background-size: 200% auto;
  animation: animate-gradient 3s ease infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-parallax-section {
    min-height: 100svh;
    /* Use svh for mobile browsers */
  }

  /* Reduce size of decorative elements on mobile */
  .hero-circle-1,
  .hero-circle-2,
  .hero-circle-3,
  .hero-circle-4 {
    transform: scale(0.6);
  }

  /* Hide coffee icons on very small screens */
  @media (max-width: 480px) {

    .hero-icon-1,
    .hero-icon-2,
    .hero-icon-3 {
      display: none;
    }
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  .animate-float-1,
  .animate-float-2,
  .animate-float-3,
  .animate-fade-in-up,
  .animate-fade-in,
  .animate-gradient {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ===========================
   GSAP HERO SECTION - PREMIUM ANIMATIONS
   =========================== */

/* Hero GSAP Section Base */
.hero-gsap-section {
  position: relative;
  min-height: 120vh;
  transition: all 0.7s ease;
}

/* Animated Background Gradient - Light Mode (Golden Teal) */
body:not(.dark-mode) .hero-gradient-bg {
  background: linear-gradient(135deg,
      rgba(42, 106, 110, 0.12) 0%,
      rgba(224, 155, 45, 0.08) 30%,
      rgba(247, 200, 72, 0.06) 60%,
      rgba(42, 106, 110, 0.10) 100%);
  animation: gradient-shift 15s ease infinite;
}

/* Animated Background Gradient - Dark Mode (Brown Black) */
body.dark-mode .hero-gradient-bg {
  background: linear-gradient(135deg,
      rgba(18, 18, 18, 0.98) 0%,
      rgba(212, 163, 115, 0.08) 30%,
      rgba(139, 111, 71, 0.06) 60%,
      rgba(18, 18, 18, 0.98) 100%);
  animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Coffee Cups Parallax - Will be animated by GSAP */
.coffee-cup-1,
.coffee-cup-2,
.coffee-cup-3 {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.coffee-cup-1 img,
.coffee-cup-2 img,
.coffee-cup-3 img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.coffee-cup-1:hover img,
.coffee-cup-2:hover img,
.coffee-cup-3:hover img {
  transform: scale(1.1) rotate(5deg);
}

/* Light Mode Cup Styling */
body:not(.dark-mode) .coffee-cup-1 img,
body:not(.dark-mode) .coffee-cup-2 img,
body:not(.dark-mode) .coffee-cup-3 img {
  filter: drop-shadow(0 20px 40px rgba(224, 155, 45, 0.4));
}

/* Dark Mode Cup Styling */
body.dark-mode .coffee-cup-1 img,
body.dark-mode .coffee-cup-2 img,
body.dark-mode .coffee-cup-3 img {
  filter: drop-shadow(0 20px 40px rgba(212, 163, 115, 0.4));
}

/* Animated Circles - Light Mode (Golden) */
body:not(.dark-mode) .hero-circle-animated-1 {
  background: radial-gradient(circle, rgba(224, 155, 45, 0.4) 0%, transparent 70%);
}

body:not(.dark-mode) .hero-circle-animated-2 {
  background: radial-gradient(circle, rgba(247, 200, 72, 0.35) 0%, transparent 70%);
}

body:not(.dark-mode) .hero-circle-animated-3 {
  background: radial-gradient(circle, rgba(224, 155, 45, 0.3) 0%, transparent 70%);
}

/* Animated Circles - Dark Mode (Brown) */
body.dark-mode .hero-circle-animated-1 {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.3) 0%, transparent 70%);
}

body.dark-mode .hero-circle-animated-2 {
  background: radial-gradient(circle, rgba(139, 111, 71, 0.25) 0%, transparent 70%);
}

body.dark-mode .hero-circle-animated-3 {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.2) 0%, transparent 70%);
}

/* Coffee Beans Decorations - Light Mode */
body:not(.dark-mode) .coffee-bean-1 div,
body:not(.dark-mode) .coffee-bean-2 div,
body:not(.dark-mode) .coffee-bean-3 div {
  color: #F7C848;
  filter: drop-shadow(0 4px 8px rgba(224, 155, 45, 0.5));
}

/* Coffee Beans Decorations - Dark Mode */
body.dark-mode .coffee-bean-1 div,
body.dark-mode .coffee-bean-2 div,
body.dark-mode .coffee-bean-3 div {
  color: #D4A373;
  filter: drop-shadow(0 4px 8px rgba(212, 163, 115, 0.5));
}

/* Hero Badge GSAP - Light Mode */
body:not(.dark-mode) .hero-badge-gsap {
  background: linear-gradient(135deg, rgba(224, 155, 45, 0.15), rgba(247, 200, 72, 0.15));
  border: 1px solid rgba(224, 155, 45, 0.3);
}

body:not(.dark-mode) .hero-ping {
  background-color: #F7C848;
}

body:not(.dark-mode) .hero-badge-text {
  color: #F7C848;
}

/* Hero Badge GSAP - Dark Mode */
body.dark-mode .hero-badge-gsap {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.15), rgba(139, 111, 71, 0.15));
  border: 1px solid rgba(212, 163, 115, 0.3);
}

body.dark-mode .hero-ping {
  background-color: #D4A373;
}

body.dark-mode .hero-badge-text {
  color: #D4A373;
}

/* Hero Heading & Text - Light Mode */
body:not(.dark-mode) .hero-title-line1 {
  color: #2C3E50;
}

body:not(.dark-mode) .hero-title-gradient {
  background: linear-gradient(to right, #F7C848, #F7C848, #F7C848);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(224, 155, 45, 0.3));
}

body:not(.dark-mode) .hero-tagline {
  color: rgba(44, 62, 80, 0.85);
}

/* Hero Heading & Text - Dark Mode */
body.dark-mode .hero-title-line1 {
  color: #FFFFFF;
}

body.dark-mode .hero-title-gradient {
  background: linear-gradient(to right, #D4A373, #8B6F47, #D4A373);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(212, 163, 115, 0.4));
}

body.dark-mode .hero-tagline {
  color: rgba(255, 255, 255, 0.85);
}

/* Stats Counter - Light Mode */
body:not(.dark-mode) .stat-number {
  color: #F7C848;
  text-shadow: 0 2px 8px rgba(224, 155, 45, 0.3);
}

body:not(.dark-mode) .stat-label {
  color: rgba(44, 62, 80, 0.7);
}

/* Stats Counter - Dark Mode */
body.dark-mode .stat-number {
  color: #D4A373;
  text-shadow: 0 2px 8px rgba(212, 163, 115, 0.4);
}

body.dark-mode .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Buttons GSAP - Light Mode */
body:not(.dark-mode) .hero-btn-primary {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  box-shadow: 0 10px 30px rgba(224, 155, 45, 0.4);
}

body:not(.dark-mode) .hero-btn-primary-overlay {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body:not(.dark-mode) .hero-btn-secondary {
  color: #F7C848;
  border-color: #F7C848;
  box-shadow: 0 4px 15px rgba(224, 155, 45, 0.2);
}

body:not(.dark-mode) .hero-btn-secondary-overlay {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body:not(.dark-mode) .hero-btn-secondary:hover span:last-child {
  color: #FFFFFF;
}

/* Hero Buttons GSAP - Dark Mode */
body.dark-mode .hero-btn-primary {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.4);
}

body.dark-mode .hero-btn-primary-overlay {
  background: linear-gradient(135deg, #8B6F47 0%, #D4A373 100%);
}

body.dark-mode .hero-btn-secondary {
  color: #D4A373;
  border-color: #D4A373;
  box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
}

body.dark-mode .hero-btn-secondary-overlay {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
}

body.dark-mode .hero-btn-secondary:hover span:last-child {
  color: #FFFFFF;
}

/* Scroll Indicator GSAP - Light Mode */
body:not(.dark-mode) .hero-scroll-text {
  color: #F7C848;
}

body:not(.dark-mode) .hero-scroll-border {
  border-color: #F7C848;
}

body:not(.dark-mode) .hero-scroll-dot {
  background-color: #F7C848;
}

body:not(.dark-mode) .hero-scroll-arrow {
  color: #F7C848;
}

/* Scroll Indicator GSAP - Dark Mode */
body.dark-mode .hero-scroll-text {
  color: #D4A373;
}

body.dark-mode .hero-scroll-border {
  border-color: #D4A373;
}

body.dark-mode .hero-scroll-dot {
  background-color: #D4A373;
}

body.dark-mode .hero-scroll-arrow {
  color: #D4A373;
}

/* Steam Animation for Coffee Cup */
@keyframes animate-steam-1 {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-20px) scaleY(1.2);
    opacity: 0.6;
  }

  100% {
    transform: translateY(-40px) scaleY(1.5);
    opacity: 0;
  }
}

@keyframes animate-steam-2 {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-25px) scaleY(1.3);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-50px) scaleY(1.6);
    opacity: 0;
  }
}

@keyframes animate-steam-3 {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-15px) scaleY(1.1);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-30px) scaleY(1.4);
    opacity: 0;
  }
}

.animate-steam-1 {
  animation: animate-steam-1 3s ease-in-out infinite;
}

.animate-steam-2 {
  animation: animate-steam-2 3.5s ease-in-out infinite 0.5s;
}

.animate-steam-3 {
  animation: animate-steam-3 2.8s ease-in-out infinite 1s;
}

/* Rotating Badge Animation */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

/* Mobile Responsiveness for GSAP Hero */
@media (max-width: 1024px) {
  .hero-gsap-section {
    min-height: 100vh;
  }

  .coffee-cup-1,
  .coffee-cup-2,
  .coffee-cup-3 {
    display: none !important;
  }

  .hero-circle-animated-1,
  .hero-circle-animated-2,
  .hero-circle-animated-3 {
    transform: scale(0.7);
  }
}

@media (max-width: 768px) {
  .hero-gsap-section {
    min-height: 100svh;
    padding-top: 5rem;
  }

  .text-content {
    text-align: center;
  }

  .hero-stats-gsap {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem !important;
  }

  .coffee-bean-1,
  .coffee-bean-2,
  .coffee-bean-3 {
    transform: scale(0.6);
  }
}

@media (max-width: 480px) {

  .coffee-bean-1,
  .coffee-bean-2,
  .coffee-bean-3 {
    display: none;
  }

  .hero-stats-gsap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .animate-spin-slow {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {

  .coffee-cup-1,
  .coffee-cup-2,
  .coffee-cup-3,
  .coffee-bean-1,
  .coffee-bean-2,
  .coffee-bean-3,
  .hero-circle-animated-1,
  .hero-circle-animated-2,
  .hero-circle-animated-3,
  .animate-steam-1,
  .animate-steam-2,
  .animate-steam-3,
  .animate-spin-slow {
    animation: none !important;
    transform: none !important;
  }
}


/* ===========================
   LOGO SWITCHING - Light & Dark Mode
   =========================== */

/* Light Mode: Show Emas, Hide Cokelat */
body:not(.dark-mode) .logo-light {
  display: block;
}

body:not(.dark-mode) .logo-dark {
  display: none;
}

/* Dark Mode: Show Cokelat, Hide Emas */
body.dark-mode .logo-light {
  display: none;
}

body.dark-mode .logo-dark {
  display: block;
}

/* ===========================
   HERO SECTION - CLEAN & CONSISTENT
   Light & Dark Mode SIMETRIS!
   =========================== */

.hero-clean-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: background 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Mode Background - Clean White */
body:not(.dark-mode) .hero-clean-bg {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(249, 247, 245, 1) 50%,
      rgba(255, 255, 255, 1) 100%);
}

/* Dark Mode Background - Pure Black */
body.dark-mode .hero-clean-bg {
  background: linear-gradient(180deg,
      rgba(18, 18, 18, 1) 0%,
      rgba(25, 25, 25, 1) 50%,
      rgba(18, 18, 18, 1) 100%);
}

/* Decorative Circles - Subtle */
.hero-circle-left,
.hero-circle-right {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.25;
}

.hero-circle-left {
  left: -5%;
  top: 10%;
}

.hero-circle-right {
  right: -5%;
  bottom: 10%;
}

body:not(.dark-mode) .hero-circle-left,
body:not(.dark-mode) .hero-circle-right {
  background: radial-gradient(circle, rgba(243, 144, 23, 0.08) 0%, transparent 70%);
}

body.dark-mode .hero-circle-left,
body.dark-mode .hero-circle-right {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.06) 0%, transparent 70%);
}

/* Badge */
.hero-badge-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.8rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

body:not(.dark-mode) .hero-badge-clean {
  background: linear-gradient(135deg, rgba(247, 200, 72, 0.15), rgba(247, 200, 72, 0.15));
  border: 1px solid rgba(247, 200, 72, 0.3);
}

body.dark-mode .hero-badge-clean {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.15), rgba(212, 163, 115, 0.15));
  border: 1px solid rgba(212, 163, 115, 0.3);
}

body:not(.dark-mode) .hero-badge-text-clean {
  color: #F7C848;
  font-weight: 600;
  font-size: 0.875rem;
}

body.dark-mode .hero-badge-text-clean {
  color: #D4A373;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Titles & Typography */
body:not(.dark-mode) .hero-title-line1-clean {
  color: #2C3E50;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

body.dark-mode .hero-title-line1-clean {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

body:not(.dark-mode) .hero-title-gradient-clean {
  background: linear-gradient(to right, #F7C848, #F7C848, #F7C848);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 7vw, 5rem);
  animation: shine-effect 4s ease-in-out infinite;
}

body.dark-mode .hero-title-gradient-clean {
  background: linear-gradient(to right, #D4A373, #D4A373, #D4A373);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 7vw, 5rem);
  animation: shine-effect 4s ease-in-out infinite;
}

body:not(.dark-mode) .hero-tagline-clean {
  color: rgba(44, 62, 80, 0.85);
  font-size: clamp(1rem, 2vw, 1.5rem);
}

body.dark-mode .hero-tagline-clean {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* Shine/Glow Effect for Title */
@keyframes shine-effect {

  0%,
  100% {
    filter: drop-shadow(0 0 15px currentColor);
    opacity: 1;
  }

  50% {
    filter: drop-shadow(0 0 25px currentColor);
    opacity: 0.95;
  }
}

/* Buttons */
.hero-buttons-clean {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons-clean {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Cup Container - BESARIN & GESER KANAN! */
.hero-cup-container {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.coffee-cup-main {
  position: relative;
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: translateX(60px);
}

.coffee-cup-main.visible {
  opacity: 1;
  transform: translateX(0);
}

.coffee-cup-main img {
  width: 100%;
  height: auto;
  transition: filter 0.5s ease;
}

/* Glowing Effect sesuai Mode */
body:not(.dark-mode) .coffee-cup-main img {
  filter: drop-shadow(0 20px 60px rgba(243, 144, 23, 0.4)) drop-shadow(0 0 40px rgba(243, 144, 23, 0.3));
}

body.dark-mode .coffee-cup-main img {
  filter: drop-shadow(0 20px 60px rgba(212, 163, 115, 0.4)) drop-shadow(0 0 40px rgba(212, 163, 115, 0.3));
}

body:not(.dark-mode) .hero-title-line1-clean {
  color: #2C3E50;
  /* Dark untuk "Welcome to" */
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  /* LEBIH KECIL - responsive */
}

body:not(.dark-mode) .hero-title-gradient-clean {
  background: linear-gradient(to right, #F7C848, #F7C848, #F7C848);
  /* #F7C848 - GOLDEN ASLI dari logo! */
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(243, 144, 23, 0.6));
  animation: animate-gradient 3s ease infinite;
  font-size: clamp(2.5rem, 7vw, 5rem) !important;
  /* LEBIH KECIL dari 9xl! */
}

body:not(.dark-mode) .hero-tagline-clean {
  color: rgba(44, 62, 80, 0.85);
  font-size: clamp(1rem, 2vw, 1.5rem);
  /* SAMA size untuk kedua mode */
}

/* Heading - Dark Mode (CHOCOLATE #D4A373) */
body.dark-mode .hero-title-line1-clean {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  /* SAMA seperti light mode */
}

body.dark-mode .hero-title-gradient-clean {
  background: linear-gradient(to right, #D4A373, #F7C848, #D4A373);
  /* #D4A373 - CHOCOLATE untuk dark mode! */
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 12px rgba(212, 163, 115, 0.6));
  animation: animate-gradient 3s ease infinite;
  font-size: clamp(2.5rem, 7vw, 5rem);
  /* SAMA seperti light mode */
}

body.dark-mode .hero-tagline-clean {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.5rem);
  /* SAMA seperti light mode */
}

/* ===== BUTTONS - Modern Hover Effects ===== */
.hero-buttons-clean {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons-clean {
    flex-direction: row;
    gap: 1rem;
  }
}

.hero-buttons-clean a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}

/* Light Mode Buttons: Golden Primary + White Secondary */
body:not(.dark-mode) .hero-buttons-clean a:first-child {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  color: white;
  box-shadow:
    0 4px 16px rgba(243, 144, 23, 0.3),
    0 8px 32px rgba(243, 144, 23, 0.15);
  border: none;
}

body:not(.dark-mode) .hero-buttons-clean a:first-child:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(243, 144, 23, 0.4),
    0 12px 40px rgba(243, 144, 23, 0.2);
}

body:not(.dark-mode) .hero-buttons-clean a:first-child:active {
  transform: translateY(-1px);
}

body:not(.dark-mode) .hero-buttons-clean a:last-child {
  background: rgba(255, 255, 255, 0.9);
  color: #F7C848;
  border: 2px solid rgba(243, 144, 23, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body:not(.dark-mode) .hero-buttons-clean a:last-child:hover {
  background: rgba(243, 144, 23, 0.1);
  border-color: #F7C848;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(243, 144, 23, 0.15);
}

/* Dark Mode Buttons: Chocolate Primary + Transparent Secondary */
body.dark-mode .hero-buttons-clean a:first-child {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  color: white;
  box-shadow:
    0 4px 16px rgba(212, 163, 115, 0.3),
    0 8px 32px rgba(212, 163, 115, 0.15);
  border: none;
}

body.dark-mode .hero-buttons-clean a:first-child:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 24px rgba(212, 163, 115, 0.4),
    0 12px 40px rgba(212, 163, 115, 0.2);
}

body.dark-mode .hero-buttons-clean a:first-child:active {
  transform: translateY(-1px);
}

body.dark-mode .hero-buttons-clean a:last-child {
  background: rgba(255, 255, 255, 0.05);
  color: #D4A373;
  border: 2px solid rgba(212, 163, 115, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark-mode .hero-buttons-clean a:last-child:hover {
  background: rgba(212, 163, 115, 0.15);
  border-color: #D4A373;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 163, 115, 0.2);
}

/* ===== CUP CONTAINER - BESARIN & GESER KANAN ===== */
.hero-cup-container {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.coffee-cup-main {
  position: relative;
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
  transform: translateX(60px);
}

.coffee-cup-main.visible {
  opacity: 1;
  transform: translateX(0);
}

.coffee-cup-main img {
  width: 100%;
  height: auto;
  transition: filter 0.5s ease;
}

/* Glowing Effect - NO ILINT, Cuma Glow sesuai Mode */
body:not(.dark-mode) .coffee-cup-main img {
  filter: drop-shadow(0 25px 70px rgba(243, 144, 23, 0.45)) drop-shadow(0 0 50px rgba(243, 144, 23, 0.35));
  animation: glow-pulse-golden 3s ease-in-out infinite;
}

body.dark-mode .coffee-cup-main img {
  filter: drop-shadow(0 25px 70px rgba(212, 163, 115, 0.45)) drop-shadow(0 0 50px rgba(212, 163, 115, 0.35));
  animation: glow-pulse-chocolate 3s ease-in-out infinite;
}

@keyframes glow-pulse-golden {

  0%,
  100% {
    filter: drop-shadow(0 25px 70px rgba(243, 144, 23, 0.45)) drop-shadow(0 0 50px rgba(243, 144, 23, 0.35));
  }

  50% {
    filter: drop-shadow(0 30px 80px rgba(243, 144, 23, 0.6)) drop-shadow(0 0 60px rgba(243, 144, 23, 0.5));
  }
}

@keyframes glow-pulse-chocolate {

  0%,
  100% {
    filter: drop-shadow(0 25px 70px rgba(212, 163, 115, 0.45)) drop-shadow(0 0 50px rgba(212, 163, 115, 0.35));
  }

  50% {
    filter: drop-shadow(0 30px 80px rgba(212, 163, 115, 0.6)) drop-shadow(0 0 60px rgba(212, 163, 115, 0.5));
  }
}

/* Steam Animation */
@keyframes steam-rise-1 {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100px) scale(0.8);
    opacity: 0;
  }
}

@keyframes steam-rise-2 {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-120px) scale(0.7);
    opacity: 0;
  }
}

@keyframes steam-rise-3 {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.55;
  }

  100% {
    transform: translateY(-110px) scale(0.75);
    opacity: 0;
  }
}

/* ===========================
   RESPONSIVE - Mobile & Tablet
   =========================== */

@media (max-width: 1024px) {
  .hero-clean-section {
    padding-top: 90px;
    padding-bottom: 2rem;
  }

  .hero-cup-container {
    max-width: 500px;
    margin: 0 auto;
  }

  body:not(.dark-mode) .hero-title-gradient-clean,
  body.dark-mode .hero-title-gradient-clean {
    font-size: clamp(2rem, 6vw, 4rem);
  }
}

@media (max-width: 768px) {
  .hero-clean-section {
    padding-top: 80px;
    min-height: auto;
    height: auto;
  }

  .hero-cup-container {
    max-width: 400px;
  }

  body:not(.dark-mode) .hero-title-line1-clean,
  body.dark-mode .hero-title-line1-clean {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
  }

  body:not(.dark-mode) .hero-title-gradient-clean,
  body.dark-mode .hero-title-gradient-clean {
    font-size: clamp(1.75rem, 5vw, 3rem);
  }

  body:not(.dark-mode) .hero-tagline-clean,
  body.dark-mode .hero-tagline-clean {
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  }
}

/* ===========================
   ABOUT US SECTION - Cup Slide dari Samping
   =========================== */

.about-cup-container {
  position: relative;
}

.about-cup-slide {
  opacity: 0;
  transform: translateX(-80px);
  /* Start dari KIRI */
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-cup-slide.visible {
  opacity: 1;
  transform: translateX(0);
}

/* About Badge */
body:not(.dark-mode) .about-badge {
  background: rgba(243, 144, 23, 0.08);
  border: 1px solid rgba(243, 144, 23, 0.2);
  color: #F7C848;
}

body.dark-mode .about-badge {
  background: rgba(212, 163, 115, 0.08);
  border: 1px solid rgba(212, 163, 115, 0.2);
  color: #D4A373;
}

/* About Title */
body:not(.dark-mode) .about-title {
  color: #2C3E50;
}

body.dark-mode .about-title {
  color: rgba(255, 255, 255, 0.95);
}

body:not(.dark-mode) .about-title-gradient {
  background: linear-gradient(90deg, #F7C848 0%, #F7C848 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-mode .about-title-gradient {
  background: linear-gradient(90deg, #D4A373 0%, #F7C848 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* About Text */
body:not(.dark-mode) .about-text {
  color: rgba(44, 62, 80, 0.8);
}

body.dark-mode .about-text {
  color: rgba(255, 255, 255, 0.75);
}

/* Stats */
body:not(.dark-mode) .stat-number {
  color: #F7C848;
}

body.dark-mode .stat-number {
  color: #D4A373;
}

body:not(.dark-mode) .stat-label {
  color: rgba(44, 62, 80, 0.7);
}

body.dark-mode .stat-label {
  color: rgba(255, 255, 255, 0.65);
}

/* ===========================
   FEATURES / WHY CHOOSE US SECTION
   =========================== */

/* Feature Badge */
body:not(.dark-mode) .feature-badge {
  background: rgba(243, 144, 23, 0.08);
  border: 1px solid rgba(243, 144, 23, 0.2);
  color: #F7C848;
}

body.dark-mode .feature-badge {
  background: rgba(212, 163, 115, 0.08);
  border: 1px solid rgba(212, 163, 115, 0.2);
  color: #D4A373;
}

/* Feature Title */
body:not(.dark-mode) .feature-title {
  color: #2C3E50;
}

body.dark-mode .feature-title {
  color: rgba(255, 255, 255, 0.95);
}

body:not(.dark-mode) .feature-title-gradient {
  background: linear-gradient(90deg, #F7C848 0%, #F7C848 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-mode .feature-title-gradient {
  background: linear-gradient(90deg, #D4A373 0%, #F7C848 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Feature Text */
body:not(.dark-mode) .feature-text {
  color: rgba(44, 62, 80, 0.8);
}

body.dark-mode .feature-text {
  color: rgba(255, 255, 255, 0.75);
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
}

body:not(.dark-mode) .feature-card {
  background: rgba(243, 144, 23, 0.03);
  border: 1px solid rgba(243, 144, 23, 0.1);
}

body:not(.dark-mode) .feature-card:hover {
  background: rgba(243, 144, 23, 0.08);
  border-color: rgba(243, 144, 23, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(243, 144, 23, 0.15);
}

body.dark-mode .feature-card {
  background: rgba(212, 163, 115, 0.03);
  border: 1px solid rgba(212, 163, 115, 0.1);
}

body.dark-mode .feature-card:hover {
  background: rgba(212, 163, 115, 0.08);
  border-color: rgba(212, 163, 115, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.15);
}

/* Feature Icons */
body:not(.dark-mode) .feature-icon {
  background: rgba(243, 144, 23, 0.1);
  color: #F7C848;
}

body:not(.dark-mode) .feature-card:hover .feature-icon {
  background: rgba(243, 144, 23, 0.2);
  transform: scale(1.1);
}

body.dark-mode .feature-icon {
  background: rgba(212, 163, 115, 0.1);
  color: #D4A373;
}

body.dark-mode .feature-card:hover .feature-icon {
  background: rgba(212, 163, 115, 0.2);
  transform: scale(1.1);
}

/* ===== QUALITY BADGE (Looping Microanimation) ===== */
/* Light Mode: GOLDEN #F7C848 */
body:not(.dark-mode) .quality-badge-bg {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Dark Mode: CHOCOLATE #D4A373 */
body.dark-mode .quality-badge-bg {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  animation: pulse-glow-dark 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(243, 144, 23, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(243, 144, 23, 0.6);
  }
}

@keyframes pulse-glow-dark {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(212, 163, 115, 0.6);
  }
}

/* Steam Animations (Simpler) */
@keyframes steam-rise-1 {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-40px) scaleY(1.5);
    opacity: 0;
  }
}

@keyframes steam-rise-2 {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.4;
  }

  100% {
    transform: translateY(-50px) scaleY(1.6);
    opacity: 0;
  }
}

@keyframes steam-rise-3 {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.6;
  }

  100% {
    transform: translateY(-35px) scaleY(1.4);
    opacity: 0;
  }
}

.steam-1 {
  animation: steam-rise-1 3s ease-in-out infinite;
}

.steam-2 {
  animation: steam-rise-2 3.5s ease-in-out infinite 0.5s;
}

.steam-3 {
  animation: steam-rise-3 2.8s ease-in-out infinite 1s;
}

/* Buttons - Light Mode */
body:not(.dark-mode) .hero-btn-primary-clean {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  box-shadow: 0 15px 35px rgba(224, 155, 45, 0.4);
}

body:not(.dark-mode) .hero-btn-overlay-clean {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body:not(.dark-mode) .hero-btn-secondary-clean {
  color: #F7C848;
  border-color: #F7C848;
  box-shadow: 0 6px 20px rgba(224, 155, 45, 0.2);
}

body:not(.dark-mode) .hero-btn-secondary-overlay-clean {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body:not(.dark-mode) .hero-btn-secondary-clean:hover span:last-child {
  color: #FFFFFF;
}

/* Buttons - Dark Mode */
body.dark-mode .hero-btn-primary-clean {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  box-shadow: 0 15px 35px rgba(224, 155, 45, 0.4);
}

body.dark-mode .hero-btn-overlay-clean {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body.dark-mode .hero-btn-secondary-clean {
  color: #F7C848;
  border-color: #F7C848;
  box-shadow: 0 6px 20px rgba(224, 155, 45, 0.3);
}

body.dark-mode .hero-btn-secondary-overlay-clean {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
}

body.dark-mode .hero-btn-secondary-clean:hover span:last-child {
  color: #FFFFFF;
}

/* Scroll Indicator - Light Mode */
body:not(.dark-mode) .hero-scroll-text-clean,
body:not(.dark-mode) .hero-scroll-arrow-clean {
  color: #F7C848;
}

/* Scroll Indicator - Dark Mode */
body.dark-mode .hero-scroll-text-clean,
body.dark-mode .hero-scroll-arrow-clean {
  color: #F7C848;
}

/* Statistics Cards - Light Mode (ORDER BENAR: GELAP → TERANG + 3D EFFECT!) */
body:not(.dark-mode) .stat-card {
  background: linear-gradient(135deg, rgba(255, 246, 231, 0.9), rgba(255, 255, 255, 0.95));
  /* ORDER BENAR: Gelap dulu (231) → Terang (255) */
  border: 1px solid rgba(224, 155, 45, 0.3);
  opacity: 1 !important;
  transform: translateY(0) !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(224, 155, 45, 0.2),
    0 2px 4px rgba(224, 155, 45, 0.1);
  /* 3D SHADOW EFFECT - menonjol! */
}

body:not(.dark-mode) .stat-card:hover {
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 6px 16px rgba(224, 155, 45, 0.3),
    0 3px 6px rgba(224, 155, 45, 0.15);
  transform: translateY(-8px) !important;
  /* Hover lebih menonjol */
}

body:not(.dark-mode) .stat-number-clean {
  color: #f7c848;
  text-shadow: 0 2px 10px rgba(224, 155, 45, 0.3);
}

body:not(.dark-mode) .stat-label-clean {
  color: #2C3E50;
}

/* Statistics Cards - Dark Mode */
body.dark-mode .stat-card {
  background: linear-gradient(135deg, rgba(33, 33, 33, 0.95), rgba(44, 44, 44, 0.9));
  border: 1px solid rgba(224, 155, 45, 0.2);
  opacity: 1 !important;
  transform: translateY(0) !important;
}

body.dark-mode .stat-number-clean {
  color: #F7C848;
  text-shadow: 0 2px 10px rgba(224, 155, 45, 0.4);
}

body.dark-mode .stat-label-clean {
  color: #FFFFFF;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-clean-section {
    min-height: 100svh;
  }

  .coffee-cup-main {
    max-width: 400px;
    margin: 0 auto;
  }

  .quality-badge .w-24,
  .quality-badge .h-24 {
    width: 80px !important;
    height: 80px !important;
  }

  .steam-1,
  .steam-2,
  .steam-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title-gradient-clean {
    font-size: 3rem !important;
  }

  .coffee-cup-main {
    max-width: 300px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  .coffee-cup-main,
  .quality-badge-bg,
  .steam-1,
  .steam-2,
  .steam-3,
  .hero-title-gradient-clean {
    animation: none !important;
    transform: none !important;
  }
}

/* ===========================
   HERO PING ANIMATION - Light/Dark
   =========================== */
body:not(.dark-mode) .hero-ping-clean span {
  background: #F7C848 !important;
}

body.dark-mode .hero-ping-clean span {
  background: #D4A373 !important;
}

/* ===========================
   BEST SELLER SECTION - Star Icon
   =========================== */
body:not(.dark-mode) #best-seller .inline-block svg {
  color: #F7C848 !important;
}

body.dark-mode #best-seller .inline-block svg {
  color: #D4A373 !important;
}

/* ===========================
   ABOUT SECTION - SVG Icons
   =========================== */
body:not(.dark-mode) .about-section svg {
  color: #F7C848 !important;
}

body.dark-mode .about-section svg {
  color: #D4A373 !important;
}

body:not(.dark-mode) .feature-icon-wrapper {
  background: rgba(247, 200, 72, 0.1) !important;
}

body.dark-mode .feature-icon-wrapper {
  background: rgba(212, 163, 115, 0.1) !important;
}

/* ===========================
   SECTION: TENTANG KAMI (Welcome + Filosofi)
   =========================== */

/* ===========================
   HERO MODERN - About Page (CENTER with Advanced CSS Effects)
   =========================== */

/* ===========================
   HERO MODERN - About Page (CENTER with Advanced CSS Effects)
   FIXED: Padding-top sama dengan navbar, proporsi sama light/dark
   =========================== */

.about-hero-modern {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  /* Full height kayak index.html */
  padding-top: 80px;
  /* SAMA dengan navbar height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated Gradient Background */
@keyframes gradient {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}

/* Coffee Particles (Floating Animation) */
.coffee-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(243, 144, 23, 0.3);
  border-radius: 50%;
  animation: float linear infinite;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  left: 80%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.particle-3 {
  top: 60%;
  left: 30%;
  animation-duration: 10s;
  animation-delay: 4s;
}

.particle-4 {
  top: 80%;
  left: 70%;
  animation-duration: 14s;
  animation-delay: 1s;
}

.particle-5 {
  top: 30%;
  left: 50%;
  animation-duration: 11s;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-50px) translateX(30px) scale(1.2);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-100px) translateX(-20px) scale(0.8);
    opacity: 0.4;
  }

  75% {
    transform: translateY(-80px) translateX(40px) scale(1.1);
    opacity: 0.5;
  }
}

/* Gradient Text Animation */
@keyframes gradient-text {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.animate-gradient-text {
  background-size: 200% auto;
  animation: gradient-text 5s ease infinite;
}

/* Fade In Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-fade-in-down {
  animation: fadeInDown 1s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.animate-fade-in {
  animation: fadeIn 1.2s ease-out;
}

.animation-delay-300 {
  animation-delay: 0.3s;
  animation-fill-mode: both;
}

.animation-delay-500 {
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

/* ===========================
   PREMIUM HERO EFFECTS - ABOUT PAGE
   Apple Keynote Style Slide Presentation
   =========================== */

/* Hero Gradient Background with Parallax */
.hero-gradient-bg {
  background: linear-gradient(135deg,
      rgba(24, 97, 105, 0.15) 0%,
      rgba(243, 144, 23, 0.08) 50%,
      rgba(24, 97, 105, 0.15) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 20s ease infinite;
}

body.dark-mode .hero-gradient-bg {
  background: linear-gradient(135deg,
      rgba(212, 163, 115, 0.12) 0%,
      rgba(139, 111, 71, 0.06) 50%,
      rgba(212, 163, 115, 0.12) 100%);
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Enhanced Floating Particles (8 particles) */
.coffee-particles-enhanced {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle-enhanced {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: float-enhanced linear infinite;
  opacity: 0;
}

/* Light Mode Particles - GOLDEN #F7C848 */
body:not(.dark-mode) .particle-enhanced {
  background: radial-gradient(circle, rgba(247, 200, 72, 0.6), rgba(243, 144, 23, 0.3));
  box-shadow: 0 0 20px rgba(247, 200, 72, 0.4);
}

/* Dark Mode Particles - CHOCOLATE #D4A373 */
body.dark-mode .particle-enhanced {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.6), rgba(139, 111, 71, 0.3));
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
}

@keyframes float-enhanced {
  0% {
    transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.8;
  }

  90% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100vh) translateX(100px) scale(1.5) rotate(360deg);
    opacity: 0;
  }
}

.particle-1 {
  left: 10%;
  animation-duration: 15s;
  animation-delay: 0s;
}

.particle-2 {
  left: 25%;
  animation-duration: 18s;
  animation-delay: 2s;
}

.particle-3 {
  left: 40%;
  animation-duration: 20s;
  animation-delay: 4s;
}

.particle-4 {
  left: 55%;
  animation-duration: 16s;
  animation-delay: 1s;
}

.particle-5 {
  left: 70%;
  animation-duration: 19s;
  animation-delay: 3s;
}

.particle-6 {
  left: 85%;
  animation-duration: 17s;
  animation-delay: 5s;
}

.particle-7 {
  left: 15%;
  animation-duration: 21s;
  animation-delay: 6s;
}

.particle-8 {
  left: 90%;
  animation-duration: 14s;
  animation-delay: 7s;
}

/* Mesh Gradient Dots */
/* Light Mode - GOLDEN */
body:not(.dark-mode) .mesh-dot {
  fill: #F7C848;
  opacity: 0.3;
}

/* Dark Mode - CHOCOLATE */
body.dark-mode .mesh-dot {
  fill: #D4A373;
  opacity: 0.3;
}

/* Glassmorphism Badge */
.glassmorphism-badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Light Mode Badge */
body:not(.dark-mode) .glassmorphism-badge {
  background: rgba(247, 200, 72, 0.15);
  border: 1px solid rgba(247, 200, 72, 0.3);
  color: #F7C848;
}

/* Dark Mode Badge */
body.dark-mode .glassmorphism-badge {
  background: rgba(212, 163, 115, 0.15);
  border: 1px solid rgba(212, 163, 115, 0.3);
  color: #D4A373;
}

/* ===========================
   TEXT REVEAL ANIMATION (Apple Keynote Style)
   =========================== */

.slide-reveal {
  opacity: 0;
  animation: slideReveal 1s ease forwards;
}

@keyframes slideReveal {
  to {
    opacity: 1;
  }
}

.slide-1 {
  animation-delay: 0.3s;
}

.slide-2 {
  animation-delay: 0.8s;
}

.slide-3 {
  animation-delay: 1.5s;
}

.slide-4 {
  animation-delay: 2.2s;
}

.slide-5 {
  animation-delay: 2.8s;
}

/* Text Reveal Line by Line */
.text-reveal-line {
  overflow: hidden;
}

.text-reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: wordReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-reveal-word:nth-child(1) {
  animation-delay: 0.9s;
}

.text-reveal-word:nth-child(2) {
  animation-delay: 1.1s;
}

.text-reveal-word:nth-child(3) {
  animation-delay: 1.3s;
}

/* Gradient Text Hero - MODE SPECIFIC */
/* Light Mode - GOLDEN GRADIENT #F7C848 to #F7C848 */
body:not(.dark-mode) .gradient-text-hero {
  background: linear-gradient(135deg, #F7C848 0%, #F7C848 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Dark Mode - CHOCOLATE GRADIENT #D4A373 to #8B6F47 */
body.dark-mode .gradient-text-hero {
  background: linear-gradient(135deg, #D4A373 0%, #8B6F47 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   HERO BRAND GRADIENT TEXT - Enhanced
   ===================================================== */
/* Shimmer Animation for Brand Text */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Hero Brand with animated gradient */
h1 .relative.block,
h1 .relative.uppercase {
  background-size: 200% auto;
}

/* Light mode brand text - use #186169 */
body:not(.dark-mode) h1 .relative.uppercase {
  color: #186169 !important;
  -webkit-text-fill-color: #186169 !important;
  filter: drop-shadow(0 0 30px rgba(24, 97, 105, 0.5)) !important;
}

/* Highlight Text - MODE SPECIFIC */
/* Light Mode - GOLDEN */
body:not(.dark-mode) .highlight-text {
  color: #F7C848;
  text-shadow: 0 0 10px rgba(247, 200, 72, 0.3);
}

/* Dark Mode - CHOCOLATE */
body.dark-mode .highlight-text {
  color: #D4A373;
  text-shadow: 0 0 10px rgba(212, 163, 115, 0.3);
}

/* Fade In Text */
.fade-in-text {
  opacity: 0;
  animation: fadeInText 1s ease forwards;
  animation-delay: 1.6s;
}

@keyframes fadeInText {
  to {
    opacity: 0.9;
  }
}

/* ===========================
   MAGNETIC HOVER EFFECTS (Expensive!)
   =========================== */

/* Logo 3D Effect with Magnetic Hover */
.logo-3d-effect {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.logo-3d-effect:hover {
  transform: scale(1.1) rotateY(10deg) rotateX(5deg);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
}

/* Logo Glow - MODE SPECIFIC */
/* Light Mode - GOLDEN GLOW */
body:not(.dark-mode) .logo-glow-effect {
  background: radial-gradient(circle, rgba(247, 200, 72, 0.25), transparent 70%);
  opacity: 0.6;
}

/* Dark Mode - STRONG CHOCOLATE GLOW (More Visible) */
body.dark-mode .logo-glow-effect {
  background: radial-gradient(circle, rgba(212, 163, 115, 0.8), rgba(212, 163, 115, 0.4) 50%, transparent 70%);
  filter: blur(40px);
  opacity: 1;
}

/* Magnetic Container (follows mouse) */
.magnetic-container {
  display: inline-block;
  cursor: pointer;
}

/* Scroll Indicator with Magnetic Effect */
.scroll-indicator-magnetic {
  transition: transform 0.3s ease;
}

.scroll-indicator-magnetic:hover {
  transform: scale(1.2);
}

.scroll-arrow {
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* Light Mode Scroll Indicator */
body:not(.dark-mode) .scroll-indicator-magnetic {
  color: #F7C848;
}

body:not(.dark-mode) .scroll-text {
  color: #F7C848;
}

/* Dark Mode Scroll Indicator */
body.dark-mode .scroll-indicator-magnetic {
  color: #D4A373;
}

body.dark-mode .scroll-text {
  color: #8B6F47;
}

/* ===========================
   OVERRIDE TAILWIND - SEPARATE COLORS FOR LIGHT/DARK MODE
   Force color separation to prevent leakage!
   =========================== */

/* Story & Vision SVG Icons - MODE SPECIFIC */
body:not(.dark-mode) .text-coffee-gold,
body:not(.dark-mode) .bg-coffee-gold\/10,
body:not(.dark-mode) .bg-coffee-gold\/20,
body:not(.dark-mode) .border-coffee-gold {
  color: #F7C848 !important;
  background-color: rgba(247, 200, 72, 0.1) !important;
  border-color: #F7C848 !important;
}

body.dark-mode .text-coffee-gold,
body.dark-mode .bg-coffee-gold\/10,
body.dark-mode .bg-coffee-gold\/20,
body.dark-mode .border-coffee-gold {
  color: #D4A373 !important;
  border-color: #D4A373 !important;
  box-shadow: none !important;
}

/* SVG Icon Colors in Story, Vision, Values */
body:not(.dark-mode) .w-6.h-6.text-coffee-gold,
body:not(.dark-mode) .w-10.h-10.text-coffee-gold {
  color: #F7C848 !important;
}

body.dark-mode .w-6.h-6.text-coffee-gold,
body.dark-mode .w-10.h-10.text-coffee-gold {
  color: #D4A373 !important;
}

/* Facility Icons - FontAwesome */
body:not(.dark-mode) .text-5xl.text-coffee-gold {
  color: #F7C848 !important;
}

body.dark-mode .text-5xl.text-coffee-gold {
  color: #D4A373 !important;
}

/* Navbar Buttons hover:bg-coffee-gold */
body:not(.dark-mode) button:hover {
  background-color: #F7C848 !important;
}

body.dark-mode button:hover {
  background-color: #D4A373 !important;
}

/* ===== LIGHT MODE - Tentang Kami (REMOVED, replaced with about-hero-modern) ===== */

/* ===== DARK MODE - Tentang Kami (REMOVED, replaced with about-hero-modern) ===== */

/* ===========================
   SECTION BACKGROUNDS - TEAL CALM (NO ZEBRA PATTERN!)
   Consistent padding for all sections: py-16 (4rem)
   =========================== */

/* ===== LIGHT MODE - Gallery ===== */
body:not(.dark-mode) .gallery-section {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.06) 0%,
      rgba(24, 97, 105, 0.08) 100%) !important;
  padding: 4rem 0 !important;
}

/* ===== DARK MODE - Gallery ===== */
body.dark-mode .gallery-section {
  background: linear-gradient(180deg,
      rgba(20, 20, 20, 1) 0%,
      rgba(26, 26, 26, 1) 100%) !important;
  padding: 4rem 0 !important;
}

/* ===========================
   STATISTICS SECTION - TEAL CALM (NO ZEBRA!)
   =========================== */

/* ===== LIGHT MODE - Statistics ===== */
body:not(.dark-mode) section:has(.stat-card) {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.05) 0%,
      rgba(24, 97, 105, 0.07) 100%) !important;
  padding: 4rem 0 !important;
}

/* ===== DARK MODE - Statistics ===== */
body.dark-mode section:has(.stat-card) {
  background: linear-gradient(180deg,
      rgba(18, 18, 18, 1) 0%,
      rgba(22, 22, 22, 1) 100%) !important;
  padding: 4rem 0 !important;
}

/* ===========================
   BEST SELLER SECTION - TEAL CALM (NO ZEBRA!)
   =========================== */

/* ===== LIGHT MODE - Best Seller ===== */
body:not(.dark-mode) #best-seller {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.06) 0%,
      rgba(24, 97, 105, 0.09) 100%) !important;
  padding: 2rem 0 !important;
  border-top-color: #f7c848 !important;
}

/* ===== DARK MODE - Best Seller ===== */
body.dark-mode #best-seller {
  background: linear-gradient(180deg,
      rgba(15, 15, 15, 1) 0%,
      rgba(20, 20, 20, 1) 100%) !important;
  padding: 2rem 0 !important;
  border-top-color: #D4A373 !important;
}

/* ===========================
   ABOUT PAGE - Story & Vision Section
   =========================== */

/* ===== LIGHT MODE - Story & Vision ===== */
body:not(.dark-mode) section:has(.grid) {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.04) 0%,
      rgba(24, 97, 105, 0.06) 100%) !important;
  padding: 4rem 0 !important;
}

/* ===== DARK MODE - Story & Vision ===== */
body.dark-mode section:has(.grid) {
  background: linear-gradient(180deg,
      rgba(22, 22, 22, 1) 0%,
      rgba(26, 26, 26, 1) 100%) !important;
  padding: 4rem 0 !important;
}

/* ===========================
   MENU PAGE - Menu Section
   =========================== */

/* ===== LIGHT MODE - Menu Section ===== */
body:not(.dark-mode) .menu-section {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.04) 0%,
      rgba(24, 97, 105, 0.07) 100%) !important;
}

/* ===== DARK MODE - Menu Section ===== */
body.dark-mode .menu-section {
  background: linear-gradient(180deg,
      rgba(20, 20, 20, 1) 0%,
      rgba(26, 26, 26, 1) 100%) !important;
}

/* ===========================
   FOOTER - Consistent Padding
   =========================== */
body:not(.dark-mode) footer {
  padding: 3rem 0 !important;
}

body.dark-mode footer {
  padding: 3rem 0 !important;
}

/* ===========================
   🔥 GLOBAL COLOR OVERRIDE - FORCE CONSISTENCY! 🔥
   Replace ALL orange (#F7C848, #F7C848) with GOLD #F7C848 (Light Mode)
   Replace with CHOCOLATE #D4A373 (Dark Mode)
   =========================== */

/* Light Mode - Force GOLD #F7C848 everywhere */
body:not(.dark-mode) {
  /* Typography colors */
  --text-gold: #F7C848;
  --text-gold-hover: #F7C848;

  /* Background colors */
  --bg-gold: rgba(247, 200, 72, 0.1);
  --bg-gold-hover: #F7C848;

  /* Border colors */
  --border-gold: #F7C848;
}

/* Dark Mode - Force CHOCOLATE #D4A373 everywhere */
body.dark-mode {
  /* Typography colors */
  --text-gold: #D4A373;
  --text-gold-hover: #8B6F47;

  /* Background colors */
  --bg-gold: rgba(212, 163, 115, 0.1);
  --bg-gold-hover: #D4A373;

  /* Border colors */
  --border-gold: #D4A373;
}

/* ===========================
   🎨 RESTRUKTURISASI WARNA LIGHT MODE - TEAL + GOLD HARMONIS!
   Background konsep: Teal lembut + aksen Gold yang warm
   =========================== */

/* Body Background - Soft Cream dengan hint Teal */
body:not(.dark-mode) {
  background: linear-gradient(180deg,
      #FFF9F0 0%,
      /* Warm cream */
      #F8F4EC 50%,
      /* Slightly darker cream */
      #F5F2E8 100%
      /* Beige cream */
    ) !important;
  background-attachment: fixed;
}

/* Light Mode - Section Backgrounds Gradasi Teal Lembut */
body:not(.dark-mode) section {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.02) 0%,
      /* Teal ultra lembut */
      rgba(247, 200, 72, 0.03) 50%,
      /* Hint gold di tengah */
      rgba(24, 97, 105, 0.04) 100%
      /* Teal lembut di bawah */
    ) !important;
  position: relative;
}

/* Section overlay untuk depth */
body:not(.dark-mode) section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right,
      rgba(247, 200, 72, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

/* Hero Sections - Lebih terang dengan gold accent */
body:not(.dark-mode) .hero-section,
body:not(.dark-mode) section:first-of-type {
  background: linear-gradient(135deg,
      rgba(24, 97, 105, 0.04) 0%,
      /* Teal soft */
      rgba(247, 200, 72, 0.06) 50%,
      /* Gold soft di tengah */
      rgba(24, 97, 105, 0.03) 100%
      /* Teal ultra soft */
    ) !important;
}

/* Feature Sections - Alternating teal + gold */
body:not(.dark-mode) .features-section,
body:not(.dark-mode) .gallery-section,
body:not(.dark-mode) .statistics-section {
  background: linear-gradient(180deg,
      rgba(247, 200, 72, 0.04) 0%,
      /* Gold soft */
      rgba(24, 97, 105, 0.03) 100%
      /* Teal soft */
    ) !important;
}

/* Best Seller Section - Gold dominan */
body:not(.dark-mode) .best-seller-section {
  background: linear-gradient(180deg,
      rgba(247, 200, 72, 0.06) 0%,
      /* Gold lebih kuat */
      rgba(247, 200, 72, 0.04) 50%,
      /* Gold medium */
      rgba(24, 97, 105, 0.03) 100%
      /* Teal soft di bawah */
    ) !important;
}

/* Menu Section - Teal dominan dengan gold accent */
body:not(.dark-mode) .menu-section {
  background: linear-gradient(180deg,
      rgba(24, 97, 105, 0.05) 0%,
      /* Teal medium */
      rgba(247, 200, 72, 0.03) 50%,
      /* Gold hint di tengah */
      rgba(24, 97, 105, 0.06) 100%
      /* Teal lebih kuat di bawah */
    ) !important;
}

/* About Page - Story & Vision Section */
body:not(.dark-mode) section:has(.grid) {
  background: linear-gradient(180deg,
      rgba(247, 200, 72, 0.05) 0%,
      /* Gold soft */
      rgba(24, 97, 105, 0.04) 100%
      /* Teal soft */
    ) !important;
  padding: 4rem 0 !important;
}

/* White sections tetap pure white dengan subtle shadow */
body:not(.dark-mode) .bg-white,
body:not(.dark-mode) footer {
  background: #FFFFFF !important;
  box-shadow: 0 -4px 20px rgba(24, 97, 105, 0.05);
}

/* Facilities Section - Pure white dengan teal border */
body:not(.dark-mode) .facilities-section {
  background: #FFFFFF !important;
  border-top: 3px solid rgba(24, 97, 105, 0.1);
  border-bottom: 3px solid rgba(247, 200, 72, 0.1);
}

/* White sections (Facilities, Footer) tetap white */
body:not(.dark-mode) .bg-white,
body:not(.dark-mode) footer {
  background: #FFFFFF !important;
}

/* Dark Mode - Consistent Dark Gradient */
body.dark-mode section {
  background: linear-gradient(180deg,
      rgba(20, 20, 20, 1) 0%,
      rgba(26, 26, 26, 1) 100%) !important;
}

/* ===========================
   TYPOGRAPHY ALIGNMENT - CENTER & CONSISTENT
   =========================== */

/* Section Headers - Always Center */
.text-center h1,
.text-center h2,
.text-center h3,
.text-center p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Card Text - Center dalam card */
.feature-card,
.menu-card,
.stat-card {
  text-align: center !important;
}

/* Story & Vision - Left Aligned dengan spacing lebih baik */
.space-y-6 h2 {
  text-align: left !important;
  font-size: 2rem !important;
  line-height: 1.2 !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.02em !important;
}

.space-y-6 p {
  text-align: left !important;
  font-size: 1.125rem !important;
  line-height: 1.8 !important;
  color: #4A5568 !important;
  font-weight: 500 !important;
}

body.dark-mode .space-y-6 p {
  color: #CBD5E0 !important;
}

/* About Page - Typography yang lebih premium */
body:not(.dark-mode) .space-y-6 h2 {
  background: linear-gradient(135deg, #186169 0%, #F7C848 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Highlight text dalam paragraph */
.space-y-6 p strong {
  color: #F7C848 !important;
  font-weight: 700 !important;
}

body.dark-mode .space-y-6 p strong {
  color: #D4A373 !important;
}

/* ===========================
   SECTION BADGE & TITLE STYLES
   =========================== */

/* Section Badge (Our Gallery, Why Choose Us, etc) */
body:not(.dark-mode) .section-badge {
  background: linear-gradient(135deg, rgba(247, 200, 72, 0.15), rgba(247, 200, 72, 0.15)) !important;
  color: #F7C848 !important;
  border: 1px solid rgba(247, 200, 72, 0.3) !important;
}

body.dark-mode .section-badge {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.15), rgba(212, 163, 115, 0.15)) !important;
  color: #D4A373 !important;
  border: 1px solid rgba(212, 163, 115, 0.3) !important;
}

/* Section Title */
body:not(.dark-mode) .section-title {
  color: #F7C848 !important;
}

body.dark-mode .section-title {
  color: #D4A373 !important;
}

/* Stats Card */
body:not(.dark-mode) .stat-card {
  background: rgba(247, 200, 72, 0.08) !important;
  border: 1px solid rgba(247, 200, 72, 0.25) !important;
}

body.dark-mode .stat-card {
  background: rgba(212, 163, 115, 0.1) !important;
  border: 1px solid rgba(212, 163, 115, 0.3) !important;
}

/* Stat Number */
body:not(.dark-mode) .stat-number-clean {
  color: #F7C848 !important;
}

body.dark-mode .stat-number-clean {
  color: #D4A373 !important;
}

/* Stat Label */
body:not(.dark-mode) .stat-label-clean {
  color: #186169 !important;
}

body.dark-mode .stat-label-clean {
  color: #D4A373 !important;
}

/* Best Seller Badge in Featured Menu */
body:not(.dark-mode) .bestseller-badge-featured {
  background: linear-gradient(135deg, #F7C848, #F7C848) !important;
  color: #FFFFFF !important;
}

body.dark-mode .bestseller-badge-featured {
  background: linear-gradient(135deg, #D4A373, #D4A373) !important;
  color: #FFFFFF !important;
}

/* ===========================
   CTA BUTTONS - Consistent with Toggle Switch
   =========================== */

/* Base style: transparent background, brown border, brown text */
.cta-detail-btn,
.cta-menu-btn,
.hero-cta-btn {
  border: 2px solid #D4A373;
  color: #D4A373;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

/* Hover: brown background, white text */
.cta-detail-btn:hover,
.cta-menu-btn:hover,
.hero-cta-btn:hover {
  background-color: #D4A373;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

/* Light mode overrides */
body:not(.dark-mode) .cta-detail-btn,
body:not(.dark-mode) .cta-menu-btn,
body:not(.dark-mode) .hero-cta-btn {
  border-color: #D4A373;
  color: #D4A373;
  background-color: transparent;
}

body:not(.dark-mode) .cta-detail-btn:hover,
body:not(.dark-mode) .cta-menu-btn:hover,
body:not(.dark-mode) .hero-cta-btn:hover {
  background: #D4A373;
  color: #FFFFFF !important;
  border-color: #D4A373;
}

/* Dark mode overrides */
body.dark-mode .cta-detail-btn,
body.dark-mode .cta-menu-btn,
body.dark-mode .hero-cta-btn {
  border-color: #D4A373;
  color: #D4A373;
  background-color: transparent;
}

body.dark-mode .cta-detail-btn:hover,
body.dark-mode .cta-menu-btn:hover,
body.dark-mode .hero-cta-btn:hover {
  background: #D4A373;
  color: #FFFFFF !important;
  border-color: #D4A373;
}

body:not(.dark-mode) .cta-menu-btn .cta-gradient-overlay {
  background: linear-gradient(to right, #E09B2D, #F7C848) !important;
}

body.dark-mode .cta-menu-btn .cta-gradient-overlay {
  background: linear-gradient(to right, #C08D5C, #D4A373) !important;
}

/* Stats & Features Section Border */
body:not(.dark-mode) .stats-features-section {
  border-top-color: #f7c848 !important;
}

body.dark-mode .stats-features-section {
  border-top-color: #D4A373 !important;
  background: linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(15, 15, 15, 1) 100%) !important;
}

/* Gallery Section */
body:not(.dark-mode) .gallery-section {
  background: rgba(24, 97, 105, 0.03) !important;
}

body.dark-mode .gallery-section {
  background: rgba(15, 15, 15, 1) !important;
}

/* Feature Icon Wrapper */
body:not(.dark-mode) .feature-icon-wrapper {
  background: rgba(224, 155, 45, 0.1) !important;
}

body.dark-mode .feature-icon-wrapper {
  background: rgba(212, 163, 115, 0.2) !important;
}

/* Feature Icon SVG */
body:not(.dark-mode) .feature-icon-wrapper svg {
  color: #f7c848 !important;
}

body.dark-mode .feature-icon-wrapper svg {
  color: #D4A373 !important;
}

/* Feature Title */
body:not(.dark-mode) .feature-card h3 {
  color: #f7c848 !important;
}

body.dark-mode .feature-card h3 {
  color: #D4A373 !important;
}

/* ===========================
   MOBILE HORIZONTAL SCROLL BUTTONS
   =========================== */
/* Tombol scroll hanya muncul di mobile - desktop normal */
.mobile-scroll-wrapper .scroll-btn {
  display: none;
}

@media (max-width: 767px) {
  .mobile-scroll-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.5rem;
  }

  .mobile-scroll-wrapper #menuGrid {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .mobile-scroll-wrapper #menuGrid .menu-card {
    min-width: 180px;
    max-width: 200px;
    flex-shrink: 0;
  }

  .mobile-scroll-wrapper .scroll-btn {
    display: flex !important;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F7C848;
    color: #121212;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .scroll-btn:hover {
    background: #E09B2D;
    transform: scale(1.1);
  }

  .scroll-btn:active {
    transform: scale(0.95);
  }

  .scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  body.dark-mode .scroll-btn {
    background: #D4A373;
    color: #121212;
  }

  body.dark-mode .scroll-btn:hover {
    background: #C08D5C;
  }
}

/* =====================================================
   RAMADHAN PACKAGE GRID - Responsive Layout
   ===================================================== */

/* Desktop: 3 columns x 2 rows */
.ramadhan-package-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* Mobile: 2 columns x 3 rows */
@media (max-width: 767px) {
  .ramadhan-package-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =====================================================
   VIDEO HERO SECTION - About Page (Background Video)
   ===================================================== */

.about-hero-video {
  position: relative;
  overflow: hidden;
}

.about-hero-video h1 {
  animation: fadeInUp 1s ease-out 0.5s both;
}

.about-hero-video h2 {
  animation: fadeInUp 1s ease-out 0.8s both;
}

.about-hero-video .flex.items-center {
  animation: fadeInUp 1s ease-out 1.1s both;
}

/* Responsive Video Size */
@media (max-width: 768px) {
  .about-hero-video {
    padding: 4rem 1rem 3rem 1rem !important;
    min-height: 70vh !important;
  }

  .about-hero-video h1 {
    font-size: clamp(2rem, 7vw, 3rem) !important;
  }

  .about-hero-video h2 {
    font-size: clamp(1.2rem, 3.5vw, 2rem) !important;
  }
}

/* Light mode adjustments */
body:not(.dark-mode) .about-hero-video {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f5f5f5 100%);
}

body:not(.dark-mode) .about-hero-video h1 {
  color: #8B6F47 !important;
}

/* ===========================
   MENU PHOTO PREVIEW OVERLAY
   =========================== */

/* Preview overlay container - shows 80% of screen */
.menu-image-preview {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 80vw;
  height: 80vh;
  max-width: 90vw;
  max-height: 90vh;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 16px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-image-preview.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Preview image - full image visible */
.menu-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  padding: 0;
}

/* Close button */
.menu-image-preview-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.menu-image-preview-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.menu-image-preview-close svg {
  width: 20px;
  height: 20px;
  color: white;
}

/* Preview button on menu card (eye icon) */
.menu-preview-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.menu-card:hover .menu-preview-btn {
  opacity: 1;
  transform: scale(1);
}

.menu-preview-btn:hover {
  background: #D4A373;
  border-color: #D4A373;
  transform: scale(1.1);
}

.menu-preview-btn svg {
  width: 18px;
  height: 18px;
  color: #333;
}

.menu-preview-btn:hover svg {
  color: white;
}

/* Dark mode preview button */
body.dark-mode .menu-preview-btn {
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(212, 163, 115, 0.3);
}

body.dark-mode .menu-preview-btn:hover {
  background: #D4A373;
}

/* Mobile: Preview button always visible (no hover) */
@media (max-width: 767px) {
  .menu-preview-btn {
    opacity: 1;
    transform: scale(1);
  }

  .menu-image-preview {
    width: 95vw;
    height: 70vh;
  }
}

/* Loading spinner for preview */
.menu-preview-loading {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #D4A373;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Background overlay when preview is active */
.menu-image-preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-image-preview-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===========================
   RAMADHAN CAROUSEL STYLES
   =========================== */
.ramadhan-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.ramadhan-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.ramadhan-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.ramadhan-carousel-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

/* Navigation buttons */
.ramadhan-nav-prev,
.ramadhan-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.9);
  color: #1a1a1a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.ramadhan-nav-prev {
  left: 1rem;
}

.ramadhan-nav-next {
  right: 1rem;
}

.ramadhan-nav-prev:hover,
.ramadhan-nav-next:hover {
  background: #D4A373;
  transform: translateY(-50%) scale(1.1);
}

/* Dots indicator */
.ramadhan-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ramadhan-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ramadhan-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}