@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
  --primaryColor: #212223;
  --middleColor: #F6672A;
  --helperColor: #223651;
  --lightHelper: #bbd9ff;
  --hrColor: rgb(222, 184, 135);
  --transparentColor: rgba(0, 0, 0, 0.699);
  --shadow: rgba(189, 188, 188, 0.514);
  /* --------------------------------- */
  --whatsappColor: #25D366;
  --white: #ffff;
  --blue: #1877F2;
  --green: #25D366;
  --gray: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
  text-decoration: none;
}

:root {
  --text: #1a1f2e;
}

.may-contact {
  background-color: var(--lightHelper);
  margin: 60px auto;
  padding: 60px 20px;
}

.may-contact .contact-title {
  text-align: center;
  margin-bottom: 60px;
}

.may-contact .contact-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.may-contact .contact-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border: var(--helperColor);
  height: 3px;
  background: var(--middleColor);
  border-radius: 2px;
}

.contact-flow {
  display: flex;
  justify-content: space-between;

}

.flow-item {
  flex: 1;
  text-align: center;
  z-index: 1;
  position: relative;
}

.flow-item::after {
  content: "";
  position: absolute;
  right: -30%;
  top: 20%;
  width: 60%;
  height: 3px;
  background: var(--helperColor);
  border-radius: 2px;
}

.flow-item:nth-child(1)::after {
  display: none;
}

/* دائرة الأيقونة */
.icon-contact {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--helperColor);
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* العناوين */
.flow-item h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--helperColor);
}

/* قائمة الأرقام/الروابط */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-list a {
  color: var(--helperColor);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  direction: ltr;
}

.contact-list a:nth-last-child(1) {
  direction: rtl;
}

/* ---------------- 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 {

  font-size: 1.5rem;
  color: var(--middleColor);
}

/* موبايل */
@media (max-width: 768px) {
  .contact-flow {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .flow-item::after {
    display: none;
  }

  .contact-list a {
    font-size: 18px;
    font-weight: 600;
  }

  /* العناوين */
  .flow-item h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--helperColor);
  }

}