/* ============================================
   KEBAB PISANG RACING - DESIGN SYSTEM v2
   Revamped: light & vibrant, banana yellow accent
   ============================================ */
:root {
  --primary: #FFC21A;
  --primary-light: #FFE178;
  --primary-dark: #EDAB00;
  --primary-glow: rgba(255, 194, 26, 0.22);
  --accent-orange: #FF8A00;
  --accent-green: #22C55E;
  --accent-pink: #FF5C8A;
  --ink: #221C14;
  --dark: #241D12;
  --dark-soft: #322A1C;
  --white: #FFFFFF;
  --off-white: #FFFDF6;
  --cream: #FFF7E0;
  --cream-strong: #FFEFC2;
  --gray-50: #FAF7F1;
  --gray-100: #F2EDE3;
  --gray-200: #E6DFD0;
  --gray-300: #D4CBB8;
  --gray-400: #A89E8B;
  --gray-500: #877C69;
  --gray-600: #655C4C;
  --gray-700: #443D31;
  --gray-800: #2E2823;
  --gray-900: #1E1A14;
  --shadow-xs: 0 2px 8px rgba(34, 28, 20, 0.05);
  --shadow-sm: 0 4px 16px rgba(34, 28, 20, 0.07);
  --shadow-md: 0 10px 30px rgba(34, 28, 20, 0.1);
  --shadow-lg: 0 20px 50px rgba(34, 28, 20, 0.14);
  --shadow-xl: 0 30px 70px rgba(34, 28, 20, 0.18);
  --shadow-glow: 0 10px 45px rgba(255, 194, 26, 0.35);
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-full: 9999px;
  --font-heading: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-body: 'Poppins', 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 85%; }

body {
  padding-top: 74px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--gray-600);
  line-height: 1.7;
  font-family: var(--font-body);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  line-height: 1.25;
  font-weight: 800;
}

::selection {
  background: var(--primary);
  color: var(--ink);
}

img { max-width: 100%; }

a { color: inherit; }

/* ============================================
   TYPOGRAPHY / SECTION HEADINGS
   ============================================ */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--cream);
  color: var(--accent-orange);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  border: 1.5px dashed rgba(255, 138, 0, 0.35);
}

.badge-static { margin-bottom: 0; }

.section-title {
  font-weight: 800;
  font-size: 2.9rem;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -1px;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 9px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="9" viewBox="0 0 120 9"><path d="M2 7 Q 30 2 58 6 T 118 5" fill="none" stroke="%23FFC21A" stroke-width="4" stroke-linecap="round"/></svg>') no-repeat center / 100% 100%;
  opacity: 0.5;
  z-index: -1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--gray-200);
  font-weight: 900;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

/* ============================================
   DECORATIVE ELEMENTS / PATTERNS
   ============================================ */
.decor-blob {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 44% 40% 60% 56%;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.decor-blob.yellow {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.decor-blob.cream {
  background: linear-gradient(135deg, var(--cream), var(--cream-strong));
}

.decor-blob.orange {
  background: linear-gradient(135deg, var(--accent-orange), var(--primary));
}

.decor-dots {
  background-image: radial-gradient(circle, var(--primary) 2.5px, transparent 2.5px);
  background-size: 22px 22px;
  opacity: 0.5;
}

.decor-ring {
  border: 2px dashed var(--primary);
  border-radius: 50%;
}

.decor-star {
  color: var(--primary);
  animation: spinSlow 14s linear infinite;
  display: inline-block;
}

.decor-star::before {
  content: '\2605';
  font-family: inherit;
  line-height: 1;
}

.decor-square {
  border: 3px solid var(--primary);
  border-radius: 18px;
  transform: rotate(12deg);
  background: rgba(255, 194, 26, 0.15);
}

.bg-dots-pattern {
  position: relative;
}

.bg-dots-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 194, 26, 0.15) 2px, transparent 2px);
  background-size: 26px 26px;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes floatYSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(4deg); }
}

@keyframes spinSlow {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 194, 26, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(255, 194, 26, 0); }
}

.animate-float { animation: floatY 4s ease-in-out infinite; }
.animate-float-slow { animation: floatYSlow 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 2.4s ease-out infinite; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-accent {
  background: var(--primary);
  color: var(--ink);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(255, 194, 26, 0.35);
}

.btn-accent:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 194, 26, 0.45);
}

.btn-outline-ink {
  border: 2px solid var(--gray-300);
  color: var(--ink);
  padding: 10px 24px;
  background: transparent;
  transition: var(--transition);
}

.btn-outline-ink:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--ink);
  transform: translateY(-3px);
}

.btn-soft-dark {
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  padding: 10px 24px;
  transition: var(--transition);
}

.btn-soft-dark:hover {
  background: var(--gray-800);
  border-color: var(--gray-800);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(34, 28, 20, 0.25);
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--ink);
  border: none;
  padding: 10px 24px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255, 194, 26, 0.35);
}

.btn-gradient:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(255, 194, 26, 0.5);
}

.btn-rounded {
  border-radius: var(--radius-full);
  padding: 10px 26px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-rounded:hover { transform: translateY(-3px); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1050;
  background: linear-gradient(180deg, rgba(36, 29, 18, 0.92) 0%, rgba(36, 29, 18, 0.72) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 9px 0;
  box-shadow: 0 8px 30px rgba(34, 28, 20, 0.08);
  border-bottom: 1px solid rgba(255, 194, 26, 0.35);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
}

.navbar.scrolled .navbar-brand { color: var(--ink) !important; }

.navbar-brand .text-accent { color: var(--primary); }

.navbar.scrolled .navbar-brand .text-accent { color: var(--accent-orange); }

.navbar-brand .brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(255, 194, 26, 0.4);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 7px 14px !important;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.navbar .nav-link:hover {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.14);
}

.navbar .nav-link.active {
  color: var(--white) !important;
  background: var(--primary);
  color: var(--ink) !important;
  box-shadow: 0 6px 14px rgba(255, 194, 26, 0.35);
}

.navbar.scrolled .nav-link { color: var(--gray-700) !important; }

.navbar.scrolled .nav-link:hover {
  color: var(--ink) !important;
  background: var(--gray-100);
}

.navbar.scrolled .nav-link.active {
  color: var(--ink) !important;
  background: var(--primary);
}

.btn-mitra {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 21px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 8px 22px rgba(255, 194, 26, 0.4);
}

.btn-mitra:hover {
  background: var(--primary-light);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 194, 26, 0.5);
}

.navbar-toggler {
  border: none;
  padding: 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path stroke="white" stroke-width="2.5" stroke-linecap="round" d="M4 7h22M4 15h22M4 23h22"/></svg>');
}

.navbar.scrolled .navbar-toggler .navbar-toggler-icon {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path stroke="black" stroke-width="2.5" stroke-linecap="round" d="M4 7h22M4 15h22M4 23h22"/></svg>');
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 10px;
  padding-bottom: 50px;
}

.hero-slider .carousel-item,
.hero-slide {
  min-height: calc(100vh - 74px);
  min-height: calc(100svh - 74px);
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 6vh;
  background-color: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroKenburns 7s ease-out forwards;
}

.hero-bg-1 { background-image: url('../public/assets/Gambar1.png'); }
.hero-bg-2 { background-image: url('../public/assets/Gambar2.png'); }
.hero-bg-3 { background-image: url('../public/assets/Gambar3.png'); }

@keyframes heroKenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    95deg,
    rgba(30, 24, 12, 0.96) 0%,
    rgba(30, 24, 12, 0.82) 45%,
    rgba(30, 24, 12, 0.35) 100%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, var(--dark));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-caption {
  max-width: 740px;
  padding: 36px 0;
}

.hero-caption > * {
  opacity: 0;
  animation: heroSlideUp 0.8s ease forwards;
}

.hero-caption > *:nth-child(1) { animation-delay: 0.1s; }
.hero-caption > *:nth-child(2) { animation-delay: 0.2s; }
.hero-caption > *:nth-child(3) { animation-delay: 0.3s; }
.hero-caption > *:nth-child(4) { animation-delay: 0.4s; }

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 194, 26, 0.14);
  border: 1.5px solid rgba(255, 194, 26, 0.4);
  border-radius: var(--radius-full);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-caption h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.35rem;
  letter-spacing: -1.5px;
}

.hero-caption h1 span {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-caption p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 2.4rem;
  line-height: 1.9;
}

.hero-cta .btn {
  padding: 12px 29px;
  font-weight: 700;
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  transition: var(--transition);
}

.hero-cta .btn-primary {
  background: var(--primary);
  border: none;
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(255, 194, 26, 0.4);
}

.hero-cta .btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 194, 26, 0.55);
}

.hero-cta .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

.hero-cta .btn-outline-light:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(255, 194, 26, 0.1);
  transform: translateY(-4px);
}

/* Hero marquee / trust strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-trust .trust-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Hero floating cards */
.hero-float-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}

.hero-float-card .fc-icon {
  width: 37px;
  height: 37px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
  flex-shrink: 0;
}

.hero-float-card .fc-text b {
  display: block;
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.hero-float-card .fc-text span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Hero controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 47px;
  height: 47px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
}

.hero-slider .carousel-control-prev { left: 25px; }
.hero-slider .carousel-control-next { right: 25px; }

.hero-control-prev,
.hero-control-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.25rem;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.hero-control-prev:hover,
.hero-control-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--ink);
}

.hero-slider .carousel-indicators {
  bottom: 30px;
  z-index: 10;
  margin-bottom: 0;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  opacity: 1;
  transition: var(--transition);
}

.hero-slider .carousel-indicators .active {
  background: var(--primary);
  width: 34px;
  border-radius: var(--radius-full);
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.scroll-down .wheel {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-down .wheel span {
  width: 4px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--primary);
  animation: scrollWheel 1.8s ease infinite;
}

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

/* ============================================
   SECTION LAYOUT
   ============================================ */
section { position: relative; }

.py-6 { padding: 96px 0; }
.py-7 { padding: 116px 0; }

.bg-gray { background: var(--off-white); }
.bg-cream { background: var(--cream); }

/* ============================================
   CARDS - MODERN (feature / benefit)
   ============================================ */
.card-modern {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-modern::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 194, 26, 0.4);
}

.card-modern:hover::after { opacity: 1; }

.card-modern .icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cream), var(--cream-strong));
  border: 1.5px dashed rgba(255, 138, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  color: var(--accent-orange);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.card-modern:hover .icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: transparent;
  color: var(--ink);
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 10px 24px rgba(255, 194, 26, 0.35);
}

.card-modern h5 {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.card-modern p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Number feature card */
.card-number {
  position: relative;
  padding-top: 48px;
}

.card-number .num {
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gray-200);
  line-height: 1;
  z-index: 0;
}

.card-modern-cta {
  background: linear-gradient(160deg, var(--cream) 0%, var(--off-white) 100%);
  border-color: rgba(255, 194, 26, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-modern-cta:hover {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
}

.card-modern-cta .btn { margin-top: auto; }

/* ============================================
   BENEFIT CHECK LIST
   ============================================ */
.benefit-list { display: grid; gap: 12px; }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.benefit-item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 194, 26, 0.5);
  box-shadow: var(--shadow-md);
}

.benefit-item .bi-check-circle-fill {
  color: var(--accent-green);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item h6 {
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 0.98rem;
}

.benefit-item p {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
  position: relative;
  border: 1.5px solid var(--gray-100);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(34, 28, 20, 0.16);
  border-color: rgba(255, 194, 26, 0.45);
}

.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

.product-card .card-body {
  padding: 19px 17px;
  background: var(--white);
  position: relative;
}

.product-card h5 {
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card .card-text {
  color: var(--gray-500);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
  letter-spacing: 0.4px;
}

.product-tag.hot { background: var(--primary); color: var(--ink); }

/* ============================================
   STATS
   ============================================ */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 194, 26, 0.4);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-card .stat-number em {
  font-style: normal;
  color: var(--accent-orange);
}

.stat-card .stat-icon {
  font-size: 1.6rem;
  color: var(--accent-orange);
  margin-bottom: 6px;
}

.stat-card .stat-label {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 38px 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gray-200), var(--gray-300));
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card .badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

.pricing-card .badge.bg-primary {
  background: var(--primary) !important;
  color: var(--ink);
}

.pricing-card .pricing-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  background: var(--gray-100);
  color: var(--gray-500);
  transition: var(--transition);
}

.pricing-card h5 {
  font-weight: 800;
  color: var(--ink);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pricing-card .plan-desc {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.pricing-card .price {
  font-size: 2.9rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 1.4rem;
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
  font-family: var(--font-body);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gray-700);
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--gray-100);
}

.pricing-card ul li:last-child { border-bottom: none; }

.pricing-card ul li i {
  color: var(--accent-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  border-radius: var(--radius-full);
  padding: 12px 24px;
  font-weight: 700;
  width: 100%;
  transition: var(--transition);
  font-size: 0.94rem;
}

/* Featured */
.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 24px 60px rgba(255, 194, 26, 0.28);
  border: 2px solid var(--primary);
  z-index: 2;
  background: linear-gradient(180deg, #FFFDF6 0%, var(--white) 100%);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 70px rgba(255, 194, 26, 0.34);
}

.pricing-card.featured .pricing-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 194, 26, 0.4);
}

/* Popular ribbon */
.featured-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 0 0 16px 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  box-shadow: 0 6px 16px rgba(255, 194, 26, 0.4);
}

/* Glow / premium */
.pricing-card.glow {
  box-shadow: 0 0 46px rgba(255, 194, 26, 0.18);
  border-color: rgba(255, 194, 26, 0.4);
}

.pricing-card.glow:hover {
  box-shadow: 0 0 60px rgba(255, 194, 26, 0.28);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding: 27px 0 10px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 47px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary) 0 12px,
    var(--gray-200) 12px 22px
  );
}

.timeline-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-item .step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.5rem;
  color: var(--accent-orange);
  transition: var(--transition);
  box-shadow: 0 0 0 6px rgba(255, 194, 26, 0.14);
  position: relative;
}

.timeline-item .step-number {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
}

.timeline-item:hover .step-icon {
  background: var(--primary);
  color: var(--ink);
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 34px rgba(255, 194, 26, 0.45);
}

.timeline-item h6 {
  font-weight: 800;
  color: var(--ink);
  margin-top: 0.4rem;
  font-size: 1rem;
}

.timeline-item p {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.masonry-grid {
  column-count: 3;
  column-gap: 16px;
}

.masonry-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.masonry-grid .gallery-item:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}

.masonry-grid .gallery-item img {
  width: 100%;
  display: block;
  transition: var(--transition-slow);
}

.masonry-grid .gallery-item:hover img { transform: scale(1.07); }

.masonry-grid .gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 24, 12, 0.82) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  opacity: 0;
  transition: var(--transition);
}

.masonry-grid .gallery-item:hover .overlay { opacity: 1; }

.masonry-grid .gallery-item .overlay .g-label {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

.masonry-grid .gallery-item .overlay i {
  color: var(--primary);
  font-size: 1.1rem;
  background: rgba(30, 24, 12, 0.6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

/* Gallery float padding for varied masonry */
.gallery-item.h-tall img { min-height: 290px; object-fit: cover; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 24, 12, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; animation: fadeIn 0.25s ease; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox img {
  max-width: 85%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox .close-lightbox {
  position: absolute;
  top: 24px;
  right: 30px;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox .close-lightbox:hover {
  background: var(--primary);
  color: var(--ink);
  transform: rotate(90deg);
}

.lightbox .nav-lightbox {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.lightbox .nav-lightbox:hover {
  background: var(--primary);
  color: var(--ink);
}

.lightbox .prev { left: 26px; }
.lightbox .next { right: 26px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: 28px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin: 0 6px;
  position: relative;
}

.testimonial-card .quote-mark {
  position: absolute;
  top: 22px;
  left: 26px;
  font-size: 3.4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card .avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  box-shadow: 0 0 0 5px var(--cream), 0 10px 24px rgba(255, 194, 26, 0.3);
}

.testimonial-card .stars {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1.3rem;
}

.testimonial-card h6 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.testimonial-card .role {
  color: var(--accent-orange);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
}

.testimonial-slider .carousel-indicators .active {
  background: var(--primary);
  width: 30px;
  border-radius: var(--radius-full);
}

.testimonial-slider .carousel-control-prev,
.testimonial-slider .carousel-control-next {
  width: 46px;
  height: 46px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.testimonial-slider .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next-icon {
  filter: invert(1);
  opacity: 0.6;
  transition: var(--transition);
}

.testimonial-slider .carousel-control-prev:hover .carousel-control-prev-icon,
.testimonial-slider .carousel-control-next:hover .carousel-control-next-icon {
  opacity: 1;
  transform: scale(1.2);
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  border: 1.5px solid var(--gray-100) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  padding: 18px 20px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-heading);
}

.accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--ink);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(255, 194, 26, 0.4);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(76%) sepia(48%) saturate(1000%) hue-rotate(-12deg) brightness(105%) contrast(95%);
}

.accordion-body {
  padding: 4px 20px 18px;
  color: var(--gray-500);
  font-size: 0.94rem;
  line-height: 1.85;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  padding: 98px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80%;
  left: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80%;
  right: -6%;
  width: 415px;
  height: 415px;
  background: radial-gradient(circle, rgba(237, 171, 0, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .cta-decor {
  position: absolute;
  border: 3px dashed rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
}

.cta-section h2 {
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(34, 28, 20, 0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  background: var(--ink);
  color: var(--primary);
  border: none;
  padding: 14px 37px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 34px rgba(34, 28, 20, 0.35);
}

.cta-section .btn:hover {
  background: var(--gray-800);
  color: var(--primary-light);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 44px rgba(34, 28, 20, 0.45);
}

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.about-hero {
  min-height: 46vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 305px;
  height: 305px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  opacity: 0.35;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -120px;
  width: 325px;
  height: 325px;
  background: radial-gradient(circle, rgba(255, 194, 26, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero .section-badge {
  background: var(--white);
  border: 1.5px dashed rgba(255, 138, 0, 0.4);
  color: var(--accent-orange);
}

.about-hero h1 {
  color: var(--ink);
  font-size: 3.1rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
  letter-spacing: -1px;
}

.about-hero h1 span {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.about-hero .hero-wiggle {
  position: absolute;
  top: -70px;
  left: 12%;
  font-size: 6rem;
  opacity: 0.25;
  color: var(--primary);
}

.decor-wiggle {
  position: absolute;
  top: 8%;
  left: 12%;
  font-size: 5rem;
  opacity: 0.3;
  color: var(--primary);
  pointer-events: none;
  z-index: 0;
}

/* Breadcrumb */
.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 6px 15px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 1.2rem;
}

.breadcrumb-custom a { color: var(--accent-orange); text-decoration: none; }
.breadcrumb-custom i { font-size: 0.7rem; }

/* ============================================
   VISION MISSION SPLIT CARDS
   ============================================ */
.vm-card {
  border-radius: var(--radius-lg);
  padding: 32px 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.vm-card.vision {
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  color: var(--ink);
}

.vm-card.mission {
  background: var(--ink);
  color: var(--white);
}

.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.vm-card .icon-wrapper {
  width: 51px;
  height: 51px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.vm-card.vision .icon-wrapper {
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
}

.vm-card.mission .icon-wrapper {
  background: rgba(255, 194, 26, 0.15);
  color: var(--primary);
}

.vm-card h5 { font-weight: 800; margin-bottom: 1rem; }

.vm-card.mission h5 { color: var(--white); }
.vm-card.vision h5 { color: var(--ink); }

.vm-card p { font-size: 0.95rem; line-height: 1.85; margin: 0; }
.vm-card.vision p { color: rgba(34, 28, 20, 0.85); }
.vm-card.mission p { color: rgba(255, 255, 255, 0.75); }

/* ============================================
   CONTACT
   ============================================ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.contact-info-item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 194, 26, 0.45);
  box-shadow: var(--shadow-md);
}

.contact-info-item .icon {
  width: 41px;
  height: 41px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cream), var(--cream-strong));
  border: 1.5px dashed rgba(255, 138, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}

.contact-info-item p {
  color: var(--gray-500);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
}

.contact-form h3 {
  font-weight: 800;
  color: var(--ink);
}

.contact-form .form-control {
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  font-size: 0.92rem;
  background: var(--off-white);
  font-family: var(--font-body);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 194, 26, 0.15);
  background: var(--white);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.contact-form .btn-primary {
  background: var(--primary);
  border: none;
  color: var(--ink);
  font-weight: 700;
  padding: 12px 29px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  font-size: 0.92rem;
}

.contact-form .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 194, 26, 0.4);
}

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(255, 194, 26, 0.4);
  pointer-events: none;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary-dark), var(--primary));
}

.footer h5 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1.4rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.footer .brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }

.footer .brand-logo {
  width: 37px;
  height: 37px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 1.4rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer a:hover { color: var(--primary); padding-left: 4px; }

.footer .social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 1.05rem;
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: var(--primary);
  color: var(--ink);
  border-color: var(--primary);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 56px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer .footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
}

.footer .footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer ul { list-style: none; padding: 0; }
.footer ul li { padding: 7px 0; }
.footer ul li a { display: inline-flex; align-items: center; gap: 8px; }
.footer ul li a i { color: var(--primary); font-size: 0.85rem; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--ink);
  border: none;
  font-size: 1.3rem;
  z-index: 1040;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 194, 26, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
}

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

.back-to-top:hover { transform: translateY(-4px); }

/* ============================================
   MISC UTILITY
   ============================================ */
.bg-soft-primary { background: rgba(255, 194, 26, 0.06); }
.bg-dark-section { background: var(--ink); }

.max-width-sm { max-width: 640px; }
.max-width-md { max-width: 760px; }

.gap-2 { gap: 0.5rem; }

.text-muted { color: var(--gray-500) !important; }

/* ============================================
   DECOR PLACEMENT UTILITIES (no inline styles)
   ============================================ */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.decor.size-xs { width: 62px; height: 62px; }
.decor.size-sm { width: 98px; height: 98px; }
.decor.size-md { width: 135px; height: 135px; }
.decor.size-lg { width: 190px; height: 190px; }
.decor.size-xl { width: 250px; height: 250px; }

.decor.top-10 { top: 10%; }
.decor.top-12 { top: 12%; }
.decor.top-15 { top: 15%; }
.decor.top-18 { top: 18%; }
.decor.top-20 { top: 20%; }
.decor.top-22 { top: 22%; }
.decor.top-30 { top: 30%; }
.decor.bottom-8 { bottom: 8%; }
.decor.bottom-14 { bottom: 14%; }
.decor.bottom-16 { bottom: 16%; }
.decor.bottom-18 { bottom: 18%; }
.decor.bottom-20 { bottom: 20%; }
.decor.left-0 { left: 0; }
.decor.left-5 { left: 5%; }
.decor.left-8 { left: 8%; }
.decor.left-12 { left: 12%; }
.decor.left-55 { left: 55%; }
.decor.right-0 { right: 0; }

.decor.top--24 { top: -24px; }
.decor.top--30 { top: -30px; }
.decor.top--40 { top: -40px; }
.decor.bottom--24 { bottom: -24px; }
.decor.bottom--20 { bottom: -20px; }
.decor.left--20 { left: -20px; }
.decor.right-6 { right: 6%; }
.decor.right-8 { right: 8%; }
.decor.right-10 { right: 10%; }
.decor.right-12 { right: 12%; }
.decor.right-16 { right: 16%; }
.decor.right-20 { right: 20%; }

.decor-star.size-lg { font-size: 3rem; }
.decor-star.size-md { font-size: 2.4rem; }
.decor-star.yellow-dim { color: rgba(255, 194, 26, 0.8); }
.decor-star.ink-dim { color: rgba(34, 28, 20, 0.5); }
.decor.opacity-18 { opacity: 0.18; }
.decor.opacity-20 { opacity: 0.2; }
.decor.opacity-25 { opacity: 0.25; }
.decor.opacity-5 { opacity: 0.5; }
.decor.opacity-60 { opacity: 0.6; }

/* Float card placement */
.hero-float-card.place-tr { top: -14px; right: -8px; }
.hero-float-card.place-bl { bottom: -18px; left: -12px; }
.hero-float-card.place-tl { top: -16px; left: -12px; }
.hero-float-card.place-br { bottom: -18px; right: -12px; }

.fc-icon.fc-yellow { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--ink); }
.fc-icon.fc-green { background: linear-gradient(135deg, #22C55E, #16A34A); color: #fff; }
.fc-icon.fc-orange { background: linear-gradient(135deg, var(--accent-orange), #EA580C); color: #fff; }
.fc-icon.fc-dark { background: var(--ink); color: var(--primary); }

/* CTA decor */
.cta-decor.lg { width: 155px; height: 155px; }
.cta-decor.sm { width: 100px; height: 100px; }

/* AOS variant helpers */
.aos-slow { animation-duration: 1.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  body { padding-top: 66px; }

  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-top: 14px;
    box-shadow: 0 20px 50px rgba(34, 28, 20, 0.18);
  }

  .navbar-collapse .nav-link { color: var(--gray-700) !important; padding: 10px 12px !important; font-size: 0.95rem; }
  .navbar-collapse .nav-link:hover { background: var(--gray-100); color: var(--ink) !important; }
  .navbar-collapse .nav-link.active { background: var(--primary); color: var(--ink) !important; }

  .navbar-collapse .btn-mitra { display: block; width: 100%; text-align: center; margin-top: 12px; }

  .navbar-light-links .navbar-brand { color: var(--ink) !important; }
  .navbar-light-links .navbar-toggler .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path stroke="black" stroke-width="2.5" stroke-linecap="round" d="M4 7h22M4 15h22M4 23h22"/></svg>');
  }

  .hero-caption h1 { font-size: 2.6rem; }
  .section-title { font-size: 2.2rem; }
  .masonry-grid { column-count: 2; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

  .timeline::before {
    left: 31px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
  }

  .timeline-item {
    text-align: left;
    padding-left: 76px;
    padding-bottom: 27px;
  }

  .timeline-item .step-icon {
    margin: 0;
    position: absolute;
    left: 0;
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .hero-slider .carousel-control-prev { left: 14px; }
  .hero-slider .carousel-control-next { right: 14px; }

  .hero-float-card { display: none; }
}

@media (max-width: 768px) {
  body { padding-top: 62px; }
  .hero-slider .carousel-item,
  .hero-slide { min-height: calc(100vh - 62px); min-height: calc(100svh - 62px); }

  .hero-caption { padding: 36px 0 22px; }
  .hero-caption h1 { font-size: 2.3rem; }
  .hero-caption p { font-size: 1.05rem; margin-bottom: 2rem; }

  .about-hero { min-height: 40vh; }
  .about-hero h1 { font-size: 2.2rem; }
  .about-hero p { font-size: 1rem; }

  .cta-section h2 { font-size: 2rem; }
  .section-title { font-size: 1.9rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 2.2rem; }

  .hero-control-prev, .hero-control-next {
    width: 42px; height: 42px; font-size: 0.95rem;
  }
  .hero-slider .carousel-control-prev { left: 10px; }
  .hero-slider .carousel-control-next { right: 10px; }
  .hero-slider .carousel-indicators { bottom: 20px; }

  .lightbox .nav-lightbox { width: 36px; height: 36px; font-size: 1.35rem; }
  .lightbox .prev { left: 12px; }
  .lightbox .next { right: 12px; }
  .lightbox .close-lightbox { top: 16px; right: 16px; width: 33px; height: 33px; font-size: 1.2rem; }

  .timeline-item { padding-left: 67px; }
}

@media (max-width: 576px) {
  .navbar { padding: 9px 0; }
  .navbar-brand { font-size: 1.15rem; }
  body { padding-top: 56px; }
  .hero-slider .carousel-item,
  .hero-slide { min-height: calc(100vh - 56px); min-height: calc(100svh - 56px); }

  .hero-caption h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
  .hero-caption p { font-size: 0.98rem; margin-bottom: 1.8rem; }
  .hero-badge { font-size: 0.72rem; padding: 4px 12px; margin-bottom: 1.1rem; }

  .hero-cta { flex-direction: column; gap: 10px !important; }
  .hero-cta .btn { width: 100%; padding: 11px 22px; font-size: 0.92rem; text-align: center; }

  .hero-trust { gap: 16px; margin-top: 1.8rem; }
  .hero-trust .trust-item { font-size: 0.8rem; }

  .masonry-grid { column-count: 2; column-gap: 12px; }

  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next { display: none; }
  .hero-slider .carousel-indicators { bottom: 18px; }

  .py-6, .py-7 { padding: 54px 0; }
  .section-title { font-size: 1.75rem; margin-bottom: 0.8rem; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 2rem; }
  .section-badge { font-size: 0.72rem; padding: 4px 12px; }

  .about-hero { padding: 41px 0; }
  .about-hero h1 { font-size: 1.9rem; }
  .about-hero p { font-size: 0.95rem; }

  .card-modern { padding: 24px 18px; }
  .product-card .img-wrap, .product-card img { height: 170px; }
  .pricing-card { padding: 27px 18px; }
  .pricing-card .price { font-size: 2.4rem; }

  .contact-form { padding: 20px 14px; }
  .contact-form .btn-primary { width: 100%; }
  .contact-info-item { padding: 12px 12px; gap: 12px; }
  .contact-info-item .icon { width: 36px; height: 36px; font-size: 1.05rem; }

  .testimonial-card { padding: 26px 18px; }
  .testimonial-card .avatar { width: 55px; height: 55px; font-size: 1.3rem; }

  .cta-section { padding: 57px 0; }
  .cta-section h2 { font-size: 1.8rem; }
  .cta-section p { font-size: 1rem; }

  .footer { padding: 50px 0 0; }
  .footer h5 { margin-bottom: 1rem; }
  .footer .footer-bottom { margin-top: 40px; }

  .back-to-top { bottom: 18px; right: 18px; width: 37px; height: 37px; }
}
