.contact-section {
  background: #11161a;
  color: #e0e0e0;
  padding: 170px 20px 60px;
  text-align: center;
}

.contact-info__flex {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
/* Heading */
.contact-title {
  font-family: "Inria Serif", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #c6c6c6;
  margin-bottom: 60px;
}

/* Info Grid */
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px; /* more spacing between items */

  margin-bottom: 60px;
}

/* Text */

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}

/* Text */
.info-text h4 {
  font-size: 16px; /* slightly smaller */
  margin: 0 0 2px;

  font-weight: 700;
  margin: 0;
  color: #c6c6c6; /* updated color */
}

.info-text p {
  font-size: 16px;
  margin: 8px 0 0;
  font-weight: 700;
  color: #c6c6c676;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.social-icons a img {
  width: 24px;
  height: 24px;
  fill: #c6c6c6;
}

.social-icons a:hover {
  border-color: #fff;
}

.social-icons a:hover svg {
  fill: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .info-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}
