/* Safari Website - Complete Stylesheet */
/* Moka-inspired design dengan color scheme yang diminta */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - sesuai breakdown */
  --color-primary: #0b69a3;
  --color-primary-dark: #094f7b;
  --color-primary-light: #e3f2fd;
  --color-surface: #f5f7fa;
  --color-accent: #ffb74d;
  --text: #0f1724;
  --text-muted: #6b7280;

  /* Design System */
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(11, 105, 163, 0.08);
  --shadow-md: 0 4px 20px rgba(11, 105, 163, 0.12);
  --shadow-lg: 0 8px 35px rgba(11, 105, 163, 0.15);

  /* Typography */
  --ff-heading: 'Poppins', sans-serif;
  --ff-body: 'Inter', 'Roboto', sans-serif;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-text {
  font-family: 'Nunito', 'Varela Round', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  animation: fadeInScale 1.2s ease-in-out infinite alternate;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeInScale {
  0% {
    opacity: 0.8;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1000;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  visibility: visible;
  opacity: 1;
  text-decoration: none !important;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease;
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

.navbar.scrolled .logo-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo-text:hover {
  text-decoration: none !important;
  border-bottom: none !important;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: background 0.3s ease;
}

.navbar.scrolled .nav-link.active::after {
  background: var(--color-primary);
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  color: white;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(11, 105, 163, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(11, 105, 163, 0.3);
}

.nav-cta {
  transition: all 0.3s ease;
  display: inline-block;
  visibility: visible;
  opacity: 1;
}

/* Sembunyikan CTA mobile di desktop */
.nav-cta-mobile-wrapper {
  display: none;
}

.navbar:not(.scrolled) .nav-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(11, 105, 163, 0.3);
}

.navbar:not(.scrolled) .nav-cta:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(11, 105, 163, 0.4);
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(11, 105, 163, 0.2);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-primary);
  display: inline-block;
}

.btn-secondary:hover {
  background: var(--color-primary-light);
}

/* ========== PROMO PRODUCTS SECTION ========== */
.promo-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.promo-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.promo-section .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.promo-section .section-subtitle {
  font-size: 15px;
  color: #666666;
}

.promo-nav-buttons {
  display: flex;
  gap: 0.75rem;
}

.promo-nav-buttons .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: #4a5f7f;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.promo-nav-buttons .nav-btn:hover {
  background: #3a4f6f;
}

.promo-nav-buttons .nav-btn svg {
  display: block;
}

.promo-swiper {
  overflow: hidden;
  padding-bottom: 0.5rem;
}

.promo-swiper .swiper-wrapper {
  align-items: stretch;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: none;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  padding: 12px 12px 0;
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 14px 14px 0 0;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
  border-top: 1px solid #f1f5f9;
}

.product-name {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-expiry {
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.stock-status {
  display: none;
}

.stock-status.available {
  background: #d4edda;
  color: #155724;
}

.stock-status.out-of-stock {
  background: #f8d7da;
  color: #721c24;
}

@media (max-width: 768px) {
  .promo-section {
    padding: 3.5rem 0;
  }

  .promo-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .promo-nav-buttons {
    align-self: stretch;
    justify-content: flex-start;
  }
}

.btn-white {
  background: white;
  color: var(--color-primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
}

.nav-toggle span:nth-child(1) {
  top: 6px;
}

.nav-toggle span:nth-child(2) {
  top: 13.5px;
}

.nav-toggle span:nth-child(3) {
  bottom: 6px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-primary);
}

/* Transform hamburger menjadi X ketika active */
.nav-toggle.active span:nth-child(1) {
  top: 13.5px;
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
  bottom: 13.5px;
  transform: rotate(-45deg);
}

/* ========== HERO SECTION ========== */
.hero-modern {
  margin-top: 0;
  padding: 0;
  padding-top: 120px;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #f5f7fa 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(11, 105, 163, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 183, 77, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #e3f2fd 100%);
  border: 1px solid rgba(11, 105, 163, 0.2);
  border-radius: 50px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-family: var(--ff-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.hero-image-alt {
  position: relative;
}

.hero-image-alt::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  border-radius: 24px;
  opacity: 0.1;
  z-index: -1;
}

.hero-image-alt img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(11, 105, 163, 0.2);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.hero-image-alt:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* ========== STATS SECTION ========== */
.stats-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.stats-section .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stats-section .container {
  position: relative;
  z-index: 2;
}

.stats-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stats-title {
  font-family: var(--ff-heading);
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.stats-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-weight: 400;
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero-section {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
  mix-blend-mode: overlay;
}

.about-hero-section .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(1.2);
}

.about-hero-section .container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
  font-size: 1.5rem;
  color: white;
  line-height: 1.8;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ========== ABOUT PAGE SIDEBAR LAYOUT ========== */
/* Desktop: Hide navbar, show sidebar */
@media (min-width: 1025px) {
  body.about-page .navbar,
  body.gallery-page .navbar,
  body.contact-page .navbar {
    display: none !important;
  }

  body.about-page .about-sidebar,
  body.gallery-page .about-sidebar,
  body.contact-page .about-sidebar {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.about-page .about-sidebar *,
  body.gallery-page .about-sidebar *,
  body.contact-page .about-sidebar * {
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.about-page .about-main-content,
  body.gallery-page .about-main-content,
  body.contact-page .about-main-content {
    margin-left: 260px;
  }

  body.about-page .footer,
  body.gallery-page .footer,
  body.contact-page .footer {
    margin-left: 260px;
  }
}

/* Mobile/Tablet: Show navbar, hide sidebar */
@media (max-width: 1024px) {
  body.about-page .about-sidebar,
  body.gallery-page .about-sidebar,
  body.contact-page .about-sidebar {
    display: none !important;
  }

  body.about-page .about-main-content,
  body.gallery-page .about-main-content,
  body.contact-page .about-main-content {
    margin-left: 0;
  }

  body.about-page .footer,
  body.gallery-page .footer,
  body.contact-page .footer {
    margin-left: 0 !important;
    width: 100% !important;
  }

  /* Navbar di hero section about, gallery, dan contact - logo dan toggle putih */
  body.about-page .navbar:not(.scrolled) .logo-text,
  body.gallery-page .navbar:not(.scrolled) .logo-text,
  body.contact-page .navbar:not(.scrolled) .logo-text {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
  }

  body.about-page .navbar:not(.scrolled) .nav-toggle span,
  body.gallery-page .navbar:not(.scrolled) .nav-toggle span,
  body.contact-page .navbar:not(.scrolled) .nav-toggle span {
    background: white;
  }

  /* Menu mobile tetap warna normal, tidak putih */
  body.about-page .nav-menu .nav-link,
  body.gallery-page .nav-menu .nav-link,
  body.contact-page .nav-menu .nav-link {
    color: var(--text);
  }

  body.about-page .nav-menu .nav-link:hover,
  body.about-page .nav-menu .nav-link.active,
  body.gallery-page .nav-menu .nav-link:hover,
  body.gallery-page .nav-menu .nav-link.active,
  body.contact-page .nav-menu .nav-link:hover,
  body.contact-page .nav-menu .nav-link.active {
    color: var(--color-primary);
  }
}

.about-sidebar {
  position: fixed;
  left: 1rem;
  top: 2rem;
  bottom: 2rem;
  width: 240px;
  height: calc(100vh - 4rem);
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  flex-direction: column;
  z-index: 1001;
  padding: 1.5rem 0;
  overflow-y: auto;
  display: none;
}

.sidebar-logo {
  padding: 0 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(11, 105, 163, 0.1);
  padding-bottom: 1.5rem;
  visibility: visible;
  opacity: 1;
}

.sidebar-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  visibility: visible;
  opacity: 1;
}

.sidebar-logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.sidebar-logo-text {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  visibility: visible;
  opacity: 1;
  display: block;
}

.sidebar-nav {
  flex: 1;
  padding: 0 0.75rem;
  visibility: visible;
  opacity: 1;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  visibility: visible;
  opacity: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  visibility: visible;
  opacity: 1;
}

.sidebar-link span {
  visibility: visible;
  opacity: 1;
}

.sidebar-link i {
  width: 18px;
  text-align: center;
  color: var(--text-muted);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.sidebar-link:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.sidebar-link:hover i {
  color: var(--color-primary);
}

.sidebar-link.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  color: white;
}

.sidebar-link.active i {
  color: white;
}

.sidebar-cta {
  padding: 1.5rem;
  border-top: 1px solid rgba(11, 105, 163, 0.1);
  margin-top: auto;
}

.sidebar-btn {
  width: 100%;
  text-align: center;
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.about-main-content {
  min-height: 100vh;
  padding-bottom: 0;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2,
.page-title {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 6rem 0;
  background: var(--color-surface);
}

/* Swiper Features Customization */
.features-section .container {
  overflow: hidden;
  position: relative;
}

.features-swiper {
  padding: 2rem 0 5rem;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.features-swiper .swiper-wrapper {
  align-items: stretch;
  justify-content: flex-start;
  overflow: visible;
}

.features-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
  box-sizing: border-box;
  width: auto;
}

.features-swiper .swiper-slide .feature-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.features-swiper .swiper-pagination {
  position: relative;
  margin-top: 3rem;
  bottom: 0;
  text-align: center;
  width: 100%;
}

.features-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  opacity: 0.25;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 5px;
  border-radius: 50%;
}

.features-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background: var(--color-primary);
}

.feature-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 105, 163, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, #1976d2 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(11, 105, 163, 0.15);
  border-color: rgba(11, 105, 163, 0.1);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(11, 105, 163, 0.2);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(11, 105, 163, 0.3);
}

.feature-icon i {
  font-size: 2.5rem;
  z-index: 1;
  position: relative;
}

.feature-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
  flex-grow: 1;
}

/* ========== ABOUT SECTION ========== */
.about-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content {
  padding-left: 0;
}

.about-content-inner {
  max-width: 100%;
}

.about-main-title {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.about-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
}

.about-features-numbered {
  list-style: none;
  counter-reset: feature-counter;
  margin: 2.5rem 0;
  padding: 0;
}

.about-features-numbered li {
  counter-increment: feature-counter;
  padding: 1.5rem 0;
  padding-left: 3.5rem;
  position: relative;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(11, 105, 163, 0.08);
}

.about-features-numbered li:last-child {
  border-bottom: none;
}

.about-features-numbered li::before {
  content: counter(feature-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  display: block;
}

.about-features-numbered li strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.btn-discover-more {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(11, 105, 163, 0.3);
}

.btn-discover-more:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 105, 163, 0.4);
}

/* 3D Visual Container */
.about-visual-3d {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.distributor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.about-visual-3d:hover .distributor-image {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-visual-3d {
    height: 600px;
    order: -1;
  }

  .about-main-title {
    font-size: 2.5rem;
  }

  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-main-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-features-numbered li {
    font-size: 0.95rem;
    padding-left: 2.5rem;
  }

  .about-visual-3d {
    height: 500px;
  }

  .vision-mission-section {
    padding: 0 0 4rem;
  }

  .vm-divider-image-section {
    height: 250px;
    margin-bottom: 3rem;
  }

  .vm-divider-image-section.jarallax {
    min-height: 250px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vm-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
  }

  .vm-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .vm-icon i {
    font-size: 2rem;
  }

  .vm-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .vm-card p {
    font-size: 1rem;
  }

  .new-feature-section {
    padding: 5rem 0;
    min-height: 400px;
  }

  .new-feature-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .new-feature-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-about-section {
    padding: 3.5rem 0 !important;
  }

  .cta-about-section.jarallax {
    min-height: 350px !important;
    height: auto !important;
  }

  .cta-about-section .jarallax-img {
    background-position: center center !important;
    background-size: cover !important;
    min-height: 350px !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }

  .cta-about-section .container {
    padding: 0 1rem !important;
  }

  .cta-about-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    text-align: center !important;
  }

  .cta-about-text {
    text-align: center !important;
    padding: 0 !important;
  }

  .cta-about-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
    padding: 0 !important;
  }

  .cta-about-description {
    font-size: 1rem !important;
    max-width: 100% !important;
    margin: 0 auto 1.5rem !important;
    line-height: 1.7 !important;
    padding: 0 !important;
  }

  .cta-about-button-wrapper {
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .btn-cta-about {
    padding: 1rem 2rem !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
  }
}

/* ========== VISION MISSION ========== */
.vision-mission-section {
  padding: 0 0 6rem;
  background: white;
}

.vm-divider-image-section {
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin-bottom: 4rem;
  position: relative;
}

.vm-divider-image-section.jarallax {
  min-height: 300px;
}

.vm-divider-image-section .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.85);
}

.vm-divider-image-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, white);
  z-index: 1;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.vm-card {
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(11, 105, 163, 0.1);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vm-card:hover::before {
  transform: scaleX(1);
}

.vm-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(11, 105, 163, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.vm-card:hover .vm-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(11, 105, 163, 0.35);
}

.vm-icon i {
  font-size: 2.5rem;
  color: white;
}

.vm-card h3 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 700;
}

.vm-card p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ========== NEW FEATURE SECTION WITH JARALLAX ========== */
.new-feature-section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.new-feature-section .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}

.new-feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 105, 163, 0.85) 0%, rgba(9, 79, 123, 0.9) 100%);
  z-index: 1;
}

.new-feature-section .container {
  position: relative;
  z-index: 2;
}

.new-feature-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.new-feature-title {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.new-feature-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.new-feature-section .btn-primary {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 6rem 0;
  background: white;
}

.filter-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--color-primary-light);
  border-radius: 50px;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 1.5rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: none; /* Sembunyikan teks overlay */
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  display: none; /* Tetap sembunyikan meski hover */
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: var(--text);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 1;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 6rem 0;
  background: var(--color-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-surface);
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  width: 45px;
  height: 45px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

.info-icon i {
  font-size: 1.2rem;
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--color-surface);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-status {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 10px;
  display: none;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  display: block;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 4rem 0;
  background: var(--color-primary);
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.cta-text p {
  font-size: 1.1rem;
  color: white;
  opacity: 0.95;
  margin: 0;
}

.cta-button-wrapper {
  flex-shrink: 0;
}

.cta-button {
  background: white;
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-transform: none;
}

.cta-button i {
  font-size: 1.2rem;
  color: var(--text);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
}

.cta-button:active {
  transform: translateY(0);
}

/* ========== GALLERY PREVIEW SECTION ========== */
.gallery-preview-section {
  padding: 6rem 0;
  background: var(--color-surface);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-preview-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
}

.gallery-preview-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-preview-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-preview-item:hover img {
  transform: scale(1.05);
}

.gallery-preview-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-accent);
  color: var(--text);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  padding: 1.5rem;
  color: white;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-preview-item:hover .gallery-preview-overlay {
  transform: translateY(0);
}

.gallery-preview-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-preview-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.gallery-preview-cta {
  text-align: center;
  margin-top: 2rem;
}

.gallery-preview-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-preview-cta .btn-primary i {
  font-size: 1.1rem;
}

/* ========== SHOWCASE SECTION ========== */
.showcase-section {
  padding: 6rem 0;
  background: white;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.showcase-item:last-child {
  margin-bottom: 0;
}

.showcase-item-left {
  grid-template-columns: 1fr 1fr;
}

.showcase-item-right {
  grid-template-columns: 1fr 1fr;
}

.showcase-item-right .showcase-visual {
  order: -1;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
}

.showcase-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-title {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.showcase-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.showcase-cta i {
  transition: transform 0.3s ease;
}

.showcase-cta:hover {
  color: var(--color-primary-dark);
  gap: 1rem;
}

.showcase-cta:hover i {
  transform: translateX(4px);
}

.showcase-visual {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.showcase-visual:hover .showcase-image {
  transform: scale(1.02);
}

/* ========== BENEFITS SECTION ========== */
.benefits-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(11, 105, 163, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(11, 105, 163, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(11, 105, 163, 0.12);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #e3f2fd 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.benefit-icon i {
  font-size: 1.5rem;
}

.benefit-item h4 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(11, 105, 163, 0.08);
  border: 1px solid rgba(11, 105, 163, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11, 105, 163, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary-light);
}

.testimonial-info h4 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem 0;
}

.testimonial-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-quote {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 6rem 0;
  background: white;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 30px rgba(11, 105, 163, 0.12), 0 4px 15px rgba(11, 105, 163, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(11, 105, 163, 0.05);
}

.faq-item:hover {
  box-shadow: 0 12px 40px rgba(11, 105, 163, 0.18), 0 6px 20px rgba(11, 105, 163, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  padding: 1.75rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--color-primary-light);
}

.faq-question h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  flex: 1;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.75rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

.faq-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ========== CTA ABOUT SECTION ========== */
.cta-about-section {
  padding: 5rem 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cta-about-section.jarallax {
  min-height: 400px;
}

.cta-about-section .jarallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 400px;
}

.cta-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 79, 123, 0.85) 0%, rgba(25, 118, 210, 0.85) 100%);
  z-index: 1;
}

.cta-about-section .container {
  position: relative;
  z-index: 2;
}

.cta-about-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.cta-about-text {
  color: white;
}

.cta-about-title {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: white;
}

.cta-about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.cta-about-button-wrapper {
  flex-shrink: 0;
}

.btn-cta-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: white;
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.btn-cta-about i {
  font-size: 1.25rem;
  color: var(--text);
}

.btn-cta-about:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 4rem 0 2rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* Footer margin untuk about-page dan gallery-page hanya di desktop */
@media (min-width: 1025px) {
  body.about-page .footer,
  body.gallery-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: 5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 1rem;
}

.footer-text {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--ff-heading);
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-links li i {
  color: var(--color-primary);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

/* ========== SCROLL TO TOP BUTTON ========== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(11, 105, 163, 0.3);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top i {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-content-wrapper,
  .about-content-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-item {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .showcase-item-left .showcase-content {
    order: 1;
  }

  .showcase-item-left .showcase-visual {
    order: 2;
  }

  .showcase-item-right .showcase-content {
    order: 3;
  }

  .showcase-item-right .showcase-visual {
    order: 4;
  }

  .showcase-content {
    padding: 2rem 1.5rem;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-visual {
    height: auto;
  }

  .showcase-image {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  /* Navbar di hero section - logo dan toggle putih (kecuali index page) */
  .navbar:not(.scrolled) .logo-text {
    color: white;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
  }

  /* Index page: navbar tetap biru di mobile */
  body.index-page .navbar:not(.scrolled) .logo-text {
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .navbar:not(.scrolled) .nav-toggle span {
    background: white;
  }

  /* Index page: toggle tetap biru di mobile */
  body.index-page .navbar:not(.scrolled) .nav-toggle span {
    background: var(--color-primary);
  }

  .nav-cta-desktop {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-cta-mobile-wrapper {
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }

  .nav-cta-mobile {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1976d2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 105, 163, 0.3);
  }

  .nav-cta-mobile:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(11, 105, 163, 0.4);
    color: white;
  }

  .nav-link {
    color: var(--text);
  }

  /* Menu mobile tetap warna normal, tidak putih */
  .nav-menu .nav-link {
    color: var(--text);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--color-primary);
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--color-primary);
  }

  .hero-modern {
    padding: 140px 0 5rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .showcase-item-left .showcase-content {
    order: 1;
  }

  .showcase-item-left .showcase-visual {
    order: 2;
  }

  .showcase-item-right .showcase-content {
    order: 3;
  }

  .showcase-item-right .showcase-visual {
    order: 4;
  }

  .showcase-content {
    padding: 2rem 1.5rem;
  }

  .showcase-title {
    font-size: 2rem;
  }

  .showcase-visual {
    height: auto;
  }

  .showcase-image {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .section-header h2,
  .page-title {
    font-size: 2rem;
  }

  .stats-section {
    padding: 5rem 0;
    min-height: 350px;
  }

  .stats-title {
    font-size: 2.5rem;
  }

  .stats-subtitle {
    font-size: 1.1rem;
  }

  .about-hero-section {
    padding: 140px 0 3rem;
    min-height: 35vh;
  }

  .about-hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    padding: 0 1rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 1rem;
  }

  .about-hero-content {
    padding: 0 1rem;
  }

  .about-hero-section .container {
    padding: 0 1rem;
  }

  .features-swiper {
    padding: 2rem 0 3rem;
    margin: 0 auto;
    width: 100%;
  }

  .features-swiper .swiper-wrapper {
    justify-content: flex-start;
  }

  .features-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
  }

  .features-swiper .swiper-pagination {
    text-align: center;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 2.5rem 2rem;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .feature-icon i {
    font-size: 2.2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .cta-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .cta-text h2 {
    font-size: 2rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer .container {
    padding: 0 1.5rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
  }

  .footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
  }

  .footer-heading {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .footer-links {
    font-size: 0.9rem;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .footer-links li a,
  .footer-links li {
    max-width: 100%;
  }

  .footer-links li span,
  .footer-links li {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.85rem;
  }

  .footer-bottom p {
    line-height: 1.6;
    word-wrap: break-word;
  }

  .social-links {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .preloader-text {
    font-size: 3rem;
  }

  .about-hero-section {
    padding: 140px 0 2.5rem;
    min-height: 30vh;
  }

  .about-hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
  }

  .about-hero-subtitle {
    font-size: 0.875rem;
    padding: 0 1.5rem;
  }

  .footer {
    padding: 2.5rem 0 1.25rem;
  }

  .footer .container {
    padding: 0 1rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-col {
    width: 100%;
  }

  .footer-title {
    font-size: 2.5rem;
  }

  .footer-text {
    font-size: 0.85rem;
    word-wrap: break-word;
  }

  .footer-heading {
    font-size: 0.95rem;
  }

  .footer-links {
    font-size: 0.85rem;
  }

  .footer-links li {
    word-wrap: break-word;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
    align-items: flex-start;
  }

  .footer-links li i {
    width: 18px;
    flex-shrink: 0;
    margin-top: 0.25rem;
  }

  .footer-links li a,
  .footer-links li {
    max-width: 100%;
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .footer-links li.footer-address {
    flex-direction: row;
    align-items: flex-start;
  }

  .footer-links li.footer-address i {
    margin-bottom: 0;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }

  .footer-links li.footer-address span {
    display: inline;
    width: auto;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.6;
  }

  .vision-mission-section {
    padding: 0 0 3rem;
  }

  .vm-divider-image-section {
    height: 180px;
    margin-bottom: 2rem;
  }

  .vm-divider-image-section.jarallax {
    min-height: 180px;
  }

  .vm-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .vm-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .vm-icon i {
    font-size: 1.75rem;
  }

  .vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .vm-card p {
    font-size: 0.95rem;
  }

  .new-feature-section {
    padding: 4rem 0;
    min-height: 350px;
  }

  .new-feature-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }

  .new-feature-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .new-feature-content {
    padding: 0;
  }

  .cta-about-section {
    padding: 2.5rem 0 !important;
  }

  .cta-about-section.jarallax {
    min-height: 300px !important;
    height: auto !important;
  }

  .cta-about-section .jarallax-img {
    background-position: center center !important;
    background-size: cover !important;
    min-height: 300px !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }

  .cta-about-section .container {
    padding: 0 0.75rem !important;
  }

  .cta-about-wrapper {
    gap: 1.5rem !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .cta-about-text {
    padding: 0 !important;
    text-align: center !important;
  }

  .cta-about-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.875rem !important;
    line-height: 1.3 !important;
    padding: 0 !important;
  }

  .cta-about-description {
    font-size: 0.9rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.6 !important;
    padding: 0 !important;
  }

  .cta-about-button-wrapper {
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .btn-cta-about {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.9rem !important;
    padding: 0.875rem 1.75rem !important;
    justify-content: center !important;
    white-space: normal !important;
  }

  .btn-cta-about i {
    font-size: 1.1rem !important;
  }

  .footer-bottom {
    padding-top: 1.25rem;
    font-size: 0.8rem;
  }

  .footer-bottom p {
    line-height: 1.8;
    word-wrap: break-word;
    padding: 0 0.5rem;
  }

  .footer-bottom p a {
    display: inline-block;
    margin: 0 0.25rem;
    word-break: break-word;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .preloader-text {
    font-size: 2.5rem;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-text h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .gallery-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-preview-item img {
    height: 220px;
  }

  .features-swiper {
    padding: 1.5rem 0 3rem;
    margin: 0 auto;
    width: 100%;
  }

  .features-swiper .swiper-wrapper {
    justify-content: flex-start;
  }

  .features-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
  }

  .features-swiper .swiper-slide .feature-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .features-swiper .swiper-pagination {
    text-align: center;
    margin-top: 1.5rem;
  }

  .stats-section {
    padding: 4rem 0;
    min-height: 300px;
  }

  .stats-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .stats-subtitle {
    font-size: 1rem;
  }

  .features-swiper .swiper-slide {
    padding: 0.25rem;
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
  }

  .features-swiper .swiper-slide .feature-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .feature-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    border-radius: 20px;
  }

  .feature-icon i {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .showcase-item {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .showcase-item-left .showcase-content {
    order: 1;
  }

  .showcase-item-left .showcase-visual {
    order: 2;
  }

  .showcase-item-right .showcase-content {
    order: 3;
  }

  .showcase-item-right .showcase-visual {
    order: 4;
  }

  .showcase-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .showcase-description {
    font-size: 1rem;
  }

  .showcase-visual {
    height: auto;
  }

  .showcase-image {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}
