/* ===========================
   1. الأساسيات العامة
=========================== */
body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  direction: rtl;
}

/* ===========================
   2. الهيدر (Header)
=========================== */
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.05);
  position: relative;
  z-index: 1000;
}

header .logo img {
  max-height: 50px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ea1c72;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #d1175e;
  transform: translateY(-2px);
}

/* ===========================
   3. قسم الهيرو (Hero)
=========================== */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: #f9f9f9;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #ea1c72;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background-color: #ea1c72;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(234,28,114,0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.hero-cta:hover {
  background-color: #d1175e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234,28,114,0.4);
}

/* ===========================
   4. عناوين الأقسام
=========================== */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #ea1c72;
  margin-bottom: 30px;
}

/* ===========================
   5. قسم الخدمات
=========================== */
.services-section {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.services-slider .service {
  padding: 15px;
}

.services-slider .service img {
  max-width: 100%;
  border-radius: 10px;
}

.services-slider .service h3 {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #ea1c72;
}

.services-slider .service p {
  font-size: 1rem;
  color: #555;
}

/* ===========================
   6. قسم قبل وبعد
=========================== */
.before-after {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.before-after-box img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===========================
   7. لماذا نوفيللو
=========================== */
.why {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

.why h2 {
  font-size: 1.8rem;
  color: #ea1c72;
  margin-bottom: 20px;
}

.why p {
  font-size: 1.1rem;
  color: #555;
}

/* ===========================
   8. الفورم (Form)
=========================== */
.form-box {
  max-width: 520px;
  margin: auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.form-box h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #ea1c72;
}

.row {
  margin-bottom: 14px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

input, select, button {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

input:focus, select:focus {
  outline: none;
  border-color: #ea1c72;
  box-shadow: 0 0 0 3px rgba(10,160,110,.15);
}

.hint {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}

button {
  background: #ea1c72;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

button:hover {
  filter: brightness(.95);
}

.error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

/* ===========================
   9. الفوتر (Footer)
=========================== */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #ea1c72;
  color: #fff;
  font-size: 0.9rem;
}

/* ===========================
   10. أيقونات الاتصال
=========================== */
.call-icon,
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 999;
}

.whatsapp-icon {
  right: 20px;
}

.call-icon {
  left: 20px;
}

.call-icon img,
.whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===========================
   11. الموبايل (Responsive)
=========================== */
@media(max-width:768px) {
  .hero h1 {
    font-size: 22px;
  }
  .hero p {
    font-size: 16px;
  }
  .cta-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .hero-cta {
    padding: 12px 28px;
    font-size: 1rem;
  }
  .services-slider .service img {
    max-width: 100%;
  }
  .before-after-box img {
    width: 100%;
    height: auto;
  }
  .call-icon {
    left: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-icon {
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
  }
}
/* ===========================
   Google reviews 
=========================== */
/* == Google Reviews == */
.google-reviews { padding: 40px 20px; background: #fdfeff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.section-title { font-size: 24px; color: #ea1c72; text-align: center; margin-bottom: 20px; }

#summary { margin: 0 auto 12px; max-width: 900px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: #f4f7ff; border: 1px solid #dfe7ff; border-radius: 999px; padding: 6px 12px; font-weight: 700; }

#reviews { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.rv { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 14px; }
.rv .head { display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.rv .name { font-weight: 700; }
.rv .stars { line-height: 1; }
.rv .time { opacity: .65; font-size: .9rem; }
.rv p { margin: 8px 0 0; white-space: pre-wrap; }
.empty { opacity: .8; text-align: center; }
