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

:root {
  --bg: var(--brand-bg, #f3f8fc);
  --white: var(--brand-surface, #ffffff);
  --ink: var(--brand-text, #12344d);
  --ink-soft: var(--brand-text-muted, color-mix(in srgb, var(--ink) 68%, white));
  --line: color-mix(in srgb, var(--ink) 14%, transparent);
  --green: var(--brand-primary, #1b75bb);
  --green-2: var(--brand-primary-dark, #1460a0);
  --gold: var(--brand-accent, #f7941d);
  --gold-soft: var(--brand-accent-soft, #fab050);
  --soft: color-mix(in srgb, var(--bg) 72%, white);
  --shadow: 0 18px 55px rgba(20, 96, 160, .12);
  --shadow-strong: 0 24px 60px rgba(20, 96, 160, .18);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Cairo', Arial, sans-serif;
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--gold) 18%, transparent), transparent 28%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 40%, white) 0%, var(--bg) 100%);
  color: var(--ink);
  direction: rtl;
  line-height: 1.8;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, blockquote { margin-top: 0; }
::selection { background: var(--green); color: var(--white); }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-topbar {
  background: var(--brand-topbar-bg, var(--green));
  color: var(--brand-topbar-text, #ffffff);
  font-size: 14px;
}
.topbar-wrap,
.nav-wrap,
.article-tools,
.hero-actions,
.program-footer,
.funnel-steps,
.final-cta-wrap,
.footer-badges {
  display: flex;
  align-items: center;
}
.topbar-wrap {
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 6px 0;
}
.topbar-copy,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--brand-header-bg, var(--white)) 90%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(198, 162, 90, .2);
}
.nav-wrap {
  min-height: 82px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(15, 106, 172, .18);
}
.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}
.logo-word {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 56px;
  line-height: .88;
  letter-spacing: 1px;
  color: var(--green);
}
.logo-sub {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 10px;
  color: var(--gold);
  margin-top: 2px;
}
.brand-lockup small {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline-start: auto;
}
.main-nav a,
.btn,
.nav-whatsapp,
.footer-wa,
.float-wa {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--brand-header-text, var(--ink));
}
.main-nav a.active,
.main-nav a:hover {
  background: var(--green);
  color: var(--white);
}

.btn,
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--brand-button-text, var(--white));
  font-weight: 800;
  cursor: pointer;
}
.btn.gold {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border-color: var(--gold);
  color: #1a1a1a;
}
.btn.secondary {
  background: transparent;
  color: var(--brand-button-secondary-text, var(--green));
  border-color: rgba(15, 59, 46, .22);
}
.btn.full { width: 100%; }
.btn:hover,
.nav-whatsapp:hover,
.footer-wa:hover,
.float-wa:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 32px;
  background:
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--gold) 24%, transparent), transparent 22%),
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--green) 15%, transparent), transparent 28%),
    linear-gradient(135deg, color-mix(in srgb, var(--bg) 40%, white) 0%, var(--bg) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,39,31,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16,39,31,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.4), transparent 72%);
}
.hero-shell { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 32px;
  align-items: center;
}
.hero-copy,
.section-head,
.intro-grid > *,
.contact-card,
.service-body,
.article-body {
  min-width: 0;
}
.eyebrow,
.section-label,
.program-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.eyebrow,
.section-label {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(198, 162, 90, .35);
  color: var(--green);
}
.hero h1 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.05;
  margin: 16px 0 14px;
  max-width: 680px;
}
.hero p,
.section-head p,
.page-hero p,
.intro-grid p,
.service-body p,
.article-body p,
.contact-card p {
  color: var(--ink-soft);
}
.hero p {
  font-size: 19px;
  max-width: 660px;
  margin-bottom: 22px;
}
.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}
.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(198, 162, 90, .18);
}

.hero-media-stack {
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-template-rows: minmax(220px, auto) minmax(200px, auto);
  gap: 16px;
}
.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(198, 162, 90, .25);
  background: #e7e1d0;
}
.hero-media img,
.service-photo img,
.article-card img,
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media.main {
  grid-row: 1 / 3;
  min-height: 520px;
}
.hero-media.mini { min-height: 210px; }
.hero-media.mini span,
.hero-overlay-card {
  position: absolute;
  backdrop-filter: blur(10px);
  background: rgba(15, 59, 46, .74);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
}
.hero-media.mini span {
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 5px 12px;
  font-weight: 800;
  font-size: 13px;
}
.hero-overlay-card {
  inset-inline-start: 18px;
  inset-block-end: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  max-width: 290px;
}
.hero-overlay-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.hero-kpis,
.grid-3,
.grid-4,
.why-grid,
.media-grid,
.footer-grid,
.contact-layout {
  display: grid;
}
.hero-kpis {
  margin-top: 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-kpis article,
.program-card,
.hajj-card,
.why-grid article,
.service-card,
.article-card,
.request-panel,
.contact-card,
.testimonial-card,
.simple-steps article {
  background: color-mix(in srgb, var(--brand-card-bg, var(--white)) 84%, transparent);
  border: 1px solid var(--brand-card-border, rgba(198, 162, 90, .24));
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.hero-kpis article {
  padding: 16px 18px;
}
.hero-kpis strong {
  display: block;
  font-size: 24px;
}

.section { padding: 84px 0; }
.section.soft { background: rgba(255, 255, 255, .55); }
.section-dark,
.media-section,
.funnel-section,
.final-cta {
  background: linear-gradient(135deg, var(--brand-section-dark-bg, var(--green)) 0%, var(--brand-section-dark-bg-2, var(--green-2)) 100%);
  color: var(--white);
}
.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.light p,
.light p,
.section-dark .section-label,
.media-section .section-label,
.funnel-section .section-label,
.final-cta .section-label {
  color: rgba(255, 255, 255, .82);
}
.section-head h2,
.page-hero h1,
.intro-grid h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
  margin: 12px 0 10px;
}

.intro-strip {
  padding-top: 54px;
  padding-bottom: 54px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: start;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-pills article,
.funnel-steps span {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}
.service-pills strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.program-card,
.hajj-card,
.why-grid article,
.testimonial-card,
.contact-card,
.simple-steps article {
  padding: 24px;
}
.program-badge {
  background: rgba(198, 162, 90, .18);
  color: var(--gold);
  border: 1px solid rgba(198, 162, 90, .3);
  margin-bottom: 18px;
}
.program-card h3,
.hajj-card h3,
.service-body h3,
.article-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.program-card strong {
  display: block;
  margin-bottom: 10px;
}
.program-footer {
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-weight: 800;
}
.program-footer a { color: var(--green); }
.hajj-grid { align-items: stretch; }

.why-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.media-grid {
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
}
.media-list {
  display: grid;
  gap: 14px;
}
.media-list article {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700;
}
.media-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.media-video-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.media-frame {
  position: relative;
  padding-top: 56.25%;
  background: rgba(0,0,0,.12);
}
.media-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.media-video-body {
  padding: 18px 18px 20px;
}
.media-video-body h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.35;
}
.media-video-body a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
}

.service-card,
.article-card,
.request-panel {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover,
.article-card:hover,
.request-panel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.service-card { display: flex; flex-direction: column; }
.service-photo { height: 240px; background: #e8e1d2; }
.service-photo img,
.article-card img { transition: transform .5s ease, filter .5s ease; }
.service-card:hover .service-photo img,
.article-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.03);
}
.service-body,
.article-body { padding: 24px; }
.service-icon { font-size: 28px; margin-bottom: 8px; }
.service-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding: 0 24px 24px;
}
.article-card img { height: 220px; }
.article-meta {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 8px;
}
.article-tools {
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0 24px;
  color: var(--ink-soft);
}
.article-tools strong { color: var(--ink); }

.funnel-wrap,
.final-cta-wrap {
  display: grid;
  gap: 24px;
  align-items: center;
}
.funnel-steps {
  gap: 12px;
  flex-wrap: wrap;
}
.lead-form,
.request-form,
.form-grid {
  display: grid;
  gap: 14px;
}
.lead-form {
  grid-template-columns: repeat(3, 1fr);
}
input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 39, 31, .14);
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
}
select,
input,
textarea,
button {
  -webkit-appearance: none;
  appearance: none;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(198, 162, 90, .6);
  outline-offset: 2px;
}

.testimonial-card {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.testimonial-card blockquote {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.5;
  margin: 14px 0 0;
}

.final-cta-wrap {
  grid-template-columns: 1fr auto;
}

.page-hero {
  padding: 82px 0 52px;
  background: linear-gradient(135deg, #f9f5eb 0%, #efe5cf 100%);
  border-bottom: 1px solid rgba(198, 162, 90, .24);
}
.page-hero-rich {
  position: relative;
  overflow: hidden;
}
.page-hero-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(15, 59, 46, .08), transparent 22%);
}
.page-hero .container { position: relative; z-index: 1; }

.contact-layout {
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}
.contact-card a {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--green);
}

.site-footer {
  background: var(--brand-footer-bg, #0f6aac);
  color: var(--brand-footer-text, #ffffff);
  padding-top: 56px;
}
.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
}
.site-footer h3,
.site-footer h4,
.site-footer a { color: var(--brand-footer-text, var(--white)); }
.site-footer p { color: color-mix(in srgb, var(--brand-footer-text, #ffffff) 72%, transparent); }
.site-footer a {
  display: block;
  margin: 8px 0;
}
.footer-badges {
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.footer-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 700;
}
.footer-wa {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbbd79 0%, var(--gold) 100%);
  color: #171717;
  font-weight: 900;
}
.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, .64);
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 32px;
  padding: 18px;
}
.float-wa {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbbd79 0%, var(--gold) 100%);
  color: #171717;
  font-weight: 900;
  box-shadow: var(--shadow-strong);
}

.reveal-card { animation: riseIn .55s ease both; }
.stagger-list > *:nth-child(2) { animation-delay: .06s; }
.stagger-list > *:nth-child(3) { animation-delay: .12s; }
.stagger-list > *:nth-child(4) { animation-delay: .18s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.admin-layout { min-height: 100vh; background: var(--soft); }
.admin-top { background: linear-gradient(135deg, var(--brand-section-dark-bg, var(--green)) 0%, var(--brand-section-dark-bg-2, var(--green-2)) 100%); color: var(--brand-footer-text, var(--white)); padding: 18px 0; }
.admin-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.admin-top a {
  color: var(--brand-footer-text, var(--white));
}
.admin-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 22px 0;
}
.admin-nav a {
  border: 1px solid var(--brand-card-border, var(--line));
  background: var(--brand-card-bg, var(--white));
  padding: 8px 13px;
  border-radius: 14px;
  font-weight: 800;
  color: var(--brand-header-text, var(--ink));
}
.admin-nav a:hover {
  background: var(--green);
  color: var(--brand-button-text, var(--white));
}
.admin-card {
  padding: 22px;
  margin-bottom: 20px;
  background: var(--brand-card-bg, var(--white));
  border: 1px solid var(--brand-card-border, var(--line));
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--brand-card-bg, var(--white));
}
.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: right;
  vertical-align: top;
}
.admin-card label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}
.admin-card input[type="color"] {
  width: 100%;
  min-height: 52px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--brand-card-border, var(--line));
  background: var(--brand-card-bg, var(--white));
}
.admin-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-section-head h1,
.admin-card h1 {
  margin-bottom: 8px;
}
.admin-form-note {
  margin: 0;
  color: var(--brand-text-muted, var(--muted));
  font-size: 14px;
  line-height: 1.8;
}
.form-grid {
  grid-template-columns: repeat(2, 1fr);
}
.form-grid .wide { grid-column: 1 / -1; }
.alert {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: #eef8ef;
  border: 1px solid #cfead3;
}
.alert-error {
  background: #fff1f1;
  border-color: #f2c8c8;
  color: #8b2e2e;
}

.admin-card,
.request-panel {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; margin-inline-start: auto; }
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid rgba(198, 162, 90, .24);
    padding: 12px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-whatsapp { display: none; }
  .brand-text small { display: none; }
  .hero-grid,
  .intro-grid,
  .grid-3,
  .grid-4,
  .why-grid,
  .media-grid,
  .media-showcase,
  .contact-layout,
  .footer-grid,
  .lead-form,
  .form-grid,
  .hero-kpis,
  .final-cta-wrap {
    grid-template-columns: 1fr;
  }
  .hero-media-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hero-media.main {
    grid-row: auto;
    min-height: 340px;
  }
  .nav-wrap {
    flex-wrap: wrap;
    min-height: auto;
    padding: 12px 0;
  }
  .brand {
    max-width: calc(100% - 64px);
  }
  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .logo-word {
    font-size: 46px;
  }
  .logo-sub {
    font-size: 18px;
    letter-spacing: 8px;
  }
  .brand-lockup small {
    display: none;
  }
}

@media (max-width: 720px) {
  .article-tools,
  .hero-actions,
  .program-footer,
  .funnel-steps {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-media-stack {
    grid-template-columns: 1fr;
  }
  .section { padding: 62px 0; }
  .hero h1 { font-size: clamp(34px, 12vw, 54px); }
  .service-actions { flex-direction: column; }
  .container {
    width: min(var(--container), calc(100% - 20px));
  }
  .site-topbar {
    font-size: 11px;
  }
  .topbar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 0 8px;
    min-height: auto;
  }
  .topbar-copy {
    width: 100%;
    gap: 4px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .topbar-copy span {
    text-align: center;
    line-height: 1.25;
    font-weight: 700;
  }
  .topbar-actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .topbar-actions a {
    min-width: 124px;
    text-align: center;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: 12px;
    line-height: 1.2;
  }
  .brand {
    gap: 10px;
    align-items: center;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .logo-word {
    font-size: 40px;
  }
  .logo-sub {
    font-size: 16px;
    letter-spacing: 7px;
  }
  .hero {
    padding-top: 28px;
  }
  .hero p,
  .section-head p,
  .page-hero p {
    font-size: 16px;
  }
  .hero-actions .btn,
  .hero-actions a,
  .lead-form .btn,
  .service-actions .btn {
    width: 100%;
  }
  .hero-kpis article,
  .program-card,
  .hajj-card,
  .why-grid article,
  .service-card,
  .article-card,
  .request-panel,
  .contact-card,
  .testimonial-card,
  .simple-steps article,
  .admin-card {
    border-radius: 18px;
  }
  .page-hero {
    padding: 52px 0 34px;
  }
  .article-card img,
  .service-photo {
    height: 200px;
  }
  .float-wa {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
  }
  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table th,
  .admin-table td,
  .admin-table tr {
    display: block;
    width: 100%;
  }
  .admin-table thead {
    display: none;
  }
  .admin-table tr {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 8px 0;
    background: var(--white);
  }
  .admin-table td {
    border-bottom: 1px solid var(--line);
    padding: 10px 12px;
  }
  .admin-table td:last-child {
    border-bottom: 0;
  }
  .admin-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }
  .admin-section-head {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-nav a {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
