.contact-hero {
  background: #050505;
  color: #fff;
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.contact-info h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.subtitle {
  margin: 20px 0 30px;
  color: #cfcfcf;
  max-width: 520px;
}

.contact-points li {
  margin-bottom: 12px;
  font-size: 15px;
  list-style-type: none;
}

.trusted span {
  display: block;
  margin-top: 40px;
  font-size: 13px;
  color: #aaa;
}

.trusted .logos img {
  height: 26px;
  margin-right: 18px;
  filter: grayscale(1);
  opacity: .8;
}

.contact-form-card {
  background: #fff;
  color: #000;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
}
.advanced-form {
  max-width: 520px;
  margin: auto;
}

.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e4002b;
  box-shadow: 0 0 0 3px rgba(228, 0, 43, 0.15);
}

.error {
  color: #e4002b;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #e4002b;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.submit-btn:hover {
  background: #c80025;
}

.loader {
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  display: none;
  animation: spin 1s linear infinite;
  margin: auto;
}

.submit-btn.loading .btn-text {
  display: none;
}

.submit-btn.loading .loader {
  display: block;
}

.form-success {
  display: none;
  margin-top: 20px;
  color: green;
  font-weight: 600;
  text-align: center;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-stats {
  background: #fff;
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  text-align: center;
}

.stat h3 {
  font-size: 34px;
  color: #e60023;
}

.contact-offices {
  padding: 90px 0;
  background: #fafafa;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.office-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
}
