.contact-hero {
  background: #0f0f0f;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,78,50,.1) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero__inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.contact-hero__title {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 1rem;
}
.contact-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 480px;
}

.contact-body {
  background: #F2F3F7;
  padding: 3rem 2rem 5rem;
  min-height: 60vh;
}
.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.contact-info__icon {
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  color: #E94E32;
}
.contact-info__label { font-size: .72rem; color: #aaa; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.contact-info__value { font-size: .88rem; font-weight: 600; color: #1a1a1a; margin-top: 2px; }
.contact-info__note {
  background: #fff;
  border-left: 3px solid #E94E32;
  border-radius: 0 8px 8px 0;
  padding: .875rem 1rem;
  font-size: .8rem;
  color: #555;
  line-height: 1.6;
}

.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
  border: 1px solid rgba(0,0,0,.04);
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}
.contact-field:last-child { margin-bottom: 0; }
.contact-field label {
  font-size: .8rem;
  font-weight: 600;
  color: #1a1a1a;
}
.contact-field input,
.contact-field textarea {
  border: 1.5px solid #e0e0e0;
  border-radius: 9px;
  padding: .675rem 1rem;
  font-size: .9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border .2s, box-shadow .2s;
  width: 100%;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #E94E32;
  box-shadow: 0 0 0 3px rgba(233,78,50,.1);
  background: #fff;
}
.contact-field input.error,
.contact-field textarea.error {
  border-color: #E94E32;
  background: #FFF5F4;
  animation: shake .35s ease;
}
.contact-submit {
  width: 100%;
  margin-top: 1.25rem;
  padding: .875rem;
  background: #E94E32;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.contact-submit:hover:not(:disabled) {
  background: #c73e26;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(233,78,50,.35);
}
.contact-submit:disabled { opacity: .5; cursor: not-allowed; }
.contact-error {
  background: #FDECEA;
  border: 1px solid rgba(233,78,50,.3);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .82rem;
  color: #c62828;
  margin-bottom: 1.25rem;
}
.contact-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.contact-success__icon {
  width: 64px; height: 64px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-success h3 { font-size: 1.35rem; color: #2E7D32; margin-bottom: .75rem; }
.contact-success p  { font-size: .9rem; color: #555; line-height: 1.65; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-row  { grid-template-columns: 1fr; }
  .contact-hero { padding: 5rem 1.25rem 3rem; }
}
.contact-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
}
.contact-social-btn:hover {
  background: #E94E32;
  color: #fff;
  transform: translateY(-2px);
}
