/* ============================================
   MIE NEWMIND - STYLESHEET UTAMA (styles.css)
   ============================================
   
   Struktur file CSS:
   - Lines 1-50: CSS Variables (colors, spacing, shadows)
   - Lines 100-250: Header & Navigation
   - Lines 300-500: Hero Section
   - Lines 550-750: About Section & Timeline
   - Lines 800-1200: Menu Section & Tabs
   - Lines 1250-1600: Location & Reservation
   - Lines 1750-2000: Footer
   - Lines 2050-2350: Forms & Inputs
   - Lines 2400-2800: Dark Mode Styles
   - Lines 2900-3391: Media Queries & Responsive
   
   Fitur:
   - Dark mode support (body.theme-dark)
   - Fully responsive (mobile-first)
   - CSS variables untuk easy theming
   - Smooth transitions & animations
   
   Color System:
   - Primary (Pink): #c7319c
   - Secondary (Pink): #c93898
   - Accent (Yellow): #eccb30
   - Brick Red: #c7333e
   
   ============================================ */

/* ============================================
   SECTION 1: CSS VARIABLES & DESIGN TOKENS
   Lines 1-50
   - Light mode colors
   - Dark mode colors
   - Spacing scale
   - Shadow values
   ============================================ */
:root {
  --background: #ffffff;
  --foreground: #141116;
  --muted-foreground: #5f5660;
  --primary: #c7319c;
  --secondary: #c93898;
  --accent: #eccb30;
  --brick: #c7333e;
  --red-warm: #c7333e;
  --dark-red: #a00104;
  --card: #ffffff;
  --card-light: #fbf4f9;
  --border: #ecd6e5;
  --radius: 20px;
  --shadow: 0 8px 20px rgba(199, 49, 156, 0.14);
  --page-bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fbf4f9;
  --section-space-sm: 72px;
  --section-space-md: 92px;
  --section-space-lg: 112px;
  --title-card-radius: 26px;
  --card-radius: 18px;
  --cta-shadow: 0 10px 22px rgba(160, 1, 4, 0.24);
  --cta-shadow-hover: 0 16px 30px rgba(160, 1, 4, 0.28);
}

body.theme-dark {
  --background: #0f0b12;
  --foreground: #f8f1f7;
  --muted-foreground: #c8b5c3;
  --primary: #d64bb0;
  --secondary: #cf489f;
  --accent: #eccb30;
  --brick: #d9424e;
  --dark-red: #a00104;
  --card: #1b151f;
  --border: #4f3a48;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.26);
  --page-bg: #0f0b12;
  --card-soft: #261d2b;
  --surface: #1b151f;
  --surface-soft: #261d2b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: var(--foreground);
  background: var(--page-bg);
  scroll-behavior: smooth;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

body.nav-open {
  overflow: hidden;
}

html {
  zoom: 90%;
}

body {
  background: linear-gradient(135deg, #ffffff 0%, #fdf3fa 44%, #f6e2f2 100%);
}

body.theme-dark {
  background: radial-gradient(circle at 18% 86%, rgba(199, 51, 62, 0.24) 0%, rgba(199, 51, 62, 0) 40%),
    radial-gradient(circle at 84% 8%, rgba(201, 56, 152, 0.28) 0%, rgba(201, 56, 152, 0) 34%),
    linear-gradient(135deg, #09070c 0%, #130d17 52%, #1a1020 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ============================================
   SECTION 2: HEADER & NAVIGATION
   Lines 130-250
   - Fixed navbar styling
   - Logo and brand
   - Navigation links
   - Theme and language toggle buttons
   - Mobile menu toggle
   - Scroll effects
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 20;
  backdrop-filter: none;
  background: linear-gradient(180deg, #c7319c 0%, #c93898 54%, #c7333e 100%);
  background-size: 140% 140%;
  border-bottom: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: navGradientShift 12s ease-in-out infinite;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.26);
}

body.theme-dark .site-header {
  background: linear-gradient(180deg, #7d1d67 0%, #5f144c 54%, #2d0f2d 100%);
  border-bottom: none;
}

body.theme-dark .site-header.is-scrolled {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 66px;
  position: relative;
  transition: min-height 0.3s ease;
}

.site-header.is-scrolled .nav-wrap {
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  animation: navItemIn 0.5s ease both;
}

.brand-logo {
  width: 102px;
  filter: none;
  transition: width 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled .brand-logo {
  width: 96px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-self: center;
}

.main-nav a {
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0;
  color: #ffffff;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  position: relative;
  padding-bottom: 0;
  opacity: 0.95;
  animation: navItemIn 0.45s ease both;
}

.main-nav a:nth-child(1) { animation-delay: 0.04s; }
.main-nav a:nth-child(2) { animation-delay: 0.08s; }
.main-nav a:nth-child(3) { animation-delay: 0.12s; }
.main-nav a:nth-child(4) { animation-delay: 0.16s; }
.main-nav a:nth-child(5) { animation-delay: 0.20s; }
.main-nav a:nth-child(6) { animation-delay: 0.24s; }

.main-nav a::after {
  display: none;
}

.main-nav a:hover {
  color: #ffe9f8;
  transform: translateY(-1px);
  opacity: 1;
}

.main-nav a.active {
  color: #fbbf24;
  font-weight: 800;
  padding-bottom: 4px;
  border-bottom: 3px solid #fbbf24;
  opacity: 1;
}

body.theme-dark .main-nav a {
  color: #fff0fb;
}

body.theme-dark .main-nav a:hover {
  color: #ffffff;
}

body.theme-dark .main-nav a.active {
  color: #fbbf24;
  border-bottom-color: #fbbf24;
}

.nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #1a1620;
}

body.theme-dark .nav-toggle {
  background: #2c2631;
  color: #f3eff4;
}

.nav-actions {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  animation: navItemIn 0.55s ease both;
}

.lang-pill,
.theme-toggle {
  border: 3px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-width: 46px;
  height: 36px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0 0.62rem;
  transition: transform 0.2s ease, background 0.25s ease, border-color 0.25s ease;
}

.theme-toggle {
  min-width: auto;
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 1.45rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.lang-pill:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.lang-pill.is-animating {
  transform: translateY(-1px) scale(0.96);
  opacity: 0.72;
  cursor: wait;
}

.theme-toggle.is-animating {
  transform: rotate(180deg) scale(1.08);
}

.theme-transition-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  --tx: 50vw;
  --ty: 50vh;
  clip-path: circle(0 at var(--tx) var(--ty));
  animation: themeWipe 560ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.theme-transition-overlay.to-dark {
  background: radial-gradient(circle at center, #2a2130 0%, #17141a 64%, #130f19 100%);
}

.theme-transition-overlay.to-light {
  background: radial-gradient(circle at center, #fff7fc 0%, #faf8fa 62%, #f4eef5 100%);
}

body.theme-dark .lang-pill,
body.theme-dark .theme-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

body.theme-dark .theme-toggle {
  border: none;
  background: transparent;
}

section {
  padding: var(--section-space-md) 0;
  overflow-x: clip;
  scroll-margin-top: 84px;
}

.section-spacing-sm {
  padding-block: var(--section-space-sm);
}

.section-spacing-md {
  padding-block: var(--section-space-md);
}

.section-spacing-lg {
  padding-block: var(--section-space-lg);
}

main {
  padding-top: 74px;
}

main,
.site-footer,
.site-header .main-nav,
.site-header .nav-actions {
  transition: opacity 0.24s ease, transform 0.24s ease;
}

body.is-lang-switching .site-header .main-nav,
body.is-lang-switching .site-header .nav-actions,
body.is-lang-switching main,
body.is-lang-switching .site-footer {
  opacity: 0.22;
  transform: translateY(6px);
}

/* ============================================
   SECTION 3: HERO SECTION
   Lines 388-500
   - Hero banner positioning
   - Title styling (large, bold)
   - Call-to-action buttons
   - Hero image and decorative elements
   - Gradient backgrounds
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7fd 0%, #fdeef8 56%, #fce4f3 100%);
  background-image: linear-gradient(180deg, #fff7fd 0%, #fdeef8 56%, #fce4f3 100%);
  background-size: auto;
  padding-top: 56px;
  padding-bottom: 92px;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.33;
}

.hero-bg-shape-1 {
  width: 260px;
  height: 260px;
  top: -64px;
  right: -40px;
  background: radial-gradient(circle at center, #c7319c, transparent 65%);
  animation: float-slow 5s ease-in-out infinite;
}

.hero-bg-shape-2 {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: 50px;
  background: radial-gradient(circle at center, #eccb30, transparent 65%);
  animation: float 4s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #d4449e, #c7319c);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(199, 49, 156, 0.22);
}

.eyebrow,
.hero .eyebrow,
.menu .eyebrow,
.about .eyebrow,
.lokasi .eyebrow,
.franchise .eyebrow,
.karir .eyebrow {
  color: #ffffff !important;
}

.hero .eyebrow {
  background: linear-gradient(90deg, #c12ea2 0%, #cc3d95 48%, #cf3f4f 100%);
  box-shadow: none;
  font-size: 0.66rem;
  padding: 0.42rem 0.92rem;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #000000;
  text-shadow: none;
}

.hero-title-top,
.hero-title-bottom {
  display: block;
}

.hero-title-top {
  color: #000000;
}

.hero-title-bottom {
  color: #c7319c;
}

.hero-copy h2 {
  margin: 1rem 0 0.95rem;
  font-size: clamp(1.45rem, 2.4vw, 2.78rem);
  line-height: 1.2;
  color: #c7319c;
  font-weight: 700;
}

.hero-copy p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.55;
  color: #67616a;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-cta {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, filter 0.28s ease;
  font-size: 0.92rem;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  filter: saturate(1.05);
}

.btn-primary {
  background: linear-gradient(135deg, #c7319c 0%, #c93898 52%, #c7333e 100%);
  color: #ffffff;
  box-shadow: var(--cta-shadow);
  border: none;
}

.btn-primary:hover {
  box-shadow: var(--cta-shadow-hover);
}

.btn-secondary {
  background: #eccb30;
  color: #000000;
  border: none;
  font-weight: 700;
}

.btn-secondary:hover {
  box-shadow: 0 12px 24px rgba(194, 148, 0, 0.26);
}

.hero-badges {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.badge-card {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #d7cfd8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 0.52rem 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.1rem;
  align-items: center;
}

.badge-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 1.15rem;
  background: #13a84f;
  color: #fff;
  grid-row: 1 / span 2;
}

.badge-card strong {
  display: block;
  margin-top: 0;
  color: var(--foreground);
  font-size: 0.74rem;
  line-height: 1.15;
  align-self: end;
}

.badge-card small {
  display: block;
  margin-top: 0;
  color: var(--muted-foreground);
  font-size: 0.64rem;
  align-self: start;
}

.badge-card:nth-child(2) span {
  background: #f0f0f0;
  color: #5b4654;
}

.hero-media {
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 18px 34px rgba(104, 54, 82, 0.18);
  animation: float 6s ease-in-out infinite;
  background: linear-gradient(180deg, #f4d8e5 0%, #f7e9ef 100%);
  padding: 1.1rem;
  position: relative;
}

.hero-media-frame {
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  border-radius: 18px;
}

.hero-float {
  position: absolute;
  font-size: 1.7rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  animation: floatTiny 3.4s ease-in-out infinite;
  z-index: 2;
}

.hero-float-left {
  left: -34px;
  top: 30%;
}

.hero-float-right {
  right: -36px;
  top: 39%;
  animation-delay: 0.4s;
}

.hero-float-fire {
  right: 6px;
  top: -26px;
  font-size: 1.2rem;
  animation-delay: 0.7s;
}

.hero-float-onion {
  left: 8px;
  bottom: -24px;
  font-size: 1.4rem;
  animation-delay: 0.2s;
}

.parallax-image {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.parallax-image:hover {
  box-shadow: 0 34px 72px rgba(160, 1, 4, 0.28);
}

.feature-image img,
.hero-media img,
.about-media img {
  transform: scale(1.001);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.feature-image:hover img,
.hero-media:hover img,
.about-media:hover img {
  transform: scale(1.035);
}

body.theme-dark .feature-image img,
body.theme-dark .hero-media img,
body.theme-dark .about-media img {
  filter: saturate(0.96) brightness(0.92);
}

body.theme-dark .feature-card .feature-image img {
  filter: none;
}

.about,
.menu,
.reservasi,
.karir {
  background: linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
}

/* ============================================
   SECTION 4: ABOUT & TIMELINE
   Lines 700-800
   - About section styling
   - Company description
   - Timeline (2021-2024)
   - Timeline line animation
   - Two-column layout
   ============================================ */
.about {
  background: #f3f3f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 0 30 12 T60 12 T90 12 T120 12' fill='none' stroke='rgba(199,49,156,0.16)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 120px 24px;
}

.about-heading {
  text-align: center;
  margin-bottom: 2.2rem;
}

.about-title {
  margin: 0.85rem 0 0;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  font-weight: 900;
  color: #111016;
}

.about-title span {
  color: #c7319c;
}

.about-content {
  align-items: center;
  gap: 3rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.8rem;
}

.about-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(199, 49, 156, 0.12);
}

.about-copy h2,
.menu h2,
.lokasi h2,
.franchise h2,
.karir h2 {
  margin: 1rem 0 1.2rem;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.2;
  color: #1a1620;
  font-weight: 800;
}

.about-copy p {
  line-height: 1.44;
  color: #1f1c22;
  font-size: clamp(1.05rem, 1.4vw, 1.34rem);
  margin: 0.6rem 0;
  font-weight: 500;
}

.about-copy p strong {
  font-weight: 800;
}

.about-copy p + p {
  color: #77717a;
  margin-top: 1.1rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.95rem;
  color: #c7319c;
  font-weight: 700;
  font-size: 1.05rem;
}

.timeline-wrap {
  margin-top: 2.2rem;
}

.timeline-wrap h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  text-align: center;
}

.timeline-title {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.06;
  color: #111016;
  font-weight: 900;
  margin-top: 2.1rem;
}

.timeline-title span {
  color: #f0d04d;
}

.timeline-scroll {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding-bottom: 0.6rem;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(199, 49, 156, 0.25);
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(180deg, #cf41aa 0%, #f0cf3f 100%);
  z-index: 1;
}

.timeline-item {
  width: calc(50% - 68px);
  margin-bottom: 2.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.timeline-item.left {
  margin-right: auto;
}

.timeline-item.right {
  margin-left: auto;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid #c7319c;
  box-shadow: inset 0 0 0 3px #ffffff, 0 0 0 1px rgba(199, 49, 156, 0.2);
  z-index: 2;
}

.timeline-item.left::before {
  right: -84px;
}

.timeline-item.right::before {
  left: -84px;
}

.timeline-item h4 {
  margin: 0;
  color: #c7319c;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 900;
}

.timeline-item p {
  margin: 0.6rem 0 0;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.96rem;
}

/* ============================================
   SECTION 5: MENU SECTION
   Lines 891-1250
   - Menu section layout
   - Feature card styling (best seller highlight)
   - Menu tabs (Mie, Dimsum, Minuman)
   - Menu grid and menu items
   - Menu modal for item details
   - Tab switching animations
   ============================================ */
.menu {
  background: linear-gradient(180deg, #fff7fd 0%, #fdeef8 56%, #fce4f3 100%);
  background-image: linear-gradient(180deg, #fff7fd 0%, #fdeef8 56%, #fce4f3 100%);
  position: relative;
  overflow: hidden;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.28;
}

.menu::before {
  right: -160px;
  top: 60px;
  background: radial-gradient(circle, rgba(199, 49, 156, 0.8) 0%, transparent 68%);
}

.menu::after {
  left: -160px;
  bottom: 140px;
  background: radial-gradient(circle, rgba(199, 51, 62, 0.7) 0%, transparent 68%);
}

.menu .container {
  max-width: 1420px;
  text-align: center;
  background: linear-gradient(180deg, #fff2f8 0%, #ffeaf4 100%);
  border-radius: 28px;
  padding: 1.4rem;
  border: 1px solid #f5d1e5;
}

.menu .eyebrow {
  display: inline-flex;
  margin: 0 auto;
  padding: 0.54rem 1.38rem;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.menu h2 {
  text-align: center;
  font-size: clamp(2.05rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  margin: 0.9rem 0 0.3rem;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.menu-title span {
  color: #c7319c;
}

.menu-sub {
  font-size: clamp(0.92rem, 1.1vw, 1.2rem);
  color: #736d75;
  font-weight: 500;
  margin-top: 0.2rem;
}

.feature-card {
  margin: 2.4rem auto 0;
  max-width: 1390px;
  background: linear-gradient(135deg, #c7319c 0%, #c93898 35%, #c7333e 70%, #a00104 100%);
  border: none;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 0.98fr 1.42fr;
  align-items: center;
  gap: 2.45rem;
  padding: 2.15rem;
  box-shadow: 0 24px 48px rgba(160, 1, 4, 0.22), 0 0 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.feature-copy {
  padding: 0.3rem 0.72rem 0.3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.feature-image {
  min-height: 100%;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.tag {
  color: #fff7fd;
  display: inline-block;
  background: linear-gradient(135deg, #c7319c, #c7333e);
  border-radius: 999px;
  padding: 0.38rem 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
}

.feature-copy h3 {
  margin: 0.28rem 0 1rem;
  font-size: clamp(2.15rem, 4.2vw, 3.85rem);
  color: #ffffff;
  font-weight: 900;
  line-height: 0.98;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.45;
  margin: 0 0 1.08rem;
  font-size: clamp(0.98rem, 1.08vw, 1.25rem);
}

.price-label {
  margin: 0;
  font-size: clamp(0.86rem, 0.98vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.price {
  margin: 0.35rem 0 1.45rem;
  font-size: clamp(2.85rem, 4vw, 4.35rem);
  font-weight: 900;
  color: #ffd7f0;
  line-height: 1;
}

.btn-light {
  background: #ffffff;
  color: #121015;
  border: none;
  font-weight: 800;
  border-radius: 16px;
  padding: 1rem 1.85rem;
  min-width: 228px;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.menu-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.menu-item {
  background: #fce4e9;
  border: 1px solid #f5c2d6;
  border-radius: 18px;
  padding: 1.45rem;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.32s ease, background 0.32s ease;
  box-shadow: 0 4px 16px rgba(199, 49, 156, 0.08), 0 0 1px rgba(0, 0, 0, 0.05);
  text-align: left;
  cursor: pointer;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  animation: menuCardIn 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--i, 0) * 55ms);
}

.menu-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 56px rgba(199, 49, 156, 0.15), 0 0 1px rgba(0, 0, 0, 0.08);
  border-color: #d946a6;
  background: #f5d0df;
}

.menu-item.is-featured {
  border-color: #d946a6;
  background: linear-gradient(145deg, #f5d0df 0%, #f8d9e8 52%, #f2c4dc 100%);
}

.menu-item-media {
  position: relative;
  width: 100%;
  height: 156px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.92rem;
  background: #ffeef6;
  border: 1px solid #f2cade;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.menu-item-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
  transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image {
  transform: scale(1.06);
}

.menu-item h4 {
  margin: 0;
  color: #0a0a0a;
  font-size: clamp(1.15rem, 1.55vw, 1.62rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.menu-item p {
  line-height: 1.52;
  color: #6b6570;
  font-size: clamp(0.96rem, 1.14vw, 1.2rem);
  margin: 0.8rem 0 0;
  flex: 1;
}

.menu-item strong {
  display: block;
  margin-top: 1.2rem;
  color: #a00160;
  font-size: clamp(1.2rem, 1.65vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.page-title-wrap {
  padding: 7.3rem 0 1.4rem;
  background: transparent;
}

.about-page-hero {
  background: #f3f3f3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 0 30 12 T60 12 T90 12 T120 12' fill='none' stroke='rgba(199,49,156,0.16)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 120px 24px;
}

.menu-page-hero,
.location-page-hero,
.reservation-page-hero {
  background: linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
}

.location-page-hero,
.reservation-page-hero {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(199, 49, 156, 0.06) 34px, rgba(199, 49, 156, 0.06) 35px),
    repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(199, 49, 156, 0.06) 34px, rgba(199, 49, 156, 0.06) 35px),
    linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
}

.franchise-page-hero,
.career-page-hero {
  background: linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
}

.title-card-component,
.page-title-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--title-card-radius);
  border: 1px solid rgba(199, 49, 156, 0.22);
  background: linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
  background-size: auto;
  background-repeat: repeat;
  box-shadow: 0 16px 34px rgba(199, 49, 156, 0.12);
  backdrop-filter: blur(10px) saturate(1.08);
  padding: clamp(1.5rem, 3vw, 2.3rem) clamp(1.2rem, 4.5vw, 3rem);
}

.page-title-card::before,
.page-title-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.page-title-card::before {
  width: 220px;
  height: 220px;
  right: -90px;
  top: -120px;
  background: radial-gradient(circle, rgba(199, 49, 156, 0.18) 0%, rgba(199, 49, 156, 0) 72%);
}

.page-title-card::after {
  width: 200px;
  height: 200px;
  left: -84px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(199, 51, 62, 0.16) 0%, rgba(199, 51, 62, 0) 72%);
}

.page-title-card .eyebrow {
  color: #93256a;
}

.page-title-card h1 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #671341;
}

.page-title-card h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #671341;
}

.page-title-card p {
  margin: 0;
  max-width: 700px;
  font-size: clamp(0.98rem, 1.45vw, 1.2rem);
  color: rgba(62, 27, 50, 0.86);
  line-height: 1.55;
}

body.theme-dark .menu .container {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%);
  border-color: rgba(215, 122, 177, 0.28);
}

body.theme-dark .menu .eyebrow {
  color: #f7acd8;
}

body.theme-dark .menu-title {
  color: #ffeaf8;
}

body.theme-dark .menu-title span {
  color: #dd4db0;
}

body.theme-dark .menu-sub {
  color: rgba(255, 232, 245, 0.86);
}

body.theme-dark .page-title-card {
  border-color: rgba(215, 122, 177, 0.28);
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%);
  background-size: auto;
  background-repeat: repeat;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: none;
}

body.theme-dark .page-title-card::before {
  background: radial-gradient(circle, rgba(199, 49, 156, 0.08) 0%, rgba(199, 49, 156, 0) 72%);
}

body.theme-dark .page-title-card::after {
  background: radial-gradient(circle, rgba(199, 51, 62, 0.08) 0%, rgba(199, 51, 62, 0) 72%);
}

body.theme-dark .menu-page-hero,
body.theme-dark .location-page-hero,
body.theme-dark .reservation-page-hero {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%) !important;
}

body.theme-dark .location-page-hero,
body.theme-dark .reservation-page-hero {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(199, 49, 156, 0.06) 34px, rgba(199, 49, 156, 0.06) 35px),
    repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(199, 49, 156, 0.06) 34px, rgba(199, 49, 156, 0.06) 35px),
    linear-gradient(180deg, #17141a 0%, #1e1822 100%);
}

body.theme-dark .franchise-page-hero,
body.theme-dark .career-page-hero {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%) !important;
}

body.theme-dark .about-page-hero {
  background: #211c24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 0 30 12 T60 12 T90 12 T120 12' fill='none' stroke='rgba(221,77,176,0.18)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 120px 24px;
}

body.theme-dark .menu-page-hero {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%) !important;
}

body.theme-dark .location-page-hero,
body.theme-dark .reservation-page-hero,
body.theme-dark .franchise-page-hero,
body.theme-dark .career-page-hero {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%) !important;
}





body.theme-dark .page-title-card .eyebrow {
  color: #f7acd8;
}

body.theme-dark .page-title-card h1 {
  color: #ffeaf8;
}

body.theme-dark .page-title-card h2 {
  color: #ffeaf8;
}

body.theme-dark .page-title-card p {
  color: rgba(255, 232, 245, 0.86);
}

.home-pages {
  padding: 2rem 0 5.2rem;
}

.home-pages-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  border-radius: 16px;
  background: linear-gradient(136deg, #f9d7ea 0%, #f3c0da 60%, #efb3d2 100%);
  color: #5a173d;
  font-weight: 800;
  border: 1px solid #e7b4d0;
  box-shadow: 0 10px 22px rgba(199, 49, 156, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-page-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(199, 49, 156, 0.18);
}

@media (max-width: 980px) {
  .home-pages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .home-pages-grid {
    grid-template-columns: 1fr;
  }
}

.menu-item small {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  background: #000000;
  border-radius: 999px;
  padding: 0.3rem 0.74rem;
}

.menu-tabs {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 233, 246, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.menu-tab {
  border: none;
  background: transparent;
  color: #6b6570;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(0) scale(1);
}

.menu-tab:hover {
  color: #c7319c;
  transform: translateY(-2px);
}

.menu-tab.is-active {
  background: linear-gradient(135deg, #c7319c, #c93898 48%, #c7333e);
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(160, 1, 4, 0.24);
  transform: translateY(-2px);
}

.menu-item-badge {
  position: absolute;
  top: 0.48rem;
  left: 0.48rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.76);
  color: #fff;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.82rem;
}

.menu-item.is-featured .menu-item-badge {
  background: linear-gradient(135deg, #c7319c, #c7333e);
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 11000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 15, 22, 0.56);
  backdrop-filter: blur(4px);
}

.menu-modal-panel {
  position: relative;
  width: min(780px, 93vw);
  margin: 8.5vh auto 0;
  background: #ffffff;
  border: 1px solid #e5e8ed;
  border-radius: 20px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.16), 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 1.2rem;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.38s ease;
}

.menu-modal.is-open .menu-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.menu-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.62rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  color: #221624;
  font-size: 1.36rem;
  cursor: pointer;
}

.menu-modal-title {
  margin: 0;
  font-size: 1.7rem;
  color: #000000;
}

.menu-modal-body {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: stretch;
}

.menu-modal-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e8c2dd;
  background: radial-gradient(circle at 45% 35%, #ffffff 0%, #ffeef9 56%, #f8d8ee 100%);
  animation: modalImagePop 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-modal-desc {
  margin: 0.7rem 0 0;
  color: #5e535f;
  line-height: 1.5;
  font-size: 1rem;
}

.menu-modal-price {
  margin: 0.95rem 0 0;
  color: #a00104;
  font-weight: 900;
  font-size: 2rem;
}

.menu-modal-cta {
  margin-top: 1rem;
  align-self: flex-start;
  padding: 0.82rem 1.3rem;
  border-radius: 12px;
  box-shadow: 0 12px 22px rgba(160, 1, 4, 0.24);
}

/* ============================================
   SECTION 6: LOCATION & RESERVATION
   Lines 1507-1750
   - Lokasi section layout
   - Location card with address and hours
   - Google Maps button
   - Reservation card
   - WhatsApp contact link styling
   - Visit card grid layout
   ============================================ */
.lokasi {
  background: linear-gradient(180deg, #fbfafb 0%, #f7f4f8 100%);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(199, 49, 156, 0.06) 34px, rgba(199, 49, 156, 0.06) 35px),
    repeating-linear-gradient(-45deg, transparent, transparent 34px, rgba(199, 49, 156, 0.06) 34px, rgba(199, 49, 156, 0.06) 35px);
}

.visit-head {
  text-align: center;
  margin-bottom: 1.85rem;
}

.visit-head .eyebrow {
  font-size: 0.65rem;
  padding: 0.48rem 1.05rem;
  letter-spacing: 0.09em;
  font-weight: 800;
}

.visit-title {
  margin: 0.45rem 0 0;
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  line-height: 1.05;
  color: #000000;
  font-weight: 900;
}

.visit-title span {
  color: #c7319c;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.visit-card {
  background: #ffffff;
  border: 1px solid #e8dfe6;
  border-radius: 24px;
  padding: 1.6rem 1.75rem 1.4rem;
  box-shadow: 0 4px 16px rgba(64, 27, 56, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.52rem;
  min-height: 0;
}

.visit-card h3 {
  margin: 0.08rem 0 0.04rem;
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  color: #000000;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.visit-card p {
  color: #72696f;
  line-height: 1.48;
  font-size: 0.9rem;
  letter-spacing: 0;
  max-width: 50ch;
  margin: 0.24rem 0 0;
  font-weight: 400;
}

.visit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 0.78rem;
  font-size: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
}

.visit-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  stroke-width: 2.1;
}

.visit-icon-location {
  background: linear-gradient(135deg, #c7319c 0%, #c93898 50%, #c7333e 100%);
}

.visit-icon-reserve {
  background: linear-gradient(135deg, #d4a635 0%, #c48a25 50%, #d4a635 100%);
}

.visit-chip {
  margin-top: 0.68rem;
  border-radius: 12px;
  background: #f0eff1;
  border: 1px solid #e6e3e8;
  padding: 0.8rem 0.95rem;
  font-size: 0.92rem;
}

.address {
  font-weight: 700;
  color: #1a1420;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.38rem;
  align-items: start;
}

.chip-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
}

.hours {
  margin: 0.64rem 0 0.9rem;
  font-weight: 700;
  color: #1a1420;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.hours .dot {
  color: #7ad198;
  font-size: 0.72rem;
}

.reserve-card h3 {
  margin: 0.08rem 0 0.04rem;
  color: #000000;
}

.reserve-card p {
  color: #72696f;
  line-height: 1.48;
}

.wa {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.52rem;
}

.wa-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #f8f7f9;
  border: 1px solid #e6e0e8;
  display: grid;
  place-items: center;
  font-size: 0.98rem;
  flex-shrink: 0;
}

.wa small {
  display: block;
  font-size: 0.68rem;
  color: #72696f;
  margin-bottom: 0.06rem;
  font-weight: 600;
}

.wa strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: 0;
  color: #000000;
  font-weight: 900;
}

.visit-card .btn {
  width: 100%;
  min-width: 0;
  margin-top: 0.42rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.005em;
  padding: 0.88rem 1.4rem;
  border-radius: 15px;
  text-align: center;
}

.reservation-page-hero + .lokasi .visit-grid {
  max-width: 1120px;
  margin: 0 auto;
}

.reservation-page-hero + .lokasi .reserve-card {
  padding: 2.2rem 2.4rem 2rem;
}

.reservation-page-hero + .lokasi .reserve-card p {
  text-align: justify;
  max-width: none;
  line-height: 1.68;
  font-size: 1rem;
}

.reservation-page-hero + .lokasi .reserve-card h3 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.reservation-form-heading {
  margin: 1rem 0 1.15rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #251722;
}

.reservation-page-hero + .lokasi .application-form {
  width: 100%;
  max-width: none;
  margin: 0.2rem 0 0;
  padding: 2rem;
  border-radius: 1.3rem;
}

.reservation-page-hero + .lokasi .form-row {
  gap: 1.3rem;
}

.reservation-page-hero + .lokasi .form-group {
  margin-bottom: 1.05rem;
}

.reservation-page-hero + .lokasi .form-input,
.reservation-page-hero + .lokasi .form-select,
.reservation-page-hero + .lokasi .form-textarea {
  padding: 1rem 1.15rem;
  font-size: 1rem;
  border-radius: 0.78rem;
}

.reservation-page-hero + .lokasi .form-textarea {
  min-height: 140px;
}

.reservation-page-hero + .lokasi .btn-submit {
  margin-top: 1.25rem;
  padding: 1.1rem;
  font-size: 1rem;
  border-radius: 0.95rem;
}

.franchise-page-hero + .franchise .franchise-contact-form {
  width: 100%;
  max-width: none;
  margin: 0;
}

.career-page-hero + .karir .application-form {
  width: 100%;
  max-width: 500px;
}

.menu-page-hero + .menu {
  background: linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
}

body.theme-dark .menu-page-hero + .menu {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%);
}

.footer-logo {
  width: min(240px, 70%);
  margin-bottom: 0.5rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.socials a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  font-weight: 600;
}

/* Franchise Benefits Grid */
.franchise-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
  margin: 3rem 0;
}

.benefit-card {
  background: var(--card-background);
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(217, 70, 166, 0.15);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d946a6, #c7319c);
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.benefit-card h3 {
  margin: 0;
  color: #43143c;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.benefit-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  flex-grow: 1;
}

.benefit-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.amount-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.amount-item .label {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  font-weight: 600;
}

.amount-item .value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fbbf24;
}

/* Large Benefit Card */
.benefit-card-large {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.benefit-icon-large {
  width: 70px;
  height: 70px;
  min-width: 70px;
  font-size: 2rem;
}

.benefit-content {
  flex-grow: 1;
}

.benefit-content h3 {
  font-size: 1.3rem;
}

.benefit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(13, 168, 79, 0.1);
  border: 1px solid rgba(13, 168, 79, 0.3);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0da84f;
}

/* Franchise CTA Section */
.franchise-cta {
  text-align: center;
  margin: 4rem 0 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(217, 70, 166, 0.1), rgba(13, 168, 79, 0.05));
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.cta-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d946a6;
  margin-bottom: 1rem;
}

.franchise-cta h2 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
  font-weight: 900;
}

.cta-description {
  max-width: 50ch;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  gap: 0.5rem;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cta-disclaimer {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  text-transform: lowercase;
}

/* Franchise Contact Form */
.franchise-form-title {
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 900;
}

.franchise-contact-form {
  max-width: 750px;
  margin: 0 auto;
  background: var(--card-background);
  padding: 2.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
}

/* ============================================
   SECTION 8: FORMS & INPUT ELEMENTS
   Lines 1995-2200
   - Form container styling
   - Form input styling (text, select, textarea)
   - Form group and layout
   - Focus states
   - Placeholder styling
   - Form validation styles
   - Submit button styling
   ============================================ */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
  background: var(--card-background);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.karir-intro {
  max-width: 70ch;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  text-align: center;
  font-size: 1.05rem;
}

/* Career Contact Info */
.karir-contact {
  display: flex;
  gap: 2rem;
  max-width: 500px;
  margin: 2.5rem auto 3rem;
  padding: 2rem;
  background: var(--card-background);
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  justify-content: center;
}

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

.contact-icon {
  font-size: 1.8rem;
  display: inline-block;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-label {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item a {
  margin: 0;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.form-subtitle {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.application-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-background);
  padding: 2.5rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 70, 166, 0.1);
  background: var(--card-background);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.karir p {
  max-width: 70ch;
  line-height: 1.8;
  color: var(--muted-foreground);
}

/* ============================================
   CAREER PAGE STYLES
   - Career intro section
   - Job info box
   - Job listings accordion cards
   - Form section
   ============================================ */

.career-intro {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #faf8fa 0%, #f9f7fa 100%);
  text-align: center;
}

.career-intro-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #c7319c;
  margin-bottom: 1rem;
}

.career-intro-description {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: #5f5660;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.career-info-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff2f8 0%, #ffeaf4 100%);
  border: 2px solid #c7319c;
  border-radius: 1.2rem;
  padding: 2rem;
}

.info-box-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c7319c;
  margin-bottom: 0.8rem;
}

.info-box-content p {
  font-size: 0.95rem;
  color: #5f5660;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  font-weight: 700;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 49, 156, 0.3);
}

/* JOB LISTINGS */
.job-listings {
  padding: 3.5rem 0;
}

.jobs-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.job-card {
  background: #ffffff;
  border: 1px solid #e8e0e8;
  border-radius: 1rem;
  padding: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.job-card:hover {
  border-color: #c7319c;
  box-shadow: 0 4px 16px rgba(199, 49, 156, 0.1);
  transform: translateY(-2px);
}

.job-card.expanded {
  border-color: #c7319c;
  box-shadow: 0 4px 16px rgba(199, 49, 156, 0.15);
  background: #ffffff;
}

.job-card-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.2s ease;
}

.job-number {
  background: linear-gradient(135deg, #c7319c 0%, #d94aa6 100%);
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.job-header-content {
  flex: 1;
}

.job-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1620;
  margin: 0 0 0.5rem;
}

.job-description {
  font-size: 0.95rem;
  color: #5f5660;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.job-badge {
  display: inline-block;
  background: #eccb30;
  color: #1a1620;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.job-toggle-icon {
  color: #c7319c;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.job-card.expanded .job-toggle-icon {
  transform: rotate(180deg);
}

.job-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  opacity: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  visibility: hidden;
}

.job-card.expanded .job-details {
  max-height: 1200px;
  opacity: 1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 0;
  border-top: 1px solid #e8e0e8;
  visibility: visible;
}

.job-details-section {
  margin-bottom: 1.5rem;
}

.job-details-section:last-child {
  margin-bottom: 0;
}

.job-details-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #c7319c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.job-details-text {
  color: #5f5660;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.job-qualifications {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-qualifications li {
  color: #5f5660;
  line-height: 1.6;
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
  font-size: 0.95rem;
}

.job-qualifications li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c7319c;
  font-weight: 700;
}

.job-apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c7319c 0%, #d94aa6 100%);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 0.6rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  cursor: pointer;
  border: none;
}

.job-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(199, 49, 156, 0.3);
}

.form-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  color: #1a1620;
  margin: 0 0 2rem;
  text-align: center;
}

/* DARK MODE - CAREER PAGE */
body.theme-dark .career-intro {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%);
}

body.theme-dark .career-intro-title {
  color: #ff69d4;
}

body.theme-dark .career-intro-description {
  color: #b8a8bb;
}

body.theme-dark .career-info-box {
  background: linear-gradient(135deg, rgba(199, 49, 156, 0.1) 0%, rgba(217, 70, 166, 0.08) 100%);
  border-color: #c7319c;
}

body.theme-dark .info-box-content h3 {
  color: #ff69d4;
}

body.theme-dark .info-box-content p {
  color: #b8a8bb;
}

body.theme-dark .job-card {
  background: #1e1822;
  border-color: rgba(199, 49, 156, 0.3);
}

body.theme-dark .job-card:hover {
  border-color: #c7319c;
  box-shadow: 0 4px 16px rgba(199, 49, 156, 0.2);
}

body.theme-dark .job-card.expanded {
  border-color: #c7319c;
  box-shadow: 0 4px 16px rgba(199, 49, 156, 0.25);
  background: #1e1822;
}

body.theme-dark .job-title {
  color: #f0e6f0;
}

body.theme-dark .job-description,
body.theme-dark .job-details-text,
body.theme-dark .job-qualifications li {
  color: #b8a8bb;
}

body.theme-dark .job-badge {
  background: #eccb30;
  color: #1a1620;
}

body.theme-dark .job-toggle-icon {
  color: #ff69d4;
}

body.theme-dark .job-details {
  border-top-color: rgba(199, 49, 156, 0.2);
}

body.theme-dark .job-details-title {
  color: #ff69d4;
}

body.theme-dark .job-qualifications li:before {
  color: #ff69d4;
}

body.theme-dark .form-title {
  color: #f0e6f0;
}

/* ============================================
   SECTION 7: FOOTER
   Lines 2222-2400
   - Footer layout and grid
   - Brand logo and description
   - Social media links
   - Navigation links in footer
   - Contact information
   - Copyright and badges
   - Footer background (black)
   ============================================ */
.site-footer {
  background: #000000;
  color: #fff5fc;
  border-top: 1px solid rgba(199, 49, 156, 0.3);
  padding: 56px 0 30px;
}

body.theme-dark .site-footer {
  background: #000000;
  border-top-color: rgba(199, 49, 156, 0.3);
}

body.theme-dark .footer-col h4 {
  color: #ffffff;
  border-bottom-color: rgba(199, 49, 156, 0.5);
}

body.theme-dark .copyright {
  color: #999999;
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.theme-dark .badge-text {
  color: #666666;
}

body.theme-dark .footer-description {
  color: #e8d4e6;
}

body.theme-dark .footer-label {
  color: #b8a8bb;
}

body.theme-dark .footer-col a,
body.theme-dark .footer-col p,
body.theme-dark .footer-address,
body.theme-dark .footer-time {
  color: #e8d4e6;
}

body.theme-dark .socials a {
  border: none;
  color: #fff;
}

body.theme-dark .socials a.social-ig {
  background: #d946a6;
}

body.theme-dark .socials a.social-tiktok {
  background: #d946a6;
}

body.theme-dark .socials a.social-wa {
  background: #34a853;
}

body.theme-dark .socials a:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   SECTION 9: DARK MODE STYLES
   Lines 2315-2900
   - Dark mode color overrides for all sections
   - Dark backgrounds for sections (about, menu, lokasi, etc)
   - Dark mode navbar and header
   - Dark mode form inputs
   - Dark mode buttons and interactive elements
   - Dark mode footer
   - Maintains color contrast and readability
   ============================================ */
body.theme-dark .about,
body.theme-dark .menu,
body.theme-dark .reservasi,
body.theme-dark .karir,
body.theme-dark .lokasi {
  background: linear-gradient(180deg, #17141a 0%, #1e1822 100%);
}

body.theme-dark .about {
  background: #211c24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='24' viewBox='0 0 120 24'%3E%3Cpath d='M0 12 Q15 0 30 12 T60 12 T90 12 T120 12' fill='none' stroke='rgba(221,77,176,0.18)' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 120px 24px;
}

body.theme-dark .menu {
  background: radial-gradient(circle at 18% 86%, rgba(199, 51, 62, 0.26) 0%, rgba(199, 51, 62, 0) 38%),
    radial-gradient(circle at 84% 8%, rgba(201, 56, 152, 0.28) 0%, rgba(201, 56, 152, 0) 34%),
    linear-gradient(180deg, #1b0a20 0%, #200522 50%, #2b0424 100%);
  background-image: radial-gradient(circle, rgba(255, 116, 207, 0.15) 1px, transparent 1px),
    radial-gradient(circle at 18% 86%, rgba(199, 51, 62, 0.26) 0%, rgba(199, 51, 62, 0) 38%),
    radial-gradient(circle at 84% 8%, rgba(201, 56, 152, 0.28) 0%, rgba(201, 56, 152, 0) 34%),
    linear-gradient(180deg, #1b0a20 0%, #200522 50%, #2b0424 100%);
  background-size: 22px 22px, auto, auto, auto;
}

body.theme-dark .menu-sub {
  color: #b9aeb8;
}

body.theme-dark .menu::before {
  opacity: 0.12;
}

body.theme-dark .menu::after {
  opacity: 0.1;
}

body.theme-dark .menu-item {
  background: #1a1620;
  border-color: #3a3640;
}

body.theme-dark .menu-item:hover {
  background: #20191f;
}

body.theme-dark .menu-item p {
  color: #c5bcc5;
}

body.theme-dark .menu-item-media {
  background: linear-gradient(135deg, #262029 0%, #1f1a23 100%);
  border-color: #3a3640;
}

body.theme-dark .menu-item-image {
  filter: brightness(1.15) saturate(1.05);
}

body.theme-dark .menu-tabs {
  background: rgba(26, 22, 32, 0.6);
  border-color: rgba(0, 0, 0, 0.15);
}

body.theme-dark .menu-tab {
  background: transparent;
  border: none;
  color: #a89ba8;
}

body.theme-dark .menu-tab:hover {
  color: #dd4db0;
  border: none;
}

body.theme-dark .menu-tab.is-active {
  background: linear-gradient(135deg, #c7319c, #c93898 48%, #c7333e);
}

body.theme-dark .menu-modal-panel {
  background: #1a1620;
  border-color: #3a3640;
}

body.theme-dark .menu-modal-backdrop {
  background: rgba(14, 10, 15, 0.66);
}

body.theme-dark .menu-modal-close {
  background: #3a3240;
  color: #efe8ef;
}

body.theme-dark .menu-modal-title {
  color: #fff6fd;
}

body.theme-dark .menu-modal-desc {
  color: #cfbdd0;
}

body.theme-dark .menu-modal-price {
  color: #eccb30;
}

body.theme-dark .menu-modal-image {
  border-color: #3a3640;
  background: linear-gradient(135deg, #262029 0%, #1f1a23 100%);
}

body.theme-dark .menu-title span {
  color: #dd4db0;
}

body.theme-dark .btn-light {
  background: #f6f3f6;
  color: #201822;
}

body.theme-dark .feature-card {
  /* Ensure feature card remains vibrant and visible in dark mode */
  background: linear-gradient(135deg, #c7319c 0%, #c93898 35%, #c7333e 70%, #a00104 100%);
  box-shadow: 0 24px 48px rgba(160, 1, 4, 0.32), 0 0 1px rgba(0, 0, 0, 0.1);
}

body.theme-dark .feature-copy h3 {
  color: #ffffff;
}

body.theme-dark .feature-copy p {
  color: rgba(255, 255, 255, 0.95);
}

body.theme-dark .feature-card .btn-light {
  /* Ensure button is visible on the gradient */
  background: #ffffff;
  color: #121015;
}

body.theme-dark .lokasi {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(221, 77, 176, 0.08) 30px, rgba(221, 77, 176, 0.08) 31px),
    repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(221, 77, 176, 0.08) 30px, rgba(221, 77, 176, 0.08) 31px);
}

body.theme-dark .visit-title {
  color: #f8f3f7;
}

body.theme-dark .visit-card {
  background: #1e1823;
  border-color: #5a4758;
}

body.theme-dark .visit-card h3,
body.theme-dark .address,
body.theme-dark .hours,
body.theme-dark .wa strong {
  color: #f8f3f7;
}

body.theme-dark .visit-card p,
body.theme-dark .wa small {
  color: #d4bac8;
}

body.theme-dark .visit-chip {
  background: #2c232f;
  border-color: #5a4758;
}

body.theme-dark .wa-icon {
  background: #35293a;
  border-color: #5a4758;
}

body.theme-dark .hero-copy h1,
body.theme-dark .about-copy h2,
body.theme-dark .menu h2,
body.theme-dark .lokasi h2,
body.theme-dark .franchise h2,
body.theme-dark .karir h2,
body.theme-dark .menu-item h4,
body.theme-dark .location-card h3,
body.theme-dark .franchise-grid h3,
body.theme-dark .benefit-card h3,
body.theme-dark .timeline-wrap h3,
body.theme-dark .reserve-card h3 {
  color: var(--foreground);
}

body.theme-dark .benefit-card {
  border-color: #3a3a3a;
}

body.theme-dark .benefit-card:hover {
  border-color: var(--primary);
}

body.theme-dark .badge {
  background: rgba(13, 168, 79, 0.15);
  border-color: rgba(13, 168, 79, 0.4);
}

body.theme-dark .franchise-cta {
  background: linear-gradient(135deg, rgba(217, 70, 166, 0.08), rgba(13, 168, 79, 0.03));
  border-color: #3a3a3a;
}

body.theme-dark .application-form {
  border-color: #3a3a3a;
}

body.theme-dark .application-form {
  border-color: #3a3a3a;
}

body.theme-dark .form-input,
body.theme-dark .form-select,
body.theme-dark .form-textarea {
  background: #1a1a1a;
  border-color: #3a3a3a;
  color: var(--foreground);
}

body.theme-dark .form-input:focus,
body.theme-dark .form-select:focus,
body.theme-dark .form-textarea:focus {
  border-color: var(--primary);
  background: #222;
}

body.theme-dark .karir-contact {
  background: #1a1a1a;
  border-color: #3a3a3a;
}

body.theme-dark .hero-copy h2 {
  color: #e84ab6;
}

body.theme-dark .hero {
  background: radial-gradient(circle at 18% 86%, rgba(199, 51, 62, 0.3) 0%, rgba(199, 51, 62, 0) 38%),
    radial-gradient(circle at 84% 8%, rgba(201, 56, 152, 0.34) 0%, rgba(201, 56, 152, 0) 34%),
    linear-gradient(180deg, #1b0a20 0%, #200522 50%, #2b0424 100%);
  background-image: radial-gradient(circle, rgba(255, 116, 207, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 18% 86%, rgba(199, 51, 62, 0.3) 0%, rgba(199, 51, 62, 0) 38%),
    radial-gradient(circle at 84% 8%, rgba(201, 56, 152, 0.34) 0%, rgba(201, 56, 152, 0) 34%),
    linear-gradient(180deg, #1b0a20 0%, #200522 50%, #2b0424 100%);
  background-size: 22px 22px, auto, auto, auto;
}

body.theme-dark .hero-bg-shape {
  opacity: 0.12;
}

body.theme-dark .hero-title-top {
  color: #f6f0f5;
}

body.theme-dark .hero-title-bottom {
  color: #dd4db0;
}

body.theme-dark .hero-copy p {
  color: #c8b7c3;
}

body.theme-dark .hero-media {
  background: linear-gradient(180deg, rgba(56, 31, 61, 0.9) 0%, rgba(42, 20, 45, 0.9) 100%);
  box-shadow: 0 22px 44px rgba(7, 2, 9, 0.42);
}

body.theme-dark .badge-card {
  background: linear-gradient(135deg, rgba(44, 29, 48, 0.86) 0%, rgba(33, 21, 37, 0.84) 100%);
  border-color: rgba(156, 128, 153, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 12px 26px rgba(0, 0, 0, 0.28);
}

body.theme-dark .badge-card strong {
  color: #f7f1f6;
  font-size: 0.9rem;
  font-weight: 800;
}

body.theme-dark .badge-card small {
  color: #8bf0bd;
  font-size: 0.56rem;
  letter-spacing: 0.01em;
}

body.theme-dark .badge-card:first-child {
  background: linear-gradient(135deg, rgba(33, 48, 39, 0.9) 0%, rgba(33, 37, 36, 0.84) 100%);
  border-color: rgba(24, 182, 102, 0.86);
}

body.theme-dark .badge-card:first-child span {
  background: #18b666;
  color: #ffffff;
}

body.theme-dark .badge-card:first-child strong,
body.theme-dark .badge-card:first-child small {
  color: #67efad;
}

body.theme-dark .badge-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(49, 30, 53, 0.88) 0%, rgba(36, 23, 40, 0.84) 100%);
  border-color: rgba(184, 151, 180, 0.32);
}

body.theme-dark .badge-card:nth-child(2) span {
  background: rgba(0, 0, 0, 0.26);
  color: #ffd35f;
}

body.theme-dark .badge-card:nth-child(2) small {
  color: #c9bdc9;
}

body.theme-dark .hero-copy p,
body.theme-dark .text-link,
body.theme-dark .menu-sub {
  color: var(--muted-foreground);
}

body.theme-dark .about-title {
  color: #f4eff3;
}

body.theme-dark .about-title span {
  color: #dd4db0;
}

body.theme-dark .about-copy p {
  color: #ece5eb;
}

body.theme-dark .about-copy p + p {
  color: #bdb0bb;
}

body.theme-dark .timeline-title {
  color: #f4eff3;
}

body.theme-dark .timeline-title span {
  color: #f0cf3f;
}

body.theme-dark .btn-secondary {
  background: #f0cf3f;
  color: #2c1b27;
}

body.theme-dark .timeline-line {
  background: rgba(221, 77, 176, 0.25);
}

body.theme-dark .timeline-item::before {
  background: #241e27;
  border-color: #dd4db0;
  box-shadow: inset 0 0 0 3px #241e27, 0 0 0 1px rgba(221, 77, 176, 0.24);
}

body.theme-dark .socials a {
  border-color: var(--border);
  color: #f3dfea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.8rem;
  margin-bottom: 2.2rem;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 1.4rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  padding-bottom: 0.9rem;
  border-bottom: 2px solid #d946a6;
}

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

.footer-logo {
  width: min(180px, 80%);
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.91rem;
  line-height: 1.65;
  color: #e8d8e8;
  margin: 0 0 1.6rem;
  font-weight: 400;
}

.site-footer .socials {
  display: flex;
  gap: 1.1rem;
  margin-top: auto;
}

.site-footer .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: none;
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 600;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0;
  cursor: pointer;
  line-height: 0;
  aspect-ratio: 1;
  text-decoration: none;
  overflow: hidden;
}

.site-footer .socials a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.site-footer .socials a.social-ig {
  background: #d946a6;
}

.site-footer .socials a.social-tiktok {
  background: #d946a6;
}

.site-footer .socials a.social-wa {
  background: #34a853;
}

.site-footer .socials a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0.68rem 0;
  color: #e8d8e8;
  font-size: 0.93rem;
  line-height: 1.62;
}

.footer-col a {
  text-decoration: none;
  transition: color 0.24s ease;
}

.footer-col a:hover {
  color: #fff8d8;
}

.footer-contact-item {
  margin-bottom: 1.2rem;
}

.footer-label {
  margin: 0 0 0.35rem;
  color: #c8b5c6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.footer-address {
  margin: 0 0 1.2rem;
  font-size: 0.93rem;
  line-height: 1.6;
  color: #fff2fb;
}

.footer-hours {
  display: flex;
  flex-direction: column;
}

.footer-time {
  margin: 0.2rem 0 0.1rem;
  color: #fff2fb;
  font-size: 0.93rem;
  font-weight: 600;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.footer-status {
  margin: 0.2rem 0 0;
  color: #f5f0f5;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.copyright {
  text-align: left;
  margin: 0;
  color: #888888;
  font-size: 0.84rem;
  border: none;
  padding: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.1rem clamp(1rem, 3.2vw, 2.4rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 1.25rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.badge-text {
  color: #999999;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-halal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  padding: 0.52rem 1.05rem;
  border: 2px solid #34a853;
  border-radius: 22px;
  background: transparent;
  text-decoration: none;
  transition: all 0.28s ease;
  cursor: pointer;
}

.badge-halal:hover {
  background: rgba(52, 168, 83, 0.15);
  border-color: #34a853;
  transform: scale(1.04);
}

.halal-symbol {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #13a84f;
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.halal-label {
  color: #34a853;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.badge-verified {
  display: inline-block;
  padding: 0.56rem 0.98rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  color: #e8d8e8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

.badge-verified:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.badge-bpom {
  display: inline-block;
  padding: 0.56rem 0.98rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  color: #e8d8e8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

.badge-bpom:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

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

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

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

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

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

@keyframes themeWipe {
  0% {
    clip-path: circle(0 at var(--tx) var(--ty));
    opacity: 0.42;
  }
  70% {
    opacity: 0.98;
  }
  100% {
    clip-path: circle(150vmax at var(--tx) var(--ty));
    opacity: 1;
  }
}

@keyframes menuCardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalImagePop {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-modal-panel,
  .menu-modal-image,
  .menu-grid,
  .menu-item,
  .menu-item-image {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================
   SECTION 10: RESPONSIVE & MEDIA QUERIES
   Lines 3045-end
   - Tablet responsive (max-width: 980px)
   - Mobile responsive (max-width: 640px)
   - Prefers reduced motion
   - Breakpoint 1: Tablet (641px-980px)
   - Breakpoint 2: Mobile (below 640px)
   - Font scaling for devices
   - Navigation adjustments
   - Menu grid and form adjustments
   ============================================ */
@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .visit-grid,
  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card {
    gap: 1.1rem;
    padding: 1.2rem;
    max-width: 760px;
  }

  .feature-copy {
    padding: 0.2rem;
  }

  .feature-copy p {
    font-size: 1.02rem;
    line-height: 1.46;
  }

  .price-label {
    font-size: 0.92rem;
  }

  .price {
    font-size: clamp(3.1rem, 10vw, 4rem);
  }

  .menu h2 {
    font-size: clamp(2.4rem, 8.8vw, 3.5rem);
  }

  .menu-sub {
    font-size: clamp(1rem, 3.2vw, 1.25rem);
  }

  .btn-light {
    min-width: 220px;
  }

  .menu-grid,
  .franchise-grid,
  .franchise-benefits,
  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transition: opacity 0.26s ease, transform 0.26s ease;
  }

  .benefit-card-large {
    grid-column: 1 / -1;
    flex-direction: column;
    text-align: center;
  }

  .benefit-card-large .benefit-icon-large {
    margin: 0 auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .application-form {
    padding: 1.8rem;
  }

  .karir-contact {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }

  .menu-grid.is-switching {
    opacity: 0;
    transform: translateY(10px);
  }

  .menu-item {
    min-height: 320px;
  }

  .menu-item-media {
    height: 132px;
  }

  .menu-modal-body {
    grid-template-columns: 1fr;
  }

  .menu-modal-image {
    min-height: 220px;
    max-height: 260px;
  }

  .timeline-line {
    left: 18px;
    transform: none;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: calc(100% - 42px);
    margin-left: 42px;
    margin-right: 0;
  }

  .timeline-item.left::before,
  .timeline-item.right::before {
    left: -30px;
    right: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .about-content {
    gap: 1.8rem;
  }

  .about-title {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }

  .about-copy p {
    font-size: 1.03rem;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .visit-card {
    min-height: 0;
    padding: 1.3rem 1.15rem;
  }

  .visit-card h3 {
    font-size: clamp(1.4rem, 3.8vw, 1.8rem);
  }

  .wa strong {
    font-size: 1.2rem;
  }

  .visit-card .btn {
    width: 100%;
    padding: 0.78rem 1.1rem;
    font-size: 0.75rem;
  }

  .hero-media {
    max-width: 720px;
    margin: 0 auto;
  }

  .nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    min-height: 66px;
    position: relative;
    gap: 0.6rem;
    padding: 0 1rem;
    transition: min-height 0.3s ease;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    order: 1;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    width: 38px;
    height: 38px;
    font-size: 1.12rem;
    z-index: 1000;
    position: relative;
    order: 3;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #b83295 0%, #a72b87 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    padding: 1.2rem 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    animation: slideDownMenu 0.3s ease both;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }

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

  body.theme-dark .main-nav {
    background: linear-gradient(180deg, #7f2369 0%, #6b1c58 100%);
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: none;
    opacity: 1;
    transition: all 0.2s ease;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a:hover {
    color: #ffe9f8;
    padding-left: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    transform: none;
  }

  .main-nav a.active {
    color: #fbbf24;
    font-weight: 800;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 0;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-actions {
    display: inline-flex;
    position: relative;
    gap: 0.4rem;
    z-index: 1001;
    order: 4;
  }
}

@media (max-width: 640px) {
  section {
    padding: 80px 0;
  }

  .menu-grid,
  .franchise-grid,
  .franchise-benefits,
  .footer-grid,
  .hero-badges {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 96px;
  }

  .menu-item h4 {
    font-size: 1.2rem;
  }

  .menu-item {
    min-height: 292px;
    padding: 1rem;
  }

  .menu-item-media {
    height: 118px;
    margin-bottom: 0.66rem;
  }

  .menu-item p {
    font-size: 0.92rem;
    margin-top: 0.5rem;
  }

  .menu-item strong {
    font-size: 1.3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .hero-copy h2 {
    font-size: 1.3rem;
  }

  .about-title {
    font-size: clamp(1.95rem, 9vw, 2.6rem);
  }

  .timeline-title {
    font-size: clamp(2rem, 8.6vw, 3rem);
  }

  .hero-copy h1 {
    line-height: 1;
  }

  .hero .eyebrow {
    font-size: 0.62rem;
  }

  .hero-media {
    padding: 0.7rem;
  }

  .hero-float {
    font-size: 1.25rem;
  }

  .menu-sub {
    font-size: 1rem;
  }

  .feature-card {
    margin-top: 1.7rem;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .feature-image img {
    min-height: 220px;
    border-radius: 12px;
  }

  .feature-copy h3 {
    font-size: clamp(2.05rem, 13.5vw, 2.8rem);
  }

  .feature-copy p {
    font-size: 0.95rem;
  }

  .price {
    font-size: clamp(2.6rem, 13.6vw, 3.5rem);
  }

  .btn-light {
    min-width: 0;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .menu-tabs {
    width: 100%;
    justify-content: center;
    gap: 0.55rem;
  }

  .menu-tab {
    padding: 0.62rem 1.2rem;
    font-size: 0.8rem;
  }

  .menu-modal-panel {
    width: 94vw;
    margin-top: 4.5vh;
    padding: 0.8rem;
  }

  .menu-modal-title {
    font-size: 1.32rem;
  }

  .menu-modal-price {
    font-size: 1.65rem;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .visit-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .visit-card {
    padding: 1.1rem 0.95rem;
    gap: 0.42rem;
  }

  .visit-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 0.58rem;
  }

  .visit-icon svg {
    width: 23px;
    height: 23px;
  }

  .visit-card h3 {
    font-size: 1.5rem;
  }

  .visit-card p {
    font-size: 0.85rem;
  }

  .address {
    font-size: 0.78rem;
  }

  .hours {
    font-size: 0.82rem;
  }

  .wa strong {
    font-size: 1.2rem;
  }

  .visit-card .btn {
    width: 100%;
    padding: 0.78rem 1rem;
    font-size: 0.7rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-col {
    order: 1;
  }

  .footer-brand {
    order: -1;
  }

  .footer-logo {
    width: min(140px, 70%);
  }

  .footer-description {
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
  }

  .footer-col h4 {
    font-size: 0.85rem;
  }

  .footer-col a,
  .footer-col p,
  .footer-address,
  .footer-time {
    font-size: 0.88rem;
  }

  .socials {
    gap: 0.6rem;
  }

  .socials a {
    width: 36px;
    height: 36px;
  }

  .site-footer {
    padding: 40px 0 25px;
  }

  .copyright {
    font-size: 0.85rem;
    margin-top: 1.2rem;
  }
}
