/**
 * Xyntara — Contact page
 */
.xyntara-contact-page {
  --xc-radius: 14px;
  --xc-border: #b8c5d6;
}

.xyntara-contact-hero {
  margin-top: 68px;
  background: linear-gradient(180deg, var(--grey-bg, #f6f6f6) 0%, #fff 100%);
  padding: 44px 24px 48px;
  border-bottom: 1px solid #e8eef5;
}

.xyntara-contact-hero-inner {
  max-width: 720px;
}

.xyntara-contact-hero .section-label {
  margin-bottom: 10px;
}

.xyntara-contact-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--dark, #2a2b32);
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.xyntara-contact-hero-title span {
  color: var(--blue, #056cb8);
}

.xyntara-contact-lead {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
  max-width: 560px;
}

.xyntara-contact-main {
  padding-top: 48px !important;
  padding-bottom: 80px !important;
}

.xyntara-contact-page .xyntara-contact-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.xyntara-contact-page .xyntara-contact-intro .section-label {
  margin-bottom: 10px;
}

.xyntara-contact-page .xyntara-contact-intro h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--dark, #2a2b32);
  margin: 0 0 12px;
  line-height: 1.25;
}

.xyntara-contact-page .xyntara-contact-intro p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

.xyntara-contact-page .xyntara-contact-email-card {
  max-width: 420px;
  margin: 0 auto 36px;
  background: #fff;
  border: 2px solid var(--xc-border);
  border-radius: var(--xc-radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.xyntara-contact-page .xyntara-contact-email-card > span {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light, #eef4fb);
  color: var(--blue, #056cb8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.xyntara-contact-page .xyntara-contact-email-card strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.xyntara-contact-page .xyntara-contact-email-card a {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue, #056cb8) !important;
  text-decoration: none;
}

.xyntara-contact-page .xyntara-contact-email-card a:hover {
  text-decoration: underline;
}

.xyntara-contact-page .xyntara-contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--xc-border);
  border-radius: var(--xc-radius);
  padding: 32px 28px 36px;
  box-shadow: 0 4px 24px rgba(5, 108, 184, 0.07);
}

.xyntara-contact-page .xyntara-contact-form-wrap #contactform input[type='text'],
.xyntara-contact-page .xyntara-contact-form-wrap #contactform textarea {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1.5px solid #e8eef5;
  border-radius: 10px;
  background: #fafbfc;
  color: var(--dark, #2a2b32);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.xyntara-contact-page .xyntara-contact-form-wrap #contactform textarea {
  min-height: 140px;
  resize: vertical;
}

.xyntara-contact-page .xyntara-contact-form-wrap #contactform input:focus,
.xyntara-contact-page .xyntara-contact-form-wrap #contactform textarea:focus {
  outline: none;
  border-color: var(--blue, #056cb8);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 108, 184, 0.12);
}

.xyntara-contact-page .xyntara-contact-form-wrap #contactform .button,
.xyntara-contact-page .xyntara-contact-form-wrap #contactform button[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  background: var(--blue, #056cb8);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(5, 108, 184, 0.25);
}

.xyntara-contact-page .xyntara-contact-form-wrap #contactform .button:hover,
.xyntara-contact-page .xyntara-contact-form-wrap #contactform button[type='submit']:hover {
  background: var(--blue-dark, #044d85);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 108, 184, 0.35);
}

.xyntara-contact-page .xyntara-contact-form-wrap .g-recaptcha {
  margin: 8px 0 16px;
}
