/* إعداد الخط العام */
body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  direction: rtl;
}

/* الرأس */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo img {
  max-height: 60px;
}

.cta-button {
  background-color: #ea1c72;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* قسم الهيرو */
.hero {
  background: #fdf3ff;
  text-align: center;
  padding: 50px 20px;
}

.hero h1 {
  font-size: 28px;
  color: #ea1c72;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #555;
}

/* العناوين */
.section-title {
  text-align: center;
  font-size: 24px;
  color: #ea1c72;
  margin: 50px 0 30px;
}

/* سلايدر الخدمات */
.services-slider {
  padding: 0 20px 40px;
}

.service {
  text-align: center;
  padding: 15px;
}

.service img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  margin: 0 auto;
}

.service h3 {
  margin: 15px 0 10px;
  color: #222;
}

.service p {
  color: #777;
  font-size: 14px;
}

/* سلايدر قبل وبعد */
.before-after {
  background: #f9f9f9;
  padding: 40px 0;
}

.before-after-slider {
  padding: 0 20px;
}

.before-after-box {
  padding: 10px;
}

.before-after-box img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* قسم لماذا نوفيللو */
.why {
  background-color: #fff0f9;
  text-align: center;
  padding: 50px 20px;
}

.why h2 {
  font-size: 24px;
  color: #ea1c72;
  margin-bottom: 20px;
}

.why p {
  font-size: 16px;
  color: #555;
}

/* الفوتر */
.footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
}

/* أيقونات واتساب واتصال */
.whatsapp-icon, .call-icon {
  position: fixed;
  bottom: 20px;
  z-index: 1000;
}
.whatsapp-icon {
  right: 20px;
}
.call-icon {
  left: 20px;
}
.whatsapp-icon img, .call-icon img {
  width: 55px;
  height: 55px;
}

/* استجابة الشاشات */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 16px;
  }

  .cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }

  .service img {
    max-width: 100%;
  }

  .before-after-box img {
    width: 100%;
    height: auto;
  }
}
