/* Byunda Gold - Custom Styles */

/* Google Fonts imported via HTML */

/* Gold gradient */
.gold-gradient {
  background-image: linear-gradient(135deg, rgb(195, 160, 104) 0%, rgb(226, 200, 149) 50%, rgb(155, 126, 79) 100%);
}
.gold-gradient-btn {
  background-image: linear-gradient(164deg, rgb(195, 160, 104) 0%, rgb(226, 200, 149) 50%, rgb(155, 126, 79) 100%);
}
.gold-gradient-text {
  background-image: linear-gradient(135deg, rgb(195, 160, 104) 0%, rgb(226, 200, 149) 50%, rgb(155, 126, 79) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo icon */
.logo-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: block;
}
.logo-icon-lg {
  width: 38.8px;
  height: 38.8px;
  flex-shrink: 0;
  display: block;
}

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #162330;
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* Mobile menu — floats below navbar via position:fixed so the overlay can receive clicks */
#mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 55;
  background-color: #162330;
  border-top: 1px solid rgba(198, 157, 99, 0.2);
}
@media (max-width: 1023px) {
  #mobile-menu.open {
    display: block;
  }
}
#mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 45;
}
#mobile-menu-overlay.open {
  display: block;
}

/* Hero overlay gradient */
.hero-overlay {
  background-image: linear-gradient(-90deg, rgba(16, 25, 35, 0.4) 0%, rgba(16, 25, 35, 0.9) 50%, rgb(16, 25, 35) 100%);
}

/* Price ticker bar */
.price-ticker-divider {
  width: 1px;
  height: 32px;
  background-color: rgba(198, 157, 99, 0.2);
  flex-shrink: 0;
}

/* Step connector line */
.step-connector {
  position: absolute;
  top: 24px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  border-top: 2px dashed rgba(198, 157, 99, 0.4);
}

/* Testimonial cards */
.testimonial-card {
  background-color: #222f3c;
  border: 1px solid rgba(198, 157, 99, 0.2);
}

/* FAQ accordion */
.faq-answer {
  display: none;
  overflow: hidden;
}
.faq-answer.open {
  display: block;
}
.faq-item.active .faq-icon-close {
  display: block;
}
.faq-item.active .faq-icon-open {
  display: none;
}
.faq-item .faq-icon-close {
  display: none;
}
.faq-item .faq-icon-open {
  display: block;
}

/* Section smooth scroll offset for sticky nav */
html {
  scroll-behavior: smooth;
}
section[id], header[id] {
  scroll-margin-top: 84px;
}

/* Certification badge images */
.cert-badge {
  height: 52px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

/* Feature cards equal height */
.feature-card {
  height: 230px;
}

/* About section image container */
.about-img-container {
  position: relative;
}
.about-img-container::before {
  content: '';
  position: absolute;
  inset: -9px 10px 9px -10px;
  border: 2px solid #c69d63;
  border-radius: 16px;
}
@media (min-width: 1280px) {
  .about-img-container::before {
    inset: -16px 16px 16px -16px;
  }
}

/* Galeri24 badge — different crop on mobile vs desktop */
.badge-galeri24-img {
  width: 121%;
  height: 121%;
  left: -10.5%;
  top: -10.5%;
}
@media (min-width: 1280px) {
  .badge-galeri24-img {
    height: 236.36%;
    left: -10.52%;
    top: -68.18%;
    width: 120.36%;
  }
}

/* Responsive typography scale */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
    line-height: 48px;
  }
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }
  .cta-title {
    font-size: 36px;
    line-height: 44px;
  }
}

/* Active nav link */
.nav-link.active {
  color: #c69d63;
}

/* Smooth transition for mobile menu */
#mobile-menu {
  animation: none;
}

/* Price item */
.price-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(240, 234, 224, 0.5);
  font-family: 'Poppins', sans-serif;
}
.price-value {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 28px;
}
.price-unit {
  font-size: 12px;
  color: rgba(240, 234, 224, 0.4);
  font-family: 'Poppins', sans-serif;
  line-height: 16px;
  align-self: flex-end;
  margin-bottom: 2px;
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1279px) {
  .hero-title {
    font-size: 48px;
    line-height: 60px;
  }
}
