* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tajawal", system-ui, sans-serif;
  direction: rtl;
  background: #f8f9fa;
  color: #2c3e50;
  font-size: 1.05rem;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}

/* ====================== Header ====================== */

.main-header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e7ff;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 54px;
  height: 54px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
}

.logo-text h1 {
  font-size: 1.85rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 3px;
}

.logo-text p {
  font-size: 0.95rem;
  color: #546e7a;
  white-space: nowrap;
}

/* Navigation */

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #37474f;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #1976d2;
}

.btn-contact {
  background: #1976d2;
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 600 !important;
}

.btn-contact:hover {
  background: #1565c0;
  color: white !important;
}

/* Mobile Menu Toggle */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 28px;
  height: 3.5px;
  background: #37474f;
  border-radius: 3px;
  transition: all 0.35s ease;
}

/* Mobile styles */

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 35px 0;
    gap: 18px;
  }

  .main-nav a {
    font-size: 1.18rem;
    padding: 8px 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hamburger animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
} /* ====================== Hero – نسخة محسنة ====================== */
.hero {
  background: linear-gradient(135deg, #f8f5ff 0%, #efe8ff 100%);
  padding: 45px 9px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: right;
}

.hero-content h2 {
  font-size: 3.4rem;
  color: #4a148c;
  margin-bottom: 24px;
}

.hero-content h2 span {
  color: #7b1fa2;
}

.hero-lead {
  font-size: 1.38rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 16px 36px;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-primary {
  background: #7b1fa2;
  color: white;
}

.btn-primary:hover {
  background: #6a1b9a;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid #7b1fa2;
  color: #7b1fa2;
  background: transparent;
}

.btn-outline:hover {
  background: #f3e5f5;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(123, 31, 162, 0.18);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Features (الكروت الثلاثة) */
.features {
  padding: 90px 0;
  background: white;
}

.features h3 {
  text-align: center;
  font-size: 2.6rem;
  color: #4a148c;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #faf5ff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(123, 31, 162, 0.12);
}

.feature-icon {
  font-size: 3.8rem;
  margin-bottom: 24px;
  color: #9c27b0;
}

.feature-card h4 {
  font-size: 1.65rem;
  color: #4a148c;
  margin-bottom: 16px;
}

.feature-link {
  color: #7b1fa2;
  font-weight: 600;
  text-decoration: none;
}

.feature-link:hover {
  text-decoration: underline;
}

/* Why us */
.why-us {
  padding: 80px 0;
  background: #f8f5ff;
}

.why-us h3 {
  text-align: center;
  font-size: 2.5rem;
  color: #4a148c;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.why-item {
  background: white;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.why-item h4 {
  font-size: 1.45rem;
  color: #7b1fa2;
  margin-bottom: 12px;
}

/* Final CTA */
.cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, #7b1fa2, #4a148c);
  color: white;
  text-align: center;
}

.cta-final h3 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  opacity: 0.95;
}

.btn-primary-large {
  padding: 20px 48px;
  font-size: 1.35rem;
  background: white;
  color: #7b1fa2;
  border: none;
}

.btn-primary-large:hover {
  background: #f3e5f5;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-img {
    max-width: 520px;
    margin: 40px auto 0;
  }
} /* ====================== Symptoms Section ====================== */
.symptoms-section {
  padding: 90px 0;
  background: #f8f5ff;
}

.symptoms-section h3 {
  text-align: center;
  font-size: 2.7rem;
  color: #4a148c;
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
}

.stage-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 6px 22px rgba(123, 31, 162, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.stage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(123, 31, 162, 0.15);
}

.stage-header {
  margin-bottom: 24px;
  text-align: center;
}

.stage-label {
  display: inline-block;
  background: #7b1fa2;
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.early .stage-label {
  background: #9c27b0;
}
.middle .stage-label {
  background: #7b1fa2;
}
.late .stage-label {
  background: #4a148c;
}

.stage-card h4 {
  font-size: 1.4rem;
  color: #555;
  margin: 0;
}

.symptoms-list {
  list-style: none;
  margin-bottom: 20px;
}

.symptoms-list li {
  margin-bottom: 12px;
  padding-right: 24px;
  position: relative;
  font-size: 1.08rem;
  color: #333;
}

.symptoms-list li::before {
  content: "•";
  color: #7b1fa2;
  font-size: 1.6rem;
  position: absolute;
  right: 0;
  top: -2px;
}

.note {
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 20px;
}

.warning-box {
  background: #fff3e0;
  border-right: 5px solid #ff9800;
  padding: 25px;
  margin: 50px auto 0;
  max-width: 800px;
  border-radius: 8px;
  font-size: 1.15rem;
  color: #5d4037;
  text-align: center;
} /* ──────────────────────────────────────────────
   قسم تذكير المواعيد
─────────────────────────────────────────────── */

.section-reminder {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.section-main-title {
  text-align: center;
  font-size: 2.5rem;
  color: #4a148c;
  margin-bottom: 12px;
}

.section-description {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 45px;
  font-size: 1.18rem;
  color: #555;
  line-height: 1.6;
}

.reminder-form-box {
  max-width: 560px;
  margin: 0 auto 60px;
}

.reminder-form {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(106, 27, 154, 0.1);
}

.input-row {
  margin-bottom: 22px;
}

.input-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #4a148c;
}

.input-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1c4e9;
  border-radius: 8px;
  font-size: 1.05rem;
}

.input-row input:focus {
  border-color: #7b1fa2;
  box-shadow: 0 0 0 3px rgba(123, 31, 162, 0.15);
  outline: none;
}

.btn-add {
  background: #7b1fa2;
  color: white;
  width: 100%;
  border: none;
}

.btn-add:hover {
  background: #6a1b9a;
}

.reminder-list-box {
  max-width: 720px;
  margin: 0 auto;
}

.list-title {
  font-size: 1.85rem;
  color: #7b1fa2;
  text-align: center;
  margin-bottom: 20px;
}

.reminder-items .reminder-item {
  background: #faf5ff;
  padding: 16px 20px;
  margin-bottom: 14px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.reminder-item .delete-reminder {
  background: #ef5350;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.empty-message {
  text-align: center;
  color: #777;
  font-size: 1.15rem;
  padding: 50px 0;
}

.notification-control {
  text-align: center;
  margin-top: 50px;
}

.btn-notify {
  background: #4caf50;
  margin-bottom: 15px;
  color: white;
  border: none;
}

.status-text {
  font-weight: bold;
  color: #555;
}
/* قسم القصص */
.section-stories {
  padding: 80px 0;
  background: #ffffff;
}

.section-main-title {
  text-align: center;
  font-size: 2.6rem;
  color: #4a148c;
  margin-bottom: 16px;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.stories-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.story-item {
  margin-bottom: 16px;
  border: 1px solid #e0d4ff;
  border-radius: 12px;
  overflow: hidden;
}

.story-toggle {
  width: 100%;
  padding: 20px 24px;
  background: #f8f5ff;
  border: none;
  text-align: right;
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a148c;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.story-toggle:hover {
  background: #efe8ff;
}

.story-toggle i {
  transition: transform 0.3s;
}

.story-item.active .story-toggle i {
  transform: rotate(180deg);
}

.story-content {
  display: none;
  padding: 0 24px 24px;
  background: white;
}

.story-item.active .story-content {
  display: block;
}

.story-content p {
  margin-bottom: 16px;
  font-size: 1.08rem;
  color: #444;
  line-height: 1.7;
}

.story-source {
  font-style: italic;
  color: #777;
  font-size: 0.98rem;
  text-align: left;
  margin-top: 16px;
} /* ====================== نصائح الرعاية ====================== */
.section-care-tips {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
}

.section-main-title {
  text-align: center;
  font-size: 2.6rem;
  color: #4a148c;
  margin-bottom: 12px;
}

.section-description {
  text-align: center;
  font-size: 1.22rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 55px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.tip-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(123, 31, 162, 0.09);
  text-align: center;
  transition: transform 0.3s;
}

.tip-card:hover {
  transform: translateY(-8px);
}

.tip-icon {
  font-size: 3.2rem;
  margin-bottom: 18px;
}

.tip-card h3 {
  font-size: 1.55rem;
  color: #4a148c;
  margin-bottom: 14px;
}

.tip-card p {
  color: #444;
  line-height: 1.65;
  font-size: 1.05rem;
}

.important-note {
  background: #fff3e0;
  border-right: 6px solid #ff9800;
  padding: 25px;
  margin: 60px auto 0;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15rem;
  color: #5d4037;
} /* ====================== روتين يومي ====================== */
.section-daily-routine {
  padding: 80px 0;
  background: #f8f5ff;
}

.section-main-title {
  text-align: center;
  font-size: 2.6rem;
  color: #4a148c;
  margin-bottom: 12px;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 50px;
}

.routine-box {
  margin-bottom: 50px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(123, 31, 162, 0.1);
}

.routine-stage {
  font-size: 1.7rem;
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.earlye {
  background: #9c27b0;
}
.middlee {
  background: #7b1fa2;
}
.latee {
  background: #4a148c;
}

.routine-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.routine-table th,
.routine-table td {
  padding: 16px;
  text-align: right;
  border-bottom: 1px solid #eee;
}

.routine-table th {
  background: #f3e5f5;
  color: #4a148c;
  font-weight: 600;
}

.routine-table tr:hover {
  background: #faf5ff;
}

.routine-note {
  background: #fff3e0;
  border-right: 6px solid #ff9800;
  padding: 25px;
  margin: 40px auto 0;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15rem;
  color: #5d4037;
} /* ====================== موارد مفيدة ====================== */
.section-resources {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.section-main-title {
  text-align: center;
  font-size: 2.6rem;
  color: #4a148c;
  margin-bottom: 12px;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 50px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.resource-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(123, 31, 162, 0.09);
  text-align: center;
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-8px);
}

.resource-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  color: #7b1fa2;
}

.resource-card h3 {
  font-size: 1.5rem;
  color: #4a148c;
  margin-bottom: 14px;
}

.resource-card p {
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
}

.resource-link {
  display: inline-block;
  background: #7b1fa2;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.resource-link:hover {
  background: #6a1b9a;
}

.resources-note {
  background: #e8f5e9;
  border-right: 6px solid #4caf50;
  padding: 25px;
  margin: 60px auto 0;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15rem;
  color: #2e7d32;
} /* ====================== قصص نجاح ====================== */
.section-success-stories {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.section-main-title {
  text-align: center;
  font-size: 2.6rem;
  color: #4a148c;
  margin-bottom: 12px;
}

.section-description {
  text-align: center;
  font-size: 1.2rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto 50px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.story-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 22px rgba(123, 31, 162, 0.09);
  transition: transform 0.3s;
}

.story-card:hover {
  transform: translateY(-8px);
}

.story-header h3 {
  font-size: 1.45rem;
  color: #4a148c;
  margin-bottom: 16px;
  min-height: 50px;
}

.story-body p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.story-source {
  font-style: italic;
  color: #777;
  font-size: 0.98rem;
  text-align: left;
  margin-top: 16px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.stories-note {
  background: #e8f5e9;
  border-right: 6px solid #43a047;
  padding: 25px;
  margin: 60px auto 0;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15rem;
  color: #2e7d32;
} /* =============================================
   قسم تواصل – تصميم مظبوط ومريح جدًا
============================================= */

.contact-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f9f6ff 0%, #ffffff 100%);
}

.contact-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.contact-header h2 {
  font-size: 2.8rem;
  color: #4a148c;
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-form-wrapper {
  background: white;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(74, 20, 140, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #4a148c;
  font-size: 1.08rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #d1c4e9;
  border-radius: 10px;
  font-size: 1.08rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1976d2;
  box-shadow: 0 0 0 4px rgba(25, 118, 210, 0.15);
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: #1976d2;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
}

.success-message {
  background: #e8f5e9;
  border-radius: 16px;
  padding: 45px 35px;
  text-align: center;
  color: #2e7d32;
}

.success-message i {
  font-size: 4.5rem;
  margin-bottom: 20px;
}

.success-message h4 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.contact-info-box {
  background: #f8f5ff;
  padding: 45px;
  border-radius: 20px;
}

.contact-info-box h3 {
  color: #4a148c;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 22px;
  border-radius: 14px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.contact-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.contact-link.whatsapp {
  border-right: 5px solid #25d366;
}
.contact-link.email {
  border-right: 5px solid #1976d2;
}
.contact-link.facebook {
  border-right: 5px solid #1877f2;
}

.contact-link i {
  font-size: 2.8rem;
  width: 60px;
  text-align: center;
}

.contact-link span {
  font-size: 1.15rem;
  font-weight: 500;
}

.note {
  margin-top: 35px;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
} /* ====================== سكشن الزهايمر – شرح كامل ====================== */
.alzheimer-section {
  padding: 40px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #4a148c;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.content-card {
  background: #faf9ff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(74, 20, 140, 0.08);
  margin-bottom: 50px;
}

.content-card h3 {
  color: #6a1b9a;
  font-size: 1.8rem;
  margin: 30px 0 16px;
}

.symptoms-grid,
.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.symptom-item,
.stage {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stage h4 {
  font-size: 1.4rem;
  color: #4a148c;
  margin-bottom: 12px;
}

.check-list {
  list-style: none;
  padding-right: 0;
}

.check-list li {
  margin-bottom: 14px;
  padding-right: 30px;
  position: relative;
}

.check-list li::before {
  content: "✔";
  color: #43a047;
  position: absolute;
  right: 0;
  font-size: 1.4rem;
}

.highlight-box {
  background: #e8f5e9;
  border-right: 6px solid #43a047;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  font-size: 1.12rem;
  color: #2e7d32;
}
/* ──────────────────────────────────────────────
   فوتر بسيط جدًا
─────────────────────────────────────────────── */

.simple-footer {
  background: #2e0d5c;
  color: #d1c4ff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
  font-size: 0.98rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.copyright {
  margin-bottom: 12px;
  font-weight: 500;
}

.disclaimer {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c9a8ff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-links span {
  color: #7a5ab8;
}.share-box {
  text-align: center;
  padding: 40px 0;
  background: #f8f5ff;
  border-radius: 16px;
  margin: 60px 0;
}

.share-box p {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #4a148c;
}

.share-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877f2; }

.share-btn:hover {
  transform: scale(1.05);
}