/* ===== PEGADAIAN HERO SECTION ===== */
.pegadaian-hero {
  padding: 120px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 25px;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
  }
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 18px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 15px;
  background: rgba(255, 215, 0, 0.05);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: 0.3s;
}

.feature-item:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 32px;
  color: #ffd700;
}

.feature-item h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 5px;
}

.feature-item p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.btn-start-gadai {
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-start-gadai:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
}

.hero-illustration {
  position: relative;
}

.hero-illustration img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 215, 0, 0.3);
}

/* ===== CARA KERJA SECTION ===== */
.cara-kerja {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cara-kerja h2 {
  font-size: 42px;
  color: #ffd700;
  margin-bottom: 60px;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.step-item {
  flex: 1;
  max-width: 220px;
  min-width: 200px;
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  transition: 0.3s;
}

.step-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-icon {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 20px;
}

.step-item h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}

.step-item p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

.step-arrow {
  font-size: 32px;
  color: #ffd700;
  flex-shrink: 0;
}

/* ===== KEUNTUNGAN SECTION ===== */
.keuntungan {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.keuntungan h2 {
  font-size: 42px;
  color: #ffd700;
  margin-bottom: 60px;
}

.keuntungan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.keuntungan-card {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  transition: 0.3s;
  cursor: pointer;
}

.keuntungan-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.keuntungan-card i {
  font-size: 56px;
  color: #ffd700;
  margin-bottom: 20px;
}

.keuntungan-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
}

.keuntungan-card p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin: 0;
}

/* ===== PEGADAIAN MODAL ===== */
.pegadaian-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  overflow-y: auto;
  padding: 40px 20px;
}

.pegadaian-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pegadaian-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 25px;
  width: 100%;
  max-width: 900px;
  padding: 40px;
  position: relative;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  animation: slideUp 0.3s ease;
  margin: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pegadaian-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  font-size: 24px;
  color: #fff;
  z-index: 10;
}

.pegadaian-modal-close:hover {
  background: rgba(255, 107, 107, 0.3);
  transform: rotate(90deg);
}

.pegadaian-modal-header {
  text-align: center;
  margin-bottom: 40px;
}

.pegadaian-modal-header i {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 15px;
}

.pegadaian-modal-header h2 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 10px;
}

.pegadaian-modal-header p {
  font-size: 14px;
  color: #aaa;
}

/* ===== PROGRESS STEPS ===== */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 50px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #aaa;
  font-size: 18px;
  transition: 0.3s;
}

.progress-step.active .step-circle {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-color: #ffd700;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

.progress-step span {
  font-size: 13px;
  color: #aaa;
  font-weight: 600;
}

.progress-step.active span {
  color: #ffd700;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
  margin-bottom: 25px;
}

/* ===== FORM STEPS ===== */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-gadai {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group-gadai label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group-gadai label i {
  color: #ffd700;
  font-size: 16px;
}

.required {
  color: #ff6b6b;
}

.form-group-gadai input,
.form-group-gadai select,
.form-group-gadai textarea {
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.form-group-gadai input:focus,
.form-group-gadai select:focus,
.form-group-gadai textarea:focus {
  outline: none;
  border-color: #ffd700;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.form-group-gadai textarea {
  resize: vertical;
  min-height: 100px;
  font-family: Arial, sans-serif;
}

.form-group-gadai select {
  cursor: pointer;
}

.form-group-gadai select option {
  background: #1a1a2e;
  color: #fff;
}

.helper-text {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

/* ===== CHECKBOX GROUP ===== */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.checkbox-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #ffd700;
}

.checkbox-item span {
  color: #ccc;
  font-size: 14px;
}

/* ===== UPLOAD AREA ===== */
.upload-area {
  border: 2px dashed rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  background: rgba(255, 215, 0, 0.05);
  cursor: pointer;
  transition: 0.3s;
}

.upload-area:hover {
  border-color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
}

.upload-area i {
  font-size: 48px;
  color: #ffd700;
  margin-bottom: 15px;
  display: block;
}

.upload-area p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.upload-area small {
  color: #666;
  font-size: 12px;
}

/* ===== IMAGE PREVIEW GRID ===== */
.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remove-preview {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: rgba(255, 107, 107, 0.9);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.remove-preview:hover {
  background: #ff6b6b;
  transform: scale(1.1);
}

/* ===== IMEI PREVIEW ===== */
.imei-preview {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  display: none;
}

.imei-preview.active {
  display: block;
}

.imei-preview img {
  max-width: 300px;
  max-height: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: block;
}

.imei-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.imei-filename {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.remove-imei {
  padding: 8px 16px;
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.5);
  color: #ff6b6b;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.remove-imei:hover {
  background: rgba(255, 107, 107, 0.3);
}

/* ===== ESTIMASI CONTAINER ===== */
.estimasi-container {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.estimasi-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.estimasi-header i {
  font-size: 36px;
  color: #ffd700;
}

.estimasi-header h3 {
  font-size: 24px;
  color: #ffd700;
  margin: 0;
}

.estimasi-details {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
}

.estimasi-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.estimasi-row:last-child {
  border-bottom: none;
}

.estimasi-row .label {
  color: #aaa;
  font-size: 14px;
}

.estimasi-row .value {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

/* ===== ESTIMASI PRICE ===== */
.estimasi-price {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  margin-bottom: 30px;
}

.price-label {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 15px;
}

.price-range {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.price-min,
.price-max {
  font-size: 28px;
  font-weight: bold;
  color: #ffd700;
}

.separator {
  font-size: 24px;
  color: #666;
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.price-note i {
  color: #ffd700;
  font-size: 16px;
}

/* ===== TENOR SECTION ===== */
.tenor-section {
  margin-bottom: 30px;
}

.tenor-section > label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tenor-section > label i {
  color: #ffd700;
  font-size: 18px;
}

.tenor-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.tenor-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.tenor-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.tenor-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tenor-item:has(input[type="radio"]:checked) {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.tenor-item:has(input[type="radio"]:checked) .tenor-duration {
  color: #ffd700;
}

.tenor-item:has(input[type="radio"]:checked) .tenor-rate {
  color: #ffd700;
}

.tenor-duration {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.tenor-rate {
  font-size: 13px;
  color: #aaa;
}

/* ===== TERMS AGREEMENT ===== */
.terms-agreement {
  padding: 20px;
  background: rgba(0, 191, 255, 0.05);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 12px;
}

.terms-agreement .checkbox-item {
  background: transparent;
  border: none;
  padding: 0;
}

.terms-agreement a {
  color: #ffd700;
  text-decoration: none;
}

.terms-agreement a:hover {
  text-decoration: underline;
}

/* ===== FORM ACTION BUTTONS ===== */
.btn-next,
.btn-submit-gadai {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
  margin-top: 20px;
}

.btn-next:hover,
.btn-submit-gadai:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.form-actions-step {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-back {
  flex: 1;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.2);
}

.form-actions-step .btn-next,
.form-actions-step .btn-submit-gadai {
  flex: 2;
  margin-top: 0;
}

/* ===== SUCCESS MODAL ===== */
.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.success-modal.active {
  display: flex;
}

.success-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 25px;
  padding: 50px;
  max-width: 500px;
  text-align: center;
  animation: scaleIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  margin: 20px;
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 215, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
  }
}

.success-icon i {
  font-size: 50px;
  color: #ffd700;
}

.success-modal-content h3 {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 15px;
}

.success-modal-content p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 10px;
  color: #ccc;
  font-size: 13px;
}

.info-item i {
  color: #ffd700;
  font-size: 18px;
}

.btn-success-ok {
  padding: 16px 40px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.btn-success-ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 30px;
  background: rgba(33, 33, 33, 0.9);
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .pegadaian-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 100px 20px 60px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

  .keuntungan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tenor-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pegadaian-modal-content {
    padding: 25px 20px;
  }

  .progress-steps {
    padding: 0 10px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .progress-step span {
    font-size: 11px;
  }

  .progress-line {
    margin: 0 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .image-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tenor-options {
    grid-template-columns: 1fr;
  }

  .form-actions-step {
    flex-direction: column;
  }

  .form-actions-step .btn-next,
  .form-actions-step .btn-submit-gadai {
    flex: 1;
  }

  .keuntungan-grid {
    grid-template-columns: 1fr;
  }

  .cara-kerja h2,
  .keuntungan h2 {
    font-size: 32px;
  }

  .success-modal-content {
    padding: 35px 25px;
    margin: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn-start-gadai {
    padding: 15px 30px;
    font-size: 16px;
  }

  .pegadaian-modal-header h2 {
    font-size: 24px;
  }

  .estimasi-header h3 {
    font-size: 20px;
  }

  .price-min,
  .price-max {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .pegadaian-hero {
    padding: 90px 15px 40px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-features {
    gap: 15px;
  }

  .feature-item {
    padding: 15px;
  }

  .cara-kerja h2,
  .keuntungan h2 {
    font-size: 26px;
  }

  .step-item {
    max-width: 100%;
  }

  .pegadaian-modal-content {
    padding: 20px 15px;
  }

  .pegadaian-modal-header h2 {
    font-size: 20px;
  }

  .progress-steps {
    padding: 0 5px;
  }

  .step-circle {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .progress-step span {
    font-size: 10px;
  }

  .form-group-gadai input,
  .form-group-gadai select,
  .form-group-gadai textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .upload-area {
    padding: 30px 15px;
  }

  .upload-area i {
    font-size: 36px;
  }

  .image-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .estimasi-container {
    padding: 20px 15px;
  }

  .price-min,
  .price-max {
    font-size: 20px;
  }

  .btn-next,
  .btn-submit-gadai,
  .btn-back {
    padding: 14px;
    font-size: 14px;
  }

  .success-modal-content {
    padding: 30px 20px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .success-icon i {
    font-size: 40px;
  }

  .success-modal-content h3 {
    font-size: 22px;
  }
}

/* ===== ADDITIONAL UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none;
}

/* ===== SMOOTH TRANSITIONS ===== */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

button {
  transition: all 0.3s ease;
}

input,
select,
textarea {
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ===== SCROLLBAR STYLING ===== */
.pegadaian-modal::-webkit-scrollbar {
  width: 10px;
}

.pegadaian-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

.pegadaian-modal::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.5);
  border-radius: 5px;
}

.pegadaian-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.7);
}

/* ===== LOADING STATE (OPTIONAL) ===== */
.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid #000;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* ===== FOCUS VISIBLE (ACCESSIBILITY) ===== */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #ffd700;
  outline-offset: 2px;
}

/* ===== PREVENT TEXT SELECTION ON BUTTONS ===== */
button,
.checkbox-item,
.tenor-item {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ===== DISABLED STATE ===== */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ===== PRINT STYLES (OPTIONAL) ===== */
@media print {
  .pegadaian-modal,
  .success-modal,
  .header,
  .footer,
  button {
    display: none !important;
  }
}