/* ================
4. contact
================ */

.parent {
  margin-bottom: 50px;
}

.contact-us-title {
  max-width: 600px;
  margin: 0 auto;
}

.title {
  font-size: 17px;
  color: #585858;
  margin: 40px 0;
  text-align: center;
  line-height: 1.5em;
  font-weight: 700;
}

.title span {
  font-weight: bold;
  margin: 5px;
  font-size: 18px;
  color: #7ed957;
}

.main {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.contact {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.contact-card {
  border-radius: 9px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgb(240, 235, 235);
  transition: all 0.4s;
  font-family: sans-serif;
  min-height: 200px;
  width: 100%;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card:hover {
  transform: scale(1.05);
  /* يكبر عند التمرير */
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  /* يضيف ظل */
}

.follow-us {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #585858;
}

.contact-card i {
  color: #7ed957;
  margin: 10px;
  font-size: 60px;
}

.contact-card div {
  color: #7ed957;
  font-size: 20px;
}

.contact-card p {
  color: #7ed957;
  font-size: 14px;
}

.sosial-media {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.sosial-media-card {
  flex: 2;
  border-radius: 9px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 2px 2px 5px rgb(240, 235, 235);
  transition: all 0.4s;
  font-family: sans-serif;
  text-align: center;
}

.sosial-media-card:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.sosial-media-card i {
  color: #7ed957;
  margin: 10px;
  font-size: 60px;
}

.sosial-media-card div {
  color: #7ed957;
  width: 130px;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
}

.sosial-media-card p {
  color: #7ed957;
  font-size: 14px;
}
