.slk-contact-form-wrap,
.slk-contact-details,
.slk-contact-sidebar,
.slk-contact-page {
  box-sizing: border-box;
}
.slk-contact-form-wrap * ,
.slk-contact-details * ,
.slk-contact-sidebar * ,
.slk-contact-page * {
  box-sizing: border-box;
}
.slk-contact-form-wrap {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(15, 81, 50, .12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}
.slk-contact-title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
  color: #0f172a;
}
.slk-contact-form {
  display: grid;
  gap: 16px;
}
.slk-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.slk-field-full {
  width: 100%;
}
.slk-field-grid-contact {
  align-items: start;
}
.slk-contact-form label {
  display: grid;
  gap: 8px;
  margin: 0;
}
.slk-contact-form label span {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.slk-contact-form input[type="text"],
.slk-contact-form input[type="email"],
.slk-contact-form input[type="tel"],
.slk-contact-form textarea {
  width: 100%;
  border: 1px solid #dbe3ea;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.45;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.slk-contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.slk-contact-form input:focus,
.slk-contact-form textarea:focus {
  border-color: #15803d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, .10);
}
.slk-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  font-size: 13px;
  color: #475569;
}
.slk-consent input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #15803d;
}
.slk-submit-btn {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #15803d, #0f5132);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(15, 81, 50, .22);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}
.slk-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(15, 81, 50, .28);
}
.slk-submit-btn:disabled {
  opacity: .65;
  cursor: wait;
}
.slk-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.slk-form-alert {
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
}
.slk-form-alert.is-error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.slk-success-box {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 34px 20px;
  min-height: 270px;
  align-content: center;
}
.slk-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #0f5132);
  box-shadow: 0 18px 40px rgba(15, 81, 50, .24);
}
.slk-success-icon svg {
  width: 34px;
  height: 34px;
}
.slk-success-box h3 {
  margin: 8px 0 0;
  color: #0f172a;
  font-size: 26px;
}
.slk-success-box p {
  margin: 0;
  max-width: 520px;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}
.slk-contact-details,
.slk-contact-sidebar {
  display: grid;
  gap: 14px;
}
.slk-contact-card,
.slk-sidebar-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(15, 81, 50, .12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}
.slk-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: #ecfdf5;
  color: #0f5132;
}
.slk-contact-icon:empty::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: currentColor;
}
.slk-contact-card strong,
.slk-sidebar-item strong {
  display: block;
  margin: 0 0 4px;
  color: #0f172a;
  font-size: 14px;
}
.slk-contact-card p,
.slk-sidebar-item p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.55;
}
.slk-contact-card a,
.slk-sidebar-item a {
  color: #0f5132;
  text-decoration: none;
  font-weight: 700;
}
.slk-contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 26px;
  align-items: start;
}
.slk-contact-page-text {
  margin: 0 0 20px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}
.slk-contact-aside {
  display: grid;
  gap: 16px;
}
@media (max-width: 768px) {
  .slk-contact-form-wrap { padding: 20px; border-radius: 20px; }
  .slk-field-grid,
  .slk-contact-page { grid-template-columns: 1fr; }
  .slk-submit-btn { width: 100%; }
}
