.contact-section {
  position: relative;
  padding: 85px 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(200, 16, 46, 0.07),
      transparent 26%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(246, 184, 23, 0.09),
      transparent 24%
    ),
    linear-gradient(135deg, #fffefb 0%, #f8f4eb 100%);
  font-family: Arial, Helvetica, sans-serif;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border: 35px solid rgba(200, 16, 46, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.contact-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #c8102e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.contact-eyebrow::before,
.contact-eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, #c8102e, #f6b817);
}

.contact-eyebrow::after {
  background: linear-gradient(90deg, #f6b817, #c8102e);
}

.contact-heading h2 {
  margin: 0 0 16px;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.2px;
}

.contact-heading h2 span {
  color: #c8102e;
}

.contact-heading p {
  max-width: 630px;
  margin: 0 auto;
  color: #5b5b5b;
  font-size: 16px;
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: 26px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(21, 21, 21, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 55px rgba(67, 28, 33, 0.1);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 28px;
  border-right: 1px solid rgba(21, 21, 21, 0.1);
}

.contact-avatar {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #c8102e, #930019);
  box-shadow: 0 12px 28px rgba(200, 16, 46, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 700;
}

.contact-role {
  display: block;
  margin-bottom: 4px;
  color: #c8102e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-person-details h3 {
  margin: 0 0 3px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-person-details p {
  margin: 0;
  color: #030303;
  font-size: 14px;
}

.contact-information {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 12px;
  color: inherit;
  background: #fffdfa;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 10px 25px rgba(67, 28, 33, 0.08);
}

.contact-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #c8102e;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 46, 0.11),
    rgba(246, 184, 23, 0.15)
  );
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item span {
  display: block;
  margin-bottom: 2px;
  color: #050505;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.contact-item strong {
  display: block;
  color: #1c1c1c;
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}

@media (max-width: 800px) {
  .contact-section {
    padding: 70px 18px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-person {
    padding-right: 0;
    padding-bottom: 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 55px 15px;
  }

  .contact-heading {
    margin-bottom: 32px;
  }

  .contact-heading h2 {
    font-size: 36px;
  }

  .contact-eyebrow {
    gap: 7px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .contact-eyebrow::before,
  .contact-eyebrow::after {
    width: 22px;
  }

  .contact-card {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .contact-person {
    align-items: flex-start;
  }

  .contact-avatar {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
    font-size: 22px;
  }

  .contact-person-details h3 {
    font-size: 24px;
  }

  .contact-item {
    align-items: flex-start;
    padding: 13px;
  }
}