/* BOVGARDE Get in Touch */

.contact-page {
  background: #111;
  padding: 48px 24px 56px;
}

.contact-page-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 28px;
}

.contact-intro h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.contact-intro p {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.contact-panels {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-info-card,
.contact-form-card {
  background: #333338;
  border-radius: 16px;
}

.contact-info-card {
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-info-card .contact-info-row:first-child {
  padding-top: 8px;
}

.contact-info-card .contact-info-row:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.contact-info-row .social-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.contact-form-card {
  padding: 28px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-message {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-field span {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: #1c1c1f;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-field textarea {
  resize: none;
  flex: 1;
  min-height: 150px;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 8px;
}

.btn-submit {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--accent-hover);
}

@media (max-width: 960px) {
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 12px 24px;
  }

  .contact-form-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .contact-page {
    padding: 32px 20px 40px;
  }

  .contact-panels {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 22px 18px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-field textarea {
    min-height: 120px;
  }

  .form-actions {
    justify-content: stretch;
  }

  .btn-submit {
    width: 100%;
  }
}
