/* Contact page – 60% content left, 40% form right */
:root {
  --contact-radius: 10px;
  --contact-border: 1px solid #ddd;
  --light: #fff;
}

body {
  font-family: "Epilogue-Regular", sans-serif;
}

.contact-section {
  padding: 60px 0 80px;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 60% 40%;
    gap: 3rem;
  }
}

/* Left: Address & details */
.contact-info__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
}

.contact-info__intro {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #222;
}

.contact-details__address {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.25rem;
}

.contact-details__line {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.contact-details__line a {
  color: #333;
  text-decoration: none;
}

.contact-details__line a:hover {
  color: #e21d2f;
}

.contact-details__icon {
  margin-right: 0.5rem;
}

/* Right: Form */
.contact-form-wrap {
  background: #f9f9f9;
  border: var(--contact-border);
  border-radius: var(--contact-radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.contact-form__group {
  margin-bottom: 1.25rem;
}

.contact-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.4rem;
}

.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: "Epilogue-Regular", sans-serif;
  border: var(--contact-border);
  border-radius: var(--contact-radius);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.contact-form__input::placeholder {
  color: #999;
}

.contact-form__submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 12px 22px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .contact-form-wrap {
    order: -1;
  }
}
