.contact-mobile-section {
  width: 100%;
  min-height: 100vh;
  background: #0f4361;
  padding: 40px 0;
  direction: rtl;
}

.contact-mobile-box {
  width: 82%;
  max-width: 520px;
  margin: auto;
}

.map-image {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 26px;
}

.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-mobile-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-mobile-form input,
.contact-mobile-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: white;
  color: #0f4361;
  border-radius: 24px;
  padding: 9px 22px;
  margin-bottom: 14px;
  font-size: 13px;
  text-align: right;
}

.contact-mobile-form input {
  height: 24px;
}

.contact-mobile-form textarea {
  height: 95px;
  border-radius: 22px;
  resize: none;
  padding-top: 18px;
}

.contact-mobile-form input::placeholder,
.contact-mobile-form textarea::placeholder {
  color: #9b9b9b;
}

.contact-mobile-form button {
  align-self: flex-end;
  background: #0b3b59;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}


.about-page {
  background: #0f4361;
  padding: 70px 80px;
  direction: rtl;
  font-family: "Tajawal", sans-serif;
}

/* WHITE CARDS */
.info-card {
  width: 75%;
  margin: 0 auto 90px;
  background: #f8f8f8;
  border: 4px solid #a5803b;
  border-radius: 45px;

  min-height: 210px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding: 35px 70px;
  overflow: visible;
}

.card-person {
  position: absolute;
  left: 45px;
  bottom: -3;
  width: 220px;
  z-index: 3;
}

.card-text {
  width: 68%;
  text-align: right;
  color: #0f4361;
}

.card-text h2 {
  color: #9b7a36;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.card-text p {
  font-size: 16px;
  line-height: 1.9;
}

/* VALUES */
.values-list {
  width: 75%;
  margin: 0 auto 90px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 25px;
  color: white;
}

.value-item img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.value-item h3 {
  color: #c6bb9a;
  font-size: 22px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 15px;
  line-height: 1.8;
  color: white;
}

/* ADVANTAGES */
.advantages {
  width: 85%;
  margin: 60px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 80px;

  color: white;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.advantage-item span {
  color: #c6bb9a;
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}

.advantage-item p {
  font-size: 15px;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-page {
    padding: 50px 20px;
  }

  .info-card {
    width: 100%;
    flex-direction: column;
    padding: 35px 25px;
    text-align: center;
  }

  .card-person {
    position: relative;
    left: auto;
    width: 180px;
    margin-bottom: 20px;
  }

  .card-text {
    width: 100%;
    text-align: center;
  }

  .values-list {
    width: 100%;
  }

  .advantages {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.info-card1.why-card {
  width: 75%;
  max-width: 1350px;
  height: 210px;

  margin: 30px auto 60px;
  padding: 0 90px 0 420px;

  background: #f8f8f8;
  border: 5px solid #b48a3c;
  border-radius: 50px;

  position: relative;
  overflow: visible;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  direction: rtl;
}

/* IMAGE */
.card-person1 {
  position: absolute;

  left:30px;
  top: -67px;
  height: 282px;
  width: auto;

  object-fit: contain;
  z-index: 5;

  transform: none;
  display: block;
}
.card-person1 img {
  width: 100%;
  display: block;
}

/* TEXT */


.card-text1 {
  width: 68%;
  text-align: right;
  color: #0f4361;
}

.card-text1 h2 {
  color: #9b7a36;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 15px;
}

.card-text1 p {
  font-size: 16px;
  line-height: 1.9;
}

/* MOBILE */
@media (max-width: 768px) {

    .info-card1.why-card {
        height: auto;
        padding: 40px 25px 260px;
        border-radius: 35px;
    }

    .card-person1 {
        left: 50%;
        transform: translateX(-50%);
        height: 250px;
    }

    .card-text1 {
        width: 100%;
    }

    .card-text1 h2 {
        font-size: 34px;
    }

    .card-text1 p {
        font-size: 20px;
        line-height: 1.8;
    }
}


.advantages-section {
  width: 100%;
  background: #0f4361;
  padding: 80px 70px;
  direction: rtl;
}

.advantages-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 65px 120px;

  max-width: 1400px;
  margin: auto;
}

.advantage-box {
  position: relative;

  padding-right: 90px;

  min-height: 120px;
}

.advantage-number {
  position: absolute;

  right: 0;
  top: -10px;

  font-size: 88px;
  font-weight: 900;

  color: white;

  line-height: 1;
}

.advantage-number::after {
  content: "";

  position: absolute;

  right: -8px;
  bottom: 10px;

  width: 22px;
  height: 22px;

  background: #b48a3c;
  border-radius: 50%;

  z-index: -1;
}

.advantage-text h3 {
  color: white;

  font-size: 28px;
  font-weight: 700;

  margin-bottom: 12px;
}

.advantage-text p {
  color: white;

  font-size: 16px;
  line-height: 1.9;

  opacity: .95;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .advantage-box {
    padding-right: 75px;
  }

  .advantage-number {
    font-size: 65px;
  }

  .advantage-text h3 {
    font-size: 22px;
  }

  .advantage-text p {
    font-size: 15px;
  }
}