.contact-section {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-grid {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: auto;
}

.contact-box {
  background: var(--white);
  border-radius: 12px;
  padding: var(--space-lg);
  width: 300px;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-box i {
  font-size: 30px;
  color: var(--helperColor);
}

.contact-box h3 {
  color: var(--primaryColor);
}

.contact-box p {
  color: var(--middleColor);
}


/* ---------------- map section --------------------------------- */

.address-container {
  margin: auto;
  width: 90%;
  border-top: 1px solid var(--gray);
  transition: transform 0.4s ease-in;
}

.address-container:hover {
  transform: scale(1.1);
}

.address-title {
  text-align: center;
  align-content: center;
  margin: 40px auto;
  width: fit-content;
  margin: 0px auto 30px auto;
  border-bottom: 4px solid var(--middleColor);
}

.address-title h1 {
  font-size: 2.5rem;
  color: var(--primaryColor);

}

.address-title p {
  color: var(--middleColor);
}

/* @@@@@@@@@@@@@@@@@@@ */
@media(max-width:768px) {
  .contact-section {
    gap: 5px;
  }

  .contact-box {
    width: 250px;
  }

}