/* ==========================================================================
   MAROON ATK - CLEAN PROFESSIONAL STYLESHEET
   Palette: Premium White + Soft Greige + Maroon Accent
   ========================================================================== */

/* --- CSS VARIABLES --- */
:root {
  --primary-maroon: #800020;
  --dark-maroon: #600018;
  --light-maroon: #A31236;
  --maroon-soft: #FEF2F2;
  --maroon-border: #FEE2E2;
  --accent-gold: #D97706;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #1EBE57;

  /* --- PALET PUTIH PREMIUM + ABU LEMBUT (GREIGE) --- */
  --bg-main: #FCFCFA;
  --bg-offwhite: #F3F1EE;
  --bg-card: #FFFFFF;
  --bg-slider: #E8E4DF;
  --border-color: #E2DCD5;

  --text-main: #1E1A16;
  --text-muted: #5E554B;
  --text-light: #9A9084;

  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px 0 rgba(60, 50, 40, 0.06), 0 1px 2px 0 rgba(60, 50, 40, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(60, 50, 40, 0.08), 0 2px 6px -1px rgba(60, 50, 40, 0.05);
  --shadow-lg: 0 12px 28px -5px rgba(60, 50, 40, 0.10), 0 8px 10px -6px rgba(60, 50, 40, 0.06);
  --shadow-maroon: 0 12px 25px -5px rgba(128, 0, 32, 0.25);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--primary-maroon);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--dark-maroon);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-maroon {
  color: var(--primary-maroon) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.bg-maroon-soft {
  background-color: var(--maroon-soft) !important;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--bg-offwhite);
}

.section-bg-maroon {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-title .badge-tag {
  display: inline-block;
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  border: 1px solid var(--maroon-border);
}

.section-title h2 {
  margin-bottom: 0.85rem;
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-maroon);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(128, 0, 32, 0.2);
}

.btn-primary:hover {
  background-color: var(--dark-maroon);
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-maroon);
}

.btn-outline {
  border-color: var(--primary-maroon);
  color: var(--primary-maroon);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(128, 0, 32, 0.2);
}

.btn-whatsapp:hover {
  background-color: var(--dark-maroon);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-maroon);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-pill);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* --- NAVBAR (DESKTOP dengan ANIMASI & HOVER) --- */
.navbar {
  background-color: var(--bg-main);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition-slow);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(252, 252, 250, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: rgba(226, 220, 213, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-maroon);
  letter-spacing: -0.03em;
  transition: var(--transition);
  position: relative;
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo .logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(128, 0, 32, 0.2);
  transition: var(--transition);
}

.brand-logo:hover .logo-icon {
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.35);
  transform: rotate(-3deg);
}

.brand-logo .logo-text {
  color: var(--primary-maroon);
  font-weight: 800;
}

.brand-logo .logo-text span {
  color: var(--text-main);
  font-weight: 800;
}

/* --- NAV MENU (DESKTOP LUXURY FLOATING PILLS & ANIMATIONS) --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(243, 244, 246, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.35rem 0.5rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #374151;
  font-weight: 600;
  font-size: 0.91rem;
  padding: 0.52rem 1.15rem;
  border-radius: 50px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* Animated Golden-Maroon Glow Underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-maroon, #7a1a1a), #FBBF24);
  border-radius: 3px 3px 0 0;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Hover State with Soft Maroon Glass Effect */
.nav-link:hover {
  color: var(--primary-maroon, #7a1a1a);
  background: rgba(122, 26, 46, 0.08);
  box-shadow: 0 4px 12px rgba(122, 26, 46, 0.08), inset 0 0 0 1px rgba(122, 26, 46, 0.12);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 65%;
}

/* Active State (Rich Maroon Gradient Pill) */
.nav-link.active {
  color: #ffffff !important;
  font-weight: 700;
  background: linear-gradient(135deg, #7a1a1a 0%, #991b1b 100%) !important;
  box-shadow: 0 4px 14px rgba(122, 26, 46, 0.32), inset 0 1px 1px rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-1px);
}

.nav-link.active::after {
  display: none !important;
}

.nav-link.active:hover {
  background: linear-gradient(135deg, #5c0f16 0%, #83141f 100%) !important;
  box-shadow: 0 6px 18px rgba(122, 26, 46, 0.42) !important;
}

/* Nav Dropdown dengan Animasi & Glassmorphism */
.nav-item-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.dropdown-toggle i {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
  font-size: 0.68rem;
  color: inherit;
}

.nav-item-dropdown:hover .dropdown-toggle i,
.nav-item-dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 285px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(122, 26, 46, 0.08);
  border: 1px solid rgba(122, 26, 46, 0.12);
  padding: 0.65rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1010;
  transform-origin: top center;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-maroon, #7a1a1a), #FBBF24);
  border-radius: 3px 3px 0 0;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  color: #374151;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  position: relative;
}

.dropdown-item:hover {
  background: rgba(122, 26, 46, 0.08);
  color: var(--primary-maroon, #7a1a1a);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(122, 26, 46, 0.1);
}

.dropdown-item i {
  color: var(--primary-maroon, #7a1a1a);
  width: 20px;
  font-size: 0.95rem;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover i {
  transform: scale(1.2) rotate(4deg);
  color: #c9a84c;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--primary-maroon);
  transform: scale(1.05);
}

/* --- HERO SECTION (versi lama) --- */
.hero-section {
  padding: 5rem 0 6rem 0;
  background: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content .trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  border: 1px solid var(--maroon-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-content h1 span {
  color: var(--primary-maroon);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-maroon);
  margin-bottom: 0.2rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-offwhite);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
}

.hero-card-stack img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-badge-floating {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: var(--bg-card);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--border-color);
  max-width: 320px;
}

.floating-icon {
  width: 48px;
  height: 48px;
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* --- CATEGORIES GRID --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  border-color: var(--maroon-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-card);
}

.category-icon {
  width: 52px;
  height: 52px;
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.category-card:hover .category-icon {
  background-color: var(--primary-maroon);
  color: #ffffff;
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.category-card p {
  font-size: 0.775rem;
  color: var(--text-muted);
}

/* --- PRODUCT CARDS --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--maroon-border);
  transform: translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-maroon);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: var(--bg-offwhite);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-maroon);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.08em;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-box {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-text {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-maroon);
}

/* --- PACKAGE CARDS --- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.package-card.featured {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border: none;
  box-shadow: var(--shadow-maroon);
}

.package-card.featured .package-header h3,
.package-card.featured .package-header p,
.package-card.featured .package-features li {
  color: #ffffff;
}

.package-card.featured .package-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.package-card.featured .package-features li i {
  color: #ffffff;
}

.package-card.featured::before {
  content: 'FAVORIT PENGADAAN';
  position: absolute;
  top: -12px;
  right: 1.75rem;
  background-color: #111827;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}

.package-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.package-card.featured .package-header {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.package-icon {
  width: 52px;
  height: 52px;
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.package-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.package-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.package-features {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.package-features li i {
  color: var(--primary-maroon);
  margin-top: 0.25rem;
}

/* --- VALUE PROPOSITIONS --- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.value-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-color: var(--maroon-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: var(--maroon-soft);
  color: var(--primary-maroon);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.value-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.value-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- FAQ ACCORDION (INTERACTIVE & ELEGANT ANIMATION) --- */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.faq-item {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  transform: translateY(-3px) scale(1.006);
  border-color: rgba(122, 26, 46, 0.35);
  box-shadow: 0 12px 30px rgba(122, 26, 46, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: var(--primary-maroon);
  box-shadow: 0 14px 36px rgba(122, 26, 46, 0.12), 0 0 0 1px rgba(122, 26, 46, 0.15);
  background-color: #ffffff;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--primary-maroon);
}

.faq-item.active .faq-question {
  color: var(--primary-maroon);
  background: linear-gradient(180deg, rgba(122, 26, 46, 0.04) 0%, transparent 100%);
}

/* Question Icon Badge */
.faq-q-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--maroon-soft, #fdf2f2) 0%, #fae8e8 100%);
  border: 1px solid var(--maroon-border, rgba(122, 26, 46, 0.2));
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 6px rgba(122, 26, 46, 0.06);
}

.faq-item:hover .faq-q-badge {
  transform: scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, #7A1A2E 0%, #A31236 100%);
  color: #ffffff;
  border-color: #7A1A2E;
  box-shadow: 0 4px 15px rgba(122, 26, 46, 0.3);
}

.faq-item.active .faq-q-badge {
  transform: scale(1.08) rotate(0deg);
  background: linear-gradient(135deg, var(--primary-maroon) 0%, #4D0A18 100%);
  color: #FBBF24;
  border-color: var(--primary-maroon);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.35);
  animation: faq-q-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes faq-q-bounce {
  0% {
    transform: scale(0.9) rotate(-10deg);
  }

  50% {
    transform: scale(1.18) rotate(8deg);
  }

  100% {
    transform: scale(1.08) rotate(0deg);
  }
}

.faq-q-text {
  flex: 1;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* Toggle Chevron Badge */
.faq-toggle-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(122, 26, 46, 0.06);
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-item:hover .faq-toggle-badge {
  background: rgba(122, 26, 46, 0.12);
  transform: scale(1.08);
}

.faq-item.active .faq-toggle-badge {
  background: var(--primary-maroon);
  color: #ffffff;
  transform: rotate(180deg);
  box-shadow: 0 3px 10px rgba(122, 26, 46, 0.3);
}

/* Accordion Answer Content */
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  opacity: 1;
  padding: 0 1.4rem 1.4rem 1.4rem;
}

.faq-answer-inner {
  padding-top: 0.85rem;
  padding-left: calc(40px + 1rem);
  border-top: 1px dashed rgba(122, 26, 46, 0.15);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.faq-item.active .faq-answer-inner {
  transform: translateY(0);
  opacity: 1;
}

.faq-answer-inner p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

/* Bottom Animated Hover Line */
.faq-hover-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-maroon), #FBBF24);
  border-radius: 3px 3px 0 0;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover .faq-hover-line,
.faq-item.active .faq-hover-line {
  width: 100%;
}

/* --- TESTIMONIAL --- */
.testimonial-box {
  background-color: var(--maroon-soft);
  border: 1px solid var(--maroon-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-box i {
  font-size: 2.5rem;
  color: var(--primary-maroon);
  margin-bottom: 1.25rem;
}

.testimonial-box p {
  font-size: 1.1rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 0.85rem;
  line-height: 1.6;
}

.testimonial-box .note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- CTA BANNER --- */
.cta-banner {
  background-color: var(--primary-maroon);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-maroon);
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  line-height: 1.3;
  text-wrap: balance;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 2.25rem auto;
  font-size: 1.125rem;
  line-height: 1.6;
}

.cta-banner .btn-whatsapp {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  background-color: #ffffff;
  color: var(--primary-maroon);
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  border-radius: var(--radius-pill, 50px);
}

.cta-banner .btn-whatsapp:hover {
  background-color: var(--maroon-soft);
  color: var(--dark-maroon);
}

/* --- BREADCRUMB --- */
.breadcrumb-container {
  background-color: var(--bg-offwhite);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb-item a {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--primary-maroon);
}

.breadcrumb-item.active {
  color: var(--primary-maroon);
  font-weight: 700;
}

.breadcrumb-separator {
  color: var(--text-light);
  font-size: 0.75rem;
}

/* --- BLOG ARTICLE STYLES --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--maroon-border);
}

.blog-thumb {
  height: 220px;
  overflow: hidden;
  background-color: var(--bg-offwhite);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.05);
}

.blog-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blog-link {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-maroon);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

/* ============================================================
   EDITORIAL BLOG & NEWS PORTAL ARTICLE STYLING (MATCHING FAQ LUXURY)
   ============================================================ */
.article-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  margin-top: 1.5rem;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 90px;
}

/* Category Badge */
.article-category-badge,
.promo-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--primary-maroon, #7a1a1a), #991b1b);
  color: #ffffff;
  padding: 0.35rem 1.15rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.85rem;
  box-shadow: 0 3px 10px rgba(122, 26, 46, 0.2);
}

/* Article Header */
.article-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.article-header h1 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem 0;
  color: var(--text-dark, #111111);
  text-wrap: balance;
}

/* Article Meta Bar */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  justify-content: flex-start;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--primary-maroon, #7a1a1a);
  box-shadow: 0 0 0 3px rgba(122, 26, 46, 0.12);
  transition: transform 0.3s ease;
}

.author-avatar:hover {
  transform: scale(1.05);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark, #111111);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.post-date {
  font-size: 0.82rem;
  color: var(--text-muted, #6c757d);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-date i {
  color: var(--primary-maroon, #7a1a1a);
}

/* Featured Image */
.article-featured-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.6rem;
  background: var(--bg-gray, #f8f9fa);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.article-featured-image:hover img {
  transform: scale(1.02);
}

.caption {
  font-size: 0.82rem;
  color: var(--text-muted, #6c757d);
  font-style: italic;
  margin: 0.4rem 0 1.5rem 0;
  text-align: center;
  line-height: 1.4;
}

/* Base Card Style with Animated Bottom Hover Line (matching FAQ style) */
.article-summary,
.toc-wrapper,
.baca-juga-box,
.conclusion-box,
.author-bio,
.recommend-item,
.sidebar-hero {
  position: relative;
  overflow: hidden;
}

.article-summary::after,
.toc-wrapper::after,
.baca-juga-box::after,
.conclusion-box::after,
.author-bio::after,
.recommend-item::after,
.sidebar-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-maroon, #7a1a1a), #FBBF24);
  border-radius: 3px 3px 0 0;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.article-summary:hover::after,
.toc-wrapper:hover::after,
.baca-juga-box:hover::after,
.conclusion-box:hover::after,
.author-bio:hover::after,
.recommend-item:hover::after,
.sidebar-hero:hover::after {
  width: 100%;
}

/* 1. Key Takeaways / Summary Card */
.article-summary {
  background: linear-gradient(145deg, #ffffff 0%, rgba(122, 26, 46, 0.03) 100%);
  border: 1px solid rgba(122, 26, 46, 0.15);
  border-left: 4px solid var(--primary-maroon, #7a1a1a);
  border-radius: 14px;
  padding: 1.35rem 1.6rem;
  margin: 1.8rem 0;
  box-shadow: 0 4px 18px rgba(122, 26, 46, 0.05);
  transition: all 0.3s ease;
}

.article-summary:hover {
  box-shadow: 0 8px 24px rgba(122, 26, 46, 0.08);
  border-color: rgba(122, 26, 46, 0.3);
}

.article-summary h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--primary-maroon, #7a1a1a);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.article-summary ul {
  margin: 0;
  padding-left: 1.25rem;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-summary ul li {
  margin-bottom: 0.35rem;
}

/* 2. TOC (Table of Contents) */
.toc-wrapper {
  background: var(--bg-card, #ffffff);
  border: 1px solid rgba(122, 26, 46, 0.12);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin: 1.8rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.toc-wrapper:hover {
  border-color: rgba(122, 26, 46, 0.25);
  box-shadow: 0 6px 20px rgba(122, 26, 46, 0.06);
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.toc-header h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark, #111111);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.toc-header h3 i {
  color: var(--primary-maroon, #7a1a1a);
}

.toc-header i.fa-chevron-down {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-muted, #6c757d);
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-gray, #f3f4f6);
}

.toc-header.active i.fa-chevron-down {
  transform: rotate(180deg);
  background: var(--maroon-soft, #fdf2f2);
  color: var(--primary-maroon, #7a1a1a);
}

.toc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.toc-body.open {
  max-height: 800px;
}

.toc-list {
  list-style: none;
  padding: 0.85rem 0 0 0;
  margin: 0;
  border-top: 1px solid var(--border-color, #e5e7eb);
  margin-top: 0.85rem;
}

.toc-list li {
  padding: 0.35rem 0.5rem;
  font-size: 0.92rem;
  line-height: 1.45;
  border-radius: 6px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.toc-list li:hover {
  background: var(--maroon-soft, #fdf2f2);
  transform: translateX(4px);
}

.toc-list li a {
  text-decoration: none;
  color: var(--text-dark, #1f2937);
  transition: color 0.2s ease;
  display: block;
}

.toc-list li a:hover {
  color: var(--primary-maroon, #7a1a1a);
  font-weight: 600;
}

.toc-list li.toc-h3 {
  padding-left: 1.6rem;
  font-size: 0.86rem;
  color: var(--text-muted, #6c757d);
}

/* Article Content Typography */
.article-content {
  font-size: 1.05rem;
  line-height: 1.82;
  color: #2d3748;
}

.article-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 2.4rem 0 1rem 0;
  color: var(--text-dark, #111111);
  position: relative;
  padding-left: 1rem;
  border-left: 4px solid var(--primary-maroon, #7a1a1a);
  line-height: 1.35;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.8rem 0 0.8rem 0;
  color: var(--text-dark, #111111);
  line-height: 1.35;
}

.article-content p {
  margin-bottom: 1.15rem;
  color: #374151;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.4rem;
  color: #374151;
}

.article-content ul li,
.article-content ol li {
  margin-bottom: 0.45rem;
}

.article-content strong {
  color: #111827;
  font-weight: 700;
}

/* 3. In-Article Recommendation Box ("BACA JUGA") */
.baca-juga-box {
  background: linear-gradient(135deg, rgba(122, 26, 46, 0.04) 0%, #ffffff 100%);
  border: 1px solid rgba(122, 26, 46, 0.16);
  border-left: 4px solid var(--primary-maroon, #7a1a1a);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin: 1.8rem 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.baca-juga-box:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 26, 46, 0.35);
  box-shadow: 0 8px 24px rgba(122, 26, 46, 0.09);
}

.baca-juga-box .icon {
  font-size: 1.4rem;
  color: var(--primary-maroon, #7a1a1a);
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--maroon-soft, #fdf2f2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.baca-juga-box:hover .icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--primary-maroon, #7a1a1a);
  color: #ffffff;
}

.baca-juga-box .thumb {
  flex-shrink: 0;
  width: 84px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.baca-juga-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.baca-juga-box:hover .thumb img {
  transform: scale(1.06);
}

.baca-juga-box .content {
  flex: 1;
  min-width: 0;
}

.baca-juga-box .content .label {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 800;
  color: var(--primary-maroon, #7a1a1a);
  margin-bottom: 0.2rem;
}

.baca-juga-box .content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.2rem 0;
  line-height: 1.35;
}

.baca-juga-box .content h4 a {
  text-decoration: none;
  color: var(--text-dark, #111111);
  transition: color 0.2s ease;
}

.baca-juga-box .content h4 a:hover {
  color: var(--primary-maroon, #7a1a1a);
}

.baca-juga-box .content p {
  font-size: 0.82rem;
  color: var(--text-muted, #6c757d);
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 4. Promo WA Box */
.promo-wa-box {
  position: relative;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.22);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-wa-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.promo-wa-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.3);
}

.promo-wa-box .icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  color: #25D366;
  background: rgba(255, 255, 255, 0.15);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-wa-box .content {
  flex: 1;
  min-width: 0;
}

.promo-wa-box .content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  color: #ffffff;
}

.promo-wa-box .content p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

.promo-wa-box .btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #ffffff;
  color: #075E54;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.92rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.promo-wa-box .btn-wa i {
  color: #25D366;
  font-size: 1.15rem;
}

.promo-wa-box .btn-wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

/* 5. Supporting Image */
.supporting-image {
  margin: 1.8rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-gray, #f8f9fa);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.supporting-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* 6. Conclusion Box */
.conclusion-box {
  background: linear-gradient(145deg, #fffdf8 0%, #fff9ec 100%);
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0 1.5rem 0;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-left: 4px solid var(--secondary-gold, #c9a84c);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.08);
}

.conclusion-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--text-dark, #111111);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.conclusion-box p,
.conclusion-box ul {
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.7;
}

.conclusion-box ul {
  padding-left: 1.3rem;
  margin: 0;
}

.conclusion-box ul li {
  margin-bottom: 0.4rem;
}

/* 7. Author Bio */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 16px;
  padding: 1.6rem 1.75rem;
  margin: 2.2rem 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.author-bio:hover {
  border-color: rgba(122, 26, 46, 0.25);
  box-shadow: 0 8px 24px rgba(122, 26, 46, 0.06);
}

.author-bio .avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-maroon, #7a1a1a);
  box-shadow: 0 0 0 4px rgba(122, 26, 46, 0.12);
}

.author-bio .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-bio .info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  color: var(--text-dark, #111111);
}

.author-bio .info .role {
  font-size: 0.85rem;
  color: var(--primary-maroon, #7a1a1a);
  font-weight: 600;
  margin-bottom: 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.author-bio .info p {
  font-size: 0.92rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* 8. Share Section */
.share-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color, #e5e7eb);
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.share-section .label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark, #111111);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.whatsapp {
  background: #25D366;
  color: #ffffff;
}

.share-btn.facebook {
  background: #1877F2;
  color: #ffffff;
}

.share-btn.twitter {
  background: #111111;
  color: #ffffff;
}

.share-btn.linkedin {
  background: #0A66C2;
  color: #ffffff;
}

.share-btn.copy {
  background: var(--bg-gray, #f3f4f6);
  color: var(--text-dark, #111111);
  border: 1px solid var(--border-color, #e5e7eb);
}

.share-btn.copy:hover {
  background: #e5e7eb;
}

/* 9. Recommendations & Related Posts Grid */
.recommendations {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color, #e5e7eb);
}

.recommendations h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  color: var(--text-dark, #111111);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.recommend-item {
  background: var(--bg-card, #ffffff);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.recommend-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(122, 26, 46, 0.09);
  border-color: var(--primary-maroon, #7a1a1a);
}

.recommend-item .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-gray, #f3f4f6);
}

.recommend-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.recommend-item:hover .thumb img {
  transform: scale(1.05);
}

.recommend-item .body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recommend-item .body h4 {
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0 0 0.35rem 0;
  line-height: 1.35;
}

.recommend-item .body h4 a {
  text-decoration: none;
  color: var(--text-dark, #111111);
  transition: color 0.2s ease;
}

.recommend-item .body h4 a:hover {
  color: var(--primary-maroon, #7a1a1a);
}

.recommend-item .body p {
  font-size: 0.84rem;
  color: var(--text-muted, #6c757d);
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
  flex: 1;
}

.recommend-item .body .readmore {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-maroon, #7a1a1a);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}

.recommend-item .body .readmore:hover {
  gap: 0.55rem;
  text-decoration: underline;
}

/* Sidebar Styles */
.sidebar-hero {
  background: var(--bg-gray, #f8f9fa);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border-color, #e5e7eb);
  transition: all 0.3s ease;
}

.sidebar-hero:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(122, 26, 46, 0.2);
}

.sidebar-hero .hero-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-maroon, #7a1a1a);
  font-weight: 700;
}

.sidebar-hero h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0.35rem 0 0.25rem 0;
  line-height: 1.35;
}

.sidebar-hero h4 a {
  text-decoration: none;
  color: var(--text-dark, #111111);
  transition: color 0.2s ease;
}

.sidebar-hero h4 a:hover {
  color: var(--primary-maroon, #7a1a1a);
}

.sidebar-hero .post-date {
  font-size: 0.78rem;
  color: var(--text-muted, #6c757d);
}

.sidebar-related h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-maroon, #7a1a1a);
  border-bottom: 2px solid var(--border-color, #e5e7eb);
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.related-item {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.related-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.related-item .thumb {
  flex-shrink: 0;
  width: 76px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-gray, #f8f9fa);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.related-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-item .content {
  flex: 1;
  min-width: 0;
}

.related-item .content h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
  line-height: 1.35;
}

.related-item .content h4 a {
  text-decoration: none;
  color: var(--text-dark, #111111);
  transition: color 0.2s ease;
}

.related-item .content h4 a:hover {
  color: var(--primary-maroon, #7a1a1a);
}

.related-item .content p {
  font-size: 0.8rem;
  color: var(--text-muted, #6c757d);
  margin: 0 0 0.35rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item .content .readmore {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-maroon, #7a1a1a);
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS FOR BLOG ARTICLES
   ============================================================ */
@media (max-width: 1024px) {
  .article-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .article-sidebar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    position: static !important;
  }

  .sidebar-related {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 768px) {
  .article-wrapper {
    margin-top: 0.5rem !important;
    gap: 1.75rem !important;
  }

  .article-header h1 {
    font-size: clamp(1.35rem, 5.2vw, 1.8rem) !important;
    line-height: 1.32 !important;
    letter-spacing: -0.015em !important;
  }

  .article-meta {
    gap: 0.75rem !important;
    padding-bottom: 0.85rem !important;
    margin-bottom: 0.85rem !important;
  }

  .author-avatar {
    width: 42px !important;
    height: 42px !important;
  }

  .author-name {
    font-size: 0.88rem !important;
  }

  .post-date {
    font-size: 0.76rem !important;
  }

  .article-featured-image {
    border-radius: 12px !important;
    margin-bottom: 0.4rem !important;
  }

  .caption {
    font-size: 0.75rem !important;
    margin-bottom: 1.1rem !important;
  }

  /* Summary Box on Mobile */
  .article-summary {
    padding: 1.1rem 1.2rem !important;
    margin: 1.35rem 0 !important;
    border-radius: 12px !important;
  }

  .article-summary h3 {
    font-size: 0.95rem !important;
  }

  .article-summary ul {
    font-size: 0.86rem !important;
    line-height: 1.6 !important;
    padding-left: 1.1rem !important;
  }

  /* TOC on Mobile */
  .toc-wrapper {
    padding: 0.95rem 1.15rem !important;
    margin: 1.35rem 0 !important;
    border-radius: 12px !important;
  }

  .toc-header h3 {
    font-size: 0.95rem !important;
  }

  .toc-list li {
    font-size: 0.85rem !important;
  }

  /* Content Headings on Mobile */
  .article-content {
    font-size: 0.96rem !important;
    line-height: 1.75 !important;
  }

  .article-content h2 {
    font-size: 1.22rem !important;
    margin: 1.85rem 0 0.75rem 0 !important;
    padding-left: 0.7rem !important;
  }

  .article-content h3 {
    font-size: 1.05rem !important;
    margin: 1.35rem 0 0.6rem 0 !important;
  }

  .article-content p {
    margin-bottom: 1rem !important;
  }

  /* In-Article Recommendation (Baca Juga) on Mobile - News Portal Compact Horizontal Card */
  .baca-juga-box {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 0.85rem !important;
    padding: 0.85rem 0.95rem !important;
    border-radius: 12px !important;
    margin: 1.35rem 0 !important;
  }

  .baca-juga-box .icon {
    display: none !important;
  }

  .baca-juga-box .thumb {
    width: 74px !important;
    height: 62px !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
  }

  .baca-juga-box .content .label {
    font-size: 0.68rem !important;
    margin-bottom: 0.1rem !important;
  }

  .baca-juga-box .content h4 {
    font-size: 0.86rem !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }

  .baca-juga-box .content p {
    display: none !important;
  }

  /* Promo WA Box on Mobile */
  .promo-wa-box {
    flex-direction: column !important;
    text-align: center !important;
    padding: 1.35rem 1.2rem !important;
    gap: 1rem !important;
    border-radius: 14px !important;
    margin: 1.75rem 0 !important;
  }

  .promo-wa-box .icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 2.2rem !important;
  }

  .promo-wa-box .content h3 {
    font-size: 1.05rem !important;
  }

  .promo-wa-box .content p {
    font-size: 0.84rem !important;
  }

  .promo-wa-box .btn-wa {
    width: 100% !important;
    padding: 0.65rem 1.2rem !important;
    font-size: 0.88rem !important;
  }

  /* Conclusion Box on Mobile */
  .conclusion-box {
    padding: 1.15rem 1.2rem !important;
    margin: 1.6rem 0 1.25rem 0 !important;
    border-radius: 12px !important;
  }

  .conclusion-box h3 {
    font-size: 1.05rem !important;
  }

  .conclusion-box ul {
    font-size: 0.86rem !important;
    line-height: 1.6 !important;
    padding-left: 1.1rem !important;
  }

  /* Author Bio on Mobile */
  .author-bio {
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 1rem !important;
    padding: 1.2rem !important;
    border-radius: 14px !important;
  }

  .author-bio .avatar {
    width: 56px !important;
    height: 56px !important;
    border-width: 2px !important;
  }

  .author-bio .info h4 {
    font-size: 0.98rem !important;
  }

  .author-bio .info .role {
    font-size: 0.76rem !important;
  }

  .author-bio .info p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  /* Share Bar on Mobile */
  .share-section {
    justify-content: flex-start !important;
    gap: 0.45rem !important;
    padding: 0.75rem 0 !important;
  }

  .share-section .label {
    width: 100% !important;
    margin-bottom: 0.2rem !important;
    font-size: 0.8rem !important;
  }

  .share-btn {
    padding: 0.38rem 0.7rem !important;
    font-size: 0.76rem !important;
  }

  /* Recommendations Grid on Mobile: 1 Full Column */
  .recommend-grid {
    grid-template-columns: 1fr !important;
    gap: 1.1rem !important;
  }

  .recommend-item {
    border-radius: 12px !important;
  }

  .recommend-item .thumb {
    aspect-ratio: 16 / 9 !important;
  }

  .recommend-item .body {
    padding: 1rem 1.1rem 1.2rem !important;
  }

  .recommend-item .body h4 {
    font-size: 0.92rem !important;
  }

  .recommend-item .body p {
    font-size: 0.8rem !important;
  }

  /* Sidebar on Mobile */
  .article-sidebar {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
  }
}

@media (max-width: 480px) {
  .author-bio {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .share-btn span {
    display: none !important;
  }

  .share-btn {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.9rem !important;
  }
}

/* ============================================================
   PREMIUM LUXURY FOOTER WITH INTERACTIVE HOVER ANIMATIONS
   ============================================================ */
.footer {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(122, 26, 46, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(163, 18, 54, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, #0a0d14 0%, #111827 50%, #080a0f 100%);
  color: #D1D5DB;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #F59E0B 20%, #A31236 50%, #F59E0B 80%, transparent 100%);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.footer-brand .brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.footer-brand .brand-logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.footer-brand .logo-img {
  filter: drop-shadow(0 4px 10px rgba(163, 18, 54, 0.4));
  transition: transform 0.4s ease;
}

.footer-brand .brand-logo:hover .logo-img {
  transform: rotate(-5deg) scale(1.08);
}

.footer-brand p {
  font-size: 0.92rem;
  color: #9CA3AF;
  margin-bottom: 1.5rem;
  max-width: 340px;
  line-height: 1.7;
}

/* Social & Quick Connect Buttons */
.footer-social-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.footer-social-btn:hover {
  background: linear-gradient(135deg, #A31236 0%, #7A1A2E 100%);
  color: #ffffff;
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 20px rgba(163, 18, 54, 0.4), 0 0 12px rgba(245, 158, 11, 0.3);
}

.footer-social-btn.wa-btn:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Footer Column Headings */
.footer-col h4 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F59E0B, #A31236);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
  transition: width 0.35s ease;
}

.footer-col:hover h4::after {
  width: 50px;
}

/* Footer Links with Animated Chevron & Glow */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #9CA3AF;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: #F59E0B;
  opacity: 0.6;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(3px) scale(1.2);
  color: #FBBF24;
}

/* Footer Contact List with Animated Icon Badges */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #D1D5DB;
  line-height: 1.5;
  transition: transform 0.25s ease;
}

.footer-contact-list li:hover {
  transform: translateX(4px);
  color: #ffffff;
}

.footer-contact-list i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F59E0B;
  font-size: 0.8rem;
  margin-top: -2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-contact-list li:hover i {
  background: linear-gradient(135deg, #A31236 0%, #7A1A2E 100%);
  color: #ffffff;
  border-color: rgba(245, 158, 11, 0.4);
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 4px 12px rgba(163, 18, 54, 0.4), 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.88rem;
  color: #9CA3AF;
  position: relative;
  z-index: 2;
}

/* Footer Responsive Media Queries */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 3.5rem;
    padding-bottom: 2.25rem;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  /* 1. Brand Section Center Alignment */
  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .footer-brand .brand-logo {
    justify-content: center;
    margin: 0 auto 1rem auto;
  }

  .footer-brand p {
    max-width: 480px;
    margin: 0 auto 1.25rem auto;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .footer-social-strip {
    justify-content: center;
    margin: 0.5rem auto 0 auto;
    gap: 0.85rem;
  }

  /* 2. Column Headings Center Alignment */
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-col h4 {
    text-align: center;
    margin-bottom: 1.25rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.65rem;
  }

  .footer-col h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .footer-col:hover h4::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 48px;
  }

  /* 3. Link Lists Center Alignment */
  .footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.65rem;
  }

  .footer-links a {
    justify-content: center;
    display: inline-flex;
    font-size: 0.88rem;
    padding: 0.15rem 0.5rem;
    transition: all 0.25s ease;
  }

  .footer-links a:hover {
    transform: translateY(-2px) scale(1.03);
  }

  /* 4. Contact List Center Alignment */
  .footer-contact-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 0.85rem;
  }

  .footer-contact-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 420px;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
  }

  .footer-contact-list li:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
  }

  .footer-contact-list i {
    margin-top: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.85rem;
  }

  .footer-contact-list span {
    text-align: center;
    font-size: 0.86rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* 5. Footer Bottom Center Alignment */
  .footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    justify-content: center;
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding-top: 2.75rem;
    padding-bottom: 1.75rem;
  }

  .footer-grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-social-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .footer-contact-list li {
    padding: 0.5rem 0.7rem;
  }
}

/* --- FLOATING WHATSAPP - HIJAU ASLI DENGAN VARIASI MENARIK --- */
.float-wa {
  /* Warna hijau WhatsApp dengan gradasi */
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  text-decoration: none;

  /* Animasi denyut halus (pulse) */
  animation: wa-pulse 2.4s ease-in-out infinite;
}

/* Efek hover – membesar lurus ke atas dan bayangan lebih kuat (tanpa rotasi / miring) */
.float-wa:hover {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #1ebe57, #0c6b5e);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

/* Animasi denyut (pulse) – lingkaran bayangan membesar & memudar */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Ikon WhatsApp – lurus dan membesar halus tanpa rotasi/miring */
.float-wa i {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

.float-wa:hover i {
  transform: scale(1.08);
}

/* Tooltip (jika Anda aktifkan) – disesuaikan dengan hijau */
.float-wa .tooltip {
  background: #075e54;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  position: absolute;
  right: 70px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.float-wa:hover .tooltip {
  opacity: 1;
}

/* Back To Top Button - SELALU di kanan, di atas WA */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  background-color: #111827;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 990;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--primary-maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-maroon);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* --- Tablet & Mobile (max-width: 992px) --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--bg-main);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 0.75rem;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    border-radius: 0 !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 0.75rem 1rem !important;
    border-radius: 12px !important;
  }

  .nav-item-dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: transparent;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  .nav-item-dropdown.open .dropdown-menu {
    display: block;
  }

  .navbar-container {
    justify-content: flex-start;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-actions {
    margin-left: 0.75rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-banner {
    padding: 3rem 2rem;
  }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .nav-actions .btn-whatsapp {
    display: none !important;
  }

  .nav-actions {
    margin-left: 0;
  }

  .hero-slider-section {
    padding: 1.25rem 0 1.5rem 0 !important;
    background: radial-gradient(circle at 80% 15%, rgba(163, 18, 54, 0.45) 0%, transparent 60%),
      radial-gradient(circle at 20% 85%, rgba(128, 0, 32, 0.5) 0%, transparent 60%),
      linear-gradient(135deg, #32030B 0%, #520916 35%, #6E1222 70%, #3D040E 100%) !important;
  }

  .hero-inner-container {
    padding: 0 1rem !important;
  }

  .hero-slider-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    min-height: auto !important;
  }

  .hero-content {
    display: contents !important;
  }

  .hero-visual-wrapper {
    display: contents !important;
  }

  .hero-content .trust-tag {
    order: 1 !important;
    align-self: center !important;
    font-size: 0.62rem !important;
    white-space: nowrap !important;
    padding: 0.25rem 0.75rem !important;
    margin: 0 auto 0.45rem auto !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    gap: 0.4rem !important;
    max-width: 95% !important;
    border-radius: 50px !important;
  }

  .hero-content h1.hero-title {
    order: 2 !important;
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.65rem !important;
    text-align: center !important;
    letter-spacing: -0.02em !important;
    width: 100% !important;
  }

  .hero-top-badges {
    order: 3 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 0.65rem auto !important;
    flex-wrap: nowrap !important;
  }

  .hero-rating-badge,
  .hero-trust-badge-right {
    flex: 1 1 0% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.35rem 0.45rem !important;
    gap: 0.4rem !important;
    border-radius: 50px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .rating-stars {
    display: flex !important;
    gap: 1px !important;
    font-size: 0.52rem !important;
    color: #FBBF24 !important;
    flex-shrink: 0 !important;
  }

  .hero-trust-badge-right i {
    color: #FBBF24 !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
  }

  .rating-info,
  .trust-badge-info {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    line-height: 1.15 !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .rating-score,
  .trust-badge-title {
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    white-space: nowrap !important;
  }

  .rating-text,
  .trust-badge-sub {
    font-size: 0.54rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    white-space: nowrap !important;
  }

  .hero-image-card {
    order: 4 !important;
    width: 100% !important;
    padding: 4px !important;
    border-radius: 14px !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-slider {
    height: 220px !important;
    border-radius: 10px !important;
  }

  .hero-slider .hero-slider-dots {
    bottom: 10px !important;
    gap: 6px !important;
  }

  .hero-slider .hero-slider-dots .dot {
    width: 7px !important;
    height: 7px !important;
  }

  .hero-slider .hero-slider-dots .dot.active {
    width: 18px !important;
  }

  .hero-intro {
    order: 5 !important;
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
    max-width: 100% !important;
    color: #ffffff !important;
    padding: 0 0.25rem !important;
    width: 100% !important;
  }

  br.d-desktop-block {
    display: none !important;
  }

  .text-nowrap-desktop {
    white-space: normal !important;
  }

  .hero-list {
    order: 6 !important;
    gap: 0.5rem !important;
    margin-bottom: 0.85rem !important;
    width: 100% !important;
  }

  .hero-list-item,
  .hero-list li {
    padding: 0.55rem 0.85rem !important;
    border-radius: 10px !important;
    gap: 0.75rem !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    text-align: left !important;
    display: flex !important;
    align-items: flex-start !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }

  .hero-list-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.72rem !important;
    border-radius: 7px !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(122, 26, 46, 0.5)) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    color: #FBBF24 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 6px rgba(251, 191, 36, 0.2) !important;
  }

  .hero-list-text {
    font-size: 0.82rem !important;
    line-height: 1.4 !important;
    color: #ffffff !important;
    flex: 1 !important;
  }

  .hero-list-text strong,
  .hero-list li strong {
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  .hero-footer {
    order: 7 !important;
    padding: 0.65rem 0.85rem !important;
    margin-bottom: 1rem !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    width: 100% !important;
    text-align: left !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12) !important;
  }

  .hero-footer-trust {
    font-size: 0.8rem !important;
    line-height: 1.42 !important;
    gap: 0.65rem !important;
    margin-bottom: 0 !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: flex-start !important;
  }

  .hero-footer-trust span {
    color: #ffffff !important;
  }

  .hero-footer-badge-icon {
    font-size: 0.95rem !important;
    color: #FBBF24 !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
  }

  .hero-cta-wrapper {
    order: 8 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.6rem !important;
    width: 100% !important;
    margin-bottom: 1rem !important;
  }

  .btn-hero-primary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.8rem 1.25rem !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
  }

  .hero-feature-cards {
    order: 9 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding-top: 0.85rem !important;
    margin-top: 0.25rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    width: 100% !important;
  }

  .hero-feat-card {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px !important;
    padding: 0.55rem 0.75rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.65rem !important;
    text-align: left !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    width: 100% !important;
  }

  .hero-feat-card .feat-icon-box {
    width: 32px !important;
    height: 32px !important;
    border-radius: 7px !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(122, 26, 46, 0.6) 100%) !important;
    border: 1px solid rgba(251, 191, 36, 0.4) !important;
    color: #FBBF24 !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
  }

  .hero-feat-card .feat-info {
    text-align: left !important;
    flex: 1 !important;
    width: auto !important;
  }

  .hero-feat-card .feat-info h4 {
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 2px 0 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
  }

  .hero-feat-card .feat-info span {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.88) !important;
    display: block !important;
    line-height: 1.25 !important;
  }

  /* GRID 2 KOLOM KONSISTEN */
  .category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem !important;
  }

  .category-card {
    padding: 0.8rem 0.3rem !important;
  }

  .category-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.3rem !important;
  }

  .category-card h3 {
    font-size: 0.7rem !important;
    margin-bottom: 0.1rem !important;
  }

  .category-card p {
    font-size: 0.55rem !important;
  }

  /* PRODUCT & PACKAGE 1 KOLOM MOBILE (NO EMPTY SPACE) */
  .product-grid,
  .product-grid-elegant {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .product-card-elegant .product-thumb {
    aspect-ratio: 16 / 10 !important;
    max-height: 240px !important;
  }

  .product-card-elegant .product-body {
    padding: 1.1rem 1rem !important;
  }

  .product-card-elegant .product-title {
    font-size: 0.95rem !important;
    margin-bottom: 0.2rem !important;
  }

  .product-card-elegant .product-variant {
    font-size: 0.8rem !important;
    margin-bottom: 0.4rem !important;
  }

  .product-card-elegant .product-price-box {
    gap: 0.6rem !important;
    margin-bottom: 0.4rem !important;
  }

  .product-card-elegant .price-sale {
    font-size: 1.1rem !important;
  }

  .product-card-elegant .price-original {
    font-size: 0.8rem !important;
  }

  .product-meta {
    font-size: 0.75rem !important;
    gap: 0.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .product-card-elegant .btn-detail {
    font-size: 0.82rem !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: 50px !important;
    width: 100% !important;
  }

  .badge-discount {
    font-size: 0.75rem !important;
    padding: 4px 12px !important;
    top: 10px !important;
    left: 10px !important;
  }

  .badge-discount::after {
    font-size: 0.65rem !important;
  }

  .package-grid,
  .package-grid-elegant {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .package-card-elegant .package-thumb {
    aspect-ratio: 16 / 9 !important;
  }

  .package-card-elegant .package-body {
    padding: 1.25rem 1.2rem 1.4rem !important;
  }

  .package-card-elegant .package-icon-wrap i {
    font-size: 1.3rem !important;
    padding: 0.4rem !important;
  }

  .package-card-elegant .package-body h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.2rem !important;
  }

  .package-card-elegant .package-sub {
    font-size: 0.82rem !important;
    margin-bottom: 0.5rem !important;
  }

  .package-card-elegant .package-features li {
    font-size: 0.82rem !important;
    gap: 0.5rem !important;
  }

  .package-card-elegant .package-features li i {
    font-size: 0.7rem !important;
    width: 1.1rem !important;
  }

  .package-card-elegant .btn-package {
    font-size: 0.85rem !important;
    padding: 0.6rem 1.2rem !important;
  }

  .package-card-elegant .package-features {
    margin-bottom: 0.8rem !important;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem !important;
  }

  .value-card {
    padding: 0.8rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.3rem !important;
  }

  .value-card .value-icon {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }

  .value-card .value-content h3 {
    font-size: 0.75rem !important;
    margin-bottom: 0.1rem !important;
  }

  .value-card .value-content p {
    font-size: 0.65rem !important;
  }

  .section-divider {
    margin: 2.5rem auto 2rem auto !important;
  }

  .reason-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .reason-card {
    padding: 1.4rem 1.25rem !important;
  }

  .reason-card .reason-icon {
    font-size: 1.6rem !important;
    margin-bottom: 0.6rem !important;
  }

  .reason-card h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.35rem !important;
  }

  .reason-card p {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }

  .testimonial-grid-modern {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.7rem !important;
  }

  .testimonial-card-modern {
    padding: 0.9rem !important;
  }

  .testi-icon-modern {
    font-size: 1.6rem !important;
    margin-bottom: 0.1rem !important;
  }

  .testi-stars-modern {
    font-size: 0.7rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.3rem !important;
  }

  .testi-text-modern {
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    margin-bottom: 0.7rem !important;
    line-height: 1.5 !important;
  }

  .testi-author-modern {
    gap: 0.5rem !important;
    padding-top: 0.6rem !important;
  }

  .testi-avatar-modern {
    width: 34px !important;
    height: 34px !important;
  }

  .testi-name-modern {
    font-size: 0.7rem !important;
  }

  .testi-role-modern {
    font-size: 0.6rem !important;
  }

  .section-title {
    margin-bottom: 1.2rem !important;
  }

  .section-title .badge-tag {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.6rem !important;
    margin-bottom: 0.4rem !important;
  }

  .section-title h2 {
    font-size: 1.1rem !important;
    margin-bottom: 0.3rem !important;
  }

  .section-title p {
    font-size: 0.75rem !important;
  }

  .section {
    padding: 2rem 0 !important;
  }

  .view-all-wrapper {
    margin-top: 1rem !important;
  }

  .view-all-wrapper .view-all-link {
    font-size: 0.7rem !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .about-grid .about-image {
    order: -1 !important;
  }

  .about-slider {
    aspect-ratio: 4 / 3 !important;
    min-height: 160px !important;
  }

  .about-slider .slider-dots {
    bottom: 6px !important;
    padding: 3px 8px !important;
    gap: 5px !important;
  }

  .about-slider .slider-dots .dot {
    width: 7px !important;
    height: 7px !important;
  }

  .about-grid h2 {
    font-size: 1.1rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.6rem !important;
  }

  .about-grid p {
    font-size: 0.8rem !important;
    margin-bottom: 0.6rem !important;
  }

  .about-grid .btn {
    font-size: 0.8rem !important;
    padding: 0.5rem 1.2rem !important;
  }

  .faq-container {
    gap: 0.75rem !important;
  }

  .faq-question {
    font-size: 0.88rem !important;
    padding: 0.85rem 0.95rem !important;
    gap: 0.75rem !important;
  }

  .faq-q-badge {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    border-radius: 9px !important;
  }

  .faq-toggle-badge {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.75rem !important;
  }

  .faq-answer {
    padding: 0 0.95rem !important;
  }

  .faq-item.active .faq-answer {
    padding: 0 0.95rem 0.95rem 0.95rem !important;
  }

  .faq-answer-inner {
    padding-left: 0 !important;
    padding-top: 0.6rem !important;
  }

  .faq-answer-inner p {
    font-size: 0.8rem !important;
    line-height: 1.55 !important;
  }

  /* --- CTA BANNER (MOBILE FIX: PREVENT BUTTON OVERFLOW) --- */
  .cta-banner {
    padding: 2.25rem 1.25rem !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow: hidden !important;
    text-align: center !important;
  }

  .cta-banner h2 {
    font-size: clamp(1.2rem, 5vw, 1.55rem) !important;
    font-weight: 800 !important;
    line-height: 1.32 !important;
    margin-bottom: 0.65rem !important;
    color: #ffffff !important;
    word-break: break-word !important;
    text-wrap: balance !important;
  }

  .cta-banner p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin: 0 auto 1.35rem auto !important;
    color: rgba(255, 255, 255, 0.92) !important;
    max-width: 100% !important;
    word-break: break-word !important;
  }

  .cta-banner .btn-whatsapp,
  .cta-banner .btn {
    width: 100% !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.55rem !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    padding: 0.8rem 1.15rem !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.35 !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
  }

  .cta-banner .btn-whatsapp i,
  .cta-banner .btn i {
    font-size: 1.15rem !important;
    flex-shrink: 0 !important;
  }

  .float-wa {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .float-wa .tooltip {
    display: none;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    bottom: 5.5rem;
    right: 1.25rem;
  }
}

/* --- Extra small (max-width: 420px) --- */
@media (max-width: 420px) {
  .hero-content .trust-tag {
    font-size: 0.52rem !important;
    padding: 0.2rem 0.55rem !important;
  }

  .hero-content h1.hero-title {
    font-size: 1.28rem !important;
  }

  .hero-intro {
    font-size: 0.76rem !important;
    line-height: 1.42 !important;
    color: #ffffff !important;
  }

  .hero-list-text {
    font-size: 0.73rem !important;
    color: #ffffff !important;
  }

  .hero-footer-trust {
    font-size: 0.72rem !important;
    color: #ffffff !important;
  }

  .hero-footer-cta {
    font-size: 0.74rem !important;
    color: #ffffff !important;
  }

  .hero-content p.hero-description {
    font-size: 0.74rem !important;
    line-height: 1.42 !important;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.82rem !important;
    padding: 0.55rem 1rem !important;
  }

  .hero-slider {
    height: 175px !important;
  }

  .category-grid {
    gap: 0.4rem !important;
  }

  .product-grid,
  .product-grid-elegant {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .package-grid,
  .package-grid-elegant {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .value-grid {
    gap: 0.4rem !important;
  }

  .reason-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .testimonial-grid-modern {
    gap: 0.5rem !important;
  }

  .section-title h2 {
    font-size: 0.95rem !important;
  }

  .section-title p {
    font-size: 0.65rem !important;
  }

  .cta-banner {
    padding: 1.75rem 1rem !important;
    border-radius: 14px !important;
  }

  .cta-banner h2 {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
  }

  .cta-banner p {
    font-size: 0.82rem !important;
    margin-bottom: 1.15rem !important;
  }

  .cta-banner .btn-whatsapp,
  .cta-banner .btn {
    font-size: 0.82rem !important;
    padding: 0.75rem 0.85rem !important;
    gap: 0.45rem !important;
  }

  .cta-banner .btn-whatsapp i,
  .cta-banner .btn i {
    font-size: 1.05rem !important;
  }

  .float-wa {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    bottom: 1rem;
    right: 1rem;
  }

  .back-to-top {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
    bottom: 4.8rem;
    right: 1rem;
  }
}

/* --- UTILITY: brand logo --- */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 32px;
  }

  .logo-text {
    font-size: 1rem !important;
  }
}

/* ============================================================
   KHUSUS INDEX.HTML - HERO SECTION (LUXURY MODERN & ANIMATED)
   ============================================================ */

.hero-slider-section {
  position: relative;
  background: radial-gradient(circle at 85% 20%, rgba(163, 18, 54, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(128, 0, 32, 0.5) 0%, transparent 60%),
    linear-gradient(135deg, #32030B 0%, #520916 35%, #6E1222 70%, #3D040E 100%);
  padding: 1.15rem 0 2.8rem 0 !important;
  margin-top: 0 !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Ambient Glow Spheres */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
}

.hero-ambient-glow.glow-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.25) 0%, rgba(128, 0, 32, 0) 70%);
  top: -80px;
  left: 20%;
  animation: pulse-ambient 8s ease-in-out infinite alternate;
}

.hero-ambient-glow.glow-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(163, 18, 54, 0.4) 0%, rgba(60, 0, 15, 0) 70%);
  bottom: -100px;
  right: 10%;
  animation: pulse-ambient 10s ease-in-out infinite alternate-reverse;
}

/* Subtle Grid Pattern Overlay */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-inner-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem !important;
}

.hero-slider-grid {
  display: grid;
  grid-template-columns: 1.24fr 0.76fr;
  gap: 1.85rem;
  align-items: start;
  min-height: auto;
  width: 100%;
}

/* --- LEFT: HERO CONTENT --- */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: transparent !important;
  padding: 0 !important;
  text-align: left;
  color: #ffffff;
}

/* Trust Pill Tag */
.hero-content .trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff !important;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 0.35rem;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: float-micro 4s ease-in-out infinite;
}

.hero-content .trust-tag span {
  color: #ffffff !important;
}

.hero-content .trust-tag .trust-dot {
  width: 6px;
  height: 6px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 10px #22C55E;
  display: inline-block;
  animation: dot-pulse 2s infinite;
}

.hero-content .trust-tag i.text-gold {
  color: #F59E0B;
  font-size: 0.8rem;
}

/* Title & Highlight */
.hero-content h1.hero-title {
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff !important;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  text-wrap: balance;
  text-align: left;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF2E2 40%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 12px rgba(245, 158, 11, 0.35));
}

/* Hero Intro (Prominent Highlight - 3 Baris Rapi) */
.hero-intro {
  font-size: 0.93rem;
  color: #ffffff !important;
  line-height: 1.55;
  margin: 0 0 0.38rem 0;
  width: 100%;
  max-width: 100%;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
}

.text-nowrap-desktop {
  white-space: nowrap;
}

br.d-desktop-block {
  display: block;
  content: "";
}

.hero-brand-highlight {
  color: #FBBF24;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.35);
}

/* Hero List (Space-Efficient Compact Feature Cards) */
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.35rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

.hero-list-item,
.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.42rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-list-item:hover,
.hero-list li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(122, 26, 46, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  font-size: 0.72rem;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(251, 191, 36, 0.25);
}

.hero-list-text {
  font-size: 0.82rem;
  line-height: 1.35;
  color: #ffffff !important;
}

.hero-list-text strong,
.hero-list li strong {
  color: #ffffff !important;
  font-weight: 700;
}

/* Hero Footer (Compact Executive Trust Box) */
.hero-footer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  margin-bottom: 0.55rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.hero-footer:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-footer-trust {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #ffffff !important;
  margin-bottom: 0;
}

.hero-footer-trust span {
  color: #ffffff !important;
}

.hero-footer-badge-icon {
  color: #FBBF24;
  font-size: 0.88rem;
  flex-shrink: 0;
}

/* Backwards compatibility */
.hero-content p.hero-description {
  font-size: 0.85rem;
  color: #ffffff !important;
  line-height: 1.4;
  margin-bottom: 0.45rem;
  max-width: 580px;
  font-weight: 400;
  text-wrap: balance;
  text-align: left;
}

/* CTA Wrapper (Elevated Position) */
.hero-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 0;
}

/* Primary Hero Button */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF4EB 100%);
  color: #7A1A2E !important;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.65rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 158, 11, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(30deg) translate(-100%, 0);
  transition: transform 0.8s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4), 0 0 28px rgba(245, 158, 11, 0.4);
  color: #550D1C !important;
}

.btn-hero-primary:hover::before {
  transform: rotate(30deg) translate(100%, 0);
}

.btn-hero-primary .btn-arrow {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Secondary Hero Button */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.55rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-hero-secondary i {
  color: #FBBF24;
}

/* Top Badges Row (Rating & Garansi Resmi) */
.hero-top-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  margin-bottom: 0.45rem;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: float-micro 4s ease-in-out infinite;
}

.rating-stars {
  color: #FBBF24;
  font-size: 0.72rem;
  display: flex;
  gap: 2px;
}

.rating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.rating-score {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff !important;
}

.rating-text {
  font-size: 0.65rem;
  color: #ffffff !important;
  font-weight: 500;
}

/* Trust Guarantee Badge (Sebelah Rating) */
.hero-trust-badge-right {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.22rem 0.7rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: float-micro 4s ease-in-out infinite alternate;
}

.hero-trust-badge-right i {
  color: #FBBF24;
  font-size: 0.82rem;
}

.trust-badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.trust-badge-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #ffffff !important;
  white-space: nowrap;
}

.trust-badge-sub {
  font-size: 0.65rem;
  color: #ffffff !important;
  font-weight: 500;
  white-space: nowrap;
}

/* --- RIGHT: VISUAL 5-IMAGE CROSSFADE SLIDER --- */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.hero-image-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45), 0 0 35px rgba(163, 18, 54, 0.35);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a050b;
}

/* Feature Cards Strip Di Bawah Gambar */
.hero-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.6rem;
  padding-top: 0;
  border-top: none;
}

.hero-feat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
  min-width: 0;
  box-sizing: border-box;
}

.hero-feat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feat-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(122, 26, 46, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBBF24;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.feat-info {
  width: 100%;
  text-align: left;
}

.feat-info h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 2px 0;
  line-height: 1.2;
  white-space: nowrap;
}

.feat-info span {
  font-size: 0.64rem;
  color: #ffffff !important;
  display: block;
  line-height: 1.25;
  opacity: 0.92;
  word-break: normal;
}

.hero-slider .hero-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.hero-slider .hero-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  overflow: hidden;
}

.hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.8s ease;
}

.hero-slider:hover .hero-slide img {
  transform: scale(1.03);
}

/* Hero Slider Dots */
.hero-slider .hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-slider .hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
  padding: 0;
}

.hero-slider .hero-slider-dots .dot.active {
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  border-color: #ffffff;
  transform: scale(1.25);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
}

.hero-slider .hero-slider-dots .dot:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.8);
}

/* --- ANIMATIONS KEYFRAMES --- */
@keyframes pulse-ambient {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.15) translate(20px, -15px);
    opacity: 0.55;
  }

  100% {
    transform: scale(0.95) translate(-15px, 20px);
    opacity: 0.35;
  }
}

@keyframes float-micro {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-3px);
  }
}

/* --- RESPONSIVE BREAKPOINTS UNTUK HERO --- */
@media (max-width: 1024px) {
  .hero-slider-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    text-align: center !important;
    align-items: center;
  }

  .hero-content .trust-tag {
    align-self: center;
  }

  .hero-intro {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-list {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-footer {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero-content p.hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-wrapper {
    justify-content: center;
  }

  .hero-feature-cards {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .hero-slider {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .hero-slider-section {
    padding: 2rem 0 3rem 0 !important;
  }

  .hero-content h1.hero-title {
    font-size: 2.1rem;
  }

  .hero-content p.hero-description {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.4rem;
  }

  .hero-slider {
    height: 280px;
  }

  .hero-feature-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1.hero-title {
    font-size: 1.75rem;
  }

  .hero-content .trust-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
  }

  .hero-slider {
    height: 230px;
  }

  .hero-slider .hero-slider-dots {
    bottom: 10px;
    padding: 4px 10px;
    gap: 6px;
  }

  .hero-slider .hero-slider-dots .dot {
    width: 7px;
    height: 7px;
  }
}

/* Category Grid 4 kolom (index) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Product Cards Elegant (index) */
.product-grid-elegant {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card-elegant {
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.product-card-elegant:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--maroon-border);
}

.product-card-elegant .product-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-offwhite);
}

.product-card-elegant .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-elegant:hover .product-thumb img {
  transform: scale(1.04);
}

.badge-discount {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-maroon);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 3;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(122, 26, 26, 0.35);
}

.badge-discount::after {
  content: " OFF";
  font-weight: 400;
  font-size: 0.75rem;
  opacity: 0.85;
}

.product-card-elegant .product-body {
  padding: 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-elegant .product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.product-card-elegant .product-variant {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-elegant .product-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}

.product-card-elegant .price-original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card-elegant .price-sale {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-maroon);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.product-meta .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-meta .rating i {
  color: #f5b342;
  font-size: 0.7rem;
}

.product-meta .rating span {
  font-weight: 600;
  color: var(--text-main);
}

.product-meta .sold {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-meta .sold i {
  font-size: 0.7rem;
  color: var(--primary-maroon);
}

.product-card-elegant .btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--primary-maroon);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-maroon);
  background: transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.product-card-elegant .btn-detail:hover {
  background: var(--primary-maroon);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 26, 26, 0.2);
}

/* Package Grid Elegant */
.package-grid-elegant {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card-elegant {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  will-change: transform;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card-elegant::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #7a1a1a, #b84a4a);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.package-card-elegant:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 24px 60px rgba(122, 26, 26, 0.12), 0 8px 24px rgba(122, 26, 26, 0.06);
  border-color: transparent;
}

.package-card-elegant:hover::after {
  opacity: 1;
}

.package-card-elegant .package-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-offwhite);
}

.package-card-elegant .package-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.package-card-elegant:hover .package-thumb img {
  transform: scale(1.06);
}

.package-card-elegant .package-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.package-card-elegant .package-body {
  padding: 1.5rem 1.5rem 1.8rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card-elegant .package-icon-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.package-card-elegant .package-icon-wrap i {
  font-size: 1.6rem;
  color: var(--primary-maroon);
  background: var(--maroon-soft);
  padding: 0.5rem;
  border-radius: 12px;
  transition: var(--transition);
}

.package-card-elegant:hover .package-icon-wrap i {
  background: var(--primary-maroon);
  color: #fff;
  transform: rotate(-5deg) scale(1.05);
}

.package-card-elegant .package-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 0.2rem;
  line-height: 1.3;
}

.package-card-elegant .package-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.package-card-elegant .package-features {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.package-card-elegant .package-features li {
  font-size: 0.82rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-card-elegant .package-features li i {
  color: var(--primary-maroon);
  font-size: 0.7rem;
  width: 1.2rem;
  text-align: center;
}

.package-card-elegant .btn-package {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.6rem 2rem;
  background: linear-gradient(135deg, #7a1a1a, #a13a3a);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(122, 26, 26, 0.2);
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.package-card-elegant .btn-package:hover {
  background: linear-gradient(135deg, #5a0f0f, #7a1a1a);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122, 26, 26, 0.35);
}

.package-card-elegant .btn-package i {
  transition: transform 0.3s ease;
}

.package-card-elegant .btn-package:hover i {
  transform: translateX(4px);
}

/* Testimoni Modern */
.testimonial-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.testimonial-card-modern {
  background: var(--bg-card);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(122, 26, 26, 0.08);
}

.testi-icon-modern {
  font-size: 2.8rem;
  color: #7a1a1a;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.testi-stars-modern {
  color: #f5b342;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
}

.testi-text-modern {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testi-author-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.25rem;
  margin-top: auto;
}

.testi-avatar-modern {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #7a1a1a;
  flex-shrink: 0;
}

.testi-name-modern {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0.1rem;
}

.testi-role-modern {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* About Slider */
.about-slider {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--bg-slider);
  border: 1px solid var(--border-color);
  min-height: 240px;
}

.about-slider .slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.about-slider .slider-slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  overflow: hidden;
}

.about-slider .slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.8s ease;
}

.about-slider:hover .slider-slide img {
  transform: scale(1.03);
}

.about-slider .slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.about-slider .slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
  padding: 0;
  position: relative;
}

.about-slider .slider-dots .dot.active {
  background: var(--primary-maroon);
  border-color: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(122, 26, 26, 0.4);
}

.about-slider .slider-dots .dot:hover {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.8);
}

.about-slider .slider-dots .dot.active:hover {
  background: var(--primary-maroon);
  transform: scale(1.25);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Value & Reason */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.value-card {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(122, 26, 26, 0.08);
  border-color: var(--maroon-border);
  background: var(--maroon-soft);
}

.value-card .value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--maroon-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  font-size: 1.2rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary-maroon);
  color: #fff;
  transform: scale(1.05);
}

.value-card .value-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--text-main);
}

.value-card .value-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 26, 46, 0.18), var(--border-color), rgba(122, 26, 46, 0.18), transparent);
  margin: 5rem auto 4.5rem auto;
  max-width: 900px;
  width: 85%;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reason-card {
  background: var(--maroon-soft);
  border: 1px solid var(--maroon-border);
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(122, 26, 26, 0.12);
  border-color: var(--primary-maroon);
  background: #faf0f0;
}

.reason-card .reason-icon {
  font-size: 2rem;
  color: var(--primary-maroon);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.reason-card:hover .reason-icon {
  transform: scale(1.1);
}

.reason-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 700;
}

.reason-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.view-all-wrapper .view-all-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-maroon);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.view-all-wrapper .view-all-link:hover {
  border-bottom-color: var(--primary-maroon);
  transform: translateX(4px);
}

.view-all-wrapper .view-all-link i {
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.view-all-wrapper .view-all-link:hover i {
  transform: translateX(4px);
}

/* ============================================================
   DROPDOWN MOBILE - RAPI & TIDAK MENUTUP MENU
   ============================================================ */

@media (max-width: 992px) {

  /* Dropdown menu di mobile */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 1.2rem !important;
    margin-top: 0.3rem !important;
    background-color: transparent !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    border-left: 2px solid rgba(128, 0, 32, 0.2) !important;
  }

  .nav-item-dropdown.open .dropdown-menu {
    display: block !important;
  }

  .dropdown-item {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    border-left: none !important;
  }

  .dropdown-item:hover {
    background-color: var(--maroon-soft) !important;
    color: var(--primary-maroon) !important;
    padding-left: 1.2rem !important;
  }

  .dropdown-item i {
    width: 20px !important;
    font-size: 0.9rem !important;
  }

  /* Toggle dropdown di mobile */
  .dropdown-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .dropdown-toggle i {
    transition: transform 0.3s ease !important;
  }

  .nav-item-dropdown.open .dropdown-toggle i {
    transform: rotate(180deg) !important;
  }
}

/* ===== BENEFIT / KEUNTUNGAN CARD ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}

.benefit-card {
  position: relative;
  background: var(--bg-card, #ffffff);
  padding: 2rem 2rem 2.5rem;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border-color, #e0e0e0);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Garis aksen bawah */
.benefit-hover-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-maroon, #7a1a1a), var(--secondary-gold, #c9a84c));
  border-radius: 4px 4px 0 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card .benefit-icon {
  font-size: 2.4rem;
  color: var(--primary-maroon, #7a1a1a);
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
  display: inline-block;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark, #111);
  transition: color 0.3s ease;
}

.benefit-card p {
  color: var(--text-muted, #6c757d);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

/* ---- HOVER EFFECTS ---- */
.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(122, 26, 26, 0.15), 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-maroon, #7a1a1a);
}

.benefit-card:hover .benefit-hover-line {
  width: 70%;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(-4deg);
  color: var(--secondary-gold, #c9a84c);
}

.benefit-card:hover h3 {
  color: var(--primary-maroon, #7a1a1a);
}

.benefit-card:hover p {
  color: var(--text-dark, #111);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .benefit-grid {
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem 1.25rem 2rem;
  }

  .benefit-card .benefit-icon {
    font-size: 2rem;
  }

  .benefit-card h3 {
    font-size: 1.05rem;
  }

  .benefit-card p {
    font-size: 0.9rem;
  }

  .benefit-card:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 1.25rem 1rem 1.75rem;
  }

  .benefit-card .benefit-icon {
    font-size: 1.8rem;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }
}

/* ===== PRODUCT CARD ELEGANT - UNIFORM EFFECTS ===== */
.product-card-elegant {
  position: relative;
  background: var(--bg-card, #ffffff);
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border-color, #e0e0e0);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.product-card-elegant .product-thumb {
  position: relative;
  overflow: hidden;
  background: var(--bg-gray, #f8f9fa);
}

.product-card-elegant .product-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.product-card-elegant .product-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-elegant .product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark, #111);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.product-card-elegant .product-variant {
  font-size: 0.8rem;
  color: var(--text-muted, #6c757d);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-card-elegant .product-price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.3rem;
}

.product-card-elegant .price-original {
  font-size: 0.85rem;
  color: var(--text-muted, #aaa);
  text-decoration: line-through;
}

.product-card-elegant .price-sale {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-maroon, #7a1a1a);
}

.product-card-elegant .product-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem;
  color: var(--text-muted, #6c757d);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.product-card-elegant .product-meta .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card-elegant .product-meta .rating i {
  color: #f5b342;
  font-size: 0.7rem;
}

.product-card-elegant .product-meta .rating span {
  font-weight: 600;
  color: #1a1a2e;
}

.product-card-elegant .product-meta .sold {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-card-elegant .product-meta .sold i {
  font-size: 0.7rem;
  color: var(--primary-maroon, #7a1a1a);
}

.product-card-elegant .btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--primary-maroon, #7a1a1a);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: auto;
}

.product-card-elegant .btn-detail i {
  font-size: 0.85rem;
}

.product-card-elegant .btn-detail:hover {
  background: var(--dark-maroon, #4f0f0f);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

/* Garis aksen bawah */
.product-card-elegant .product-hover-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-maroon, #7a1a1a), var(--secondary-gold, #c9a84c));
  border-radius: 4px 4px 0 0;
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

/* ---- HOVER EFFECTS ---- */
.product-card-elegant:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(122, 26, 26, 0.15), 0 6px 16px rgba(0, 0, 0, 0.06);
  border-color: var(--primary-maroon, #7a1a1a);
}

.product-card-elegant:hover .product-hover-line {
  width: 70%;
}

.product-card-elegant:hover .product-thumb img {
  transform: scale(1.05);
}

.product-card-elegant:hover .product-title {
  color: var(--primary-maroon, #7a1a1a);
}

.product-card-elegant:hover .product-variant {
  color: var(--text-dark, #111);
}

/* Badge diskon tetap terlihat */
.product-card-elegant .badge-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-maroon, #7a1a1a);
  color: #fff;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 3;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(122, 26, 26, 0.35);
}

.product-card-elegant .badge-discount::after {
  content: " OFF";
  font-weight: 400;
  font-size: 0.6rem;
  opacity: 0.85;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .product-card-elegant .product-body {
    padding: 1rem 1rem 1.25rem;
  }

  .product-card-elegant .product-title {
    font-size: 0.9rem;
  }

  .product-card-elegant .price-sale {
    font-size: 1rem;
  }

  .product-card-elegant .btn-detail {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .product-card-elegant:hover {
    transform: translateY(-6px) scale(1.01);
  }
}

@media (max-width: 480px) {
  .product-card-elegant .product-body {
    padding: 0.75rem 0.75rem 1rem;
  }

  .product-card-elegant .product-title {
    font-size: 0.85rem;
  }

  .product-card-elegant .price-sale {
    font-size: 0.95rem;
  }

  .product-card-elegant .product-meta {
    font-size: 0.65rem;
    gap: 0.5rem;
  }

  .product-card-elegant .btn-detail {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
}