@charset "UTF-8";
/* Contact Form Styles */
.main {
  padding: 60px 0;
  background: #f6f7f3;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .contact-form {
    padding: 60px 50px;
  }
}
.contact-form__intro {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8f5e9;
}
.contact-form__intro p {
  font-size: 14px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 12px;
}
.contact-form__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
}
.contact-form__title::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-form__required-note {
  font-size: 13px;
  color: #d32f2f;
  margin-top: 20px;
}
.contact-form__required-note .required {
  background: #ffd9d9;
  color: #d32f2f;
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  margin-right: 4px;
}

/* Form Group */
.form-group {
  margin-bottom: 32px;
}
.form-group--error .form-control {
  border-color: #d32f2f;
  background: #fff5f5;
}
.form-group--error .form-control:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}
.form-group--error .form-error {
  display: block;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}
.form-label__required {
  background: #ffd9d9;
  color: #d32f2f;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}
.form-label__optional {
  background: #95a5a6;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}

.form-note {
  font-size: 12px;
  color: #666666;
  margin-top: 6px;
  line-height: 1.6;
}

/* Form Controls */
.form-control {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #333333;
}
.form-control:focus {
  outline: none;
  border-color: #006637;
  box-shadow: 0 0 0 3px rgba(26, 122, 78, 0.1);
}
.form-control::placeholder {
  color: #bdc3c7;
}
.form-control--textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.8;
}
.form-control--half {
  width: calc(50% - 8px);
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
  }
  .form-row .form-control--half {
    width: 100%;
  }
}

.form-error {
  display: none;
  margin-top: 8px;
  padding: 8px 12px;
  background: #fff5f5;
  border-radius: 3px;
  font-size: 13px;
  color: #d32f2f;
  line-height: 1.6;
}

/* Form Checkboxes */
.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  padding: 8px 0;
}
.form-checkbox input[type=checkbox],
.form-checkbox input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #006637;
  flex-shrink: 0;
}
.form-checkbox span {
  line-height: 1.4;
}
.form-checkbox:hover span {
  color: #006637;
}

/* Privacy Policy Agreement */
.privacy-agreement {
  margin: 40px 0;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}
.privacy-agreement--error {
  border-color: #d32f2f;
  background: #fff5f5;
}
.privacy-agreement--error .privacy-agreement__error {
  display: block;
}
.privacy-agreement__content {
  max-height: 200px;
  overflow-y: auto;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}
.privacy-agreement__content h4 {
  font-weight: bold;
  color: #000;
  font-size: 16px;
}
.privacy-agreement__content ul {
  padding: 0 20px;
}
.privacy-agreement__content::-webkit-scrollbar {
  width: 8px;
}
.privacy-agreement__content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.privacy-agreement__content::-webkit-scrollbar-thumb {
  background: #bdc3c7;
  border-radius: 4px;
}
.privacy-agreement__content::-webkit-scrollbar-thumb:hover {
  background: #95a5a6;
}
.privacy-agreement__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.privacy-agreement__checkbox input[type=checkbox] {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #006637;
}
.privacy-agreement__checkbox label {
  font-size: 14px;
  color: #333333;
  cursor: pointer;
  line-height: 1.6;
}
.privacy-agreement__checkbox label a {
  color: #006637;
  text-decoration: underline;
}
.privacy-agreement__checkbox label a:hover {
  color: #2d5a3d;
}
.privacy-agreement__error {
  display: none;
  margin-top: 12px;
  padding: 8px 12px;
  background: #ffffff;
  border-left: 3px solid #d32f2f;
  border-radius: 4px;
  font-size: 13px;
  color: #d32f2f;
}

/* Form Actions */
.form-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .form-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: #006637;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 122, 78, 0.3);
  width: 100%;
  max-width: 300px;
}
.btn-submit:hover:not(:disabled) {
  background: #2d5a3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 78, 0.4);
}
.btn-submit:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  background: #ffffff;
  color: #666666;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
  max-width: 300px;
}
.btn-back:hover {
  background: #f8f9fa;
  border-color: #006637;
  color: #006637;
}
.btn-back::before {
  content: "←";
  font-size: 18px;
}

/* Confirmation Page Styles */
.confirm-section {
  padding: 40px 0;
}

.confirm-table {
  width: 100%;
  background: #ffffff;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}
.confirm-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.confirm-table tr:last-child {
  border-bottom: none;
}
.confirm-table th {
  background: #e8f5e9;
  color: #2d5a3d;
  font-weight: 700;
  text-align: left;
  padding: 20px 24px;
  width: 200px;
  vertical-align: top;
  font-size: 15px;
}
@media (max-width: 768px) {
  .confirm-table th {
    display: block;
    width: 100%;
    padding: 15px 20px 10px;
  }
}
.confirm-table td {
  padding: 20px 24px;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .confirm-table td {
    display: block;
    width: 100%;
    padding: 10px 20px 20px;
  }
}
.confirm-table td.message-content {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Thanks Page Styles */
.thanks-section {
  padding: 80px 0;
  text-align: center;
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #006637;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
}
.thanks-icon::before {
  content: "✓";
}

.thanks-title {
  font-size: 28px;
  font-weight: 700;
  color: #006637;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .thanks-title {
    font-size: 32px;
  }
}

.thanks-message {
  font-size: 15px;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 40px;
}

.thanks-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
@media (min-width: 768px) {
  .thanks-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 40px;
  background: #006637;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 122, 78, 0.3);
}
.btn-home:hover {
  background: #2d5a3d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 78, 0.4);
}

/* Loading State */
.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
.form-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #e0e0e0;
  border-top-color: #006637;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Responsive */
@media (max-width: 768px) {
  .main {
    padding: 40px 0;
  }
  .contact-container {
    padding: 0 16px;
  }
  .contact-form {
    padding: 30px 20px;
  }
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  .privacy-agreement {
    padding: 16px;
  }
  .privacy-agreement__content {
    max-height: 150px;
    padding: 12px;
  }
}

/*# sourceMappingURL=contact.css.map */
