:root {
  --teal: #0e7490;
  --teal-dark: #0a5f75;
  --green: #5ab830;
  --green-dark: #3d8a1f;
  --white: #ffffff;
  --light: #f0faf4;
  --gray: #f5f5f5;
  --text: #1a1a1a;
  --text-light: #555;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', Arial, sans-serif;
  direction: rtl;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 55px; width: auto; }

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover, nav a.active { color: var(--teal); }

.header-cta {
  background: var(--green);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  transition: background 0.2s !important;
}

.header-cta:hover { background: var(--green-dark) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--green) 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 32px;
  opacity: 0.92;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid #fff;
  cursor: pointer;
  transition: 0.2s;
  display: inline-block;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== SECTIONS ===== */
section { padding: 64px 20px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background: var(--green);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.13); }

.card-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.card p { font-size: 15px; color: var(--text-light); }

/* ===== STATS ===== */
.stats-bar {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 40px 20px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--green);
}

.stat-label { font-size: 15px; opacity: 0.9; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-right: 4px solid var(--green);
}

.stars { color: #f59e0b; font-size: 20px; margin-bottom: 12px; }

.testimonial p { font-size: 15px; color: var(--text); margin-bottom: 14px; font-style: italic; }

.testimonial-author { font-weight: 700; color: var(--teal-dark); font-size: 14px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}

.cta-band h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 800; margin-bottom: 12px; }

.cta-band p { font-size: 17px; margin-bottom: 28px; opacity: 0.92; }

.btn-white {
  background: #fff;
  color: var(--green-dark);
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: 700;
  display: inline-block;
  transition: 0.2s;
}

.btn-white:hover { background: var(--gray); transform: translateY(-2px); }

/* ===== ACCORDION FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  text-align: right;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Heebo', Arial, sans-serif;
}

.faq-q .arrow { font-size: 20px; transition: 0.3s; }

.faq-q.open .arrow { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-a.open { display: block; }

/* ===== TABLE ===== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 15px;
}

.price-table th {
  background: var(--teal);
  color: #fff;
  padding: 14px 18px;
  text-align: right;
  font-weight: 700;
}

.price-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}

.price-table tr:nth-child(even) td { background: var(--light); }

.price-table tr:hover td { background: #e6f7ee; }

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--teal-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Heebo', Arial, sans-serif;
  direction: rtl;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { min-height: 130px; resize: vertical; }

.contact-info h3 { font-size: 22px; color: var(--teal-dark); margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

/* ===== ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.article-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}

.article-card:hover { transform: translateY(-4px); }

.article-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.article-body { padding: 24px; }

.article-tag {
  display: inline-block;
  background: var(--light);
  color: var(--teal);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.article-body h3 { font-size: 18px; color: var(--teal-dark); margin-bottom: 10px; line-height: 1.4; }

.article-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }

.read-more { color: var(--teal); font-weight: 700; font-size: 14px; }

/* ===== FOOTER ===== */
footer {
  background: #0a2a35;
  color: #ccc;
  padding: 48px 20px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand img { height: 50px; margin-bottom: 14px; filter: brightness(0) invert(1); }

.footer-brand p { font-size: 14px; line-height: 1.8; opacity: 0.8; }

.footer-col h4 {
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a { font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }

.footer-col ul li a:hover { opacity: 1; color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
  text-decoration: none;
}

.wa-float:hover { transform: scale(1.1); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray);
  padding: 12px 20px;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb a { color: var(--teal); }

.breadcrumb span { margin: 0 6px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  padding: 56px 20px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 12px; }

.page-hero p { font-size: 17px; opacity: 0.9; max-width: 560px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 72px; right: 0; left: 0; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 20px; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
  .burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 56px 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ===== BG ALT ===== */
.bg-light { background: var(--light); }
.bg-gray { background: var(--gray); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--light);
  border: 1px solid #b7e4c7;
  border-radius: var(--radius);
  padding: 28px;
  margin: 24px 0;
}

.highlight-box h3 { color: var(--teal-dark); margin-bottom: 10px; }

/* ===== CHECK LIST ===== */
.check-list { list-style: none; }

.check-list li {
  padding: 8px 0;
  padding-right: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: var(--green);
  font-weight: 900;
}

/* ===== TWO COL ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}
