﻿@charset "UTF-8";

.contact-hero {
  padding: 6rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #f6fdff 0%, #e6f7fb 50%, #f9fdff 100%);
}

.contact-hero .eyebrow {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #5fcce5;
  border: 1px solid #bfe9f3;
  border-radius: 999px;
  background: #fff;
}

.contact-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.contact-hero .lead {
  max-width: 720px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

.contact-form-section {
  padding: 2rem 0 4rem;
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.form-card h2 {
  text-align: left;
  margin: 0 0 0.6rem;
}

.form-card .note {
  margin-bottom: 1.6rem;
  color: #666;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-field label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.4rem;
}

.required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.7rem;
  font-size: 0.75rem;
  color: #fff;
  background: #5fcce5;
  border-radius: 999px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid #dbe8ef;
  border-radius: 10px;
  background: #f9fdff;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5fcce5;
  box-shadow: 0 0 0 3px rgba(95, 204, 229, 0.2);
  background: #fff;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}

.summary-row {
  padding: 1rem 1.2rem;
  border: 1px solid #dbe8ef;
  border-radius: 12px;
  background: #f9fdff;
}

.summary-row dt {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.4rem;
}

.summary-row dd {
  margin: 0;
  color: #444;
  line-height: 1.6;
  white-space: pre-wrap;
}

.thanks-list {
  margin: 0 0 1.6rem 1.2rem;
  color: #444;
  line-height: 1.7;
}

.thanks-list li {
  margin-bottom: 0.6rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-actions .btn {
  min-width: 140px;
  text-align: center;
}

.contact-actions .btn-ghost {
  background: #fff;
  color: #5fcce5;
  border: 1px solid #5fcce5;
  box-shadow: none;
}

.submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(95, 204, 229, 0.25);
}

.submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-hero {
    padding-top: 5rem;
  }
  .contact-hero h1 {
    font-size: 1.6rem;
  }
  .form-card {
    padding: 1.6rem;
  }
  .contact-actions {
    justify-content: center;
  }
}
