/* Static replicas of the booking widget + contact form on /contact/ */

.ssn-discovery-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 32px 28px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
  font-family: inherit;
}
.ssn-discovery-logo {
  display: block;
  width: 90px;
  height: auto;
  margin: 0 0 16px;
}
.ssn-discovery-title {
  font-size: 26px;
  font-weight: 700;
  color: #122836;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
}
.ssn-discovery-meta {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid #ececec;
}
.ssn-discovery-meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
  color: #3c4856;
  font-size: 15px;
  line-height: 1.5;
}
.ssn-discovery-meta .ssn-icon {
  font-size: 18px;
  line-height: 1.4;
  flex: 0 0 22px;
  color: #122836;
}
.ssn-discovery-cta {
  display: inline-block;
  background: #ed5b25;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  padding: 14px 24px;
  border-radius: 6px;
  transition: background .2s ease;
}
.ssn-discovery-cta:hover {
  background: #d24d1c;
}

/* Contact form */
.ssn-contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  max-width: 540px;
  margin: 0 auto;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ssn-contact-form .ssn-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ssn-contact-form .ssn-field > span {
  font-size: 14px;
  font-weight: 600;
  color: #122836;
}
.ssn-contact-form .ssn-field em {
  color: #ed5b25;
  font-style: normal;
}
.ssn-contact-form input,
.ssn-contact-form select,
.ssn-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #122836;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ssn-contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.ssn-contact-form input:focus,
.ssn-contact-form select:focus,
.ssn-contact-form textarea:focus {
  outline: none;
  border-color: #ed5b25;
  box-shadow: 0 0 0 3px rgba(237,91,37,.15);
}
.ssn-contact-form input::placeholder,
.ssn-contact-form textarea::placeholder {
  color: #b1b8c0;
}
.ssn-submit {
  background: #ed5b25;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s ease;
}
.ssn-submit:hover {
  background: #d24d1c;
}
.ssn-policy {
  text-align: center;
  font-size: 13px;
  color: #6b7682;
  margin: 8px 0 0;
}
.ssn-policy a {
  color: #122836;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ssn-discovery-card,
  .ssn-contact-form {
    padding: 20px;
  }
  .ssn-discovery-title {
    font-size: 22px;
  }
}
