.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 34px;
}
.logo-link { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-link img { width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; flex: 1; }
.site-nav a {
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 34px 0;
}
.site-nav a.active, .site-nav a:hover { color: var(--color-red); }
.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  background: var(--color-red);
}
.header-actions { display: flex; align-items: center; gap: 18px; margin-inline-start: auto; }
.header-actions .contact-link { font-weight: 700; }
.lang-switch { display: flex; align-items: center; gap: 6px; }
.lang-switch select {
  border: 0;
  background: transparent;
  font-weight: 700;
  color: #1f2937;
  outline: none;
}
.icon-button {
  border: 0;
  background: transparent;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}
.icon-button:hover { background: #f0f2f5; }
.mobile-menu-button { display: none; border: 0; background: #111827; color: #fff; border-radius: 12px; width: 42px; height: 42px; font-size: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-dark { background: var(--color-black); color: var(--color-white); }
.btn-light { background: var(--color-white); color: var(--color-black); }
.btn-outline { background: transparent; color: var(--color-black); border-color: #111827; }
.btn-red { background: var(--color-red); color: var(--color-white); border-radius: 12px; min-height: 50px; }
.button-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }

.section-heading { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.section-kicker, .eyebrow {
  color: var(--color-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
  font-size: 13px;
}
.section-kicker.light { color: #fff; }
.section-heading h2, .split-copy h2, .contact-preview-card h2, .section-image-band h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.section-heading p, .split-copy p, .contact-preview-card p, .section-image-band p { color: var(--color-muted); font-size: 18px; }
.section-image-band p { color: rgba(255,255,255,.86); }

.site-footer {
  background: #080b12;
  color: #d9dde6;
  padding: 56px 0 28px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.site-footer__logo { width: 210px; background: #fff; padding: 8px; border-radius: 12px; margin-bottom: 18px; }
.site-footer h3 { color: #fff; margin: 0 0 14px; font-size: 16px; }
.site-footer p, .site-footer li { color: #aab2c5; margin: 0 0 8px; }
.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 22px; color: #9aa2b6; font-size: 14px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-badges { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.footer-badges img { width: auto; height: 54px; max-width: 120px; object-fit: contain; background: #fff; border-radius: 10px; padding: 6px; margin: 0; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.footer-badges img[src$="halal-logo.webp"] { border-radius: 50%; padding: 0; background: transparent; box-shadow: none; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 8, 15, .82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-panel {
  width: min(720px, calc(100% - 36px));
  margin: 110px auto;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.search-panel__top { display: flex; gap: 10px; }
.search-panel input { flex: 1; border: 1px solid var(--color-border); border-radius: 12px; padding: 14px; }
.search-results { margin-top: 18px; display: grid; gap: 10px; max-height: 380px; overflow: auto; }
.search-result { padding: 14px; border: 1px solid var(--color-border); border-radius: 12px; }
.search-result strong { display: block; }
.search-result small { color: var(--color-muted); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.is-open { display: flex; }
.modal img { max-height: 88vh; width: auto; border-radius: 12px; box-shadow: var(--shadow-soft); background: #fff; }
.modal__close {
  position: fixed;
  right: 24px;
  top: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 30px;
  line-height: 1;
}
