* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #887a6f;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

header {
  position: absolute;
  z-index: 100;
  width: 100%;
  right: 0;
  top: 10px;
  overflow: hidden;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 100px;
  height: 100px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: 0.3s;
}

header .right-side {
  display: flex;
  align-items: center;
}

header .right-side ul {
  margin-right: 20px;
}

header .right-side ul,
header .left-side ul {
  list-style: none;
  display: flex;
  align-items: center;
}

header .right-side ul li,
header .left-side ul li {
  margin-left: 20px;
}

header .right-side ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

header .right-side ul li a:hover,
header .left-side li a:hover {
  color: #fff;
}

header .left-side li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  transition: 0.3s;
  margin-right: 20px;
}

.burger-icon {
  display: none;
}

@media (max-width: 767px) {
  header {
    padding: 0 20px;
  }

  header .right-side ul {
    display: none;
  }
  header .left-side ul {
    display: none;
  }

  header .logo {
    height: 80px;
    width: 80px;
  }

  header .burger-icon {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 40px 30px;
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.close-btn {
  font-size: 35px;
  cursor: pointer;
  color: var(--main-color);
  text-align: left;
}

.mobile-links {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-links li {
  border-bottom: solid var(--main-color) 1px;
  padding-bottom: 20px;
}

.mobile-links li a {
  text-decoration: none;
  font-size: 24px;
  color: var(--main-color);
  font-family: Changa;
}

.mobile-icons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  font-size: 30px;
  justify-content: center;
}

.mobile-icons a {
  color: var(--main-color);
}

@media (max-width: 1024px) {
  .right-nav ul,
  .left-nav {
    display: none !important;
  }
  header .container {
    flex-direction: row;
  }
  .burger {
    display: block;
  }
}

.landing {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.landing .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.landing .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.landing .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  pointer-events: none;
}

.landing .landing-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  color: white;
  z-index: 10;
  padding: 0 20px;
  box-sizing: border-box;
}

.landing .landing-content h1 {
  font-size: 50px;
  margin: 33px 0;
}

.landing .landing-content p {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  white-space: normal;
}

.landing .landing-content .landing-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.landing .landing-content button {
  background: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
  margin-right: 30px;
  transition: 0.3s;
  position: relative;
}

.landing .landing-content button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(136, 122, 111, 0.9);
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}

.landing .landing-content button:active {
  transform: scale(0.9);
}

.landing .landing-content button:active::before {
  opacity: 1;
}

.landing .landing-content button:first-of-type {
  background-color: var(--main-color, #007bff);
}

.landing .landing-content button:first-of-type:active::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.landing .landing-content button:first-of-type a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.landing .landing-content button:last-of-type a {
  color: var(--main-color, #007bff);
  text-decoration: none;
  font-weight: bold;
}

.landing .landing-content button:last-of-type a i {
  margin-right: 5px;
  color: var(--main-color, #007bff);
}

.landing .arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  align-items: center;
  z-index: 20;
  pointer-events: none;
}

.landing .arrows .swiper-button-next,
.landing .arrows .swiper-button-prev {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  pointer-events: auto;
  transition: 0.3s;
}

.landing .arrows .swiper-button-prev:hover,
.landing .arrows .swiper-button-next:hover {
  color: #fff;
  transform: scale(1.2);
}

.landing .arrows .swiper-button-left::after,
.landing .arrows .swiper-button-right::after {
  display: none !important;
}

@media (max-width: 767px) {
  .landing .landing-content {
    transform: translate(-50%, -50%);
  }
  .landing .landing-content h1 {
    font-size: 50px;
    max-width: 90%;
    margin: 20px auto;
    line-height: 1.3;
  }

  .landing .landing-content p {
    font-size: 18px;
    max-width: 95%;
  }

  .landing .arrows {
    display: none;
  }

  .landing .landing-content .landing-buttons {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
  }

  .landing .landing-content .landing-buttons button {
    max-width: fit-content;
    margin: 0;
  }
}

.landing .swiper-pagination {
  bottom: 30px !important;
  z-index: 20;
}

.landing .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.landing .swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

.features {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
}

.features .container {
  display: flex;
  flex-direction: column;
  row-gap: 150px;
}

.feat {
  display: flex;
  column-gap: 60px;
}

.feat .image {
  width: 100%;
  max-width: 500px;
  position: relative;
  transform-style: preserve-3d;
}

.feat .image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.feat .image::after {
  content: "";
  position: absolute;
  background-color: var(--main-color, #007bff);
  width: 100%;
  height: 100%;
  top: -30px;
  right: 30px;
  z-index: 1;
  transform: translateZ(-1px);
}

.feat .feat-text h2 {
  color: var(--main-color);
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
}

.feat .feat-text p {
  color: #555;
  line-height: 1.8;
  font-size: 20px;
  width: 70%;
}

@media (max-width: 991px) {
  .features .feat {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 30px;
  }

  .features .feat .image {
    width: 100%;
    max-width: 500px;
  }

  .features .feat .image::after {
    display: none;
  }

  .features .feat .feat-text {
    text-align: center;
  }

  .features .feat .feat-text h2 {
    font-size: 30px;
  }

  .features .feat .feat-text p {
    margin: 0 auto;
    font-size: 18px;
    width: 90%;
  }
}

@media (max-width: 767px) {
  .features .feat .image {
    max-width: 350px;
  }
}

.people-openion {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.people-openion .people-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.people-openion .people-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.people-openion .people-text h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 3px black;
}

.people-openion .people-text p {
  color: white;
  text-shadow: 2px 2px 3px #000000;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.3;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.people-openion .openions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.people-openion .openion {
  background-color: white;
  text-align: center;
  border-radius: 10px;
  padding: 20px 0;
}

.people-openion .openion .image {
  width: 130px;
  height: 130px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
}

.people-openion .openion .image img {
  width: 100%;
  height: auto;
  border: solid 4px var(--main-color);
  border-radius: 50%;
  display: block;
}

.people-openion .openion h3 {
  color: var(--main-color);
  font-size: 22px;
  margin-bottom: 5px;
}

.people-openion .openion h3 + p {
  color: #555;
  font-size: 16px;
  text-shadow: none;
  font-weight: 700;
  word-spacing: 1.5px;
  margin: 0 auto;
}

.people-openion .openion-text p:last-of-type {
  color: #333;
  text-shadow: none;
  width: 80%;
  line-height: 1.6;
  font-size: 16px;
  margin: 20px auto;
}

@media (max-width: 767px) {
  .people-openion .openion {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.people-openion .swiper-pagination {
  bottom: 30px !important;
  z-index: 20;
}

.people-openion .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.people-openion .swiper-pagination-bullet-active {
  background: white;
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.rates {
  padding: 50px 0;
}

.rates-text {
  text-align: center;
}

.rates .rates-text h2 {
  color: var(--main-color);
  font-size: 40px;
}

.rates .rates-text p {
  color: #555;
  margin-top: 10px;
  font-size: 20px;
  margin-bottom: 40px;
}

.rates .rates-text button {
  background: var(--main-color);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  white-space: nowrap;
  margin-bottom: 40px;
  position: relative;
}

.rates .rates-text button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}

.rates .rates-text button:active {
  transform: scale(0.9);
}

.rates .rates-text button:active::before {
  opacity: 1;
}

.rates .rates-text button a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.rates-content {
  width: 100%;
  border-bottom: var(--main-color) 5px solid;
  border-top: var(--main-color) 5px solid;
}

.rates-content .swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease;
  padding: 60px 0;
}

.rates-content img {
  width: 150px;
  height: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  will-change: transform;
}

.rates-content .swiper-slide-active img {
  transform: scale(1.6);
}

@media (max-width: 992px) {
  .rates-content .swiper-slide {
    padding: 40px 0;
  }

  .rates-content img {
    width: 120px;
    height: 120px;
  }

  .rates-content .swiper-slide-active img {
    transform: scale(1.5);
  }
}

@media (max-width: 768px) {
  .rates-content .swiper-slide {
    padding: 30px 0;
  }

  .rates-content img {
    width: 100px;
    height: 100px;
  }

  .rates-content .swiper-slide-active img {
    transform: scale(1.5);
  }
}

@media (max-width: 480px) {
  .rates-content .swiper-slide {
    padding: 40px 0;
  }

  .rates-content img {
    width: 90px;
    height: 90px;
  }

  .rates-content .swiper-slide-active img {
    transform: scale(1.5);
  }
}

.whatsapp-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 85px;
  height: 85px;
  cursor: pointer;
  z-index: 9999;
  animation: pulse 1.8s infinite;
}

.whatsapp-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-bubble:hover {
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .whatsapp-bubble {
    width: 65px;
    height: 65px;
  }
}
