/* Product Detail Page Custom CSS */

:root {
  --primary-brand: #f67627;
  --primary-secondary: #ff9e59;
  --dark-brand: #3f2a1d;
  --light-bg: #fffbf9;
}

/* Product Hero Section */
.product-hero {
  padding: 120px 0 80px 0;
  background: linear-gradient(135deg, #fff0e6 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: rgba(246, 118, 27, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.product-hero-content {
  position: relative;
  z-index: 1;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246, 118, 27, 0.1);
  color: var(--primary-brand);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.product-hero-title {
  color: var(--dark-brand);
  font-weight: 800;
  line-height: 1.25;
}

.product-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
}

.product-hero-img-wrapper {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.product-hero-img-wrapper:hover {
  transform: translateY(-5px);
}

.product-hero-img-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Subtly shadow the PNG silhouette instead of the box container */
  filter: drop-shadow(0 15px 30px rgba(63, 42, 29, 0.12));
}

/* Benefit Section */
.product-benefit-section {
  padding: 80px 0;
  background: #ffffff;
}

.benefit-card-large {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(246, 118, 27, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(246, 118, 27, 0.08);
  border-color: rgba(246, 118, 27, 0.2);
}

.benefit-card-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(246, 118, 27, 0.12);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 25px;
}

.benefit-card-icon-lg {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(246, 118, 27, 0.1);
  margin-bottom: 25px;
}

.benefit-card-icon-lg i {
  color: var(--primary-brand);
  font-size: 1.6rem;
}

.benefit-card-title-lg {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.benefit-card-desc-lg {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}

/* "What You Get" Section */
.what-you-get-section {
  padding: 80px 0;
  background: #fff8f5;
  border-top: 1px solid rgba(246, 118, 27, 0.08);
  border-bottom: 1px solid rgba(246, 118, 27, 0.08);
}

.hexagon-benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hexagon-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(246, 118, 27, 0.1);
}

.hexagon-badge {
  width: 70px;
  height: 70px;
  background: var(--primary-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 6px 15px rgba(246, 118, 27, 0.3);
}

.hexagon-benefit-title {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.hexagon-benefit-desc {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #ffffff;
}

.process-step-wrapper {
  position: relative;
}

.process-timeline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(246, 118, 27, 0.2);
  z-index: 0;
}

.process-step-item {
  position: relative;
  z-index: 1;
  padding-left: 60px;
  margin-bottom: 40px;
}

.process-step-item:last-child {
  margin-bottom: 0;
}

.process-step-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 3px solid var(--primary-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-brand);
  box-shadow: 0 4px 10px rgba(246, 118, 27, 0.15);
}

.process-step-card {
  background: #fffbf9;
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(246, 118, 27, 0.06);
  transition: all 0.3s ease;
}

.process-step-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(246, 118, 27, 0.05);
  border-color: rgba(246, 118, 27, 0.15);
}

.process-step-title {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.9rem;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Register Form Card */
.product-register-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #3f2a1d 0%, #1e130c 100%);
  position: relative;
  overflow: hidden;
}

.product-register-section::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(246, 118, 27, 0.08);
  border-radius: 50%;
  filter: blur(80px);
}

.register-card-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.register-card-title {
  color: var(--dark-brand);
  font-weight: 800;
  margin-bottom: 8px;
}

.register-form-field {
  margin-bottom: 20px;
}

.register-form-field label {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: block;
}

.register-form-field input,
.register-form-field select,
.register-form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  font-size: 0.9rem;
  color: #2d3748;
  transition: all 0.25s ease;
  background-color: #f7fafc;
}

.register-form-field input:focus,
.register-form-field select:focus,
.register-form-field textarea:focus {
  outline: none;
  border-color: var(--primary-brand);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(246, 118, 27, 0.15);
}

.register-submit-btn {
  background: var(--primary-brand);
  color: #ffffff;
  border: none;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  width: 100%;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(246, 118, 27, 0.3);
}

.register-submit-btn:hover {
  background: #e25f12;
  box-shadow: 0 6px 20px rgba(246, 118, 27, 0.4);
  transform: translateY(-2px);
}

.register-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.register-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-brand);
  font-size: 1.1rem;
}

.register-info-text h6 {
  font-weight: 700;
  margin-bottom: 4px;
}

.register-info-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-hero {
    padding: 100px 0 60px 0;
    text-align: center;
  }
  .product-hero-badge {
    margin-bottom: 15px;
  }
  .register-card-wrapper {
    padding: 30px 20px;
  }
  .benefit-card-large {
    padding: 25px;
  }
}

/* Dua Metode Section */
.methods-section {
  background-color: #ffffff;
}

.methods-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}

.methods-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.methods-card.card-psikotes {
  border-top: 5px solid var(--primary-brand);
}

.methods-card.card-fingerprint {
  border-top: 5px solid var(--accent);
}

.methods-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.methods-badge.badge-psikotes {
  background-color: rgba(246, 118, 39, 0.08);
  color: var(--primary-brand);
}

.methods-badge.badge-fingerprint {
  background-color: rgba(33, 134, 224, 0.08);
  color: var(--accent);
}
