/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --primary-color: #0F2854; /* Navy Blue */
  --secondary-color: #1e4d8b; /* Royal Blue */
  --accent-color: #4a90e2; /* Sky Blue */
  --background-color: #f9f6f3; /* Soft Cream White */
  --text-color: #3b2f2f; /* Charcoal Brown */
  --white: #ffffff;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:not(i):not([class*='icon']):not([class*='fa']):not([class*='fab']):not([class*='fas']):not([class*='far']) {
  font-family: var(--font-primary);
}

/* Prevent horizontal scroll */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Ensure Font Awesome icons use their own font */
i,
[class*='fa'],
[class*='fab'],
[class*='fas'],
[class*='far'],
[class*='fal'],
[class*='fad'] {
  font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands', 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
  font-weight: 900;
}

[class*='fab'] {
  font-family: 'Font Awesome 5 Brands', 'Font Awesome 6 Brands' !important;
  font-weight: 400;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4d7a7e;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.preloader-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preloader-lines .line {
  width: 40px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  animation: linePulse 2s ease-in-out infinite;
}

.preloader-lines .line:nth-child(1) {
  animation-delay: 0s;
}

.preloader-lines .line:nth-child(2) {
  animation-delay: 0.2s;
}

.preloader-lines .line:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.preloader-title {
  font-family: 'Nunito', 'Varela Round', sans-serif !important;
  font-size: 5rem;
  font-weight: 700 !important;
  font-style: normal !important;
  color: #dde5e5 !important;
  letter-spacing: 0.05em !important;
  text-transform: lowercase !important;
  animation: titleFade 2s ease-in-out infinite;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.preloader-logo {
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.3));
}

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

@keyframes logoFade {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.preloader-progress {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #ffffff;
  border-radius: 1px;
  width: 0%;
  animation: progressLoad 3s ease-in-out forwards;
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Hide preloader when page is loaded */
body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

/* Preloader responsive design */
@media (max-width: 768px) {
  .preloader-content {
    gap: 20px;
    margin-bottom: 30px;
  }

  .preloader-title {
    font-size: 3.5rem;
    letter-spacing: 0.05em;
  }

  .preloader-lines .line {
    width: 30px;
  }

  .preloader-progress {
    width: 150px;
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .preloader-content {
    flex-direction: column;
    gap: 15px;
  }

  .preloader-title {
    font-size: 2.5rem;
    margin: 0 10px;
  }

  .preloader-lines {
    flex-direction: row;
    gap: 6px;
  }

  .preloader-lines .line {
    width: 20px;
    height: 1px;
  }
}

body {
  font-family: var(--font-primary) !important;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary) !important;
  font-weight: 600;
  line-height: 1.2;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-family: var(--font-primary);
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* CTA buttons - hero */
.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border: 0;
  color: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  position: relative;
  overflow: hidden;
  font-family: var(--font-primary);
}
.btn-cta-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: skewX(-20deg);
  transition: transform 0.6s ease, left 0.6s ease;
}
.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.btn-cta-primary:hover::after {
  left: 150%;
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  font-family: var(--font-primary);
}
.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.cta-group .cta-note {
  font-size: 0.85rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: #0F2854 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  font-family: var(--font-primary) !important;
}

/* Smooth transition untuk semua elemen navbar */
.navbar * {
  transition: all 0.3s ease;
  font-family: var(--font-primary) !important;
}

/* Navbar saat di hero section (transparan) */
.navbar.navbar-transparent {
  background-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

.navbar.navbar-transparent .navbar-brand {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-primary) !important;
}

.navbar.navbar-transparent .nav-link {
  color: #ffffff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: var(--font-primary) !important;
}

.navbar.navbar-transparent .nav-link:hover,
.navbar.navbar-transparent .nav-link.active {
  color: #4a90e2 !important;
  background-color: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.navbar.navbar-transparent .btn-primary {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.navbar.navbar-transparent .btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.navbar.navbar-transparent .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.navbar.navbar-transparent .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Navbar saat di-scroll (dengan background) */
.navbar.navbar-scrolled {
  background-color: #0F2854 !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
}

.navbar.navbar-scrolled .navbar-brand {
  color: var(--white) !important;
  text-shadow: none;
  font-family: var(--font-primary) !important;
}

.navbar.navbar-scrolled .nav-link {
  color: #ffffff !important;
  text-shadow: none;
  font-family: var(--font-primary) !important;
}

.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active {
  color: #4a90e2 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.navbar.navbar-scrolled .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.navbar.navbar-scrolled .btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-color);
}

.navbar.navbar-scrolled .navbar-toggler {
  border-color: var(--primary-color);
}

.navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 71, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  transition: var(--transition);
  font-family: var(--font-primary) !important;
}

.navbar-brand:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  padding: 0.25rem 0.5rem;
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 1) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Force white color for all navbar links */
.navbar .nav-link,
.navbar-nav .nav-link,
.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-family: var(--font-primary);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #4a90e2 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, var(--background-color) 0%, rgba(201, 71, 54, 0.05) 100%);
  /* padding: 0 0 10px; */
  /* min-height: 1000vh; */
  display: flex;
  align-items: center;
  position: relative;
}

/* Dark hero variant */
.hero-dark {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}

.hero-bg-dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%), radial-gradient(700px 400px at 10% 90%, rgba(255, 255, 255, 0.15), transparent 70%), radial-gradient(600px 300px at 90% 10%, rgba(255, 255, 255, 0.08), transparent 70%);
  z-index: 1;
}

.hero-lighting {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.light-beam {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  width: 2px;
  height: 100%;
  animation: lightSweep 4s ease-in-out infinite;
}

.light-1 {
  left: 20%;
  animation-delay: 0s;
}

.light-2 {
  left: 50%;
  animation-delay: 1.5s;
}

.light-3 {
  left: 80%;
  animation-delay: 3s;
}

@keyframes lightSweep {
  0%,
  100% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.hero-smoke {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 2;
}

/* Hero Content Dark */
.hero-title-dark {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent-color);
  display: inline-block;
  background: rgba(215, 167, 79, 0.15);
  border: 1px solid rgba(215, 167, 79, 0.35);
  padding: 6px 12px;
  border-radius: 9999px;
  margin-top: 0.75rem;
}

.hero-description-dark {
  font-size: 0.9rem;
  color: #aaaaaa;
  line-height: 1.6;
  max-width: 450px;
  font-weight: 300;
}

.hero-visual-dark {
  position: relative;
  z-index: 3;
}

.hero-image-container-dark {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-main-dark {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
  /* Samakan ukuran kontainer gambar hero antar slide */
  width: 100%;
  height: 320px;
}

.hero-image-main-dark:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-main-dark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* Fokuskan ke bagian atas agar tulisan tidak terpotong */
  object-position: top center;
}

/* Override khusus untuk slide 2 agar ambil tengah gambar */
.slide-theme-teal .hero-image-main-dark img {
  object-position: center center;
}

/* Hero Card */
.hero-card {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.3s ease;
  z-index: 2;
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-card-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.hero-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-image img {
  transform: scale(1.05);
}

.hero-card-content {
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  position: relative;
}

.hero-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

/* Override khusus untuk slide 2 agar ambil tengah gambar */
.slide-theme-teal .hero-card-image img {
  object-position: center center;
}

.hero-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 20px;
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Hero Pagination */
/* .hero-pagination {
  z-index: 4;
}

.pagination-dots {
  display: flex;
  gap: 10px;
}

.pagination-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dots .dot.active {
  background-color: #ffffff;
  transform: scale(1.2);
}

.pagination-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.6);
} */

/* Swiper overrides for hero */
.hero-swiper {
  position: relative;
  z-index: 3;
}

/* Hero slide styling - lebih compact agar ticker terlihat */
.hero-slide {
  min-height: calc(100vh - 50px);
  padding: 1.5rem 0 5rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Full background color when a slide requests it */
.hero-dark.hero-theme-teal .hero-bg-dark {
  background: #3b2f2f !important;
}

/* .hero-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
} */

.hero-nav {
  color: #ffffff;
}

.hero-nav::after {
  font-size: 24px;
}

/* Hero Ticker */
.hero-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.hero-ticker .ticker-track {
  display: inline-flex;
  gap: 18px;
  padding-left: 100%;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.05em;
  animation: tickerMove 18s linear infinite;
}

.hero-ticker .ticker-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

.hero-ticker .ticker-dot {
  opacity: 0.6;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Elegant hero variant (keep for other pages) */
.hero-elegant {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
  position: relative;
  overflow: hidden;
}

.hero-elegant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201, 71, 54, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(77, 122, 126, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(201, 71, 54, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(77, 122, 126, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero-shapes .shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shapes .shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero-shapes .shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
}

.badge-text {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(201, 71, 54, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hero Stats */
.hero-stats {
  margin-top: 1.5rem;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-main {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.hero-image-main:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-floating {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: floatImage 4s ease-in-out infinite;
}

.hero-float-1 {
  top: 10%;
  right: -10%;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 20%;
  left: -15%;
  width: 100px;
  height: 100px;
  animation-delay: 1s;
}

.hero-float-3 {
  top: 50%;
  right: -5%;
  width: 80px;
  height: 80px;
  animation-delay: 2s;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.hero-image-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background Video */
/* Nonaktifkan layer video ketika menggunakan hero-elegant */
.hero-elegant .hero-video,
.hero-elegant .hero-overlay {
  display: none !important;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay untuk meningkatkan readability */
/* Overlay default (hanya dipakai saat ada video) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: -1;
}

/* Legacy hero-bg untuk fallback */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: -1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== FEATURE SPLIT SECTION ===== */
.feature-split-section {
  min-height: 50vh;
}

.feature-left {
  position: relative;
  overflow: hidden;
}

.feature-gallery {
  position: relative;
  overflow: hidden;
}

.feature-gallery img {
  transition: transform 0.3s ease;
  object-fit: cover;
  object-position: left center;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
}

.feature-gallery:hover img {
  transform: scale(1.25);
}

.feature-right {
  background: linear-gradient(135deg, #4d7a7e 0%, #3a5f63 100%);
  position: relative;
}

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

.feature-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Feature Image Container */
.feature-image-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  aspect-ratio: 16 / 9;
}

.feature-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.feature-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.feature-image-container:hover .feature-image {
  transform: scale(1.05);
}

/* Feature Cards Swiper */
.feature-swiper-container {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.feature-cards-swiper {
  padding: 20px 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 300px;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Fokus crop utilitas untuk card swiper */
.img-focus-center {
  object-position: center center !important;
}
.img-focus-top {
  object-position: top center !important;
}
.img-focus-left {
  object-position: left center !important;
}

.feature-card:hover .card-image img {
  transform: scale(1.05);
}

/* Overlay untuk title yang selalu terlihat */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  z-index: 2;
}

.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* Radio Button Navigation */
.feature-nav-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dot:hover {
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.nav-dot.active {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.nav-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
}

.feature-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature-nav .nav-link {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  color: #ffffff !important;
}

.feature-nav .nav-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .feature-title {
    font-size: 2.5rem;
  }

  .feature-nav {
    flex-direction: column;
    align-items: center;
  }

  .feature-nav .nav-link {
    margin: 0.5rem 0;
  }
}

/* ===== PROMO BANNER (below hero) ===== */
.promo-banner {
  background-color: var(--primary-color);
  min-height: 35vh;
  display: flex;
  align-items: center;
}

.promo-banner .promo-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.promo-banner .promo-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner .promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Sedikit digelapkan agar video tidak terlalu kontras */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35));
}

.promo-banner .container {
  position: relative;
  z-index: 2;
  padding-left: 1rem;
  padding-right: 1rem;
}

.promo-banner .promo-title {
  font-size: 2rem;
  letter-spacing: 0.15rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

.promo-banner .promo-subtext {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .promo-banner {
    min-height: 45vh;
  }

  .promo-banner .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .promo-banner .promo-title {
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    line-height: 1.4;
    margin-bottom: 1.5rem !important;
  }

  .promo-banner .promo-subtext {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 0.5rem;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .promo-banner {
    min-height: 50vh;
  }

  .promo-banner .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .promo-banner .promo-title {
    font-size: 1.35rem;
    letter-spacing: 0.03rem;
    margin-bottom: 1.25rem !important;
  }

  .promo-banner .promo-subtext {
    font-size: 0.95rem;
    line-height: 1.9;
    padding: 0 0.25rem;
  }
}

.promo-banner .btn-light {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #ffffff;
}
.promo-banner .btn-light:hover {
  background-color: #3a5f63; /* darker shade of secondary */
  border-color: #3a5f63;
  color: #ffffff;
}

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(201, 71, 54, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(201, 71, 54, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b2c2c 100%);
  /* background: var(--secondary-color); */
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Testimonials Container */
.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible; /* agar kartu kiri/kanan terlihat sebagian */
}

.testimonials-swiper {
  padding: 20px 12px 60px;
  position: relative;
}

/* Efek kartu samping: kecil & lebih redup */
.testimonials-swiper .swiper-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.35;
}

.testimonials-swiper .swiper-slide-active {
  opacity: 1;
}

.testimonials-swiper .swiper-slide:not(.swiper-slide-active) .testimonial-card {
  transform: scale(0.96);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border: 2px solid var(--accent-color);
  position: relative;
  overflow: visible; /* biarkan pill bintang terlihat di luar tepi atas */
  transition: all 0.3s ease;
  height: auto;
  min-height: 300px;
  margin: 0 10px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Tidak perlu overlay tambahan di dalam kartu */
.testimonial-card::before {
  content: none;
}

.testimonial-content {
  padding: 2.75rem 2rem 2rem; /* beri ruang untuk pill bintang di atas */
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
}

/* Bintang berada pada pill kecil yang overlap di bagian atas */
.testimonial-rating {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(215, 167, 79, 0.45);
  z-index: 2;
}
.testimonial-rating i {
  color: #ffffff;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: #2f2f2f;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-name {
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
}

.author-role {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Navigation */
.testimonial-nav-prev,
.testimonial-nav-next {
  color: var(--accent-color) !important;
  background: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  box-shadow: 0 12px 35px rgba(215, 167, 79, 0.45), 0 0 0 8px rgba(215, 167, 79, 0.12);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.testimonial-nav-prev:hover,
.testimonial-nav-next:hover {
  background: var(--primary-color);
  transform: scale(1.08);
  box-shadow: 0 16px 45px rgba(201, 71, 54, 0.55);
}

.testimonial-nav-prev::after,
.testimonial-nav-next::after {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* Pagination */
.testimonial-pagination {
  position: relative;
  margin-top: 2rem;
  text-align: center;
}

.testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  width: 28px;
  height: 10px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(215, 167, 79, 0.2);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  border-color: var(--accent-color);
  background: rgba(215, 167, 79, 0.2);
  transform: none;
  box-shadow: 0 0 0 4px rgba(215, 167, 79, 0.25);
}

.testimonial-pagination .swiper-pagination-bullet-active::after {
  background: var(--accent-color);
  box-shadow: 0 0 10px rgba(215, 167, 79, 0.6);
}

/* Testimonials Responsive */
@media (max-width: 992px) {
  .testimonial-card {
    height: auto;
    min-height: 280px;
    margin: 0 8px;
  }

  .testimonial-content {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .author-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .testimonials-container {
    padding: 0 15px;
  }

  .testimonials-swiper {
    padding: 15px 5px 50px;
  }

  .testimonial-card {
    height: auto;
    min-height: 260px;
    margin: 0 5px;
    border-radius: 20px;
  }

  .testimonial-content {
    padding: 2.25rem 1.25rem 1.25rem;
  }

  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .testimonial-rating {
    padding: 5px 12px;
    top: -12px;
  }

  .testimonial-rating i {
    font-size: 0.9rem;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-role {
    font-size: 0.85rem;
  }

  .testimonials-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.25;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-section .display-5 {
    font-size: 2rem;
  }

  .testimonials-section .lead {
    font-size: 1rem;
  }

  .testimonials-container {
    padding: 0 10px;
  }

  .testimonials-swiper {
    padding: 10px 0 40px;
  }

  .testimonial-card {
    height: auto;
    min-height: auto;
    margin: 0;
    border-radius: 16px;
    border-width: 1.5px;
  }

  .testimonial-content {
    padding: 2rem 1rem 1rem;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.875rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  .testimonial-rating {
    padding: 4px 10px;
    top: -10px;
  }

  .testimonial-rating i {
    font-size: 0.8rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-role {
    font-size: 0.8rem;
  }

  .testimonials-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.2;
  }

  .testimonials-swiper .swiper-slide:not(.swiper-slide-active) .testimonial-card {
    transform: scale(0.94);
  }

  .testimonial-pagination {
    margin-top: 1.5rem;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    width: 24px;
    height: 8px;
    margin: 0 6px;
  }
}

/* Rating Summary */
.rating-summary {
  position: relative;
  z-index: 2;
}

.rating-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: inline-block;
  transition: all 0.3s ease;
}

.rating-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0.5rem;
}

.rating-stars i {
  color: var(--accent-color);
  font-size: 1.4rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.rating-stars i:hover {
  transform: scale(1.1);
}

.rating-count {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== COMMITMENT SECTION ===== */
.commitment-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(201, 71, 54, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(77, 122, 126, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.commitment-section .container {
  position: relative;
  z-index: 2;
}

/* Main Commitment Cards */
.commitment-main-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 71, 54, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.commitment-main-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.commitment-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(201, 71, 54, 0.3);
  transition: all 0.3s ease;
}

.commitment-main-card:hover .commitment-icon-large {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(201, 71, 54, 0.4);
}

.commitment-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(77, 122, 126, 0.3);
}

/* Additional Features */
.commitment-feature {
  background: var(--white);
  border-radius: 15px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 71, 54, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.commitment-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.commitment-feature:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(77, 122, 126, 0.3);
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 71, 54, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* ===== GALLERY PREVIEW (Simple) ===== */
.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #fff;
}

.gallery-preview-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.gallery-preview-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-preview-item:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-preview-item img {
    height: 250px;
  }
}

/* ===== GALLERY PREVIEW CARD (Index Page) ===== */
.gallery-preview-grid {
  display: flex;
  flex-wrap: wrap;
}

.gallery-preview-card {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  cursor: pointer;
}

.gallery-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.gallery-preview-image-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.gallery-preview-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.gallery-preview-card:hover .gallery-preview-img {
  transform: scale(1.08);
}

.gallery-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 71, 54, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.gallery-preview-card:hover .gallery-preview-overlay {
  opacity: 1;
}

.gallery-preview-overlay i {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-preview-card:hover .gallery-preview-overlay i {
  transform: scale(1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .gallery-preview-image-wrapper {
    padding-bottom: 70%;
  }

  .gallery-preview-overlay i {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .gallery-preview-image-wrapper {
    padding-bottom: 75%;
  }

  .gallery-preview-card {
    border-radius: 12px;
  }

  .gallery-preview-overlay i {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .gallery-preview-image-wrapper {
    padding-bottom: 80%;
  }
}

/* ===== FILTER BUTTONS ===== */
.filter-buttons {
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 12px 15px;
  font-family: var(--font-primary);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(201, 71, 54, 0.25);
}

input,
textarea,
select,
button,
label {
  font-family: var(--font-primary);
}

p,
span:not([class*='icon']),
a,
li {
  font-family: var(--font-primary);
}

/* ========== FOOTER ========== */
.footer {
  background: #1f2937;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* Footer margin untuk about-page hanya di desktop */
@media (min-width: 1025px) {
  body.about-page .footer {
    margin-left: 260px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-family: 'Nunito', 'Varela Round', sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-primary, #e05048);
  letter-spacing: 0.05em;
  text-transform: lowercase;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.footer-title:hover {
  transform: scale(1.02);
}

.footer-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-heading {
  font-family: var(--ff-heading);
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-col:hover .footer-heading {
  color: rgba(255, 255, 255, 0.95);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform 0.2s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links li i {
  color: var(--color-primary, #e05048);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 0.9rem;
}

.footer-links li:hover i {
  color: var(--color-primary, #e05048);
  transform: scale(1.2);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item i {
  color: var(--color-primary, #e05048);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 0.9rem;
}

.footer-contact-item:hover i {
  transform: scale(1.2);
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.footer-contact-item strong {
  color: white;
  font-weight: 600;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-cta-link {
  color: white !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-cta-link i {
  transition: transform 0.3s ease;
}

.footer-cta-link:hover i {
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-bottom strong {
  color: white;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

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

  .footer-title {
    font-size: 3rem;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 0.7rem;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer-title {
    font-size: 2.5rem;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* Smooth scrolling back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: #e05048;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(224, 80, 72, 0.3);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(224, 80, 72, 0.4);
}

/* Smooth scrolling back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: #e05048;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(224, 80, 72, 0.3);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(224, 80, 72, 0.4);
}

/* Smooth scrolling back to top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: #e05048;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(224, 80, 72, 0.3);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(224, 80, 72, 0.4);
}
/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

/* ===== JOIN US PARALLAX CTA ===== */
.join-parallax-section {
  position: relative;
  min-height: 360px;
  z-index: 1;
  overflow: hidden;
}

/* Jarallax image container styling */
/* Catatan: Jarallax akan mengatur styling untuk jarallax-img secara otomatis */
.join-parallax-section .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

/* Fallback background jika jarallax tidak bekerja */
/* Gambar akan tetap terlihat baik dengan jarallax maupun tanpa jarallax */

.join-parallax-section .parallax-container {
  position: relative;
  min-height: 360px;
}

.join-parallax-section .layer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.join-parallax-section .join-parallax-bg {
  position: absolute;
  inset: 0;
  /* backdrop-filter: blur(100px); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0;
  filter: saturate(3) brightness(3);
  will-change: background-position;
}

.join-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.join-parallax-section .layer-shape-1,
.join-parallax-section .layer-shape-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(215, 167, 79, 0.35), transparent 60%);
  filter: blur(2px);
}

.join-parallax-section .layer-shape-1 {
  top: -40px;
  left: -40px;
}
.join-parallax-section .layer-shape-2 {
  bottom: -40px;
  right: -40px;
  background: radial-gradient(circle at 70% 70%, rgba(201, 71, 54, 0.35), transparent 60%);
}

.join-parallax-content {
  padding: 4rem 1rem;
  position: relative;
  z-index: 2;
  max-width: 960px;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .join-parallax-section {
    min-height: 420px;
  }
  .join-parallax-content {
    padding: 5rem 1rem;
  }
}

/* Typography & CTA to match reference */
.join-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #e9ecef;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(6px);
}

.join-title {
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.join-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* ===== JOIN CONTACT SECTION (New Layout) ===== */
.join-contact-section {
  background-color: #ffffff;
  padding: 4rem 0;
  font-family: var(--font-primary);
}

.join-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.join-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.join-image-wrapper:hover img {
  transform: scale(1.05);
}

.join-content {
  padding: 2rem 0;
  font-family: var(--font-primary);
}

.join-content-title {
  font-size: 2.5rem;
  color: var(--text-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
}

.join-content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-family: var(--font-primary);
}

.join-cta-link {
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.join-cta-link:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.join-cta-link i {
  transition: transform 0.3s ease;
}

.join-cta-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991.98px) {
  .join-contact-section {
    padding: 3rem 0;
  }

  .join-content-title {
    font-size: 2rem;
  }

  .join-content-text {
    font-size: 1rem;
  }

  .join-image-wrapper {
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .join-contact-section {
    padding: 2rem 0;
  }

  .join-content-title {
    font-size: 1.75rem;
  }

  .join-content-text {
    font-size: 0.95rem;
  }
}

.btn-join {
  background: var(--secondary-color);
  border: 0;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.btn-join:hover {
  background: #3f6a6e;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== LOADING ANIMATION ===== */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  /* Mobile video optimization */
  .hero-video video {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
  }

  /* Dark hero mobile */
  .hero-dark {
    text-align: center;
    padding-top: 80px !important;
  }

  .hero-title-dark {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .hero-description-dark {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 250px;
  }

  .hero-image-container-dark {
    max-width: 350px;
    margin-top: 1.5rem;
  }

  .hero-image-main-dark {
    transform: none;
  }

  /* Hero Card Mobile */
  .hero-card {
    max-width: 100%;
    transform: none;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-card:hover {
    transform: none;
  }

  .hero-card-image {
    height: 250px;
  }

  .hero-card-title {
    font-size: 1.25rem;
    padding: 0 0.5rem;
  }

  .hero-visual-dark {
    margin-top: 1.5rem;
  }

  .hero-pagination {
    bottom: 20px;
  }
  .hero-ticker {
    bottom: 6px;
  }

  /* Elegant hero mobile */
  .hero-elegant {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    max-width: 100%;
  }

  /* Modern CTA Button */
  .btn-cta-modern {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(58, 123, 213, 0.35);
    transform: translateY(0);
    transition: all 0.25s ease;
  }
  .btn-cta-modern:hover {
    box-shadow: 0 16px 32px rgba(58, 123, 213, 0.45);
    transform: translateY(-2px);
    filter: brightness(1.05);
  }
  .btn-cta-modern:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(58, 123, 213, 0.35);
  }
  .btn-cta-modern:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(58, 123, 213, 0.35), 0 12px 28px rgba(58, 123, 213, 0.35);
  }

  /* Feature left CTA overlay on desktop */
  .feature-left {
    position: relative;
  }
  .feature-left .feature-cta {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 5;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 250px;
  }

  .hero-image-container {
    max-width: 350px;
    margin-top: 2rem;
  }

  .hero-image-main {
    transform: none;
  }

  .hero-image-floating {
    display: none;
  }

  .hero-stats {
    margin-top: 4rem !important;
    margin-bottom: 1rem !important;
    padding-bottom: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
    font-weight: 800;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Adjust hero text wrap for mobile */
  .hero-text-wrap {
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
  }

  /* Adjust button margin for mobile */
  .hero-text-wrap .btn {
    margin-bottom: 3.5rem !important;
  }

  /* Ensure hero stats visible on mobile */
  .hero-section .hero-slide {
    padding-bottom: 2rem;
    min-height: auto !important;
  }

  /* Add more space from navbar on mobile */
  .hero-section.hero-dark {
    padding-top: 80px !important;
  }

  .hero-section .container {
    padding-bottom: 1rem;
  }

  .feature-card,
  .commitment-card {
    margin-bottom: 2rem;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }

  /* Mobile navbar login button - align right */
  .navbar-login {
    justify-content: flex-end !important;
    margin-top: 1rem;
    margin-left: 0 !important;
    width: 100%;
    padding-right: 0.5rem;
  }

  .navbar-login .btn {
    margin-left: auto;
  }

  /* Mobile navbar transparent */
  .navbar.navbar-transparent .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar.navbar-transparent .navbar-collapse .nav-link {
    color: var(--white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0.25rem 0;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
  }

  .navbar.navbar-transparent .navbar-collapse .nav-link:hover,
  .navbar.navbar-transparent .navbar-collapse .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color) !important;
  }

  .navbar.navbar-scrolled .navbar-collapse {
    background-color: transparent;
  }

  .navbar.navbar-scrolled .navbar-collapse .nav-link {
    color: var(--text-color) !important;
    text-shadow: none;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  /* Hero stats for small mobile */
  .hero-stats {
    margin-top: 3.5rem !important;
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Reduce hero text wrap padding for small mobile */
  .hero-text-wrap {
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .hero-text-wrap .btn {
    margin-bottom: 3rem !important;
  }

  /* Adjust hero section padding for small mobile */
  .hero-section .hero-slide {
    padding-bottom: 1.5rem;
  }

  /* Add more space from navbar on small mobile */
  .hero-section.hero-dark {
    padding-top: 90px !important;
  }

  .hero-title-dark {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero-description-dark {
    font-size: 0.85rem;
    margin-bottom: 1rem !important;
  }

  /* Hero Card Small Mobile */
  .hero-card {
    max-width: 100%;
    transform: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .hero-card-image {
    height: 200px;
  }

  .hero-card-title {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }

  .hero-card-content {
    padding: 1rem;
  }

  .hero-visual-dark {
    margin-top: 1rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.section-padding {
  padding: var(--section-padding);
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced text shadow for video background */
.hero-section .text-shadow {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.border-radius {
  border-radius: var(--border-radius);
}

.box-shadow {
  box-shadow: var(--box-shadow);
}

.transition {
  transition: var(--transition);
}

/* Global CTA Modern (Tentang Kami) */
.btn-cta-modern {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: all 0.25s ease;
}
.btn-cta-modern:hover {
  background: #ffffff;
  color: #000000 !important;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.slide-in-right {
  animation: slideInRight 0.3s ease-out;
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--primary-color);
}

/* ===== PARALLAX EFFECT ===== */
.parallax-bg {
  will-change: transform;
}

/* ===== FILTERIZR CUSTOMIZATION ===== */
.filterizr-container {
  transition: all 0.3s ease;
}

.filterizr-container .filtr-item {
  transition: all 0.3s ease;
}

/* ===== GLIGHTBOX CUSTOMIZATION ===== */
.glightbox-clean .gslide-description {
  background: var(--white);
  color: var(--text-color);
}

.glightbox-clean .gslide-title {
  color: var(--primary-color);
  font-family: var(--font-primary);
  font-weight: 600;
}

/* ===== ABOUT PAGE STYLES ===== */
/* Font Family - Poppins */
body,
html {
  font-family: var(--font-primary) !important;
}

*:not(i):not([class*='icon']):not([class*='fa']):not([class*='fab']):not([class*='fas']):not([class*='far']) {
  font-family: var(--font-primary) !important;
}

/* Prevent horizontal scroll */
body,
html {
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  max-width: 1140px;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

[class*='col-'] {
  max-width: 100%;
}

/* Remove scroll from all sections */
section {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Company Profile Section - Remove all scroll */
.company-profile-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
  position: relative;
  max-width: 100%;
  width: 100%;
}

.company-profile-section * {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Vision & Mission Section - Remove all scroll */
section.bg-light {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

section.bg-light * {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* All container and row in sections */
section .container,
section .row,
section [class*='col-'] {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.profile-bg-decoration {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 71, 54, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.profile-content {
  position: relative;
  z-index: 2;
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.profile-badge {
  display: inline-block;
}

.badge-text {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #c94736 0%, #e67e22 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(201, 71, 54, 0.25);
  text-transform: uppercase;
}

.profile-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a1a1a;
  position: relative;
  line-height: 1.2;
}

.title-accent {
  display: inline-block;
  width: 5px;
  height: 50px;
  background: linear-gradient(180deg, #c94736 0%, #e67e22 100%);
  margin-right: 1rem;
  vertical-align: middle;
  border-radius: 3px;
}

.profile-intro {
  line-height: 1.8;
}

.profile-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0 0.75rem 1rem;
  background: transparent;
  transition: all 0.3s ease;
  border-left: 3px solid #c94736;
}

.highlight-item:hover {
  transform: translateX(5px);
  border-left-color: #e67e22;
}

.highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 71, 54, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
  border-radius: 10px;
  color: #c94736;
  font-size: 1.1rem;
}

.highlight-content h6 {
  color: #1a1a1a;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Profile Gallery */
.profile-gallery {
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: #f5f5f5;
  max-width: 100%;
  width: 100%;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  max-width: 100%;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-overlay i {
  color: #c94736;
  font-size: 1.25rem;
}

.gallery-item-single {
  width: 100%;
  height: 450px;
  border-radius: 16px;
}

@media (max-width: 991px) {
  .profile-gallery {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .gallery-item-single {
    height: 350px;
    margin-bottom: 1rem;
  }

  .profile-highlights {
    margin-top: 2rem;
  }

  .profile-title {
    font-size: 2.25rem;
  }

  .title-accent {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .profile-gallery {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }

  .gallery-item-single {
    height: 320px;
    margin-bottom: 1.5rem;
  }

  .profile-highlights {
    margin-top: 2.5rem;
  }
}

@media (max-width: 576px) {
  .profile-gallery {
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
  }

  .gallery-item-single {
    height: 280px;
    margin-bottom: 2rem;
  }

  .profile-highlights {
    margin-top: 3rem;
  }

  .profile-title {
    font-size: 1.875rem;
  }

  .title-accent {
    width: 4px;
    height: 35px;
    margin-right: 0.75rem;
  }

  .profile-bg-decoration {
    width: 400px;
    height: 400px;
    top: -30%;
    right: -15%;
  }
}

/* CTA Section Responsive */
@media (max-width: 991px) {
  section.bg-primary {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  section.bg-primary .display-5 {
    font-size: 2rem;
    margin-bottom: 1.5rem !important;
  }

  section.bg-primary .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem !important;
  }

  section.bg-primary .btn {
    width: 100%;
    margin-top: 1rem;
  }

  section.bg-primary .col-lg-4 {
    text-align: center !important;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  section.bg-primary {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  section.bg-primary .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  section.bg-primary .display-5 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem !important;
    line-height: 1.3;
  }

  section.bg-primary .lead {
    font-size: 1rem;
    margin-bottom: 2.5rem !important;
    line-height: 1.6;
  }

  section.bg-primary .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  section.bg-primary {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  section.bg-primary .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  section.bg-primary .row {
    margin-left: 0;
    margin-right: 0;
  }

  section.bg-primary .display-5 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem !important;
    line-height: 1.3;
  }

  section.bg-primary .lead {
    font-size: 0.95rem;
    margin-bottom: 2.5rem !important;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  section.bg-primary .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    margin-top: 1rem;
  }

  section.bg-primary .col-lg-8,
  section.bg-primary .col-lg-4 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

.vision-mission-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(201, 71, 54, 0.1);
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.value-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 71, 54, 0.08);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c94736 0%, #e67e22 50%, #c94736 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 71, 54, 0.15);
  border-color: rgba(201, 71, 54, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

/* Core Values Section Background Decoration */
.core-values-section {
  position: relative;
}

.core-values-bg-decoration {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 71, 54, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.core-values-bg-decoration::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

/* Section Separator */
.section-separator-wrapper {
  width: 100%;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.section-separator {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 20px;
  position: relative;
}

.separator-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 71, 54, 0.3) 20%, #c94736 50%, rgba(201, 71, 54, 0.3) 80%, transparent 100%);
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  animation: separatorExpand 1.2s ease-out;
}

.separator-line::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.5;
}

.separator-dot {
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #c94736 0%, #e67e22 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 15px rgba(201, 71, 54, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  animation: separatorDotPulse 2s ease-in-out infinite;
}

.separator-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes separatorExpand {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes separatorDotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(201, 71, 54, 0.5), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 71, 54, 0.7), 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .section-separator-wrapper {
    padding: 30px 0;
  }

  .separator-line {
    height: 1.5px;
  }

  .separator-dot {
    width: 12px;
    height: 12px;
  }

  .separator-dot::before {
    width: 5px;
    height: 5px;
  }

  .section-separator {
    gap: 12px;
  }
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--white);
}

.team-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(201, 71, 54, 0.1);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image img {
  object-fit: cover;
  border: 4px solid var(--primary-color);
}

.stat-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(201, 71, 54, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.accordion-item {
  border: 1px solid rgba(201, 71, 54, 0.1);
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--white);
  color: var(--text-color);
  font-weight: 500;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(201, 71, 54, 0.25);
}

.accordion-body {
  background: var(--background-color);
  color: var(--text-color);
}

/* ===== FORCE WHITE NAVBAR LINKS - HIGHEST PRIORITY ===== */
/* This overrides all other navbar link colors */
.navbar .nav-link,
.navbar .navbar-nav .nav-link,
.navbar-nav .nav-link,
.nav-link,
nav .nav-link,
.navbar-expand-lg .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link,
.fixed-top .navbar-nav .nav-link,
.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-nav .nav-link,
.navbar.navbar-scrolled .nav-link,
.navbar.navbar-scrolled .navbar-nav .nav-link,
nav.navbar-scrolled .nav-link,
.fixed-top.navbar-scrolled .nav-link,
.navbar-expand-lg.navbar-scrolled .navbar-nav .nav-link {
  color: #ffffff !important;
  text-shadow: none !important;
}

.navbar .nav-link:hover,
.navbar .navbar-nav .nav-link:hover,
.navbar-nav .nav-link:hover,
.navbar .nav-link.active,
.navbar .navbar-nav .nav-link.active,
.navbar-nav .nav-link.active,
.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active,
.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active {
  color: #4a90e2 !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Force white navbar toggler */
.navbar-toggler,
.navbar .navbar-toggler,
.fixed-top .navbar-toggler,
.navbar-scrolled .navbar-toggler,
.navbar.navbar-scrolled .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.7) !important;
}

.navbar-toggler-icon,
.navbar .navbar-toggler-icon,
.fixed-top .navbar-toggler-icon,
.navbar-scrolled .navbar-toggler-icon,
.navbar.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
