/* 
  Sayora Brand Style - Premium & Modern
  Designed for Luxury Retail, Health, and Beauty Experience
*/

/* --- 1. DESIGN SYSTEM VARIABLES --- */
:root {
  /* Common Core Tokens */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  --border-radius-xl: 42px;

  /* Theme: Luxury Light (Default) */
  --primary: #820000;
  --primary-dark: #460000;
  --primary-light: #b00000;
  --cream: #ffeedc;
  --cream-soft: #fff8f1;
  
  --bg-color: #fff8f1;
  --bg-gradient: linear-gradient(135deg, #fff8f1 0%, #ffeedc 46%, #ffe2cc 100%);
  --text-color: #352c28;
  --muted-color: #6f625c;
  
  --glass-bg: rgba(255, 255, 255, 0.48);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow: rgba(73, 31, 0, 0.05);
  
  --header-bg: rgba(255, 255, 255, 0.72);
  --header-border: rgba(130, 0, 0, 0.08);
  
  --card-bg: rgba(255, 255, 255, 0.44);
  --card-border: rgba(255, 255, 255, 0.55);
  
  --orb-1: rgba(130, 0, 0, 0.12);
  --orb-2: rgba(255, 255, 255, 0.72);
  --orb-3: rgba(130, 0, 0, 0.06);
  
  --marquee-bg: linear-gradient(135deg, #460000 0%, #820000 100%);
  --marquee-text: #fff;
  --timeline-line: rgba(130, 0, 0, 0.15);
  --stat-hover: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] {
  /* Theme: Obsidian Dark Mode */
  --primary: #ff3e55;
  --primary-dark: #8c0a1a;
  --primary-light: #ff7a8a;
  --cream: #121214;
  --cream-soft: #09090a;
  
  --bg-color: #080809;
  --bg-gradient: linear-gradient(135deg, #060607 0%, #0d0909 50%, #170b0c 100%);
  --text-color: #f3eae5;
  --muted-color: #a69a93;
  
  --glass-bg: rgba(18, 15, 14, 0.65);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: rgba(0, 0, 0, 0.55);
  
  --header-bg: rgba(8, 8, 9, 0.82);
  --header-border: rgba(255, 255, 255, 0.04);
  
  --card-bg: rgba(18, 15, 14, 0.52);
  --card-border: rgba(255, 255, 255, 0.05);
  
  --orb-1: rgba(140, 10, 20, 0.12);
  --orb-2: rgba(10, 10, 12, 0.95);
  --orb-3: rgba(255, 77, 98, 0.02);
  
  --marquee-bg: linear-gradient(135deg, #140305 0%, #22080c 100%);
  --marquee-text: #ffeedc;
  --timeline-line: rgba(255, 255, 255, 0.08);
  --stat-hover: rgba(22, 18, 17, 0.72);
}

/* --- 2. GLOBAL RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--text-color);
  overflow-x: hidden;
  position: relative;
  transition: background 0.5s ease, color 0.5s ease;
}

body.loading {
  overflow: hidden;
}

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

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

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cream-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-dark);
  border-radius: 99px;
  border: 2px solid var(--cream-soft);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* --- 3. CUSTOM MOUSE CURSOR & GLOW --- */
.cursor-glow {
  position: fixed;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 0, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -3;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

[data-theme="dark"] .cursor-glow {
  background: radial-gradient(circle, rgba(255, 71, 71, 0.06) 0%, transparent 70%);
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.3s ease;
}

.custom-cursor-ring {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), 
              height 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), 
              border-color 0.3s ease, 
              background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-text {
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}

/* Custom Cursor States */
body.cursor-hovering-link .custom-cursor-ring {
  width: 60px;
  height: 60px;
  background-color: rgba(130, 0, 0, 0.05);
  border-color: var(--primary-light);
}

body.cursor-hovering-link[data-theme="dark"] .custom-cursor-ring {
  background-color: rgba(255, 71, 71, 0.05);
}

body.cursor-hovering-link .custom-cursor-dot {
  width: 4px;
  height: 4px;
}

body.cursor-hovering-zoom .custom-cursor-ring {
  width: 76px;
  height: 76px;
  background-color: var(--primary);
  border-color: var(--primary);
}

body.cursor-hovering-zoom .cursor-text {
  opacity: 1;
  transform: scale(1);
}

body.cursor-hovering-zoom .custom-cursor-dot {
  opacity: 0;
}

body.cursor-hovering-interactive .custom-cursor-ring {
  width: 80px;
  height: 80px;
  border-style: dashed;
  animation: spin 12s linear infinite;
}

body.cursor-hovering-interactive .custom-cursor-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-light);
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor-dot, .custom-cursor-ring {
    display: none;
  }
}

/* --- 4. SCREEN LOADER --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, rgba(255,238,220,0.1), transparent 35%), 
              linear-gradient(135deg, #1b0202 0%, #460000 60%, #820000 100%);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
  overflow: hidden;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader:before, .loader:after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(40px);
  animation: loaderOrb 6s infinite alternate ease-in-out;
}
.loader:before {
  top: -150px;
  left: -150px;
}
.loader:after {
  right: -150px;
  bottom: -150px;
  animation-delay: 1.5s;
}

.loader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 480px;
}

.loader-logo-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: loaderPop 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.loader-logo-wrap:before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: #ffeedc;
  animation: spin 1.2s linear infinite;
}

.loader-logo {
  width: 120px;
  filter: brightness(0) invert(1);
  animation: logoGlow 2.5s infinite alternate ease-in-out;
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
  animation: fadeUpLoader 0.8s 0.2s both;
}

.loader-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffeedc;
  opacity: 0.8;
  margin-bottom: 30px;
  animation: fadeUpLoader 0.8s 0.35s both;
}

.loader-progress {
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  margin: 0 auto;
  width: 80%;
  animation: fadeUpLoader 0.8s 0.5s both;
}

.loader-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #ffeedc, #ffffff, #ffeedc);
  animation: loadingBar 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

.loader-caption {
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.65;
  letter-spacing: 0.5px;
  animation: fadeUpLoader 0.8s 0.6s both;
}

/* --- 5. DECORATIVE BACKGROUNDS --- */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
  opacity: 0.18;
  background-image: 
    linear-gradient(rgba(130, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

[data-theme="dark"] .noise {
  opacity: 0.08;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -4;
  pointer-events: none;
  transform: translateZ(0);
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: var(--orb-1);
  top: -100px;
  left: -100px;
  animation: orbMove 20s infinite alternate ease-in-out;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--orb-2);
  top: 15%;
  right: -200px;
  animation: orbMove 25s infinite alternate-reverse ease-in-out;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--orb-3);
  bottom: -150px;
  left: 25%;
  animation: orbMove 18s infinite alternate ease-in-out;
}

/* --- 6. GLASSMORPHISM COMPONENT --- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow: 0 20px 50px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* --- 7. HEADER & NAVBAR --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--header-border);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  padding: 10px 0;
}

header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  padding: 5px 0;
}

[data-theme="dark"] header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 160px;
  height: auto;
  transition: transform 0.3s;
}

[data-theme="dark"] .logo img {
  filter: brightness(0) invert(1);
}

.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.menu-link {
  color: var(--text-color);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.menu-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-link:hover {
  color: var(--primary);
}

.menu-link:hover:after {
  width: 100%;
}

.menu-cta {
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 8px 20px rgba(130, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

[data-theme="dark"] .menu-cta {
  box-shadow: 0 8px 20px rgba(255, 71, 71, 0.15);
}

.menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(130, 0, 0, 0.25);
}

.menu-cta:after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-btn, .hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.theme-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--header-border);
  color: var(--text-color);
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.theme-btn:hover {
  background-color: rgba(130, 0, 0, 0.05);
  color: var(--primary);
  transform: rotate(15deg) scale(1.05);
}

[data-theme="dark"] .theme-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-light);
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  padding: 0;
  z-index: 1001;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger Active State */
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- 8. MOBILE DRAWER NAVIGATION --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  z-index: 1000;
  background: var(--bg-color);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 30px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid var(--glass-border);
}

[data-theme="dark"] .mobile-drawer {
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-logo {
  width: 120px;
}

[data-theme="dark"] .drawer-logo {
  filter: brightness(0) invert(1);
}

.close-drawer-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: auto;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  transition: color 0.3s, padding-left 0.3s;
}

.drawer-link:hover {
  color: var(--primary);
  padding-left: 8px;
}

.drawer-cta {
  background: var(--primary);
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(130, 0, 0, 0.2);
  margin-top: 15px;
}

.drawer-footer {
  border-top: 1px solid var(--glass-border);
  padding-top: 25px;
}

.drawer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.drawer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
}

.drawer-socials a:hover {
  background-color: var(--primary);
  color: #fff;
}

.drawer-footer p {
  font-size: 12px;
  color: var(--muted-color);
}

/* --- 9. REVEAL SCROLL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- 10. HERO SECTION --- */
section {
  padding: 100px 0;
  position: relative;
}

.hero {
  min-height: 100vh;
  padding-top: 130px;
  display: flex;
  align-items: center;
}

.hero:before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 0, 0, 0.05) 0%, transparent 70%);
  left: -200px;
  top: -200px;
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 99px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 78px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--primary-dark);
  letter-spacing: -3px;
  margin-bottom: 25px;
}

[data-theme="dark"] .hero h1 {
  color: #fff;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted-color);
  max-width: 620px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 45px;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s, color 0.3s;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.75s ease;
}

.btn:hover:before {
  left: 130%;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  box-shadow: 0 10px 25px rgba(130, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(130, 0, 0, 0.25);
}

[data-theme="dark"] .btn-primary {
  box-shadow: 0 10px 25px rgba(255, 71, 71, 0.15);
}

[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 15px 30px rgba(255, 71, 71, 0.25);
}

.btn-outline {
  color: var(--primary);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* Stats Layout */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 600px;
}

.stat {
  padding: 20px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s, background-color 0.3s;
}

.stat:hover {
  transform: translateY(-5px);
  background: var(--stat-hover);
}

.stat h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted-color);
}

/* Hero Visuals & 3D Tilt Card */
.hero-visual {
  position: relative;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  padding: 30px;
  width: 100%;
  max-width: 440px;
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  transform: translateZ(30px);
}

.hero-card-header h3 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

[data-theme="dark"] .hero-card-header h3 {
  color: #fff;
}

.card-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(130, 0, 0, 0.15);
}

.hero-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateZ(15px);
}

.hero-product {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s, background-color 0.3s;
}

[data-theme="dark"] .hero-product {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.hero-product:hover {
  transform: translateX(5px) scale(1.02);
  background: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .hero-product:hover {
  background: rgba(255, 255, 255, 0.07);
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(130, 0, 0, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

[data-theme="dark"] .product-icon {
  background: rgba(255, 71, 71, 0.1);
  color: var(--primary-light);
}

.hero-product h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.hero-product span {
  font-size: 12px;
  color: var(--muted-color);
}

.floating-mini, .floating-label {
  position: absolute;
  padding: 12px 20px;
  border-radius: 99px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px var(--glass-shadow);
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  z-index: 3;
  pointer-events: none;
}

.floating-mini {
  left: -20px;
  top: 40px;
  animation: floatLabel 5s infinite ease-in-out;
}

.floating-label {
  right: -20px;
  bottom: 40px;
  animation: floatLabel 6s infinite ease-in-out alternate;
}

/* --- 11. MARQUEE SECTION --- */
.marquee {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  background: var(--marquee-bg);
  color: var(--marquee-text);
  padding: 15px 0;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 40px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track i {
  color: #ffeedc;
}

/* --- 12. STORE SHOWCASE --- */
.store-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Supergraphic SVG.svg") no-repeat left center;
  background-size: 700px;
  opacity: 0.05;
  pointer-events: none;
}

[data-theme="dark"] .store-showcase:before {
  opacity: 0.03;
  filter: brightness(0) invert(1);
}

/* CTA supergraphic dark fix */
[data-theme="dark"] .cta-box:before {
  opacity: 0.04;
  filter: brightness(2) saturate(0.3);
}

.store-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.store-text h2 {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--primary-dark);
  letter-spacing: -2px;
  margin-bottom: 25px;
}

[data-theme="dark"] .store-text h2 {
  color: #fff;
}

.store-text h2 .highlight {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.store-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted-color);
  margin-bottom: 35px;
}

.store-visual {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(80, 20, 0, 0.12);
}

[data-theme="dark"] .store-visual {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

.store-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
  aspect-ratio: 16 / 11;
  border: 1px solid var(--glass-border);
}

.store-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--transition-slow);
}

.store-visual:hover .store-img-wrap img {
  transform: scale(1.08);
}

.store-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  z-index: 2;
  padding: 14px 22px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .store-badge {
  background: rgba(20, 10, 8, 0.85);
  color: #fff;
}

/* --- 13. SECTION TITLES & FEATURES --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(130, 0, 0, 0.06);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

[data-theme="dark"] .eyebrow {
  background: rgba(255, 71, 71, 0.1);
  color: var(--primary-light);
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--primary-dark);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

[data-theme="dark"] .section-title h2 {
  color: #fff;
}

.section-title p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted-color);
  font-size: 16px;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  padding: 35px;
  min-height: 250px;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), 
              background-color var(--transition-normal), 
              border-color var(--transition-normal), 
              box-shadow var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(130, 0, 0, 0.25);
  box-shadow: 0 25px 50px rgba(130, 0, 0, 0.08);
}

[data-theme="dark"] .feature-card:hover {
  border-color: rgba(255, 62, 85, 0.22);
  box-shadow: 0 25px 50px rgba(255, 62, 85, 0.06);
}

.feature-card:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(130, 0, 0, 0.03);
  right: -50px;
  bottom: -50px;
  pointer-events: none;
}

[data-theme="dark"] .feature-card:before {
  background: rgba(255, 71, 71, 0.02);
}

.feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: rgba(130, 0, 0, 0.07);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}

[data-theme="dark"] .feature-icon {
  background: rgba(255, 71, 71, 0.08);
  color: var(--primary-light);
}

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

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

[data-theme="dark"] .feature-card h3 {
  color: #fff;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted-color);
  position: relative;
  z-index: 2;
}

/* --- 14. PRODUCT CATALOG --- */
.catalog-wrap {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
}

.catalog-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-side h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

[data-theme="dark"] .catalog-side h3 {
  color: #fff;
}

.catalog-side p {
  color: var(--muted-color);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 30px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid rgba(130, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.3);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

[data-theme="dark"] .filter-btn {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  color: var(--primary-light);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(130, 0, 0, 0.15);
}

[data-theme="dark"] .filter-btn:hover, [data-theme="dark"] .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(255, 71, 71, 0.15);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.catalog-item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  display: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s;
}

.catalog-item.active {
  display: flex;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.item-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(130, 0, 0, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

[data-theme="dark"] .item-icon-wrap {
  background: rgba(255, 71, 71, 0.08);
  color: var(--primary-light);
}

.catalog-item:hover {
  transform: translateY(-5px);
}

.catalog-item:hover .item-icon-wrap {
  transform: scale(1.1) rotate(3deg);
}

.catalog-item h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

[data-theme="dark"] .catalog-item h4 {
  color: #fff;
}

.catalog-item p {
  color: var(--muted-color);
  font-size: 14px;
  line-height: 1.65;
}

/* --- 15. STORY SECTION --- */
.story-section {
  overflow: hidden;
  position: relative;
}

.story-section:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 0, 0, 0.04), transparent 70%);
  left: -150px;
  top: 200px;
  pointer-events: none;
  z-index: -1;
}

[data-theme="dark"] .story-section:before {
  background: radial-gradient(circle, rgba(255, 62, 85, 0.03), transparent 70%);
}

.story-intro {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.story-intro:before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid var(--primary-light);
  border-radius: var(--border-radius-md);
  opacity: 0.15;
  pointer-events: none;
}

.story-intro-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.story-intro h3 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

[data-theme="dark"] .story-intro h3 {
  color: #fff;
}

.story-intro p {
  color: var(--muted-color);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 15px;
}

.story-intro p:last-child {
  margin-bottom: 0;
}

/* Journey Timeline — Horizontal (kiri ke kanan) */
.journey {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 40px;
}

/* Garis horizontal di tengah dot */
.journey-progress-bar {
  position: absolute;
  top: 29px; /* sejajar tengah dot (58px/2 = 29px) */
  left: 0;
  right: 0;
  height: 3px;
  background: var(--timeline-line);
  border-radius: 99px;
  overflow: hidden;
}

.journey-progress-line {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  transition: width 0.15s ease-out;
}

/* Row container — flex horizontal */
.journey-items-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}

/* Setiap item: dot di atas, konten di bawah */
.journey-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.journey-item:last-child {
  margin-bottom: 0;
}

.journey-content {
  padding: 24px;
  width: 100%;
  margin-top: 20px;
  position: relative;
  transition: transform var(--transition-normal);
  text-align: center;
}

.journey-content:hover {
  transform: translateY(-8px);
}

.journey-date {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

[data-theme="dark"] .journey-date {
  color: var(--primary-light);
}

.journey-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

[data-theme="dark"] .journey-content h3 {
  color: #fff;
}

.journey-content p {
  color: var(--muted-color);
  font-size: 13px;
  line-height: 1.7;
}

.journey-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(130, 0, 0, 0.18);
  position: relative;
  z-index: 2;
  transition: transform 0.3s, box-shadow 0.3s;
}

[data-theme="dark"] .journey-dot {
  box-shadow: 0 10px 25px rgba(255, 71, 71, 0.18);
}

.journey-dot:after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-light);
  opacity: 0.3;
  animation: pulseRingSoft 2.5s infinite ease-in-out;
}

.journey-item:hover .journey-dot {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(130, 0, 0, 0.3);
}

.journey-dot.active {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 0 0 4px rgba(130, 0, 0, 0.15), 0 12px 30px rgba(130, 0, 0, 0.25);
}

[data-theme="dark"] .journey-dot.active {
  box-shadow: 0 0 0 4px rgba(255, 71, 71, 0.15), 0 12px 30px rgba(255, 71, 71, 0.25);
}

/* --- 16. ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.about-card {
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.about-card:after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(130, 0, 0, 0.02);
  right: -80px;
  bottom: -80px;
  pointer-events: none;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

[data-theme="dark"] .about-card h3 {
  color: #fff;
}

.about-card p {
  color: var(--muted-color);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-card p:last-of-type {
  margin-bottom: 0;
}

.about-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.about-mini div {
  padding: 20px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s;
}

[data-theme="dark"] .about-mini div {
  background: rgba(255, 255, 255, 0.02);
}

.about-mini div:hover {
  transform: translateY(-3px);
}

.about-mini h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.about-mini span {
  font-size: 13px;
  color: var(--muted-color);
  font-weight: 600;
}

/* Visi Misi */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.vm-card {
  padding: 45px;
  border-radius: var(--border-radius-lg);
  transition: transform var(--transition-normal);
}

.vm-card:hover {
  transform: translateY(-8px);
}

.vm-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(130, 0, 0, 0.08), rgba(130, 0, 0, 0.03));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

[data-theme="dark"] .vm-icon {
  background: linear-gradient(135deg, rgba(255, 71, 71, 0.1), rgba(255, 71, 71, 0.02));
  color: var(--primary-light);
}

.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

[data-theme="dark"] .vm-card h3 {
  color: #fff;
}

.vm-card p {
  color: var(--muted-color);
  font-size: 15px;
  line-height: 1.8;
}

.tagline {
  margin-top: 50px;
  padding: 70px 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tagline:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(130, 0, 0, 0.03);
  right: -100px;
  top: -150px;
  pointer-events: none;
}

.tagline h2 {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -2px;
  margin: 20px 0;
}

[data-theme="dark"] .tagline h2 {
  color: #fff;
}

.tagline p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted-color);
  font-size: 17px;
  line-height: 1.85;
}

/* --- 17. CTA SECTION --- */
.cta-section {
  padding: 80px 0;
}

.cta-box {
  padding: 80px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #300000 0%, #700000 60%, #900000 100%);
  border-radius: var(--border-radius-xl);
  color: #fff;
  box-shadow: 0 30px 60px rgba(130, 0, 0, 0.15);
}

.cta-box:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Supergraphic SVG.svg") no-repeat right center;
  background-size: 600px;
  opacity: 0.08;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
}

.btn-cta {
  background-color: #fff;
  color: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-cta:hover {
  background-color: #ffeedc;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* --- 18. CONTACT SECTION --- */
.contact-box {
  padding: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.contact-card {
  padding: 30px;
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.35s, background-color 0.35s;
}

[data-theme="dark"] .contact-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.contact-card h3 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

[data-theme="dark"] .contact-card h3 {
  color: #fff;
}

.contact-card h3 i {
  color: var(--primary);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--border-radius-md);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
  font-weight: 700;
  font-size: 14px;
}

[data-theme="dark"] .contact-links a {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.04);
}

.contact-links a:hover {
  color: var(--primary);
  background: rgba(130, 0, 0, 0.06);
  border-color: rgba(130, 0, 0, 0.15);
  transform: translateX(5px);
}

[data-theme="dark"] .contact-links a:hover {
  color: var(--primary-light);
  background: rgba(255, 71, 71, 0.06);
  border-color: rgba(255, 71, 71, 0.15);
}

.contact-links i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(130, 0, 0, 0.07);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s;
}

[data-theme="dark"] .contact-links i {
  background: rgba(255, 71, 71, 0.08);
  color: var(--primary-light);
}

.contact-links a:hover i {
  transform: scale(1.1);
}

/* --- 19. FOOTER SECTION --- */
footer {
  padding: 60px 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 35%), 
              linear-gradient(135deg, #1b0202 0%, #460000 100%);
  color: #fff;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 35px auto;
  max-width: 600px;
}

.copyright {
  font-size: 13px;
  opacity: 0.65;
}

/* --- 20. FLOATING WIDGETS --- */
.float-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 998;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  animation: waPulse 2s infinite;
  transition: transform 0.3s;
}

.float-wa:hover {
  transform: scale(1.05);
}

.back-top {
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(15px);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background-color: var(--primary-light);
}

/* --- 21. ANIMATION KEYFRAMES --- */
@keyframes loaderOrb {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.05); }
}

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

@keyframes pulseRingSoft {
  0%, 100% { transform: scale(0.96); opacity: 0.25; }
  50% { transform: scale(1.15); opacity: 0.55; }
}

@keyframes logoGlow {
  0% { transform: scale(1); filter: brightness(0) invert(1) drop-shadow(0 0 0 rgba(255,255,255,0)); }
  100% { transform: scale(1.03); filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255,255,255,0.3)); }
}

@keyframes loaderPop {
  0% { opacity: 0; transform: scale(0.85) translateY(15px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeUpLoader {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes loadingBar {
  0% { width: 0; }
  30% { width: 40%; }
  70% { width: 75%; }
  100% { width: 100%; }
}

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

@keyframes floatLabel {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2); }
  50% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); transform: scale(1.03); }
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --- 22. INDONESIA MAP SECTION --- */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-container {
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 10px;
}

/* Container untuk img + SVG pin overlay */
.map-svg-container {
  position: relative;
  width: 100%;
  line-height: 0;
}

/* Peta Indonesia asli dari id.svg */
.indonesia-map-img {
  width: 100%;
  height: auto;
  display: block;
  /* Sesuaikan warna peta dengan tema */
  filter: saturate(0) brightness(0.85) sepia(1) hue-rotate(310deg) saturate(0.6) brightness(1.1);
  opacity: 0.75;
  transition: filter 0.4s ease, opacity 0.4s ease;
}

[data-theme="dark"] .indonesia-map-img {
  filter: saturate(0) brightness(0.4) sepia(1) hue-rotate(310deg) saturate(0.5) brightness(0.9);
  opacity: 0.55;
}

/* SVG overlay untuk pin — harus sama persis viewBox dengan id.svg */
.map-pin-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Highlight Kalimantan Timur */
.kalimantan-highlight {
  fill: rgba(130, 0, 0, 0.12);
  stroke: rgba(130, 0, 0, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 5 3;
  animation: highlightPulse 3s infinite ease-in-out;
}

[data-theme="dark"] .kalimantan-highlight {
  fill: rgba(255, 62, 85, 0.1);
  stroke: rgba(255, 62, 85, 0.4);
}

@keyframes highlightPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.pin-dot {
  fill: var(--primary);
  filter: drop-shadow(0 0 6px rgba(130, 0, 0, 0.4));
}

[data-theme="dark"] .pin-dot {
  fill: var(--primary-light);
  filter: drop-shadow(0 0 8px rgba(255, 122, 138, 0.5));
}

.pin-pulse {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  opacity: 0;
  animation: pinPulse 2.5s infinite ease-out;
}

.pin-pulse-2 {
  animation-delay: 1.25s;
}

[data-theme="dark"] .pin-pulse {
  stroke: var(--primary-light);
}

@keyframes pinPulse {
  0% { r: 8; opacity: 0.8; stroke-width: 2.5; }
  100% { r: 35; opacity: 0; stroke-width: 0.5; }
}

.pin-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  fill: var(--primary-dark);
  letter-spacing: 0.5px;
}

[data-theme="dark"] .pin-label {
  fill: #fff;
}

.pin-sublabel {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  fill: var(--muted-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.map-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.map-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s;
}

[data-theme="dark"] .map-info-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

.map-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.55);
}

[data-theme="dark"] .map-info-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.map-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(130, 0, 0, 0.07);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

[data-theme="dark"] .map-info-icon {
  background: rgba(255, 62, 85, 0.1);
  color: var(--primary-light);
}

.map-info-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 3px;
}

[data-theme="dark"] .map-info-card h4 {
  color: #fff;
}

.map-info-card p {
  font-size: 13px;
  color: var(--muted-color);
  line-height: 1.5;
}

/* --- 23. MEDIA QUERIES & RESPONSIVENESS --- */

/* Laptops / Desktops Medium */
@media (max-width: 1200px) {
  .hero h1 { font-size: 68px; }
  .store-text h2 { font-size: 50px; }
  .section-title h2 { font-size: 46px; }
  .tagline h2 { font-size: 50px; }
}

/* Tablets Landscape & Portrait */
@media (max-width: 991px) {
  section { padding: 70px 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-desc { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { margin: 0 auto; max-width: 500px; }
  .hero-visual { margin-top: 15px; }
  
  .store-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .store-text p { margin: 0 auto 30px; }
  .store-text .btn { margin: 0 auto; width: fit-content; }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .feature-card { min-height: auto; padding: 28px; }
  
  .catalog-wrap {
    grid-template-columns: 1fr;
  }
  .catalog-side {
    text-align: center;
    align-items: center;
    padding: 28px;
  }
  
  .about-grid, .vm-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about-card, .vm-card {
    padding: 32px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-box {
    padding: 28px;
  }
  
  /* Map responsive */
  .map-container { padding: 30px; }
  .map-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  /* Timeline horizontal — di tablet tetap horizontal tapi lebih compact */
  .journey-items-row {
    gap: 12px;
  }
  .journey-dot {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
  .journey-progress-bar {
    top: 24px;
  }
  .journey-content {
    padding: 18px;
    margin-top: 16px;
  }
  .journey-content h3 { font-size: 15px; }
  .journey-content p { font-size: 12px; }
  .journey-date { font-size: 10px; }
  
  .story-intro { padding: 32px; margin-bottom: 50px; }
  .story-intro h3 { font-size: 26px; }
  .story-intro p { font-size: 14px; }
  
  .cta-box h2 { font-size: 42px; }
  .cta-box { padding: 60px 35px; }
}

/* Header & Mobile Menu Switch */
@media (max-width: 768px) {
  .menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  
  section { padding: 60px 0; }
  
  .hero { padding-top: 110px; min-height: auto; }
  .hero h1 { font-size: 46px; letter-spacing: -2px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; margin-bottom: 18px; }
  .hero-desc { font-size: 15px; line-height: 1.75; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat { padding: 16px 12px; text-align: center; }
  .stat h3 { font-size: 22px; }
  .stat p { font-size: 11px; }
  
  .hero-card { padding: 22px; max-width: 100%; }
  .hero-card-header h3 { font-size: 20px; }
  .hero-product { padding: 10px 14px; gap: 12px; }
  .product-icon { width: 38px; height: 38px; font-size: 16px; }
  .hero-product h4 { font-size: 14px; }
  .hero-product span { font-size: 11px; }
  
  .logo img { width: 130px; }
  
  .section-title { margin-bottom: 40px; }
  .section-title h2 { font-size: 34px; letter-spacing: -1px; }
  .section-title p { font-size: 14px; }
  .eyebrow { font-size: 11px; padding: 6px 14px; margin-bottom: 14px; }
  
  .store-text h2 { font-size: 34px; letter-spacing: -1px; }
  .store-text p { font-size: 14px; }
  .store-badge { left: 15px; bottom: 15px; padding: 10px 16px; font-size: 12px; }
  
  .tagline h2 { font-size: 32px; letter-spacing: -1px; }
  .tagline p { font-size: 15px; }
  .tagline { padding: 40px 22px; margin-top: 30px; }
  
  .cta-box h2 { font-size: 32px; letter-spacing: -1px; }
  .cta-box p { font-size: 14px; }
  .cta-box { padding: 45px 22px; }
  .cta-box:before { background-size: 350px; }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .feature-card { padding: 24px; min-height: auto; }
  .feature-icon { width: 56px; height: 56px; font-size: 22px; margin-bottom: 18px; }
  .feature-card h3 { font-size: 18px; margin-bottom: 8px; }
  .feature-card p { font-size: 13px; }
  
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .catalog-side { padding: 22px; }
  .catalog-side h3 { font-size: 24px; }
  .catalog-side p { font-size: 13px; }
  .catalog-item { padding: 22px; }
  .item-icon-wrap { width: 48px; height: 48px; font-size: 18px; margin-bottom: 14px; }
  .catalog-item h4 { font-size: 17px; }
  .catalog-item p { font-size: 13px; }
  
  .about-card { padding: 28px; }
  .about-card h3 { font-size: 24px; }
  .about-card p { font-size: 13px; margin-bottom: 12px; }
  .about-mini { gap: 10px; margin-top: 22px; }
  .about-mini div { padding: 16px; }
  .about-mini h4 { font-size: 15px; }
  .about-mini span { font-size: 12px; }
  
  .vm-card { padding: 28px; }
  .vm-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 18px; }
  .vm-card h3 { font-size: 24px; }
  .vm-card p { font-size: 13px; }
  
  .contact-box { padding: 22px; }
  .contact-card { padding: 22px; }
  .contact-card h3 { font-size: 18px; margin-bottom: 18px; }
  .contact-links a { padding: 12px 14px; font-size: 13px; }
  .contact-links i { width: 34px; height: 34px; font-size: 14px; }
  
  .btn { width: 100%; padding: 14px 24px; font-size: 14px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  
  /* Map mobile */
  .map-container { padding: 22px; }
  .map-wrapper { padding: 5px; }
  .pin-label { font-size: 10px; }
  .pin-sublabel { font-size: 7px; }
  .map-info-card { padding: 16px; gap: 12px; }
  .map-info-icon { width: 42px; height: 42px; font-size: 16px; }
  .map-info-card h4 { font-size: 14px; }
  .map-info-card p { font-size: 12px; }
  
  /* Story mobile */
  .story-intro { padding: 25px; margin-bottom: 40px; }
  .story-intro h3 { font-size: 22px; }
  .story-intro p { font-size: 13px; line-height: 1.7; }
  .story-intro:before { inset: 8px; }
  
  /* Timeline mobile — switch ke vertikal */
  .journey-progress-bar {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .journey-progress-line {
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
  }
  .journey-items-row {
    flex-direction: column;
    gap: 0;
    padding-left: 60px;
  }
  .journey-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
  }
  .journey-dot {
    width: 44px;
    height: 44px;
    font-size: 16px;
    flex-shrink: 0;
    margin-left: -52px;
  }
  .journey-dot:after { inset: -5px; }
  .journey-content {
    margin-top: 0;
    padding: 18px;
    text-align: left;
  }
  .journey-date { font-size: 11px; letter-spacing: 1px; margin-bottom: 6px; }
  .journey-content h3 { font-size: 17px; margin-bottom: 8px; }
  .journey-content p { font-size: 12px; line-height: 1.65; }
  
  /* Footer mobile */
  footer { padding: 40px 0; }
  .footer-brand img { width: 120px; }
  .footer-tagline { font-size: 12px; letter-spacing: 1.5px; }
  .footer-divider { margin: 25px auto; }
  .copyright { font-size: 12px; }
  
  /* Fixed widgets mobile */
  .float-wa { width: 52px; height: 52px; font-size: 24px; right: 18px; bottom: 18px; }
  .back-top { width: 40px; height: 40px; font-size: 14px; right: 18px; bottom: 78px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; letter-spacing: -1.5px; }
  .hero-desc { font-size: 14px; }
  .hero-badge { font-size: 10px; gap: 6px; }
  
  .hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .stat { padding: 14px; }
  .stat h3 { font-size: 24px; }
  .stat p { font-size: 11px; }
  
  .loader-logo-wrap { width: 140px; height: 140px; }
  .loader-logo { width: 85px; }
  .loader-title { font-size: 32px; }
  .loader-subtitle { font-size: 12px; letter-spacing: 2px; }
  
  .floating-mini, .floating-label { display: none; }
  
  .section-title h2 { font-size: 28px; }
  .store-text h2 { font-size: 28px; }
  .tagline h2 { font-size: 26px; }
  .cta-box h2 { font-size: 26px; }
  
  .about-mini { grid-template-columns: 1fr; }
  
  .journey-items-row { padding-left: 50px; gap: 0; }
  .journey-item { margin-bottom: 20px; }
  .journey-dot { width: 40px; height: 40px; font-size: 14px; margin-left: -45px; }
  .journey-content { padding: 15px; }
  .journey-content h3 { font-size: 15px; }
  .journey-content p { font-size: 11px; }
  .journey-date { font-size: 10px; }
  
  .map-container { padding: 16px; }
  .map-wrapper { padding: 5px; }
}

@media (max-width: 360px) {
  .container { width: 92%; }
  .hero h1 { font-size: 30px; }
  .section-title h2 { font-size: 24px; }
  .store-text h2 { font-size: 24px; }
  .tagline h2 { font-size: 22px; }
  .cta-box h2 { font-size: 22px; }
  .hero-card { padding: 18px; }
  .hero-card-header h3 { font-size: 17px; }
  .card-icon-wrap { width: 40px; height: 40px; font-size: 16px; }
}
