#contact {
  background: #ffffff;
  padding: 110px 0;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: #f4f6fb;
  border: 1px solid #e4e9f2;
  border-radius: 14px;
  padding: 40px;
  display: grid;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a5878;
}

.field input,
.field select,
.field textarea {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #1f2b45;
  background: #ffffff;
  border: 1px solid #d7deec;
  border-radius: 8px;
  padding: 13px 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.field textarea { resize: vertical; min-height: 110px; }

.field input::placeholder,
.field textarea::placeholder { color: #9aa6c0; }

.field select { cursor: pointer; }
.field select option { background: #ffffff; color: #1f2b45; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.contact-submit {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #0f1f3d;
  background: linear-gradient(135deg, #c9a84c, #e0bf6e);
  border: none;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.45);
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #e4e9f2;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 22px rgba(15, 31, 61, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

a.contact-card:hover {
  transform: translateY(-4px);
  border-color: #c9a84c;
  box-shadow: 0 14px 34px rgba(201, 168, 76, 0.18);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.14);
  color: #b0892f;
  font-size: 22px;
}

.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 21px;
  color: #0f1f3d;
  margin-bottom: 3px;
}

.contact-card p {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #5c6a86;
}

@media (prefers-reduced-motion: reduce) {
  .contact-submit:hover,
  a.contact-card:hover { transform: none; }
}

@media (min-width: 1440px) {
  .contact-inner { max-width: 1340px; padding: 0 64px; }
}

@media (max-width: 1280px) {
  #contact { padding: 90px 0; }
  .contact-inner { padding: 0 40px; }
}

@media (max-width: 1024px) {
  .contact-inner { padding: 0 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  #contact { padding: 70px 0; }
  .contact-inner { padding: 0 24px; }
  .contact-form { padding: 30px 24px; }
}

@media (max-width: 480px) {
  .contact-inner { padding: 0 16px; }
  .contact-form { padding: 24px 18px; }
}
