/* RESET & BASE STYLES */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif;
  scroll-behavior: smooth;
}

body{
  background: #06070a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a{
  text-decoration: none;
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.brand-font {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px;
}

/* NAVIGATION BAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: rgba(6, 7, 10, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.nav-logo {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.nav-logo span {
  color: #ff003c;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: #b0b3b8;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff003c;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: #ff003c;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 0, 60, 0.2);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #ff2658;
  transform: translateY(-1px);
}

/* HERO SECTION */
.hero{
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(255, 0, 60, 0.12), transparent 45%),
              linear-gradient(rgba(6, 7, 10, 0.75), rgba(6, 7, 10, 0.95)),
              url('../img/hrv.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding: 180px 0 80px 0;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 1;
}

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

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(transparent, #06070a);
}

.hero-content{
  max-width: 750px;
}

/* BARU: Style untuk Premium Tech Badge Hero */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 0, 60, 0.08);
  border: 1px solid rgba(255, 0, 60, 0.25);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #ff003c;
  letter-spacing: 1px;
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
}

.hero h1{
  font-size: 58px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -1px;
  min-height: 140px; /* Jaga container judul biar ga goyang pas text typing */
}

.hero h1 span{
  color: #ff003c;
  text-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
}

/* Kursor berkedip untuk efek mengetik */
.hero h1 .txt-type::after {
  content: '|';
  color: #ff003c;
  animation: blink 0.7s infinite;
}

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

.hero p{
  font-size: 19px;
  margin-bottom: 40px;
  color: #b0b3b8;
}

/* BARU: TRUST BAR LOGOS STYLE */
.trust-bar {
  background: #0b0c10;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 25px 0;
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-container span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
}

.trust-logos {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1.5px;
}

.trust-logos i {
  color: rgba(255, 0, 60, 0.6);
  margin-right: 4px;
}

/* MODERN ROUNDED BUTTONS */
.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
}

.btn-primary{
  background: #ff003c;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
}

.btn-primary:hover{
  background: #ff2658;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 60, 0.5);
}

.btn-secondary{
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-secondary:hover{
  background: #ffffff;
  color: #06070a;
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* SECTION GLOBAL */
section{
  padding: 120px 0;
}

.section-title{
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2{
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-title h2 span {
  color: #ff003c;
}

.section-title p{
  color: #8a8d93;
  font-size: 16px;
}

/* FEATURES */
.features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.feature-box{
  background: #0c0d12;
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.feature-box:hover{
  border-color: rgba(255, 0, 60, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 32px;
  color: #ff003c;
  margin-bottom: 20px;
  background: rgba(255, 0, 60, 0.08);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.feature-box h3{
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 14px;
  color: #8a8d93;
}

/* GALLERY */
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  height: 280px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover {
  border-color: #ff003c;
  box-shadow: 0 8px 30px rgba(255, 0, 60, 0.3);
  transform: translateY(-4px);
}

.gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-overlay.active {
  display: flex !important;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 0, 60, 0.2);
  object-fit: contain;
}

.lightbox-controls {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox-btn:hover {
  background: rgba(255, 0, 60, 0.3);
  border-color: #ff003c;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  font-size: 0.9rem;
}

/* PRICING */
.pricing{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.price-card{
  background: #0c0d12;
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: #ff003c;
  box-shadow: 0 8px 30px rgba(255, 0, 60, 0.2);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: #ff003c;
  background: linear-gradient(180deg, rgba(255, 0, 60, 0.02), transparent);
  position: relative;
}

.price-card.featured::after {
  content: 'BEST SELLER';
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: #ff003c; color: #fff; padding: 5px 18px;
  border-radius: 30px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px;
}

.price-card h3{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.price{
  font-size: 44px;
  font-weight: 800;
  margin: 25px 0;
}

.price-card.featured .price {
  color: #ff003c;
}

.price-card ul{
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.price-card li{
  margin: 15px 0;
  color: #b0b3b8;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li i {
  color: #ff003c;
}

/* BARU: Style untuk Section Cross-Selling Addons */
.addons-container {
  margin-top: 50px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 30px;
}

.addon-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.addon-item {
  background: #0c0d12;
  border: 1px solid rgba(255, 255, 255, 0.02);
  padding: 16px 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #b0b3b8;
}

.addon-price {
  color: #ff003c;
  font-weight: 700;
}

/* TESTIMONI */
.testimonials{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.testimonial{
  background: #0c0d12;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial p{
  font-style: italic;
  color: #d1d4dc;
  font-size: 15px;
}

.testimonial h4{
  margin-top: 20px;
  color: #ffffff;
  font-weight: 700;
}

/* FAQ ACCORDION */
.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.faq-item {
  background: #0c0d12;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  transition: border-color 0.3s ease;
}

.faq-toggle {
  width: 100%;
  padding: 22px 30px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-toggle span {
  pointer-events: none;
  padding-right: 15px;
}

.faq-toggle i {
  color: #ff003c;
  font-size: 14px;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(0, 0, 0, 0.2);
}

.faq-content-inner {
  padding: 5px 30px 24px 30px;
}

.faq-content p {
  color: #8a8d93;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(255, 0, 60, 0.3);
}

/* CTA */
.cta-wrapper {
  padding: 40px 0 100px 0;
}

.cta{
  text-align: center;
  background: linear-gradient(135deg, #ff003c 0%, #9e0024 100%);
  padding: 80px 40px;
  border-radius: 24px;
}

.cta h2{
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta p{
  margin-bottom: 35px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: auto;
}

.cta .btn-secondary {
  background: #ffffff;
  color: #06070a;
  border: none;
}

.cta .btn-secondary:hover {
  background: #f0f0f5;
  transform: translateY(-2px);
}

/* FOOTER */
footer{
  background: #030406;
  text-align: center;
  padding: 45px;
  color: #5c5e64;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  font-size: 14px;
}

/* FLOATING WHATSAPP */
/* RESPONSIVE DESIGN */
@media(max-width: 768px){
  .nav-menu {
    display: none;
  }

  .trust-container {
    flex-direction: column;
    text-align: center;
  }

  .hero{
    text-align: center;
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 38px;
    min-height: 100px;
  }

  .hero p{
    font-size: 16px;
  }

  .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn{
    width: 100%;
  }

  .section-title h2{
    font-size: 30px;
  }
}

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-social .ig {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.footer-social .shopee {
  background: #ee4d2d;
}

.footer-social .wa {
  background: #1a1a1a;
  border: 2px solid rgba(255,255,255,0.15);
}

.footer-social .tiktok {
  background: #000000;
  border: 2px solid rgba(255,255,255,0.2);
}

/* ===== FLOATING SOCIAL DROPDOWN ===== */
.floating-social {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 9999;
}

.floating-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ff003c;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 0, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 0, 60, 0.5);
}

.floating-toggle.open {
  transform: rotate(45deg);
}

.floating-dropdown {
  display: none;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom: 70px;
  right: 0;
  align-items: center;
}

.floating-dropdown.open {
  display: flex;
}

.floating-dropdown a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-dropdown a:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-dropdown .ig {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
}

.floating-dropdown .shopee {
  background: #ee4d2d;
}

.floating-dropdown .tiktok {
  background: #000000;
  border: 2px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  .floating-social {
    right: 10px;
    bottom: 20px;
  }
  .floating-toggle {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    box-shadow: 0 3px 12px rgba(255, 0, 60, 0.35);
  }
  .floating-dropdown {
    bottom: 54px;
    gap: 8px;
  }
  .floating-dropdown a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .footer-social {
    gap: 12px;
  }
  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

