/* ============================================================
   AL AMRU BIL MA'RUF FOUNDATION FOR EDUCATION AND DEVELOPMENT
   Shared stylesheet
   ============================================================ */

:root {
  /* Brand palette — sampled from the foundation's logo, banners & program outline */
  --green-900: #001a2e;
  --green-800: #00233d;
  --green-700: #00304f;
  --green-600: #00426e;
  --green-500: #0a5b9e;
  --green-100: #dbe8f2;
  --green-50: #f0f6fa;
  --gold-500: #b08a2e;
  --gold-400: #c39b3d;
  --gold-300: #e3ca7e;
  --gold-100: #f5ecd0;
  --cream: #faf6ee;
  --ink: #1d2b26;
  --muted: #5c6f68;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(8, 42, 34, 0.08);
  --shadow-md: 0 10px 30px rgba(8, 42, 34, 0.14);
  --shadow-lg: 0 24px 60px rgba(8, 42, 34, 0.2);
  --font-head: "Marcellus", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-arabic: "Amiri", "Traditional Arabic", serif;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-800);
}

/* ---------- Utility ---------- */
.container { width: min(var(--maxw), 92%); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section--tint { background: var(--white); }
.section--green { background: var(--green-800); color: var(--cream); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.9rem;
}
.section--green .eyebrow { color: var(--gold-300); }

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 1rem;
}
.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}
.section--green .lede { color: #c9ded6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
  border: 0;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold-500); color: var(--green-900); box-shadow: 0 8px 22px rgba(201, 162, 39, 0.35); }
.btn--gold:hover { background: var(--gold-400); }
.btn--outline { border: 1.5px solid rgba(255, 255, 255, 0.5); color: #fff; background: transparent; }
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); }
.btn--green { background: var(--green-700); color: #fff; box-shadow: 0 8px 22px rgba(17, 76, 60, 0.3); }
.btn--green:hover { background: var(--green-600); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-900);
  color: #cfe3db;
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-300); font-weight: 600; }
.lang-switch {
  border: 1px solid rgba(212, 182, 74, 0.55);
  color: var(--gold-300) !important;
  padding: 0.12rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: background 0.18s ease;
}
.lang-switch:hover { background: rgba(212, 182, 74, 0.15); }
.topbar .topbar-links { display: flex; gap: 1.2rem; align-items: center; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* note: no backdrop-filter here — it would make this element the
     containing block for the fixed mobile nav drawer, clipping it to
     the header's height instead of the full viewport */
  background: rgba(250, 246, 238, 0.96);
  border-bottom: 1px solid rgba(8, 42, 34, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--green-800);
  line-height: 1.15;
  white-space: nowrap;
}
.brand-name span { display: block; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-500); font-weight: 700; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-700);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width 0.22s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--green-900); }
.nav-cta { margin-left: 0.5rem; padding: 0.6rem 1.25rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 55%, var(--green-600) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'%3E%3Cpath d='M60 0l14.6 45.4L120 60l-45.4 14.6L60 120l-14.6-45.4L0 60l45.4-14.6z'/%3E%3Ccircle cx='60' cy='60' r='26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  padding: 5.5rem 0;
}
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  color: #fff;
  margin-bottom: 1.2rem;
}
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero p { color: #d7e8e1; font-size: 1.06rem; max-width: 52ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--gold-400);
  display: block;
}
.hero-stats .stat span { font-size: 0.82rem; color: #bcd4cb; text-transform: uppercase; letter-spacing: 0.08em; }

.hero-media { position: relative; }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.hero-media .media-badge {
  position: absolute;
  bottom: 1.1rem;
  left: 1.1rem;
  background: rgba(8, 42, 34, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 182, 74, 0.5);
  color: var(--gold-300);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.07);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-600);
  margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.22rem; margin-bottom: 0.55rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card a.card-link { display: inline-block; margin-top: 1rem; color: var(--green-600); font-weight: 700; font-size: 0.9rem; }
.card a.card-link:hover { color: var(--gold-500); }

/* ---------- Split / feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.split .checklist { margin-top: 1.6rem; display: grid; gap: 0.8rem; }
.split .checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--ink);
}
.split .checklist .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.7rem;
  margin-top: 0.15rem;
}

/* ---------- Quote / Arabic ---------- */
.arabic-block {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: right;
  font-size: 1.25rem;
  line-height: 2.1;
  color: var(--green-700);
  background: var(--gold-100);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
}
.arabic-block .arabic-title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}
.arabic-block .dua {
  display: block;
  color: var(--green-800);
  font-weight: 600;
  margin-top: 0.8rem;
}

/* ---------- Event timeline ---------- */
.timeline { margin-top: 2.5rem; position: relative; padding-left: 1.6rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--gold-500), var(--green-500));
}
.timeline li { position: relative; margin-bottom: 1.6rem; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.6rem; top: 0.4rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline b { color: var(--green-800); display: block; font-size: 1.02rem; }
.timeline span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.gallery-grid figure {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: var(--green-100);
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 0.9rem 0.7rem;
  background: linear-gradient(transparent, rgba(8, 42, 34, 0.85));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-grid figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 16, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.lightbox .lb-caption {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-300);
  font-size: 0.9rem;
  background: rgba(8, 42, 34, 0.8);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  max-width: 90%;
  text-align: center;
}
.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.18s ease;
}
.lb-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lb-close { top: 1.4rem; right: 1.4rem; }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Table (event details) ---------- */
.detail-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.detail-table th, .detail-table td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(8, 42, 34, 0.08);
  font-size: 0.97rem;
}
.detail-table th {
  width: 34%;
  color: var(--green-700);
  font-weight: 700;
  background: var(--green-50);
  border-radius: 8px 0 0 8px;
}
.detail-table td { color: var(--ink); }

/* ---------- Channel cards ---------- */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.channel-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 42, 34, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.channel-card .c-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  font-size: 1.6rem;
  color: #fff;
}
.channel-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.channel-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; }
.channel-card .btn { font-size: 0.85rem; padding: 0.65rem 1.3rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.8rem; }
.cta-band p { color: #d7e8e1; max-width: 56ch; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: #b9d2c9;
  padding: 4rem 0 0;
  font-size: 0.92rem;
}
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.site-footer h4 {
  color: var(--gold-300);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer p { line-height: 1.7; }
.site-footer ul li { margin-bottom: 0.55rem; }
.site-footer ul a:hover { color: var(--gold-300); }
.footer-about .brand-name { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8aa89e;
}
.footer-bottom a { color: var(--gold-400); }

/* ---------- Gallery filters ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.6rem;
}
.gallery-filter {
  border: 1.5px solid rgba(8, 42, 34, 0.18);
  background: #fff;
  color: var(--green-800);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gallery-filter:hover { border-color: var(--green-700); }
.gallery-filter.is-active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--gold-300);
}
.gallery-grid figure.hidden { display: none; }

/* ---------- FAQ accordion ---------- */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(8, 42, 34, 0.05);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.3rem 1.2rem; color: var(--slate-600); line-height: 1.7; }
.faq-body p { margin: 0; }

/* ---------- Back-to-top button ---------- */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(8, 42, 34, 0.35);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover { background: var(--gold-400); }
html[dir="rtl"] .to-top {
  right: auto;
  left: 1.4rem;
}
@media (max-width: 560px) {
  .to-top { right: 0.9rem; bottom: 0.9rem; width: 42px; height: 42px; }
  html[dir="rtl"] .to-top { right: auto; left: 0.9rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: 4.2rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'%3E%3Cpath d='M60 0l14.6 45.4L120 60l-45.4 14.6L60 120l-14.6-45.4L0 60l45.4-14.6z'/%3E%3Ccircle cx='60' cy='60' r='26'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 0.4rem 0 0.8rem; }
.page-hero p { color: #cfe3db; max-width: 60ch; }
.breadcrumb { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-300); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.pill {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}
.pill--gold { background: var(--gold-100); color: #8a6d12; }
.badge-row { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.1rem; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.stat-box b { font-family: var(--font-head); font-size: 2rem; color: var(--gold-400); display: block; }
.stat-box span { font-size: 0.82rem; color: #cfe3db; text-transform: uppercase; letter-spacing: 0.08em; }

.notice {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--gold-100);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #6f5a10;
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
}
.notice strong { color: var(--green-800); }

/* ---------- Before / After compare slider ---------- */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--green-900);
}
.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare .compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 calc(var(--pos, 50) * 1%));
  will-change: clip-path;
}
.compare .compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pos, 50) * 1%);
  width: 3px;
  background: var(--gold-400);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(8, 42, 34, 0.55);
  pointer-events: none;
}
.compare .compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-900);
  border: 3px solid #fff;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(8, 42, 34, 0.5);
  pointer-events: none;
}
.compare .compare-label {
  position: absolute;
  top: 1rem;
  background: rgba(8, 42, 34, 0.82);
  backdrop-filter: blur(4px);
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 182, 74, 0.45);
  pointer-events: none;
  white-space: nowrap;
}
.compare .compare-label--left { left: 1rem; }
.compare .compare-label--right { right: 1rem; }
.compare .compare-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 42, 34, 0.72);
  color: #d7e8e1;
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}

/* ---------- Media embeds ---------- */
.embed {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0a0f14;
  box-shadow: var(--shadow-md);
}
.embed iframe { display: block; border: 0; width: 100%; }
.embed--video { aspect-ratio: 16 / 9; }
.embed--video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.embed--video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #0a0f14; }
.embed-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2.2rem;
}
.embed-card {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.07);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.embed-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.embed-card h3 .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

/* ---------- Programme table ---------- */
.programme-table { width: 100%; border-collapse: collapse; margin-top: 1.2rem; }
.programme-table th, .programme-table td {
  text-align: start;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(8, 42, 34, 0.08);
  font-size: 0.95rem;
  vertical-align: top;
}
.programme-table th {
  background: var(--green-800);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.programme-table td:first-child, .programme-table th:first-child {
  text-align: center;
  width: 3.2rem;
}
.programme-table tr:hover td { background: var(--green-50); }
.programme-table .item-sub { display: block; color: var(--muted); font-size: 0.88rem; margin-top: 0.15rem; }

/* ---------- People / profiles ---------- */
.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.person-card {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.07);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.person-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.person-card .avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  border: 3px solid var(--gold-500);
}
.person-card h3 { font-size: 1.3rem; }
.person-card .role {
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.9rem;
}
.person-card p { color: var(--muted); font-size: 0.95rem; }
.person-card .quote {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(8, 42, 34, 0.15);
  font-style: italic;
  color: var(--green-700);
  font-size: 0.93rem;
}
.person-card .tags { margin-top: 1rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* ---------- Milestone strip ---------- */
.milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.milestone {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  position: relative;
}
.milestone .m-year {
  font-family: var(--font-head);
  color: var(--gold-400);
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.4rem;
}
.milestone b { color: #fff; font-size: 1rem; display: block; margin-bottom: 0.3rem; }
.milestone span { color: #c9ded6; font-size: 0.88rem; }

/* ---------- Support ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.support-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 42, 34, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.support-card .s-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  background: var(--green-50);
  color: var(--green-600);
  font-size: 1.5rem;
}
.support-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.support-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.1rem; }

/* ---------- History timeline ---------- */
.history-timeline {
  position: relative;
  margin-top: 3.5rem;
}
.history-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-500), var(--green-500));
  opacity: 0.45;
  border-radius: 3px;
}
.ht-era {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.8rem;
}
.ht-era-badge {
  background: var(--green-800);
  color: var(--gold-300);
  font-family: var(--font-head);
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--gold-500);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.ht-entry {
  position: relative;
  width: 50%;
  padding: 0 3rem 2.8rem 0;
}
.ht-entry--alt {
  margin-left: 50%;
  padding: 0 0 2.8rem 3rem;
}
.ht-entry::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -11px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold-500);
  z-index: 1;
}
.ht-entry--alt::before {
  left: -11px;
  right: auto;
}
.ht-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(8, 42, 34, 0.07);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ht-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ht-date {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.ht-card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.ht-card p { color: var(--muted); font-size: 0.94rem; }
.ht-card .ht-quote {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(8, 42, 34, 0.15);
  font-style: italic;
  color: var(--green-700);
  font-size: 0.9rem;
}

/* ---------- Program image language toggle ---------- */
.img-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  background: var(--cream);
  border: 1.5px solid rgba(8, 42, 34, 0.16);
  border-radius: 999px;
  padding: 0.3rem;
  margin-bottom: 1.2rem;
}
.img-toggle button {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-800);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.img-toggle button[aria-pressed="true"] {
  background: var(--gold-500);
  color: var(--green-900);
}

/* ---------- Contact form ---------- */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-form {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form .field { margin-bottom: 1.2rem; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}
.contact-form label span { color: var(--muted); font-weight: 500; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--green-900);
  background: var(--cream);
  border: 1.5px solid rgba(8, 42, 34, 0.16);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212, 182, 74, 0.22);
  background: #fff;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1rem;
}
.form-status { display: none; }
.form-status.show {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  border: 1.5px solid rgba(8, 42, 34, 0.14);
  background: var(--green-100);
  color: var(--green-800);
}
.contact-people { display: grid; gap: 1.2rem; }
.contact-person {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-person .cp-name {
  font-family: var(--font-head);
  font-size: 1.12rem;
  color: var(--green-800);
  margin-bottom: 0.15rem;
}
.contact-person .cp-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.55rem;
}
.donate-steps { margin: 0.4rem 0 0.2rem 1.1rem; padding: 0; font-size: 0.86rem; color: var(--ink); line-height: 1.7; }
.donate-steps li { margin-bottom: 0.2rem; }
.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1rem 0 0.4rem;
}
.share-status {
  font-size: 0.82rem;
  color: var(--muted);
  min-height: 1.2rem;
  margin-bottom: 0.9rem;
}
.share-status.ok { color: var(--green-700); font-weight: 700; }
.share-status.err { color: #b3261e; }
.dial-buttons {
  display: grid;
  gap: 0.5rem;
  margin: 0.9rem 0 0.6rem;
}
.dial-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-900);
  background: var(--cream);
  border: 1.5px solid rgba(8, 42, 34, 0.18);
  border-radius: 0.65rem;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dial-btn:hover {
  background: var(--gold-100);
  border-color: var(--gold-500);
}
.dial-btn span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-700);
  background: rgba(13, 100, 79, 0.09);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}
.contact-person p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.9rem; }
.contact-person .cp-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.contact-person .btn { font-size: 0.82rem; padding: 0.55rem 1.1rem; }
.contact-person .cp-phone {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--cream);
  border: 1px dashed rgba(8, 42, 34, 0.2);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .embed-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; padding: 3.5rem 0; gap: 2.5rem; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer .container { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    /* above the overlay (z 49) and inside the header (z 50) so links stay clickable */
    z-index: 52;
    overflow-y: auto;
    max-height: 100vh;
    overscroll-behavior: contain;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.05rem; padding: 0.7rem 0; }
  .nav-cta { margin: 1rem 0 0; }
  .nav-toggle { display: block; position: relative; z-index: 52; }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(8, 42, 34, 0.45);
    z-index: 49;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
}
/* ---------- Hifz estimator ---------- */
.estimator {
  background: #fff;
  border: 1px solid rgba(8, 42, 34, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem;
  margin-top: 2.2rem;
  box-shadow: 0 10px 30px rgba(8, 42, 34, 0.06);
}
.estimator-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}
.estimator-field { margin-bottom: 1.35rem; }
.estimator-field > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.45rem;
}
.estimator-input {
  font: inherit;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(8, 42, 34, 0.18);
  border-radius: 0.65rem;
  background: var(--cream);
  color: var(--green-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.estimator-input:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(13, 100, 79, 0.12);
}
.estimator-rate-row { display: flex; gap: 0.6rem; }
.estimator-rate-row .estimator-input { width: 7rem; flex-shrink: 0; }
.estimator-rate-row select { width: auto; flex: 1; }
.estimator-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.4rem;
}
.estimator-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.estimator-pills input { position: absolute; opacity: 0; pointer-events: none; }
.estimator-pills label {
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--cream);
  border: 1.5px solid rgba(8, 42, 34, 0.16);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.estimator-pills input:checked + label {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-900);
}
.estimator-pills input:focus-visible + label { outline: 3px solid rgba(13, 100, 79, 0.25); outline-offset: 2px; }
.estimator-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.estimator-chips input { position: absolute; opacity: 0; pointer-events: none; }
.estimator-chips label {
  cursor: pointer;
  min-width: 2.3rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--cream);
  border: 1.5px solid rgba(8, 42, 34, 0.16);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.estimator-chips input:checked + label {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}
.estimator-chips input:focus-visible + label { outline: 3px solid rgba(13, 100, 79, 0.25); outline-offset: 2px; }
.estimator-results {
  background: var(--green-900);
  color: #eaf3ef;
  border-radius: var(--radius);
  padding: 1.8rem;
  min-height: 100%;
}
.estimator-bar {
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.estimator-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  border-radius: 999px;
  transition: width 0.35s ease;
}
.estimator-progress-label {
  font-size: 0.78rem;
  color: #cfe3db;
  text-align: end;
  margin-bottom: 1.4rem;
}
.estimator-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.estimator-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.7rem;
  padding: 1rem 0.6rem;
  text-align: center;
}
.estimator-stat b { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-400); display: block; }
.estimator-stat span { font-size: 0.7rem; color: #cfe3db; letter-spacing: 0.05em; text-transform: uppercase; }
.estimator-finish { border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 1.2rem; }
.estimator-finish p { margin: 0 0 0.3rem; }
.estimator-finish .ef-date { font-family: var(--font-head); font-size: 1.15rem; color: #fff; }
.estimator-finish .ef-hijri { font-family: var(--font-arabic, Amiri, serif); font-size: 1rem; color: var(--gold-300); }
.estimator-finish .ef-human { font-size: 0.9rem; color: #cfe3db; margin-top: 0.7rem; }
@media (max-width: 900px) {
  .estimator { padding: 1.6rem; }
  .estimator-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 560px) {
  .estimator-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .estimator-rate-row { flex-wrap: wrap; }
  .estimator-rate-row .estimator-input { width: 100%; }
}

@media (max-width: 560px) {
  .section { padding: 3.8rem 0; }
  .topbar .topbar-links { display: none; }
  .brand-name { font-size: 0.88rem; }
  .detail-table th { width: 42%; }

  /* History timeline — stack entries full-width on small screens */
  .history-timeline::before { left: 8px; }
  .ht-entry, .ht-entry--alt {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 0 2rem 2.2rem;
  }
  .ht-entry::before, .ht-entry--alt::before { left: -11px; right: auto; }
  .ht-era { justify-content: flex-start; padding-left: 2.2rem; }
  .ht-era-badge { font-size: 0.95rem; padding: 0.45rem 1.2rem; white-space: normal; }
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float{
  position:fixed;right:22px;bottom:22px;z-index:1500;
  width:58px;height:58px;border-radius:50%;background:#25D366;
  display:grid;place-items:center;box-shadow:0 12px 32px rgba(37,211,102,.4);
  transition:transform .25s;
}
.wa-float:hover{transform:scale(1.1)}
.wa-float svg{width:30px;height:30px;color:#06281A}
.wa-float::after{
  content:"";position:absolute;inset:-4px;border-radius:50%;
  border:2px solid #25D366;opacity:.5;animation:waPulse 2s infinite;
}
@keyframes waPulse{0%{transform:scale(.9);opacity:.6}70%{transform:scale(1.25);opacity:0}100%{opacity:0}}

html[dir="rtl"] .wa-float{right:auto;left:22px}
