@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --dark:  #1a3a16;
  --mid:   #4a7a46;
  --light: #7ab876;
  --bg:    #f0faf0;
  --white: #ffffff;
  --gray:  #6b7280;
  --border:#e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Utilities ─────────────────────────────────────────── */
.container { max-width: 480px; margin: 0 auto; padding: 0 16px; }
.text-center { text-align: center; }
.font-black { font-weight: 900; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-main {
  display: block;
  width: 100%;
  background: var(--mid);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  padding: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition: background .2s, transform .1s;
  animation: pulse-green 2s ease-in-out infinite;
}
.btn-main:hover { background: #3a6a36; transform: translateY(-1px); }
.btn-small {
  background: var(--mid);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s;
}
.btn-small:hover { background: #3a6a36; }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,122,70,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(74,122,70,0); }
}

/* ── Sticky Header ──────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,58,22,.12);
}
#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
#site-header .logo { height: 52px; width: auto; }

/* Header actions group */
.header-actions { display: flex; align-items: center; gap: 8px; }

/* "من نحن" text button */
.btn-about {
  background: none;
  border: 1.5px solid var(--mid);
  color: var(--mid);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  padding: 7px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-about:hover { background: var(--mid); color: var(--white); }

/* ── Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 22px 22px;
  max-width: 400px;
  width: 100%;
  position: relative;
  transform: translateY(20px);
  transition: transform .25s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #f3f4f6;
  border: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: background .2s;
}
.modal-close:hover { background: #e5e7eb; }
.modal-logo { height: 48px; width: auto; margin: 0 auto 16px; }
.modal-box h2 { font-size: 1.2rem; font-weight: 900; text-align: center; margin-bottom: 14px; color: var(--dark); }
.modal-box p  { font-size: .85rem; color: var(--gray); line-height: 1.75; margin-bottom: 10px; text-align: center; }

/* ── Social links ───────────────────────────────────────── */
.modal-social,
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.social-link:hover { opacity: .85; transform: translateY(-1px); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link.facebook  { background: #1877f2; color: var(--white); }
.social-link.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.social-link.tiktok    { background: #010101; color: var(--white); }

/* Footer social spacing */
.footer-social { margin-bottom: 18px; }

/* ── Announcement bar ───────────────────────────────────── */
.announce-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 8px 12px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
  padding: 28px 0 20px;
}
.hero h1 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero h1 span { color: var(--mid); }
.hero p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(122,184,118,.4);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: .78rem;
  font-weight: 700;
}
.hero-bullet .check { color: var(--mid); font-size: 1rem; }
.hero-img-wrap {
  position: relative;
  margin-bottom: 20px;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: rgba(122,184,118,.2);
  border-radius: 50%;
  filter: blur(30px);
}
.hero-img-wrap img {
  position: relative;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(26,58,22,.15);
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: .72rem;
  color: var(--gray);
}

/* ── Before/After ───────────────────────────────────────── */
.ba-section { padding: 32px 0; background: var(--white); }
.ba-section h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.ba-section .sub { color: var(--mid); font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.ba-section .note { color: #9ca3af; font-size: .72rem; margin-bottom: 20px; }
.ba-cards { display: flex; flex-direction: column; gap: 14px; }
.ba-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(122,184,118,.35);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.ba-card img { width: 100%; display: block; }
.ba-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.ba-badge.beard { background: var(--mid); }
.ba-badge.scalp { background: var(--dark); }
.ba-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,58,22,.85), transparent);
  color: var(--white);
  font-size: .72rem;
  padding: 18px 12px 10px;
}

/* ── Offers section ─────────────────────────────────────── */
.offers-section { background: var(--bg); padding: 28px 0; }
.badge-bestseller {
  display: inline-block;
  background: #f97316;
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.offers-section h2 { font-size: 1.1rem; font-weight: 900; margin-bottom: 14px; }
.countdown-box {
  background: var(--dark);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}
.countdown-box p { color: var(--white); font-size: .75rem; margin-bottom: 4px; }
.countdown-box .timer {
  color: var(--light);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 3px;
  direction: ltr;
}

/* Price + rating row */
.price-rating-row {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.price-main { font-size: 1.8rem; font-weight: 900; }
.price-old   { font-size: .78rem; color: #9ca3af; text-decoration: line-through; margin-right: 6px; }
.discount-badge {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 2px;
}
.stars { display: flex; gap: 2px; justify-content: flex-end; margin-bottom: 2px; }
.star { font-size: .9rem; }
.star.filled { color: #facc15; }
.star.empty  { color: #d1d5db; }
.rating-count { font-size: .7rem; color: #9ca3af; text-align: left; direction: ltr; }

/* Offer cards */
.offer-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.offer-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.offer-card.selected { border-color: var(--mid); background: #f0faf0; }
.offer-card .popular-label {
  position: absolute;
  top: -11px;
  left: 12px;
  background: var(--mid);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}
.offer-left { display: flex; align-items: center; gap: 10px; }
.radio-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.offer-card.selected .radio-dot { border-color: var(--mid); background: var(--mid); }
.radio-dot::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  transition: opacity .2s;
}
.offer-card.selected .radio-dot::after { opacity: 1; }
.offer-label { font-size: .85rem; font-weight: 700; color: var(--dark); }
.offer-right { text-align: left; }
.offer-price { font-weight: 900; font-size: .95rem; color: var(--dark); white-space: nowrap; }
.offer-old   { font-size: .72rem; color: #9ca3af; text-decoration: line-through; }
.offer-free-ship { font-size: .72rem; color: var(--mid); font-weight: 700; }

/* ── Order form ─────────────────────────────────────────── */
.order-form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 20px 18px;
  box-shadow: 0 4px 24px rgba(26,58,22,.1);
  border: 1px solid rgba(122,184,118,.2);
  margin-bottom: 14px;
}
.order-form-card h3 {
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark);
}
.form-group { margin-bottom: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Cairo', sans-serif;
  font-size: .88rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
  color: var(--dark);
  direction: rtl;
}
.form-group input[dir="ltr"] { direction: ltr; text-align: left; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--mid); }
.form-group textarea { resize: none; }
.error-msg { color: #dc2626; font-size: .72rem; margin-top: 4px; display: none; }
.error-msg.show { display: block; }

.shipping-total {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(122,184,118,.2);
  margin-bottom: 16px;
}
.shipping-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  margin-bottom: 8px;
}
.shipping-row .label { color: var(--gray); }
.shipping-row .value { font-weight: 700; color: var(--dark); }
.shipping-row .value.free { color: var(--mid); }
.shipping-note { font-size: .72rem; color: var(--mid); margin-bottom: 10px; display: none; }
.total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(122,184,118,.2);
  padding-top: 10px;
  font-weight: 900;
}
.total-row .total-val { font-size: 1.2rem; color: var(--mid); }
.form-privacy { text-align: center; font-size: .7rem; color: #9ca3af; margin-top: 8px; }

/* Success */
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success .check-icon { font-size: 3.5rem; margin-bottom: 12px; }
.form-success h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: .85rem; }

/* Trust badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 14px;
}
.trust-badge {
  background: var(--white);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border: 1px solid var(--border);
}
.trust-badge .icon { font-size: 1.4rem; margin-bottom: 4px; }
.trust-badge p { font-size: .68rem; font-weight: 700; color: var(--dark); }

/* ── Features ───────────────────────────────────────────── */
.features-section { background: var(--white); padding: 36px 0; }
.features-section .section-title { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.features-section .section-sub { color: var(--mid); font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.features-section .section-desc {
  color: var(--gray);
  font-size: .82rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
/* ── Eyebrow label ───────────────────────────────────── */
.section-eyebrow {
  font-size: .7rem; font-weight: 700; color: var(--mid);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px;
}

/* ── Feature image cards (new layout) ───────────────── */
.feature-img-cards { display: flex; flex-direction: column; gap: 14px; }

.feature-img-card {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(122,184,118,.25);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.feature-img-card img {
  width: 110px;
  flex-shrink: 0;
  object-fit: cover;
}
.fic-text {
  padding: 12px 12px 12px 8px;
  flex: 1;
  background: #f8fdf8;
}
.fic-text h3 { font-size: .82rem; font-weight: 900; color: var(--dark); margin-bottom: 5px; line-height: 1.35; }
.fic-text p  { font-size: .72rem; color: var(--gray); line-height: 1.55; margin-bottom: 8px; }
.fic-text .feature-bullets { margin: 0; }
.fic-text .feature-bullets li { font-size: .7rem; }

/* ── WhatsApp Phone mockup ───────────────────────────── */
.wa-phone-wrap { display: flex; justify-content: center; margin: 0 auto 6px; }

.wa-phone {
  width: 260px;
  border-radius: 32px;
  border: 5px solid #111;
  background: #111;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  overflow: hidden;
}
.wa-phone-notch {
  height: 10px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-phone-notch::after {
  content: '';
  width: 56px; height: 5px;
  background: #333;
  border-radius: 4px;
}

/* WA header */
.wa-header {
  background: #075e54;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
}
.wa-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  font-size: .7rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-contact { flex: 1; }
.wa-name    { display: block; color: #fff; font-size: .7rem; font-weight: 700; line-height: 1.1; }
.wa-status  { display: block; color: #a7e3b0; font-size: .62rem; }
.wa-call-icon { width: 14px; height: 14px; color: rgba(255,255,255,.7); flex-shrink: 0; }

/* WA chat */
.wa-chat {
  background: #e5ddd5;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 220px;
}
.wa-bubble {
  max-width: 82%;
  background: #fff;
  border-radius: 14px;
  padding: 6px 10px 4px;
  font-size: .65rem;
  line-height: 1.5;
  color: #111;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.wa-bubble.wa-in  { align-self: flex-start; border-bottom-right-radius: 4px; }
.wa-bubble.wa-out { align-self: flex-end; background: #dcf8c6; border-bottom-left-radius: 4px; }
.wa-sender { display: block; font-size: .6rem; font-weight: 700; color: #075e54; margin-bottom: 2px; }
.wa-time   { display: block; font-size: .55rem; color: #aaa; text-align: left; margin-top: 2px; }

/* WA input bar */
.wa-input-bar {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
}
.wa-input-placeholder {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: .62rem;
  color: #aaa;
}
.wa-send-btn {
  width: 26px; height: 26px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-send-btn svg { width: 12px; height: 12px; color: #fff; fill: #fff; }

/* Keep old feature-cards for backward compat */
.feature-cards { display: flex; flex-direction: column; gap: 14px; }
.feature-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(122,184,118,.2);
  display: flex;
  gap: 14px;
}
.feature-num {
  width: 34px; height: 34px;
  background: var(--mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-card h3 { font-size: .95rem; font-weight: 900; margin-bottom: 6px; }
.feature-card p  { font-size: .8rem; color: var(--gray); line-height: 1.6; margin-bottom: 10px; }
.feature-bullets { list-style: none; }
.feature-bullets li {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.feature-bullets li::before { content: '✓'; color: var(--mid); font-size: .9rem; }
.bottle-img { width: 180px; margin: 28px auto 0; border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,.12); }

/* ── Reviews ────────────────────────────────────────────── */
.reviews-section { background: var(--bg); padding: 36px 0; }
.reviews-section h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.reviews-section .sub { color: var(--mid); font-weight: 700; font-size: .9rem; margin-bottom: 22px; }
.review-cards { display: flex; flex-direction: column; gap: 12px; }
.review-card {
  background: var(--white);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px;
  background: var(--mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: .9rem;
}
.reviewer-name { font-size: .88rem; font-weight: 700; }
.reviewer-gov  { font-size: .72rem; color: #9ca3af; }
.review-text { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ── Reviews image slider ───────────────────────────────── */
.pm-slider-outer2 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 24px auto 0 !important;
  max-width: 400px !important;
}
.pm-slider-viewport {
  flex: 1 1 auto !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.14) !important;
  min-width: 0 !important;
  position: relative !important;
}
.pm-slider-strip {
  display: flex !important;
  flex-wrap: nowrap !important;
  transition: transform .45s cubic-bezier(.4,0,.2,1) !important;
  will-change: transform !important;
  margin: 0 !important;
  padding: 0 !important;
}
.pm-slide2 {
  display: block !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
.pm-slide2 img {
  width: 100% !important;
  display: block !important;
  object-fit: contain !important;
  background: #f3f4f6 !important;
  max-height: 520px !important;
  border-radius: 20px !important;
  float: none !important;
  margin: 0 !important;
}
.pm-arr {
  background: var(--mid) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  font-size: 1.25rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 10px rgba(74,122,70,.35) !important;
  transition: background .2s, transform .15s !important;
  padding: 0 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}
.pm-arr:hover { background: var(--dark) !important; transform: scale(1.08) !important; }
.pm-dots2 {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 14px !important;
}
.pm-dot2 {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: #d1d5db !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background .25s, transform .25s !important;
}
.pm-dot2.active {
  background: var(--mid) !important;
  transform: scale(1.35) !important;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--white); padding: 36px 0; }
.faq-section h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: 4px; }
.faq-section .sub { color: #9ca3af; font-size: .75rem; margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  font-family: 'Cairo', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  text-align: right;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  transition: background .2s;
}
.faq-question:hover { background: #f9fafb; }
.faq-arrow {
  color: var(--mid);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding: 0 16px;
}
.faq-item.open .faq-answer { max-height: 220px; padding: 12px 16px; }

/* ── About ──────────────────────────────────────────────── */
.about-section { background: var(--bg); padding: 36px 0; }
.about-section h2 { font-size: 1.3rem; font-weight: 900; margin-bottom: 14px; }
.about-section p { font-size: .85rem; color: var(--gray); line-height: 1.9; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: var(--white); padding: 32px 0 24px; }
.footer-logo { height: 48px; width: auto; margin: 0 auto 20px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.footer-col h4 { color: var(--light); font-size: .85rem; font-weight: 700; margin-bottom: 10px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  margin-bottom: 7px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 18px; }
.footer-phone {
  text-align: center;
  margin-bottom: 14px;
  font-size: .9rem;
}
.footer-phone a { color: var(--white); font-weight: 700; direction: ltr; display: inline-block; }
.footer-cta { margin-bottom: 16px; }
.footer-copy { text-align: center; font-size: .7rem; color: rgba(255,255,255,.25); }

/* ── Responsive tweaks ──────────────────────────────────── */
@media (min-width: 640px) {
  .hero h1 { font-size: 2.4rem; }
  .ba-cards { flex-direction: row; }
  .ba-cards .ba-card { flex: 1; }
}
