/* السكشن الرئيسي */
.hero-section {
  background-color: #185262; /* لون الخلفية الأزرق التركوازي الداكن */
  color: #ffffff;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 110vh;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* تنسيق النصوص */
.hero-text {
  flex: 1;
  max-width: 580px;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #e2f1f5;
  margin-bottom: 35px;
  text-align: justify;
}

.hero-description .phone {
  direction: ltr;
  display: inline-block;
  font-weight: bold;
  color: #ffffff;
}

/* زر حجز الموعد */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #0b5c73;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #f0f8fa;
  transform: translateY(-2px);
}

/* تنسيق الصورة */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 25px; /* الانحناء الحاد للزوايا زي الصورة */
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 992px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-description {
    text-align: center;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
}

.dryer-issues-wrapper {
  width: 100%;
}

/* ------------ 1. قسم الأعطال الشائعة ------------ */
.common-faults {
  background-color: #dbe4e9; /* لون الخلفية الفاتح */
  padding: 60px 5%;
  text-align: center;
}

.section-title {
  color: #2b4c5e;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.card {
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 360px;
  text-align: center;
}

.card h3 {
  color: #2b4c5e;
  font-size: 1.35rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.card p {
  color: #556b78;
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ------------ 2. قسم الحلول المقدمة ------------ */
.solutions-section {
  background-color: #0b2239; /* الأزرق الكحلي الداكن */
  color: #ffffff;
  padding: 50px 5% 60px;
  text-align: center;
}

/* الشريط البيضاوي العلوي */
.pill-header {
  background-color: #ffffff;
  color: #2b4c5e;
  max-width: 950px;
  margin: 0 auto 35px;
  padding: 10px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pill-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  padding-left: 20px;
}

.intro-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #e0eaf0;
}

.features-list {
  list-style: none;
  max-width: 650px;
  margin: 0 auto 25px;
  text-align: center;
  display: inline-block;
}

.features-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  position: relative;
  padding-right: 22px;
  color: #ffffff;
}

.features-list li::before {
  content: "•";
  color: #ffffff;
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: -4px;
}

.call-text {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: #e0eaf0;
}

.phone {
  direction: ltr;
  display: inline-block;
  font-weight: bold;
}

/* زر حجز الموعد */
.btn-container {
  display: flex;
  justify-content: center;
  max-width: 950px;
  margin: 0 auto;
}

.cta-btn {
  background-color: #1a4261;
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #24577f;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
  .pill-header h2 {
    text-align: center;
    padding-left: 0;
  }

  .btn-container {
    justify-content: center;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Cairo", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
}

.dryer-features-wrapper {
  width: 100%;
}

/* ------------ 1. قسم مميزات مركز الصيانة ------------ */
.features-section {
  background-color: #dbe4e9; /* خلفية القسم الفاتحة */
  padding: 50px 5% 60px;
  text-align: center;
}

.section-title {
  color: #2b4c5e;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
}

.features-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #5b92b1; /* لون البطاقات الأزرق */
  color: #ffffff;
  padding: 25px 20px;
  border-radius: 20px;
  flex: 1 1 220px;
  max-width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 600;
}

/* ------------ 2. قسم الضمان وقطع الغيار ------------ */
.guarantee-section {
  background-color: #173248; /* خلفية القسم الداكنة */
  color: #ffffff;
  padding: 50px 5% 60px;
  text-align: center;
}

.guarantee-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
}

.guarantee-text {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto;
  color: #d2e1eb;
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
  .section-title {
    text-align: center;
    padding-right: 0;
  }

  .features-cards {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 100%;
  }
}
/* تنسيقات الفوتر العامة */
.site-footer {
  color: #ffffff;
  direction: rtl;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background: linear-gradient(to right, #c3c7ce 50%, #4992ca 100%);
}
/* 1. تكبير المسافات وتوزيع الأعمدة بعرض الفوتر */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between; /* بيوزع الأعمدة ويعمل مسافات متساوية بينهم */
  align-items: center;
  gap: 50px;
}

/* 2. ضبط عمود اللوجو وتكبير الصورة */
.footer-about {
  flex: 1.2; /* بيدي مساحة أكبر لعمود اللوجو والنص */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-about .footer-logo {
  margin-bottom: 15px;
}

.footer-about .footer-logo img {
  width: 60px; /* اضبط العرض بنفس حجم لوجو الناف بار */
  height: 60px; /* اضبط الارتفاع ليصبح مربعاً مثله */
  object-fit: cover; /* يضمن عدم تمطط الصورة */
  border-radius: 10px; /* لعمل انحناء الحواف مثل الناف بار */
  background-color: #0b4553; /* نفس لون خلفية الناف بار الكحلية */
  padding: 5px; /* مسافة داخلية بسيطة */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* ظل خفيف لإبراز اللوجو */
}
/* 3. ضبط عرض باقي الأعمدة */
.footer-links,
.footer-contact {
  flex: 1;
}
/* العمود الثاني - الروابط */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #0a0a0a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #1dbce3;
  /* padding-right: 5px; */
}

/* العمود الثالث - تواصل معنا */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  /* display: flex;
  align-items: center; */
  margin-bottom: 12px;
  color: #000000;
  font-size: 0.95rem;
}

.contact-info i {
  color: #0b4553;
  margin-left: 10px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-info .whatsapp-icon {
  color: #25d366; /* لون الواتساب الأخضر */
}

.contact-info a {
  color: #555555;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: #2ca9c8;
}

/* الشريط السفلي الحقوق */
.footer-bottom {
  background-color: #304950;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 10px;
}
/* ==========================================
   Media Query - الشاشات الصغيرة والموبايل
   ========================================== */
@media (max-width: 768px) {
  /* ضبط شريط إخلاء المسؤولية العلوي */
  .disclaimer-banner p {
    font-size: 0.85rem;
    padding: 0 10px;
    line-height: 1.6;
  }

  /* تحويل الأعمدة لتصبح رأسية ومتركزة */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
    padding: 30px 15px;
  }

  /* جعل كل عمود يأخذ العرض الكامل وينتصف */
  .footer-col,
  .footer-about,
  .footer-links,
  .footer-contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* سنترة محاذاة الروابط والقوائم داخل الأعمدة */
  .footer-about .about-text,
  .footer-links ul,
  .contact-info li {
    text-align: center;
    justify-content: center;
  }
}
img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
