/* ===============================
   Base
================================ */
.cs-landing {
  font-family: 'Cairo', sans-serif;
  background: #F8FAFC;
  padding-bottom: 60px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

/* Container */
.cs-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ===============================
   Breadcrumb
================================ */
.cs-breadcrumb {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 20px;
  font-size: 14px;
}

.cs-breadcrumb a {
  color: #1F7A8C;
  text-decoration: none;
  font-weight: 500;
}

/* ===============================
   Hero
================================ */
.cs-hero {
  position: relative;
  background: linear-gradient(rgba(31,122,140,0.23), rgba(47,175,116,0.85)),
              url('/moit_p/modules/custom/complaint_system/images/moit_cs_hero1.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

/* الإطار الداخلي */
.cs-hero::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  bottom: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 10px;
  pointer-events: none;
}

.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 122, 140, 0.75);
}

.cs-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cs-hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cs-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===============================
   Info
================================ */

.cs-info {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333;
  font-size: 14px;
  background: rgba(47, 175, 116, 0.08);
  padding: 12px 15px;
  border-radius: 8px;
  border-right: 4px solid #2FAF74;
}

/* ===============================
   Stats
================================ */
.cs-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cs-stat-box {
  background: #fff;
  padding: 20px;
  width: 200px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cs-stat-number {
  font-size: 26px;
  font-weight: bold;
  color: #1F7A8C;
}

.cs-stat-label {
  font-size: 14px;
  color: #666;
}

/* ===============================
   Actions
================================ */
.cs-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.cs-card {
  background: #fff;
  padding: 25px;
  width: 280px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s;
}

.cs-card:hover {
  transform: translateY(-5px);
}

.cs-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Inputs */
.cs-input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Buttons */
.cs-btn-primary {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background: #1F7A8C;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

.cs-btn-success {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  background: #2FAF74;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* ===============================
   Steps
================================ */
.cs-steps {
  margin-top: 60px;
  text-align: center;
}

.cs-steps-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cs-steps-grid div {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ===============================
   Related
================================ */
.cs-related {
  margin-top: 50px;
  text-align: center;
}

.cs-related-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.cs-related-grid a {
  padding: 10px 15px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #1F7A8C;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

/* ===============================
   Mobile
================================ */
@media (max-width: 768px) {

  .cs-hero {
    padding: 50px 15px;
  }

  .cs-hero h1 {
    font-size: 24px;
  }

  .cs-hero p {
    font-size: 14px;
  }

  .cs-card {
    width: 100%;
    max-width: 320px;
  }

  .cs-steps-grid {
    flex-direction: column;
    align-items: center;
  }

}

.cs-stat-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.cs-stat-box:hover {
  transform: translateY(-4px);
}

#cs-start {
  scroll-margin-top: 70px; /* عدل الرقم حسب ارتفاع الترويسة */
}