@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* Start Global Rules */
:root {
  --brand-color: #ff4800;
  --alt-brand-color: #a8dadc; /* سماوي فاتح */
  --dark-color: #1d3557; /* كحلي غامق */
  --light-color: #f1faee; /* أبيض مائل للكريمي */
  --text-muted: #6c757d;
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
}
body {
  font-family: "Cairo", sans-serif;
  background-color: #f8f9fa;
  padding-top: 0;
}
main {
  overflow-x: hidden; /* عشان الانيمشن ميعملش سكرول بالعرض */
}
/* End Global Rules */

/* Start Navbar */
.navbar-custom {
  background-color: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1050;
}
/* --- حاوية الزرار (المسرح) --- */
.hotline-brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 25px;
  background: linear-gradient(
    135deg,
    #e63946 0%,
    var(--brand-color) 100%
  ); /* التدرج الأحمر الفخم */
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: visible; /* عشان موجات الأيقونة تخرج بره */
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  min-width: 190px; /* عرض ثابت عشان المحتوى ميرقصش لما يختفي */
  height: 55px; /* ارتفاع ثابت */
  transition: transform 0.3s ease;
}

.hotline-brand-box:hover {
  transform: translateY(-2px); /* حركة بسيطة عند اللمس */
}

/* --- العناصر الداخلية (الممثلين) --- */
.anim-element {
  opacity: 0;
  transform: translateY(20px); /* يبدأ من تحت */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* حركة ناعمة مع ارتداد خفيف */
}

/* كلاس الظهور (يضاف بالجافا سكريبت) */
.hotline-brand-box.show-content .anim-element {
  opacity: 1;
  transform: translateY(0);
}

/* --- تنسيق الأيقونة (البطل) --- */
.hotline-icon-wrapper {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

/* الأيقونة تهتز دائماً طالما هي ظاهرة */
.hotline-brand-box.show-content .hotline-icon-wrapper i {
  animation: shake-infinity 2s infinite ease-in-out;
}

@keyframes shake-infinity {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(15deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  30% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
}

/* تأثير الموجات (Shockwaves) خلف الأيقونة */
.hotline-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  z-index: -1;
}

.hotline-brand-box.show-content .hotline-icon-wrapper::after {
  animation: ripple-effect 1.5s infinite;
}

@keyframes ripple-effect {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* --- تنسيق النصوص --- */
.hotline-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.hotline-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.hotline-number {
  font-family: "Cairo", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

/* --- تأخير الحركة (Staggering Delays) --- */
/* الأيقونة تظهر أولاً */
.hotline-brand-box.show-content .icon-part {
  transition-delay: 0ms;
}
/* ثم كلمة اتصل الآن */
.hotline-brand-box.show-content .text-label-part {
  transition-delay: 150ms;
  color: var(--light-color) !important;
  font-size: 12px;
  padding-top: 10px;
}
/* أخيراً الرقم */
.hotline-brand-box.show-content .number-part {
  transition-delay: 300ms;
}

/* عند الاختفاء: يختفوا بالعكس بسرعة */
.hotline-brand-box:not(.show-content) .number-part {
  transition-delay: 0ms;
}
.hotline-brand-box:not(.show-content) .text-label-part {
  transition-delay: 100ms;
}
.hotline-brand-box:not(.show-content) .icon-part {
  transition-delay: 200ms;
}
/* --- Toggler Button (Mobile Icon) Fixes --- */
.navbar-toggler {
  border: none !important; /* إزالة الإطار */
  outline: none !important;
  box-shadow: none !important; /* إزالة اللمعان الأزرق عند الضغط */
  padding: 0;
}

.toggler-icon-custom {
  font-size: 2rem;
  color: var(--dark-color); /* لون الأيقونة كحلي عشان يظهر */
}

/* --- Nav Links --- */
.nav-link {
  color: var(--dark-color) !important;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 10px;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link i {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: 0.3s;
}

.nav-link:hover,
.nav-link:hover i,
.nav-item.show .nav-link {
  color: var(--brand-color) !important;
}

/* --- Mega Menu Styles --- */
.menu-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 15px;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* Service Item */
.service-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}

.service-item:hover {
  background-color: #f8f9fa;
}

.service-icon {
  min-width: 35px;
  height: 35px;
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--brand-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-left: 12px;
}

.service-content h6 {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.service-content p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

/* Brands Area */
.brands-wrapper {
  background-color: #fafbfc;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #eee;
  max-height: 400px;
  overflow-y: auto;
}

.brands-grid {
  display: grid;
  gap: 8px;
}

.brand-link {
  font-size: 0.85rem;
  color: var(--dark-color);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 6px;
  display: block;
  background: #fff;
  border: 1px solid transparent;
}

.brand-link:hover {
  color: var(--brand-color);
  border-color: #eee;
  font-weight: 700;
}

/* --- Contact Button --- */
.btn-contact-nav {
  background-color: var(--brand-color);
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 700;
  transition: 0.3s;
  border: 2px solid var(--brand-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  white-space: nowrap;
  text-decoration: none;
}

.btn-contact-nav:hover {
  background-color: transparent;
  color: var(--brand-color) !important;
}

/* =========================================
   Desktop Only Styles (min-width: 992px)
   هنا السحر عشان المنيو تفتح بعرض الشاشة
   ========================================= */
@media (min-width: 992px) {
  .nav-item.dropdown {
    position: static; /* مهم جداً للـ Mega Menu */
  }

  .dropdown-menu.mega-menu {
    width: 100%;
    left: 0;
    right: 0;
    padding: 30px 0;
    border: none;
    border-top: 3px solid var(--brand-color);
    box-shadow: var(--shadow-soft);
    background: #fff;
    margin-top: 0;
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-item.dropdown:hover .dropdown-menu.mega-menu {
    display: block;
    animation: fadeInUp 0.3s forwards;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 أعمدة في الكمبيوتر */
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* =========================================
   Mobile & Tablet Styles (max-width: 991px)
   تظبيط الشكل عشان ميبقاش بايظ
   ========================================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
    max-height: 80vh; /* عشان لو المنيو طويلة اوي */
    overflow-y: auto;
  }

  .nav-link {
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
  }

  /* تحويل الـ Mega Menu لقائمة عادية */
  .dropdown-menu.mega-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    background-color: #fff;
  }

  /* ترتيب العناصر في الموبايل */
  .menu-section-title {
    margin-top: 20px;
  }

  .col-lg-4.border-end-lg {
    border-left: none !important; /* إلغاء الخط الفاصل */
    padding-left: 0 !important;
  }

  /* الشبكة في الموبايل عمودين بس */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn-contact-nav {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  position: relative;
  /* ارتفاع كامل للشاشة */
  min-height: 90vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* عشان المحتوى يتوزع والشريط ينزل تحت */
  background-color: var(--dark-color);
  overflow: hidden;
  padding-top: 100px;
}

/* الخلفية والشبكة */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(
      135deg,
      rgba(29, 53, 87, 0.95) 0%,
      rgba(29, 53, 87, 0.9) 50%,
      rgba(230, 126, 57, 0.4) 100%
    );
  background-size: 50px 50px, 50px 50px, cover;
  background-attachment: fixed;
}

/* تنسيق المحتوى (في المنتصف كما طلبت سابقاً) */
.hero-content {
  position: relative;
  z-index: 5;
  color: #fff;
  text-align: center; /* رجعنا التوسيط */
  margin-bottom: auto; /* يزق نفسه لفوق ويسيب مساحة للشريط تحت */
  margin-top: auto;
  width: 100%;
}

.hero-title {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--brand-color);
  position: relative;
  display: inline-block;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 35px auto; /* توسيط البراجراف */
}

/* الأزرار */
.hero-btns-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center; /* توسيط الأزرار */
}

.btn-hero-primary {
  background: var(--brand-color);
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid var(--brand-color);
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.btn-hero-primary:hover {
  background: transparent;
  transform: translateY(-3px);
  color: var(--light-color);
}

/* زر الواتساب بألوان الموقع (أزرق فاتح Outline) */
.btn-whatsapp-brand {
  background: transparent;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  border: 2px solid #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-brand:hover {
  background: #fff;
  color: var(--dark-color);
  border-color: #fff;
  transform: translateY(-3px);
}

/* --- شريط التقييمات اللانهائي (Infinite Glass Ticker) --- */
.reviews-ticker-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 25px 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  /* الحركة السحرية: تتحرك لنصف المسافة فقط ثم تعيد نفسها */
  animation: infinite-scroll 40s linear infinite;
}

.reviews-ticker-wrapper:hover .reviews-track {
  animation-play-state: paused;
}

/* الكارت الزجاجي (شكله أشيك بكتير) */
.review-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  width: 320px; /* حجم مناسب */
  direction: rtl;
  text-align: right;
  user-select: none; /* عشان العميل ميعملش تحديد للنص بالغلط */
}

.reviewer-name {
  color: var(--alt-brand-color); /* اللون السماوي بتاع البراند */
  font-weight: 700;
  font-size: 0.9rem;
}

.review-stars {
  color: #ffc107;
  font-size: 0.75rem;
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin: 5px 0 0 0;
}

/* Keyframes للأنيميشن المتصل */
@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  } /* بيتحرك لليمين لأن اتجاهنا عربي، وبنسبة 50% */
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-btns-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .btn-hero-primary,
  .btn-whatsapp-brand {
    width: 100%;
    justify-content: center;
  }
}
/* End Hero Section */

/* Start Why Us Section */
/* --- Why Us Section Styling --- */
.why-us-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* لون رمادي فاتح جداً لكسر حدة الأسود */
  position: relative;
  overflow: hidden;
}

/* عنوان القسم */
.section-title-wrapper {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-title span {
  color: var(--brand-color);
  position: relative;
  display: inline-block;
}

/* خط تحت العنوان */
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--brand-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-desc {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Feature Cards Design --- */
.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* ظل ناعم */
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden; /* عشان الرقم المائي مطلعش بره */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%; /* عشان الكروت تكون نفس الطول */
  z-index: 1;
}

/* تأثير الـ Hover على الكارت */
.feature-card:hover {
  transform: translateY(-10px); /* يطير لفوق */
  box-shadow: 0 20px 40px rgba(29, 53, 87, 0.15);
  border-bottom: 5px solid var(--brand-color); /* يظهر خط أحمر تحت */
}

/* الرقم المائي الخلفي (01, 02..) */
.watermark-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03); /* شفاف جداً */
  line-height: 1;
  z-index: -1;
  transition: 0.3s;
  font-family: sans-serif;
}

.feature-card:hover .watermark-number {
  color: rgba(230, 57, 70, 0.05); /* يحمر شوية لما تقف عليه */
  transform: scale(1.1);
}

/* الأيقونة */
.icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(29, 53, 87, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
}

.icon-box i {
  font-size: 2rem;
  color: var(--dark-color);
  transition: 0.4s;
}

/* حركة الأيقونة عند الهوفر */
.feature-card:hover .icon-box {
  background-color: var(--brand-color);
  transform: rotateY(180deg); /* تلف حوالين نفسها */
}

.feature-card:hover .icon-box i {
  color: #fff;
}

/* النصوص داخل الكارت */
.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.feature-text {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .feature-card {
    padding: 30px 20px;
  }
}
/* End Why Us Section */

/* Start Service Section */
/* --- Services Section Styling (SEO Optimized Layout) --- */
.services-section {
  padding: 90px 0;
  background-color: #fff;
  position: relative;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(29, 53, 87, 0.15);
  border-color: var(--brand-color);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: #eee;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-body {
  padding: 25px;
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem; /* تصغير بسيط ليستوعب العناوين الطويلة */
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.service-subtitle {
  font-size: 0.9rem;
  color: var(--brand-color);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.service-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

/* القوائم */
.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* تحديث القوائم لإصلاح مشكلة الكلمات المفتاحية */
.service-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--dark-color);
  line-height: 1.5;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease-out;
}

/* تنسيق الأيقونة */
.service-features-list li i {
  font-size: 1.2rem;
  margin-left: 10px; /* المسافة بين الايقونة والكلام */
  margin-top: 2px;
  flex-shrink: 0;
}

/* تنسيق النص بالكامل (الحاوية الجديدة) */
.service-features-list li span {
  display: block; /* عشان ياخد راحته في الكلام */
}

/* تلوين الكلمة المفتاحية (Strong) */
.service-features-list li strong {
  color: var(--brand-color); /* اختياري: يلون الكلمة المفتاحية بالأحمر */
  font-weight: 800;
}

/* ألوان مميزة لكل خدمة */
.card-gas .service-features-list li i {
  color: #e63946;
}
.card-electric .service-features-list li i {
  color: #0077b6;
}
.card-instant .service-features-list li i {
  color: #e9c46a;
}

.service-features-list li.visible {
  opacity: 1;
  transform: translateX(0);
}
/* End Service Section */

/* Start guide section */
/* --- Technical Guide Section (Dark Mode) --- */
.tech-guide-section {
  padding: 90px 0;
  background-color: var(--dark-color); /* خلفية داكنة كما طلبت */
  position: relative;
  /* خلفية تقنية خفيفة جداً (اختياري) */
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(29, 53, 87, 0.5) 0%,
    var(--dark-color) 70%
  );
}

.tech-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.tech-section-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
}

/* تصميم كروت الأعطال */
.diagnosis-card {
  background: rgba(255, 255, 255, 0.03); /* شفاف غامق */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.diagnosis-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
  border-color: var(--alt-brand-color); /* يزرق لما تقف عليه */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* رقم العطل في الخلفية (ستايل) */
.fault-number {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

/* محتوى الكارت */
.diag-content {
  position: relative;
  z-index: 1;
}

.diag-icon {
  width: 60px;
  height: 60px;
  background: rgba(168, 218, 220, 0.1); /* لون سماوي شفاف */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--alt-brand-color);
  margin-bottom: 20px;
}

.diag-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.diag-text {
  color: rgba(255, 255, 255, 0.8); /* أبيض مائل للرمادي للقراءة */
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.diag-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-color); /* أحمر للعناوين الفرعية */
  margin-bottom: 5px;
  margin-top: 15px;
}

/* كارت الخطر (رقم 5) - تصميم خاص */
.card-danger {
  border: 1px solid rgba(230, 57, 70, 0.3);
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 100%
  );
}

.card-danger:hover {
  border-color: var(--brand-color);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.card-danger .diag-icon {
  background: rgba(230, 57, 70, 0.1);
  color: var(--brand-color);
  animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
  }
}
/* End guide section */

/* --- Start Comparison and tips Section --- */
.comparison-section {
  padding: 80px 0;
  background-color: #fff;
}

/* تنسيق التابات (Tabs) */
.custom-tabs {
  border-bottom: 2px solid #eee;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.custom-tabs .nav-link {
  color: var(--dark-color);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.custom-tabs .nav-link.active {
  background-color: var(--brand-color);
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.custom-tabs .nav-link i {
  margin-left: 8px;
  color: var(--light-color);
}

/* تنسيق الجدول الاحترافي */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.table-custom {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

.table-custom thead th {
  background-color: var(--dark-color);
  color: #fff;
  padding: 20px;
  font-size: 1.1rem;
  text-align: center;
  border: none;
}

/* تلوين العمود الأول (وجه المقارنة) */
.table-custom tbody td:first-child {
  background-color: #f8f9fa;
  font-weight: 700;
  color: var(--dark-color);
  width: 20%;
  border-right: 1px solid #eee;
}

.table-custom td {
  padding: 18px;
  vertical-align: middle;
  border-bottom: 1px solid #eee;
  text-align: center;
  transition: 0.2s;
}

.table-custom tbody tr:hover td {
  background-color: rgba(230, 57, 70, 0.03); /* هايلايت خفيف عند الوقوف */
}

/* أيقونات داخل الجدول */
.comp-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 5px;
  color: var(--alt-brand-color);
}

/* قسم الماركات (Tab 2) */
.brand-category-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  border-radius: 15px;
  height: 100%;
  transition: 0.3s;
}

.brand-category-box:hover {
  border-color: var(--brand-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-cat-title {
  color: var(--brand-color);
  font-weight: 800;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Golden Tips Section --- */
.tips-wrapper {
  margin-top: 80px;
  background-color: #f1faee; /* خلفية فاتحة جداً */
  padding: 50px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.tips-wrapper::before {
  content: "\f0eb"; /* أيقونة لمبة من FontAwesome كخلفية */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 15rem;
  color: rgba(29, 53, 87, 0.05);
  transform: rotate(-20deg);
}

.tip-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-right: 4px solid var(--brand-color); /* خط أحمر جانبي */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.tip-item:hover {
  transform: translateX(-5px);
}

.tip-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--brand-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- Coverage Areas --- */
.coverage-box {
  text-align: center;
  margin-top: 60px;
}

.area-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid #ddd;
  color: var(--dark-color);
  padding: 10px 20px;
  border-radius: 50px;
  margin: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.area-badge:hover {
  background: var(--dark-color);
  color: #fff;
  border-color: var(--dark-color);
}
/* End Comparison and tips Section */

/* Start Faq Section */
/* --- FAQ Section Styling --- */
.faq-section {
  padding: 90px 0;
  background-color: #f8f9fa; /* لون خلفية هادئ */
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
}

.faq-title span {
  color: var(--brand-color);
}

/* تنسيق الأكورديون */
.accordion-custom .accordion-item {
  border: none;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-custom .accordion-item:hover {
  box-shadow: 0 10px 25px rgba(29, 53, 87, 0.1);
  transform: translateY(-2px);
}

.accordion-custom .accordion-button {
  background-color: #fff;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 25px;
  box-shadow: none; /* إزالة الخط الأزرق الافتراضي */
  border-bottom: 1px solid transparent;
}

/* حالة السؤال المفتوح */
.accordion-custom .accordion-button:not(.collapsed) {
  background-color: rgba(230, 57, 70, 0.05); /* خلفية حمراء فاتحة جداً */
  color: var(--brand-color);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

/* تخصيص سهم الفتح والغلق */
.accordion-custom .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d3557'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e63946'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  border-top: none;
}
/* End Faq Section */

/* Start Contact and Footer Section */
/* --- Contact & Footer Section --- */
.contact-footer-section {
  background-color: var(--dark-color);
  color: #fff;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

/* خلفية جمالية خفيفة */
.contact-footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(230, 57, 70, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 119, 182, 0.1) 0%,
      transparent 40%
    );
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact-title span {
  color: var(--brand-color);
}

.contact-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* --- صندوق الأرقام المودرن (The Modern Box) --- */
.contact-numbers-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
}

/* 1. الخط الساخن (المميز) */
.hotline-display {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.hotline-label {
  display: block;
  font-size: 1rem;
  color: var(--brand-color);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hotline-number-big {
  font-family: "Cairo", sans-serif; /* أو أي خط رقمي */
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 5px 20px rgba(230, 57, 70, 0.5);
  display: inline-block;
  position: relative;
}

.hotline-icon-big {
  font-size: 2.5rem;
  color: var(--brand-color);
  margin-left: 15px;
  vertical-align: middle;
  animation: shake-phone 3s infinite;
}

/* 2. شبكة الأرقام الفرعية */
.numbers-grid-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--alt-brand-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

/* زرار الرقم الفردي */
.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.phone-btn:hover {
  background: #fff;
  color: var(--dark-color);
  transform: translateY(-3px);
}

.phone-btn i {
  color: var(--brand-color);
}

/* --- أزرار الإجراءات (Action Buttons) --- */
.action-btns-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-big-action {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-whatsapp-action {
  background-color: #25d366;
  color: #fff;
  border: 2px solid #25d366;
}

.btn-whatsapp-action:hover {
  background-color: transparent;
  color: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-booking-action {
  background-color: var(--alt-brand-color);
  color: var(--dark-color);
  border: 2px solid var(--alt-brand-color);
}

.btn-booking-action:hover {
  background-color: transparent;
  color: var(--alt-brand-color);
  box-shadow: 0 0 20px rgba(168, 218, 220, 0.4);
}

/* --- Copyright Bar --- */
.copyright-bar {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .hotline-number-big {
    font-size: 3rem;
  }
  .phone-list-grid {
    grid-template-columns: 1fr 1fr;
  } /* عمودين في الموبايل */
  .btn-big-action {
    width: 100%;
    justify-content: center;
  }
}
/* End Contact and Footer Section */

/* --- Gas Why Us Section --- */
.gas-why-section {
  padding: 90px 0;
  background-color: #fcfcfc; /* أبيض مائل للرمادي خفيف جداً */
  position: relative;
}

/* تنسيق كارت المميزات الخاص بالغاز */
.gas-feature-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* حركة الهوفر: توهج خفيف زي الغاز */
.gas-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1); /* ظل أحمر خفيف */
  border-color: rgba(230, 57, 70, 0.3);
}

/* خط جانبي ملون */
.gas-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background-color: var(--brand-color);
  transition: 0.4s ease;
}

.gas-feature-card:hover::before {
  height: 100%;
}

/* الأيقونة */
.gas-icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(29, 53, 87, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  transition: 0.4s;
}

.gas-feature-card:hover .gas-icon-wrapper {
  background: var(--brand-color);
  color: #fff;
  border-radius: 50%; /* تتحول لدائرة */
}

/* العنوان */
.gas-feat-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 15px;
}

/* النص */
.gas-feat-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

/* الرقم الخلفي (Watermark) */
.gas-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: #f0f0f0;
  line-height: 1;
  z-index: -1;
  font-family: sans-serif;
  transition: 0.4s;
}

.gas-feature-card:hover .gas-number {
  color: rgba(230, 57, 70, 0.05);
  transform: scale(1.2);
}

/* --- Brand Services Section --- */
.brand-services-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.brand-service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.brand-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* هيدر الكارت (يحتوي اسم الماركة) */
.brand-card-header {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  background: #fdfdfd;
}

.brand-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
}

/* تخصيص ألوان الهيدر لكل ماركة */
.ariston-card {
  border-top: 5px solid #e63946;
} /* أحمر */
.ariston-card .brand-title {
  color: #e63946;
}

.olympic-card {
  border-top: 5px solid #0077b6;
} /* أزرق */
.olympic-card .brand-title {
  color: #0077b6;
}

.universal-card {
  border-top: 5px solid #1d3557;
} /* كحلي */
.universal-card .brand-title {
  color: #1d3557;
}

/* جسم الكارت */
.brand-card-body {
  padding: 25px;
  flex-grow: 1;
}

.brand-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px; /* لتوحيد الطول */
}

/* القائمة داخل الكارت */
.brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-list li {
  position: relative;
  padding-right: 25px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--dark-color);
  line-height: 1.5;
}

.brand-list li::before {
  content: "\f00c"; /* علامة صح */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 3px;
  color: var(--brand-color); /* لون موحد للعلامة */
  font-size: 0.9rem;
}

/* زر الاتصال المصغر داخل الكارت */
.card-cta-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: #f8f9fa;
  color: var(--dark-color);
  font-weight: 700;
  text-decoration: none;
  border-top: 1px solid #eee;
  transition: 0.3s;
}

.card-cta-btn:hover {
  background: var(--brand-color);
  color: #fff;
}

/* --- Gas Technical Guide Section (Dark Mode) --- */
.gas-tech-section {
  padding: 90px 0;
  background-color: var(--dark-color); /* خلفية كحلي غامق */
  position: relative;
  overflow: hidden;
}

/* خلفية زخرفية خفيفة */
.gas-tech-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
}

/* تنسيق كارت العطل */
.gas-fault-card {
  background: rgba(255, 255, 255, 0.03); /* زجاجي غامق */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

/* الهوفر: توهج برتقالي (لون النار) */
.gas-fault-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: #fb8500; /* برتقالي */
  box-shadow: 0 15px 40px rgba(251, 133, 0, 0.15);
}

/* رقم العطل الخلفي */
.fault-num {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  font-family: sans-serif;
  transition: 0.4s;
}

.gas-fault-card:hover .fault-num {
  color: rgba(251, 133, 0, 0.1);
  transform: scale(1.2);
}

/* الأيقونة */
.fault-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fb8500; /* لون الأيقونة */
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

.gas-fault-card:hover .fault-icon {
  background: #fb8500;
  color: #fff;
  box-shadow: 0 0 20px rgba(251, 133, 0, 0.4);
}

/* النصوص */
.fault-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.fault-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--alt-brand-color); /* سماوي للتمييز */
  margin-bottom: 5px;
  margin-top: 15px;
}

.fault-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* كارت الخطر (رقم 5) */
.card-danger-zone {
  border-color: rgba(220, 53, 69, 0.3);
  background: linear-gradient(
    145deg,
    rgba(220, 53, 69, 0.05) 0%,
    transparent 100%
  );
}

.card-danger-zone:hover {
  border-color: #dc3545;
  box-shadow: 0 15px 40px rgba(220, 53, 69, 0.2);
}

.card-danger-zone .fault-icon {
  color: #dc3545;
  animation: danger-pulse 2s infinite;
}

.card-danger-zone:hover .fault-icon {
  background: #dc3545;
  color: #fff;
}

@keyframes danger-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
  }
}

/* --- Installation & Operation Section --- */
.install-guide-section {
  padding: 90px 0;
  background-color: #fff; /* خلفية فاتحة للتباين مع القسم السابق */
  position: relative;
}

/* تنسيق خطوات التركيب (Timeline Style) */
.install-steps-wrapper {
  position: relative;
  padding-right: 20px; /* مسافة للخط الرأسي */
}

/* الخط الرأسي */
.install-steps-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #eee;
}

.install-step-item {
  position: relative;
  padding-right: 40px; /* مسافة للنص بعيداً عن الخط */
  margin-bottom: 40px;
}

/* النقطة/الأيقونة على الخط */
.step-number-icon {
  position: absolute;
  top: 0;
  right: -20px; /* عشان تيجي في نص الخط */
  width: 40px;
  height: 40px;
  background: #fff;
  border: 2px solid var(--brand-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-color);
  z-index: 2;
  transition: 0.3s;
}

.install-step-item:hover .step-number-icon {
  background: var(--brand-color);
  color: #fff;
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.3);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* تنسيق كارت التشغيل (Checklist Card) */
.operation-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #eee;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* شريط زخرفي علوي */
.operation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-color), var(--dark-color));
}

.op-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.op-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.op-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.op-list li:last-child {
  border-bottom: none;
}

.op-icon {
  width: 30px;
  height: 30px;
  background: rgba(40, 167, 69, 0.1); /* أخضر فاتح */
  color: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.op-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .install-steps-wrapper::before {
    right: 15px;
  } /* تعديل مكان الخط في الموبايل */
  .step-number-icon {
    right: -5px;
  }
  .install-step-item {
    padding-right: 60px;
  }
}

/* --- Gas Comparison Section --- */
.gas-compare-section {
  padding: 90px 0;
  background-color: #f9f9f9; /* خلفية فاتحة هادئة */
}

/* كارت المقارنة */
.brand-compare-card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 0; /* البادينج هيكون جوه العناصر */
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.brand-compare-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--brand-color);
}

/* هيدر الكارت (اسم الماركة) */
.compare-header {
  background: var(--dark-color);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.compare-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

/* جسم الكارت */
.compare-body {
  padding: 25px;
}

/* القوائم (مميزات وعيوب) */
.features-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.pro-list,
.con-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.pro-list li,
.con-list li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  position: relative;
  padding-right: 20px;
  color: #555;
}

/* أيقونة المميزات (صح خضراء) */
.pro-list li::before {
  content: "-";
  font-weight: 900;
  position: absolute;
  right: 0;
  color: #28a745;
}

/* أيقونة العيوب (خطأ أحمر) */
.con-list li::before {
  content: "-";
  font-weight: 900;
  position: absolute;
  right: 0;
  color: #dc3545;
}

/* التقييم النهائي */
.verdict-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: auto; /* يزق نفسه لتحت */
}

.verdict-stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.verdict-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0;
}

/* --- صندوق نصيحة الوكيل (Pro Tip Box) --- */
.pro-tip-box {
  margin-top: 60px;
  background: linear-gradient(
    135deg,
    #fff3cd 0%,
    #fff 100%
  ); /* لون ذهبي فاتح */
  border: 1px solid #ffeeba;
  border-right: 5px solid #ffc107;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.15);
}

.tip-icon-large {
  font-size: 3rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.tip-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #856404;
  margin-bottom: 10px;
}

.tip-content {
  color: #856404;
  line-height: 1.8;
  font-size: 1rem;
}

/* --- Gas Golden Tips Section --- */
.gas-tips-section {
  padding: 90px 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

/* خلفية جمالية بسيطة */
.gas-tips-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #f8f9fa 0%, transparent 100%);
  z-index: -1;
}

/* كارت النصيحة */
.tip-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

/* شريط ملون علوي */
.tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--brand-color);
  transition: 0.3s;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.tip-card:hover::before {
  width: 8px; /* يكبر الشريط عند الهوفر */
}

/* الأيقونة */
.tip-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(255, 193, 7, 0.15); /* أصفر ذهبي */
  color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.tip-title-sm {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.tip-desc-sm {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* تمييز النصيحة الأخيرة (الصيانة) */
.maintenance-tip {
  background: linear-gradient(135deg, var(--dark-color) 0%, #2a4a6e 100%);
  color: #fff;
  border: none;
}

.maintenance-tip .tip-title-sm,
.maintenance-tip .tip-desc-sm {
  color: #fff;
}

.maintenance-tip .tip-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.maintenance-tip::before {
  background-color: var(--alt-brand-color);
}

/* --- Gas CTA Section (Brand Color Background) --- */
.gas-cta-section {
  padding: 80px 0;
  /* خلفية متدرجة بلون البراند الأحمر لتعطي فخامة */
  background: linear-gradient(135deg, var(--brand-color) 0%, #c1121f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* زخرفة خلفية خفيفة */
.gas-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title-large {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.cta-desc-large {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* قائمة المميزات السريعة */
.cta-features-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-feat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.cta-feat-item i {
  color: #ffc107; /* أيقونة ذهبية */
  margin-left: 8px;
}

/* صندوق الأرقام الأبيض */
.cta-contact-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item-row:hover {
  color: var(--brand-color);
  transform: translateY(-3px);
}

.contact-icon-circle {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-color);
}

.cta-tagline {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
  margin-top: 20px;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title-large {
    font-size: 1.8rem;
  }
  .cta-contact-box {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .contact-item-row {
    width: 100%;
    justify-content: center;
  }
}

/* --- Electric Why Us Section --- */
.electric-why-section {
  padding: 90px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* خلفية خفيفة جداً (شبكة كهربائية) */
.electric-why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#0077b6 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.elec-feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}

/* تأثير الهوفر الأزرق (كهربائي) */
.elec-feature-card:hover {
  border-color: #0077b6;
  box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
  transform: translateY(-5px);
}

/* الأيقونة */
.elec-icon-wrapper {
  width: 65px;
  height: 65px;
  background: rgba(0, 119, 182, 0.08);
  color: #0077b6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 25px;
  transition: 0.3s;
}

.elec-feature-card:hover .elec-icon-wrapper {
  background: #0077b6;
  color: #fff;
  border-radius: 50%; /* تتحول لدائرة */
}

/* العنوان */
.elec-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.elec-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* تمييز كارت الأمان (رقم 1) */
.safety-first-card {
  border-top: 4px solid #ffc107; /* خط أصفر تحذيري */
}

.safety-first-card .elec-icon-wrapper {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.safety-first-card:hover .elec-icon-wrapper {
  background: #ffc107;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

/* --- Electric Technical Guide Section (Dark Mode) --- */
.elec-tech-section {
  padding: 90px 0;
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

/* خلفية برقية خفيفة */
.elec-tech-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(0, 180, 216, 0.08) 0%,
    transparent 50%
  );
  z-index: 0;
}

/* كارت العطل الكهربائي */
.elec-fault-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

/* الهوفر: توهج أزرق كهربائي */
.elec-fault-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: #00b4d8; /* سماوي */
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.2);
}

/* رقم العطل الخلفي */
.elec-fault-num {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  font-family: sans-serif;
  transition: 0.4s;
}

.elec-fault-card:hover .elec-fault-num {
  color: rgba(0, 180, 216, 0.1);
  transform: scale(1.1);
}

/* الأيقونة */
.elec-fault-icon {
  width: 65px;
  height: 65px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #00b4d8;
  margin-bottom: 20px;
  transition: 0.4s;
}

.elec-fault-card:hover .elec-fault-icon {
  background: #00b4d8;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.5);
}

/* النصوص */
.elec-fault-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.elec-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #caf0f8; /* أبيض مزرق */
  margin-bottom: 5px;
  margin-top: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
  width: fit-content;
}

.elec-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* كروت الخطر (أحمر) - للماس والغليان */
.elec-danger-card {
  border-color: rgba(220, 53, 69, 0.4);
  background: linear-gradient(
    145deg,
    rgba(220, 53, 69, 0.08) 0%,
    transparent 100%
  );
}

.elec-danger-card:hover {
  border-color: #ff0000;
  box-shadow: 0 0 40px rgba(255, 0, 0, 0.2);
}

.elec-danger-card .elec-fault-icon {
  background: rgba(220, 53, 69, 0.1);
  color: #ff4d4d;
  animation: danger-pulse 1.5s infinite;
}

.elec-danger-card:hover .elec-fault-icon {
  background: #ff0000;
  color: #fff;
}

/* --- Electric Comparison Section --- */
.elec-compare-section {
  padding: 90px 0;
  background-color: #f8f9fa; /* رمادي فاتح جداً */
}

/* (نفس تنسيقات كروت الغاز ولكن بأسماء كلاسات جديدة لضمان عدم التداخل) */
/* يمكنك استخدام نفس كلاسات الغاز إذا أردت، لكن يفضل الفصل للتخصيص */

.elec-compare-card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.elec-compare-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.elec-header {
  padding: 20px;
  text-align: center;
  color: #fff;
}

.elec-body {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* القوائم */
.elec-pro-list {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.elec-pro-list li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  position: relative;
  padding-right: 20px;
  color: #555;
}

.elec-pro-list li::before {
  content: "-"; /* علامة صح */
  font-weight: 900;
  position: absolute;
  right: 0;
  color: #28a745;
}

/* التقييم */
.elec-verdict {
  background: #f1f3f5;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: auto;
}

/* صندوق النصيحة الذهبي (نفس ستايل الغاز) */
.tip-box-gold {
  margin-top: 60px;
  background: linear-gradient(135deg, #fff9db 0%, #fff 100%);
  border: 1px solid #ffe066;
  border-right: 5px solid #fcc419;
  border-radius: 15px;
  padding: 30px;
}

/* --- Electric Tips Section (Gradient Style) --- */
.elec-tips-section {
  padding: 90px 0;
  /* التدرج اللوني المطلوب (أزرق كهربائي غني) */
  background: linear-gradient(
    135deg,
    #023e8a 0%,
    var(--brand-color) 50%,
    var(--dark-color) 100%
  );
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* زخرفة خلفية هندسية شفافة */
.elec-tips-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.elec-tips-header {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  text-align: center;
}

.elec-tips-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.elec-tips-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* كارت النصيحة */
.tip-card-elec {
  background: #fff;
  color: var(--dark-color);
  border-radius: 15px;
  padding: 30px 25px;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid transparent;
}

.tip-card-elec:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-bottom-color: #0077b6; /* خط أزرق يظهر تحت عند الهوفر */
}

/* الأيقونة */
.tip-elec-icon {
  width: 55px;
  height: 55px;
  background: rgba(0, 119, 182, 0.1);
  color: #0077b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.tip-card-elec:hover .tip-elec-icon {
  background: #0077b6;
  color: #fff;
  transform: rotate(360deg);
  transition: 0.5s;
}

.tip-elec-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.tip-elec-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* تمييز النصيحة الأولى (عامود الماغنسيوم) */
.magnesium-card {
  border: 2px solid #ffc107;
}

.magnesium-card .tip-elec-icon {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

/* --- Electric CTA Section (Light Style) --- */
.elec-cta-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* رمادي فاتح جداً */
  border-top: 1px solid #e9ecef; /* خط فاصل ناعم */
  text-align: center;
  position: relative;
}

/* عنوان القسم */
.elec-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.elec-cta-desc {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 750px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* قائمة المميزات (شكل أفقي) */
.elec-features-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.elec-feat-badge {
  background: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dee2e6;
}

.elec-feat-badge i {
  color: #28a745; /* صح خضراء */
  font-size: 1.2rem;
}

/* أزرار الاتصال (بتصميم يبرز على الخلفية الفاتحة) */
.elec-contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-dark {
  background-color: var(--dark-color);
  color: #fff;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta-dark:hover {
  background-color: #000;
  transform: translateY(-3px);
  color: #fff;
}

.btn-cta-brand {
  background-color: var(--brand-color); /* أحمر */
  color: #fff;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.2);
}

.btn-cta-brand:hover {
  background-color: #c1121f;
  transform: translateY(-3px);
  color: #fff;
}

.btn-cta-whatsapp {
  background-color: #fff;
  color: #25d366;
  border: 2px solid #25d366;
  padding: 13px 35px; /* أقل شوية عشان البوردر */
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-whatsapp:hover {
  background-color: #25d366;
  color: #fff;
  transform: translateY(-3px);
}

.elec-tagline {
  margin-top: 30px;
  font-weight: 600;
  color: var(--alt-brand-color);
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .elec-cta-title {
    font-size: 1.8rem;
  }
  .elec-contact-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .btn-cta-dark,
  .btn-cta-brand,
  .btn-cta-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================= */
/* Instant Heaters "Why Us" Section Styling  */
/* ========================================= */

.instant-why-section {
  padding: 90px 0;
  background-color: #f4f7f6; /* رمادي مائل للأزرق الفاتح جداً (Tech Vibe) */
  position: relative;
  overflow: hidden;
}

/* خلفية "دائرة إلكترونية" خفيفة جداً */
.instant-why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#2a9d8f 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.1;
}

/* تنسيق الكارت التكنولوجي */
.tech-feature-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid #e1e8ed;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* حركة الهوفر: خط سفلي ملون + رفع الكارت */
.tech-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(42, 157, 143, 0.15); /* ظل تريكواز */
  border-bottom: 4px solid #2a9d8f; /* لون التكنولوجيا */
}

/* الأيقونة (مربعة بحواف دائرية) */
.tech-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(42, 157, 143, 0.1);
  color: #2a9d8f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: 0.4s;
}

.tech-feature-card:hover .tech-icon-box {
  background: #2a9d8f;
  color: #fff;
  transform: scale(1.1);
}

/* العنوان */
.tech-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 15px;
}

/* النص */
.tech-card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* الرقم الخلفي (Design Element) */
.tech-number-bg {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  z-index: -1;
}

/* ========================================= */
/* Instant Technical Guide (Dark Tech Mode)  */
/* ========================================= */

.instant-tech-section {
  padding: 90px 0;
  background-color: #111; /* أسود تقني */
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* خلفية "بوردة إلكترونية" خفيفة */
.instant-tech-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(42, 157, 143, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(42, 157, 143, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* كارت العطل التقني */
.tech-fault-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
}

/* تأثير الهوفر: إضاءة نيون */
.tech-fault-card:hover {
  background: rgba(42, 157, 143, 0.1);
  border-color: #2a9d8f;
  box-shadow: 0 0 20px rgba(42, 157, 143, 0.2);
  transform: translateY(-5px);
}

/* رقم العطل الرقمي */
.tech-num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  font-family: "Courier New", Courier, monospace; /* خط رقمي */
  z-index: -1;
}

.tech-fault-card:hover .tech-num {
  color: rgba(42, 157, 143, 0.2);
}

/* الأيقونة */
.tech-fault-icon {
  width: 60px;
  height: 60px;
  background: rgba(42, 157, 143, 0.15);
  border-radius: 8px; /* حواف مربعة قليلاً */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #2a9d8f;
  margin-bottom: 20px;
  border: 1px solid rgba(42, 157, 143, 0.3);
}

.tech-fault-card:hover .tech-fault-icon {
  background: #2a9d8f;
  color: #fff;
  box-shadow: 0 0 15px #2a9d8f;
}

/* العناوين والنصوص */
.tech-fault-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.tech-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  color: #4db6ac; /* تريكواز فاتح */
  margin-bottom: 8px;
  margin-top: 15px;
}

.tech-desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================= */
/* Instant Tips Section (Split Panel)        */
/* ========================================= */

.instant-tips-section {
  padding: 90px 0;
  background-color: #fff;
}

/* صندوق النصيحة الكبير */
.tips-panel-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
}

/* العمود (قبل الشراء / بعد التركيب) */
.tips-col {
  padding: 50px 40px;
  flex: 1;
  min-width: 300px;
  position: relative;
}

/* تخصيص عمود "قبل الشراء" (أزرق غامق) */
.tips-before {
  background: #1d3557;
  color: #fff;
}

/* تخصيص عمود "بعد التركيب" (تريكواز فاتح) */
.tips-after {
  background: #e0fbfc;
  color: #1d3557;
}

/* عنوان العمود */
.panel-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* القائمة */
.tips-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-checklist li {
  margin-bottom: 25px;
  position: relative;
  padding-right: 35px; /* مسافة للأيقونة */
}

.tips-checklist li:last-child {
  margin-bottom: 0;
}

/* أيقونة القائمة (صح/نقطة) */
.tips-checklist li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 1.2rem;
}

/* أيقونات "قبل الشراء" (لونها أصفر للتحذير) */
.tips-before .tips-checklist li::before {
  content: "\f071"; /* أيقونة تحذير */
  color: #ffc107;
}

/* أيقونات "بعد التركيب" (لونها أخضر للصح) */
.tips-after .tips-checklist li::before {
  content: "\f00c"; /* أيقونة صح */
  color: #2a9d8f;
}

.tip-head {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.tip-body {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85; /* شفافية بسيطة للنص */
}

/* تحسينات الموبايل */
@media (max-width: 768px) {
  .tips-panel-box {
    flex-direction: column;
  }
}

/* ========================================= */
/* Instant FAQ Section Styling               */
/* ========================================= */

.instant-faq-section {
  padding: 90px 0;
  background-color: #fff;
  position: relative;
}

/* تنسيق عنصر الأكورديون المخصص */
.instant-accordion-item {
  border: 1px solid #e9ecef;
  border-right: 5px solid #2a9d8f; /* خط جانبي تريكواز */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.instant-accordion-item:hover {
  box-shadow: 0 5px 15px rgba(42, 157, 143, 0.1);
  transform: translateX(-5px); /* حركة بسيطة لليمين */
}

/* زر السؤال */
.instant-accordion-button {
  background-color: #fff;
  color: #1d3557;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 20px 25px;
  width: 100%;
  text-align: right;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.instant-accordion-button:focus {
  box-shadow: none; /* إلغاء الظل الأزرق الافتراضي */
}

/* حالة السؤال المفتوح */
.instant-accordion-button:not(.collapsed) {
  background-color: rgba(42, 157, 143, 0.05);
  color: #2a9d8f;
}

/* الأيقونة داخل الزر */
.faq-icon-start {
  margin-left: 15px;
  font-size: 1.2rem;
  color: #a8dadc;
  transition: 0.3s;
}

.instant-accordion-button:not(.collapsed) .faq-icon-start {
  color: #2a9d8f;
}

/* جسم الإجابة */
.instant-accordion-body {
  padding: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  border-top: 1px solid #f1f1f1;
}

/* ========================================= */
/* Instant CTA Section Styling               */
/* ========================================= */

.instant-cta-section {
  padding: 80px 0;
  /* تدرج لوني (Teal to Navy) يعبر عن التكنولوجيا */
  background: linear-gradient(135deg, #1d3557 0%, #2a9d8f 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* دوائر خلفية زخرفية */
.instant-cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.instant-cta-section::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.instant-cta-content {
  position: relative;
  z-index: 1;
}

/* العنوان */
.instant-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.instant-cta-desc {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.7;
}

/* قائمة الخدمات السريعة */
.instant-services-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.inst-service-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inst-service-badge i {
  color: #a8dadc; /* لون تريكواز فاتح */
}

/* أزرار الاتصال */
.instant-contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-inst-white {
  background-color: #fff;
  color: #1d3557;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-inst-white:hover {
  background-color: #f1f1f1;
  transform: translateY(-3px);
  color: #1d3557;
}

.btn-inst-outline {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 13px 35px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-inst-outline:hover {
  background-color: #fff;
  color: #1d3557;
  border-color: #fff;
}

.inst-tagline {
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- Branches Page Specific Styles --- */

/* Hero Section */
.branches-hero {
  background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.8)),
    url("https://images.unsplash.com/photo-1569336415962-a4bd9f69cd83?q=80&w=2069&auto=format&fit=crop"); /* صورة خريطة أو مدينة */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}

.branches-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.branches-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Navigation Pills within Page */
.region-nav {
  background: #f8f9fa;
  padding: 15px 0;
  position: sticky;
  top: 0; /* Adjust based on your main navbar height */
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #dee2e6;
}

.region-nav .nav-link {
  color: var(--dark-color);
  font-weight: 700;
  margin: 0 5px;
  border-radius: 50px;
  padding: 8px 20px;
  transition: 0.3s;
}

.region-nav .nav-link:hover,
.region-nav .nav-link.active {
  background-color: var(--brand-color);
  color: #fff;
}

/* Governorate Cards */
.gov-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.gov-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--alt-brand-color);
}

.gov-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 15px;
}

.gov-title i {
  color: var(--brand-color);
}

.areas-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  background: #f1f3f5;
  color: #495057;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.2s;
  border: 1px solid transparent;
}

.area-tag:hover {
  background: var(--dark-color);
  color: #fff;
  cursor: default;
}

/* SEO Content Text Blocks */
.seo-content-block {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  font-size: 1rem;
}

.seo-content-block h3 {
  color: var(--brand-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

/* Map Section */
.coverage-map-box {
  background: var(--dark-color);
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin: 50px 0;
}
