/**
 * Page Help - Contact Form Styling
 * Styling untuk halaman Help dengan contact form
 */

/* Force full width layout - override Astra theme containers */
body.page-template-page-help #primary,
body.page-template-page-help .site-content,
body.page-template-page-help main.site-main,
body.page-template-page-help .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide sidebar completely */
body.page-template-page-help #secondary,
body.page-template-page-help .widget-area {
  display: none !important;
}

/* Remove content wrapper padding */
body.page-template-page-help .site-content {
  padding: 0 !important;
}

/* Remove margin/padding from content container */
body.page-template-page-help #content {
  margin: 0 !important;
  padding: 0 !important;
}

.page-help {
  min-height: 80vh;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

/* Container untuk form dengan background putih */
.help-form-container {
  background: #ffffff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  width: 100%;
  max-width: 100%;
}

/* Wrapper box dengan background teal */
.help-form-wrapper {
  background: #26959A;
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Title form */
.help-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px 0;
  background: transparent;
  padding: 0;
}

/* Form groups */
.help-form-group {
  margin-bottom: 25px;
}

.help-form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  background: transparent;
}

/* Form controls */
.help-form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333333;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.help-form-control:focus {
  border-color: #26959A;
  box-shadow: 0 0 0 3px rgba(38, 149, 154, 0.1);
}

.help-form-control::placeholder {
  color: #999999;
}

/* Textarea khusus */
.help-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
}

/* Submit button */
.help-submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #26959A;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.help-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #f0f0f0;
  color: #26959A;
}

.help-submit-btn:active {
  transform: translateY(0);
}

/* Success/Error messages */
.help-message {
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.help-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.help-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .help-form-wrapper {
    padding: 40px 25px;
    border-radius: 15px;
  }

  .help-form-title {
    font-size: 24px;
    padding: 18px;
    margin: -40px -25px 30px -25px;
  }

  .help-form-container {
    padding: 40px 15px;
  }

  .help-form-control {
    padding: 12px 15px;
    font-size: 14px;
  }

  .help-submit-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media screen and (max-width: 480px) {
  .help-form-wrapper {
    padding: 30px 20px;
  }

  .help-form-title {
    font-size: 20px;
    padding: 15px;
    margin: -30px -20px 25px -20px;
  }

  .help-form-group {
    margin-bottom: 20px;
  }

  .help-form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  .help-textarea {
    min-height: 120px;
  }
}