.contact-page {
  background:
    radial-gradient(circle at top left, rgba(203, 172, 145, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2ed 0%, #eef2f6 52%, #e9edf2 100%);
  padding: 54px 20px 84px;
}

.contact-section {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(196, 205, 215, 0.9);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(19, 34, 56, 0.08);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.contact-showcase {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(20, 34, 55, 0.96), rgba(42, 63, 92, 0.92)),
    #17263b;
  color: #ffffff;
}

.contact-showcase::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 177, 145, 0.32), transparent 68%);
  pointer-events: none;
}

.contact-eyebrow {
  margin: 0 0 10px;
  color: #dbc2ae;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-showcase h1 {
  margin: 0 0 14px;
  max-width: 11ch;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.contact-description {
  margin: 0;
  max-width: 560px;
  color: rgba(241, 245, 250, 0.82);
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.highlight-card {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.highlight-card-full {
  grid-column: 1 / -1;
}

.highlight-title {
  display: block;
  margin-bottom: 8px;
  color: rgba(219, 230, 241, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.highlight-card a,
.highlight-card p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.contact-benefits {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(219, 194, 174, 0.14);
  color: #f3dbc7;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.benefit-item h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 20px;
  font-family: Georgia, "Times New Roman", serif;
}

.benefit-item p {
  margin: 0;
  color: rgba(241, 245, 250, 0.78);
  line-height: 1.6;
}

.contact-form-card {
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.form-card-head {
  margin-bottom: 24px;
}

.form-card-kicker {
  margin: 0 0 8px;
  color: #7a5e49;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-card-head h2 {
  margin: 0 0 8px;
  color: #182a42;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.form-card-head p {
  margin: 0;
  color: #5a6778;
  line-height: 1.65;
}

.contact-form {
  margin-top: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  color: #223041;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d7dfe8;
  border-radius: 14px;
  background: #f8fafc;
  color: #1d2a3a;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-size: 15px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #8f6f58;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(143, 111, 88, 0.12);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.contact-submit {
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d2d43 0%, #8c6a52 100%);
  color: #ffffff;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 30px;
  min-width: 210px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(44, 55, 72, 0.2);
}

.contact-submit:active {
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-showcase,
  .contact-form-card {
    padding: 28px;
  }
}

@media (max-width: 900px) {
  .contact-page {
    padding: 36px 14px 64px;
  }

  .contact-container {
    gap: 20px;
    padding: 18px;
    border-radius: 22px;
  }

  .contact-showcase,
  .contact-form-card {
    border-radius: 20px;
    padding: 24px;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .highlight-card-full {
    grid-column: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-submit {
    width: 100%;
  }
}
