/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-hero {
  background: #000;
 padding:120px 0;
}

.contact-hero-title {
  font-family: 'Metropolis', sans-serif;
  font-weight: 600; /* lighter weight to match target */
  font-size: clamp(1.9rem, 4.8vw, 3.5rem);
  line-height: 1.3;
  color: #fff;
  letter-spacing: 0.2px;
}

.contact-section {
  background: #fff;
  color: #0a0a0a;
  padding: 130px 0 130px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-field {
  width: 100%;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  padding: 25px 16px;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Metropolis', sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field:focus {
  border-color: #0500ef; /* target website's primary blue */
  box-shadow: 0 0 0 4px rgba(5, 0, 239, 0.12);
}

.form-field.textarea {
  resize: vertical;
  min-height: 140px;
}

.fake-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.fake-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #9ca3af;
}

.fake-captcha-badge {
  margin-left: auto;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.1;
  text-align: right;
}

.contact-submit {
    width:180px;
    height:41px;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    border-radius: 24px 24px 24px 24px;
    background-color: #0500EF;
    color: #ffffff;
}

.contact-submit:hover {
  background-color: #ffffff;
  color: #0500EF;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
}

.contact-info-card {
  background: #fff;
  max-width: 480px;
  width: 100%;
  min-height: 425px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 30px 50px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.contact-info-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 600; /* lighter weight to match target */
}

.contact-email a {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 20px;
}

.contact-email a:hover {
  color: #0500ef; /* target website's primary blue */
  text-decoration: underline;
}

.social-row {
  display: flex;
  gap: 12px;
  margin: 16px 0 20px;
}

.social-pill {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: #fff;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  color: #0500ef; /* target website's primary blue */
  border-color: #c7d2fe;
}

.social-pill .pill-text {
  font-weight: 700;
  font-size: 20px;
  font-family: 'Metropolis', sans-serif;
}

.social-pill .pill-text svg{
  height:18px;
}

.divider {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 25px 0;
}

.office-header{
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  font-family: 'Metropolis', sans-serif;
  margin-bottom: 10px;
}

.office-address {
  color: #000000;
  font-weight: 500;
  line-height: 1.7;
  font-family: 'Metropolis', sans-serif;
}

/* Map + banner */
.map-section iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.contact-banner {
  background: linear-gradient(135deg, #0500ef 0%, #00d4ff 50%, #36ffd8 100%);
  padding: 28px 0 36px;
}

.banner-inner h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  justify-content: center;
}

.banner-solid {
  color: #031ba6;
  font-weight: 800;
  font-size: clamp(26px, 4.5vw, 52px);
  font-family: 'Metropolis', sans-serif;
}

.banner-outline {
  font-weight: 800;
  font-size: clamp(26px, 4.5vw, 52px);
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  font-family: 'Metropolis', sans-serif;
}

