/* =========================
   Areas Section
========================= */

.areas {
  padding: 80px 0;
}

.areas-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.area-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  border-color: #e60000;
}

.area-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.area-card p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 20px;
}

.area-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.area-card h3 i {
  color: var(--primary-color);
  margin-left: 10px;
  font-size: 22px;
}

/* =========================
   Area Card
========================= */

.area-card {
  display: flex;
  flex-direction: column;
}

.area-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.area-card p {
  text-align: center;
  min-height: 60px;
}

.area-buttons {
  margin-top: auto;
}

.btn-details {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  width: 100%;

  height: 54px;

  padding: 0 20px;

  border-radius: 14px;

  background: linear-gradient(135deg, #e00000, #b00000) !important;

  color: #fff !important;

  border: none;

  text-decoration: none;

  font-size: 16px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-details:hover {
  transform: translateY(-2px);

  background: linear-gradient(135deg, #ff1a1a, #c40000) !important;

  color: #fff !important;
}

.btn-details:focus-visible {
  outline: 2px solid #fff;

  outline-offset: 3px;
}

.btn-call {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  width: 100%;

  height: 54px;

  padding: 0 20px;

  border-radius: 14px;

  background: linear-gradient(135deg, #e00000, #b00000);

  color: #fff;

  text-decoration: none;

  font-weight: 700;

  transition: all 0.3s ease;
}

.btn-call:hover {
  transform: translateY(-2px);

  color: #fff;

  background: linear-gradient(135deg, #ff1a1a, #c40000);
}

.btn-call i {
  font-size: 16px;
}

.btn-call,
.btn-call:link,
.btn-call:visited {
  color: #fff;
  background: linear-gradient(135deg, #e00000, #b00000);
}

.btn-call:hover,
.btn-call:focus,
.btn-call:active {
  color: #fff;
  background: linear-gradient(135deg, #ff1a1a, #c40000);
}

/* ========================================
   Hero Features
======================================== */

.hero-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;

  margin: 20px 0 28px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px 18px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 0.95rem;
  font-weight: 600;

  transition: 0.3s;
}

.hero-feature:hover {
  transform: translateY(-3px);

  background: rgba(220, 38, 38, 0.18);

  border-color: #dc2626;
}

.hero-feature i {
  color: #dc2626;

  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-feature {
    width: 100%;
    justify-content: center;
    padding: 12px 10px;

    font-size: 0.9rem;
  }
}

/* ========================================
   About Area
======================================== */

.about-area {
  padding: 80px 0;

  background: #111;
}

.about-area .section-title {
  text-align: center;

  max-width: 800px;

  margin: 0 auto 40px;
}

.about-area .section-title span {
  color: #dc2626;

  font-weight: 700;

  display: block;

  margin-bottom: 10px;
}

.about-area .section-title h2 {
  color: #fff;

  font-size: 2rem;

  margin-bottom: 20px;
}

.about-area .section-title p,
.about-area-content p {
  color: #d1d5db;

  line-height: 2;

  font-size: 1.05rem;
}

.about-area-content {
  max-width: 900px;

  margin: auto;
}

.about-area-content p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about-area {
    padding: 60px 0;
  }

  .about-area .section-title h2 {
    font-size: 1.6rem;
  }
}

.submenu-all {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 12px;
}

.submenu-all a {
  color: var(--primary-color);
  font-weight: 700;
}

.submenu-all a:hover {
  transform: translateX(-4px);
}

/* ===== Why Us ===== */

.why-us {
  background: #151515;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 45px;
}

.why-card {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
}

.why-card i {
  font-size: 34px;
  color: var(--primary-color);
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.why-card p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 15px;
}

/*=========================
      Streets Section
=========================*/

.streets {
  background: #151515;
}

.street-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.street-tags span {
  background: #242424;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
}

.street-tags span:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/*=========================
      How It Works
=========================*/

.how-it-works {
  background: #111;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.step-card {
  position: relative;
  background: #1b1b1b;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.35s;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.step-number {
  position: absolute;
  top: 15px;
  left: 15px;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: var(--primary-color);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 700;
}

.step-card i {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.step-card h3 {
  color: #fff;
  margin-bottom: 15px;
}

.step-card p {
  color: #cfcfcf;
  line-height: 1.8;
}

/*=========================
        FAQ
=========================*/

.faq-section {
  background: #151515;
}

.faq-container {
  max-width: 900px;
  margin: 45px auto 0;
}

.faq-item {
  background: #202020;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
  color: #fff;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 20px 20px;
  color: #d0d0d0;
  line-height: 1.9;
}

.faq-item[open] {
  border-color: var(--primary-color);
}

/*=========================
        CTA
=========================*/

.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #111, #1c1c1c);
}

.cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;

  background: #1d1d1d;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  padding: 60px 35px;
}

.cta-badge {
  display: inline-block;

  background: rgba(220, 38, 38, 0.15);

  color: var(--primary-color);

  padding: 8px 18px;

  border-radius: 999px;

  font-weight: 700;

  margin-bottom: 20px;
}

.cta-box h2 {
  color: #fff;

  font-size: 38px;

  margin-bottom: 20px;
}

.cta-box p {
  color: #cfcfcf;

  max-width: 650px;

  margin: auto;

  line-height: 1.9;

  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  width: 100%;
  height: 54px;

  padding: 0 20px;

  border-radius: 14px;

  background: #25d366 !important;
  color: #fff !important;

  text-decoration: none;

  font-weight: 700;

  transition: 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);

  background: #1ebe5d;

  color: #fff;

  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:visited,
.btn-whatsapp:active,
.btn-whatsapp:focus {
  color: #fff;
}

.btn-whatsapp,
.btn-whatsapp:link,
.btn-whatsapp:visited,
.btn-whatsapp:hover,
.btn-whatsapp:active,
.btn-whatsapp:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  min-width: 220px;
  padding: 0.75rem 1.5rem;

  border-radius: 14px;

  background: #25d366 !important;
  color: #fff !important;

  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d !important;
}

/* ==========================
   Areas Categories
========================== */

.areas-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 60px 0 25px;
  padding-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 2px solid rgba(230, 0, 0, 0.25);
}

.areas-category-title i {
  color: var(--primary-color);
  font-size: 1.4rem;
}

.areas-category-title:first-of-type {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .areas-category-title {
    font-size: 1.5rem;
    margin: 45px 0 20px;
  }
}

/* ==========================
   Stats Section
========================== */

.stats-section {
  padding: 70px 0;
  background: #111;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat-card {
  background: #1b1b1b;
  border: 1px solid rgba(230, 0, 0, 0.15);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-card h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-card p {
  color: #bbb;
  margin: 0;
}

/* ==========================
   Breadcrumb
========================== */

.breadcrumb-section {
  background: #161616;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  color: #bbb;
  font-size: 0.95rem;
}

.breadcrumb-list a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb-list a:hover {
  color: var(--primary-color);
}

.breadcrumb-list i {
  margin-left: 6px;
  color: var(--primary-color);
}

/* ==========================
   FAQ
========================== */

.faq-section {
  padding: 80px 0;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: left;
  color: var(--primary-color);
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 20px;
  color: #bbb;
  line-height: 1.8;
}

/* ==========================
   Back To Top
========================== */

/* ==========================
   Floating Buttons
========================== */

#backToTop {
  position: fixed;
  left: 20px;
  bottom: 145px; /* فوق الاتصال والواتساب */

  width: 52px;
  height: 52px;

  border-radius: 50%;
  border: none;

  background: var(--primary-color);
  color: #fff;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 20px;

  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition:
    opacity 0.3s,
    transform 0.3s,
    background 0.3s;

  z-index: 999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: #ff2424;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  #backToTop {
    left: 15px;
    bottom: 135px;

    width: 48px;
    height: 48px;

    font-size: 18px;
  }
}
