/* ── Lombok Glamping Partners Form ─────────────────────────────────────────── */

#lgp-wrapper {
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Georgia', serif;
  color: #2d2d2d;
}

/* ── Intro ─────────────────────────────────────────────────────────────────── */
.lgp-intro {
  text-align: center;
  margin-bottom: 36px;
}

.lgp-heading {
  font-size: 28px;
  font-weight: 400;
  color: #1a3a2a;
  margin: 0 0 12px;
}

.lgp-subheading {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ── Form fields ───────────────────────────────────────────────────────────── */
.lgp-field-group {
  margin-bottom: 24px;
}

.lgp-label {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a3a2a;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.lgp-required {
  color: #c0392b;
}

.lgp-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #2d2d2d;
  background: #fff;
  transition: border-color 0.15s;
}

.lgp-input:focus {
  outline: none;
  border-color: #1a6b50;
  box-shadow: 0 0 0 3px rgba(26, 107, 80, 0.12);
}

.lgp-textarea {
  resize: vertical;
  min-height: 80px;
}

.lgp-hint {
  margin: 6px 0 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #777;
}

/* ── Checkbox ──────────────────────────────────────────────────────────────── */
.lgp-checkbox-group {
  background: #f5f0eb;
  border-radius: 8px;
  padding: 16px 18px;
}

.lgp-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.lgp-checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #1a6b50;
  cursor: pointer;
}

/* ── Error ─────────────────────────────────────────────────────────────────── */
.lgp-error {
  background: #fdf0f0;
  border: 1px solid #e74c3c;
  border-radius: 6px;
  padding: 12px 16px;
  color: #c0392b;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 16px;
}

/* ── Submit button ─────────────────────────────────────────────────────────── */
.lgp-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #1a6b50;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.lgp-btn:hover:not(:disabled) {
  background: #145a42;
  transform: translateY(-1px);
}

.lgp-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ── Success result ────────────────────────────────────────────────────────── */
.lgp-success-icon {
  width: 60px;
  height: 60px;
  background: #1a6b50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.lgp-result-card {
  background: #f5f0eb;
  border-radius: 10px;
  padding: 28px;
  margin: 28px 0;
}

.lgp-result-block {
  margin-bottom: 24px;
}

.lgp-result-block:last-child {
  margin-bottom: 0;
}

.lgp-result-label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin: 0 0 6px;
}

.lgp-result-code {
  font-family: monospace;
  font-size: 20px;
  font-weight: 700;
  color: #1a3a2a;
  margin: 0;
  letter-spacing: 1px;
}

.lgp-url-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lgp-result-url {
  font-family: monospace;
  font-size: 14px;
  color: #1a6b50;
  word-break: break-all;
  flex: 1;
}

.lgp-copy-btn {
  padding: 6px 14px;
  background: #1a3a2a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.lgp-copy-btn:hover {
  background: #0d2a1c;
}

.lgp-qr-img {
  width: 180px;
  height: 180px;
  border: 6px solid #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  display: block;
  margin: 8px 0;
}

.lgp-download-link {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #1a6b50;
  text-decoration: none;
}

.lgp-download-link:hover {
  text-decoration: underline;
}

.lgp-print-notice {
  background: #fff8e6;
  border: 1px solid #c9a84c;
  border-radius: 8px;
  padding: 16px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #7a4f00;
  margin-bottom: 20px;
}

.lgp-result-note {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #777;
  text-align: center;
}

.lgp-result-note a {
  color: #1a6b50;
}
