/* Contact Us page — essaysbot.com */

/* Sticky footer: short page shouldn't leave empty space below the footer on tall screens */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.contact-page {
  flex: 1 0 auto;
  background: #fff;
  color: #1f2937;
}

.footer {
  flex-shrink: 0;
}

.contact-container {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

/* breadcrumb container (shared markup uses .ewc-container) */
.ewc-container {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== Hero ===== */
.contact-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.contact-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
}

.contact-status__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--color-green);
}

.contact-status__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 16px;
  color: var(--color-gray);
}

.contact-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.2;
  color: #1F2937;
}

.contact-hero__subtitle {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-gray);
}

/* ===== Contact cards ===== */
.contact-cards {
  padding: 0 0 100px;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.contact-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.1);
}

.contact-card__badge svg {
  width: 24px;
  height: 24px;
  display: block;
}

.contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #1F2937;
}

.contact-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-gray);
}

.contact-card__value {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1F2937;
  word-break: break-word;
}

a.contact-card__value {
  color: var(--color-green-dark);
  text-decoration: none;
  transition: color .15s ease;
}

a.contact-card__value:hover {
  color: var(--color-green);
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0 30px;
  }

  .contact-hero__title {
    font-size: 34px;
  }

  .contact-hero__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-cards {
    padding-bottom: 60px;
  }

  .contact-cards__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
